From 8bc75b1615d6a692eb92b7653a1aaf90bc37854c Mon Sep 17 00:00:00 2001 From: Kirk Scheibelhut Date: Mon, 24 Feb 2025 11:01:47 -0800 Subject: [PATCH] Import smogon/pokemon-showdown@44a9e287 smogon/pokemon-showdown-client@3d4de887 --- client/package.json | 8 +- client/src/field.ts | 2 +- data/package.json | 10 +- dex/data/aliases.json | 4 + dex/data/conditions.json | 4 +- dex/data/formats-data.json | 8 +- dex/data/learnsets.json | 185 ++++++- dex/data/moves.json | 4 +- dex/data/species.json | 54 +- dex/package.json | 4 +- dex/types/package.json | 2 +- img/package.json | 2 +- img/src/data/data.json | 2 +- mods/package.json | 8 +- protocol/package.json | 6 +- protocol/src/index.ts | 5 + protocol/src/verifier/index.ts | 2 +- randoms/package.json | 4 +- sim/config/formats.ts | 17 + sim/data/abilities.ts | 20 +- sim/data/aliases.ts | 4 + sim/data/conditions.ts | 14 +- sim/data/formats-data.ts | 14 +- sim/data/learnsets.ts | 185 ++++++- sim/data/mods/gen5/abilities.ts | 14 +- sim/data/mods/gen5/moves.ts | 6 +- sim/data/mods/gen7/moves.ts | 3 +- sim/data/moves.ts | 22 +- sim/data/pokedex.ts | 34 +- sim/data/pokemongo.ts | 489 +++++++++++------- sim/data/text/default.ts | 2 +- sim/package.json | 2 +- sim/sim/team-validator.ts | 22 +- sim/test/sim/abilities/emergencyexit.js | 2 +- sim/test/sim/abilities/hungerswitch.js | 4 +- sim/test/sim/abilities/magicbounce.js | 17 + sim/test/sim/abilities/neutralizinggas.js | 2 +- sim/test/sim/abilities/soulheart.js | 2 + sim/test/sim/abilities/terashell.js | 2 +- sim/test/sim/dex.js | 2 +- sim/test/sim/items/abilityshield.js | 2 +- sim/test/sim/items/ejectpack.js | 2 +- sim/test/sim/misc/fainted-forme-regression.js | 6 +- sim/test/sim/misc/terapagos.js | 4 +- sim/test/sim/misc/terastal.js | 28 +- sim/test/sim/misc/terastellar.js | 14 +- sim/test/sim/moves/dragoncheer.js | 2 +- sim/test/sim/moves/roost.js | 2 +- sim/test/sim/moves/tarshot.js | 4 +- sim/test/sim/moves/terablast.js | 6 +- sim/test/sim/moves/terastarstorm.js | 6 +- sim/test/sim/moves/transform.js | 20 +- vendor/pokemon-showdown | 2 +- vendor/pokemon-showdown-client | 2 +- view/package.json | 4 +- view/src/data/text.json | 2 +- view/src/formatter.ts | 2 +- 57 files changed, 930 insertions(+), 371 deletions(-) diff --git a/client/package.json b/client/package.json index 7fee3c69..4c2647fb 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/client", - "version": "0.6.30", + "version": "0.6.31", "description": "Client battle engine for Pokémon Showdown", "repository": "github:pkmn/ps", "license": "MIT", @@ -15,11 +15,11 @@ "build" ], "dependencies": { - "@pkmn/data": "^0.9.29", - "@pkmn/protocol": "^0.6.30" + "@pkmn/data": "^0.9.30", + "@pkmn/protocol": "^0.6.31" }, "devDependencies": { - "@pkmn/dex": "^0.9.29" + "@pkmn/dex": "^0.9.30" }, "scripts": { "lint": "eslint --cache src", diff --git a/client/src/field.ts b/client/src/field.ts index 549eee48..8cad2c30 100644 --- a/client/src/field.ts +++ b/client/src/field.ts @@ -14,7 +14,7 @@ const WEATHERS: {[id: string]: WeatherName} = { sunnyday: 'Sun', raindance: 'Rain', hail: 'Hail', - snow: 'Snow', + snowscape: 'Snow', desolateland: 'Harsh Sunshine', primordialsea: 'Heavy Rain', deltastream: 'Strong Winds', diff --git a/data/package.json b/data/package.json index a8f55c01..ae9a7302 100644 --- a/data/package.json +++ b/data/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/data", - "version": "0.9.29", + "version": "0.9.30", "description": "A forked implementation of the Pokémon Showdown client's data layer", "repository": "github:pkmn/ps", "license": "MIT", @@ -16,12 +16,12 @@ "build" ], "dependencies": { - "@pkmn/dex-types": "^0.9.29" + "@pkmn/dex-types": "^0.9.30" }, "devDependencies": { - "@pkmn/dex": "^0.9.29", - "@pkmn/mods": "^0.9.29", - "@pkmn/sim": "^0.9.29", + "@pkmn/dex": "^0.9.30", + "@pkmn/mods": "^0.9.30", + "@pkmn/sim": "^0.9.30", "@smogon/calc": "^0.10.0" }, "scripts": { diff --git a/dex/data/aliases.json b/dex/data/aliases.json index fb96faf2..e4fbd526 100644 --- a/dex/data/aliases.json +++ b/dex/data/aliases.json @@ -201,6 +201,10 @@ "eiscuen": "Eiscue-Noice", "eternalfloette": "Floette-Eternal", "eternamax": "Eternatus-Eternamax", + "genesectwater": "Genesect-Douse", + "genesectelectric": "Genesect-Shock", + "genesectfire": "Genesect-Burn", + "genesectice": "Genesect-Chill", "girao": "Giratina-Origin", "giratinao": "Giratina-Origin", "gourgeists": "Gourgeist-Small", diff --git a/dex/data/conditions.json b/dex/data/conditions.json index 9216ee08..554907dd 100644 --- a/dex/data/conditions.json +++ b/dex/data/conditions.json @@ -186,8 +186,8 @@ "duration": 5, "onFieldResidualOrder": 1 }, - "snow": { - "name": "Snow", + "snowscape": { + "name": "Snowscape", "effectType": "Weather", "duration": 5, "onModifyDefPriority": 10, diff --git a/dex/data/formats-data.json b/dex/data/formats-data.json index 2c589ce6..0d7dc8b5 100644 --- a/dex/data/formats-data.json +++ b/dex/data/formats-data.json @@ -8459,7 +8459,7 @@ "natDexTier": "RU" }, "sinistea": {"tier": "LC"}, - "polteageist": {"tier": "UU", "doublesTier": "(DUU)", "natDexTier": "RU"}, + "polteageist": {"tier": "UUBL", "doublesTier": "(DUU)", "natDexTier": "RU"}, "hatenna": {"tier": "LC"}, "hattrem": {"tier": "NFE"}, "hatterene": {"tier": "OU", "doublesTier": "DOU", "natDexTier": "OU"}, @@ -8635,7 +8635,7 @@ "natDexTier": "Uber" }, "slitherwing": {"tier": "RU", "doublesTier": "(DUU)", "natDexTier": "RU"}, - "roaringmoon": {"tier": "OU", "doublesTier": "DOU", "natDexTier": "(OU)"}, + "roaringmoon": {"tier": "OU", "doublesTier": "DOU", "natDexTier": "OU"}, "irontreads": {"tier": "OU", "doublesTier": "(DUU)", "natDexTier": "OU"}, "ironmoth": {"tier": "OU", "doublesTier": "(DUU)", "natDexTier": "UU"}, "ironhands": {"tier": "UUBL", "doublesTier": "DOU", "natDexTier": "UUBL"}, @@ -8691,7 +8691,7 @@ "doublesTier": "DUU", "natDexTier": "UUBL" }, - "archaludon": {"tier": "Uber", "doublesTier": "DOU", "natDexTier": "UU"}, + "archaludon": {"tier": "Uber", "doublesTier": "DUber", "natDexTier": "UU"}, "hydrapple": {"tier": "UU", "doublesTier": "(DUU)", "natDexTier": "UU"}, "gougingfire": {"tier": "Uber", "doublesTier": "DOU", "natDexTier": "Uber"}, "ragingbolt": {"tier": "OU", "doublesTier": "DOU", "natDexTier": "OU"}, @@ -8779,6 +8779,8 @@ "scattervein": {"isNonstandard": "CAP", "tier": "CAP NFE"}, "hemogoblin": {"isNonstandard": "CAP", "tier": "CAP"}, "cresceidon": {"isNonstandard": "CAP", "tier": "CAP"}, + "chuggon": {"isNonstandard": "CAP", "tier": "CAP LC"}, + "draggalong": {"isNonstandard": "CAP", "tier": "CAP NFE"}, "chuggalong": {"isNonstandard": "CAP", "tier": "CAP"}, "shox": {"isNonstandard": "CAP", "tier": "CAP"}, "pokestarsmeargle": {"isNonstandard": "Custom", "tier": "Illegal"}, diff --git a/dex/data/learnsets.json b/dex/data/learnsets.json index 9314e53a..8ad9eff4 100644 --- a/dex/data/learnsets.json +++ b/dex/data/learnsets.json @@ -161654,7 +161654,7 @@ "spiritshackle": ["9L45", "8L45", "7L1"], "spite": ["9M", "7T", "7E"], "stoneedge": ["9M", "8M", "7M"], - "substitute": ["8M", "7M"], + "substitute": ["9M", "8M", "7M"], "surf": ["9M", "8M", "7M"], "swagger": ["7M"], "takedown": ["9M"], @@ -163541,6 +163541,123 @@ "zenheadbutt": ["9M"] } }, + "chuggon": { + "learnset": { + "acidspray": ["9M"], + "bite": ["9L8"], + "bodyslam": ["9M"], + "bulldoze": ["9M"], + "clangingscales": ["9L48"], + "crunch": ["9M", "9L32"], + "destinybond": ["9E"], + "dracometeor": ["9M"], + "dragonbreath": ["9L12"], + "dragoncheer": ["9M"], + "dragonclaw": ["9M"], + "dragonpulse": ["9M", "9L36"], + "dragonrush": ["9E"], + "encore": ["9M"], + "endure": ["9M"], + "entrainment": ["9E"], + "facade": ["9M"], + "gunkshot": ["9M", "9L52"], + "healbell": ["9E"], + "helpinghand": ["9M"], + "irondefense": ["9M", "9L44"], + "lastresort": ["9E"], + "metalsound": ["9M"], + "nobleroar": ["9E"], + "outrage": ["9M"], + "poisongas": ["9L1"], + "poisonjab": ["9M"], + "poisontail": ["9M"], + "protect": ["9M", "9L24"], + "raindance": ["9M"], + "rest": ["9M"], + "roar": ["9M", "9L28"], + "rockslide": ["9M"], + "rocktomb": ["9M"], + "scaleshot": ["9M"], + "scaryface": ["9M"], + "sleeptalk": ["9M"], + "sludge": ["9L20"], + "sludgebomb": ["9M", "9L40"], + "sludgewave": ["9M"], + "smog": ["9L4"], + "snarl": ["9M"], + "storedpower": ["9M"], + "substitute": ["9M"], + "sunnyday": ["9M"], + "tackle": ["9L1"], + "takedown": ["9M"], + "taunt": ["9M", "9L16"], + "terablast": ["9M"], + "toxic": ["9M"], + "trailblaze": ["9M"], + "uproar": ["9M"], + "venoshock": ["9M"] + } + }, + "draggalong": { + "learnset": { + "acidspray": ["9M"], + "bite": ["9L1"], + "bodyslam": ["9M"], + "bulldoze": ["9M"], + "clangingscales": ["9L51"], + "crunch": ["9M", "9L32"], + "destinybond": ["9E"], + "dracometeor": ["9M"], + "dragonbreath": ["9L12"], + "dragoncheer": ["9M"], + "dragonclaw": ["9M"], + "dragonpulse": ["9M", "9L36"], + "dragonrush": ["9E"], + "dragontail": ["9M"], + "encore": ["9M"], + "endure": ["9M"], + "entrainment": ["9E"], + "facade": ["9M"], + "gunkshot": ["9M", "9L56"], + "healbell": ["9E"], + "helpinghand": ["9M"], + "irondefense": ["9M", "9L46"], + "ironhead": ["9M"], + "lastresort": ["9E"], + "metalsound": ["9M"], + "nobleroar": ["9E"], + "outrage": ["9M"], + "poisongas": ["9L1"], + "poisonjab": ["9M"], + "poisontail": ["9M"], + "protect": ["9M", "9L24"], + "raindance": ["9M"], + "rest": ["9M"], + "roar": ["9M", "9L28"], + "rockslide": ["9M"], + "rocktomb": ["9M"], + "scaleshot": ["9M"], + "scaryface": ["9M"], + "sleeptalk": ["9M"], + "sludge": ["9L20"], + "sludgebomb": ["9M", "9L41"], + "sludgewave": ["9M"], + "smog": ["9L1"], + "snarl": ["9M"], + "stompingtantrum": ["9M"], + "storedpower": ["9M"], + "substitute": ["9M"], + "sunnyday": ["9M"], + "tackle": ["9L1"], + "takedown": ["9M"], + "taunt": ["9M", "9L16"], + "terablast": ["9M"], + "toxic": ["9M"], + "trailblaze": ["9M"], + "uproar": ["9M"], + "venoshock": ["9M"] + } + }, "chuggalong": { "learnset": { "acidspray": ["9M"], @@ -163563,6 +163680,7 @@ "earthquake": ["9M"], "encore": ["9M"], "endure": ["9M"], + "entrainment": ["9E"], "facade": ["9M"], "flashcannon": ["9M"], "gigaimpact": ["9M"], @@ -163601,8 +163719,9 @@ "surf": ["9M"], "tackle": ["9L1"], "takedown": ["9M"], - "taunt": ["9M", "9L12"], + "taunt": ["9M", "9L16"], "terablast": ["9M"], + "toxic": ["9M"], "trailblaze": ["9M"], "uproar": ["9M"], "venoshock": ["9M"] @@ -163620,30 +163739,76 @@ }, "shox": { "learnset": { + "blizzard": ["9M"], "bodyslam": ["9M"], - "discharge": ["9M"], - "doubleedge": ["9M"], + "bulldoze": ["9M"], + "charge": ["9M", "9L15"], + "chargebeam": ["9M"], + "charm": ["9M", "9L1"], + "dig": ["9M"], + "disarmingvoice": ["9M"], + "discharge": ["9L44"], + "doubleedge": ["9M", "9L58"], + "earthpower": ["9M"], + "earthquake": ["9M"], + "eerieimpulse": ["9M"], + "electricterrain": ["9M"], + "electroball": ["9M"], + "electroweb": ["9M"], + "endeavor": ["9M", "9E"], "endure": ["9M"], "facade": ["9M"], - "glare": ["9M"], + "gigaimpact": ["9M"], + "glare": ["9E"], + "growl": ["9L1"], + "headbutt": ["9L20"], "helpinghand": ["9M"], + "highhorsepower": ["9M"], + "hornattack": ["9L1"], + "hyperbeam": ["9M"], "hypervoice": ["9M"], "icebeam": ["9M"], + "icywind": ["9M"], + "ironhead": ["9M"], "knockoff": ["9M"], - "milkdrink": ["9M"], - "nuzzle": ["9M"], + "milkdrink": ["9L30"], + "mudshot": ["9M"], + "mudslap": ["9M"], + "nuzzle": ["9E"], + "playrough": ["9M"], "protect": ["9M"], + "raindance": ["9M"], "rest": ["9M"], + "rockslide": ["9M"], + "rocktomb": ["9M"], + "scaryface": ["9M", "9L51"], + "seedbomb": ["9M"], "sleeptalk": ["9M"], + "smartstrike": ["9M"], + "spark": ["9L25"], + "spitup": ["9E"], + "stockpile": ["9E"], + "stompingtantrum": ["9M"], "substitute": ["9M"], + "sunnyday": ["9M"], "superfang": ["9M"], - "takedown": ["9M"], + "supercellslam": ["9M"], + "swallow": ["9E"], + "tackle": ["9L1"], + "takedown": ["9M", "9L37"], "terablast": ["9M"], + "thief": ["9M"], + "throatchop": ["9M"], "thunder": ["9M"], - "thunderwave": ["9M"], + "thundershock": ["9L1"], + "thunderwave": ["9M", "9L1"], "thunderbolt": ["9M"], + "trailblaze": ["9M"], + "uproar": ["9M"], "voltswitch": ["9M"], - "wildcharge": ["9M"] + "wildcharge": ["9M"], + "zapcannon": ["9L65"], + "zenheadbutt": ["9M"] } }, "pokestarsmeargle": { diff --git a/dex/data/moves.json b/dex/data/moves.json index 88826d95..5435d33c 100644 --- a/dex/data/moves.json +++ b/dex/data/moves.json @@ -6867,7 +6867,7 @@ "pp": 10, "priority": 0, "flags": {}, - "weather": "snow", + "weather": "snowscape", "selfSwitch": true, "secondary": null, "target": "all", @@ -18626,7 +18626,7 @@ "pp": 10, "priority": 0, "flags": {}, - "weather": "snow", + "weather": "snowscape", "secondary": null, "target": "all", "type": "Ice", diff --git a/dex/data/species.json b/dex/data/species.json index e731d6c8..010b4e2b 100644 --- a/dex/data/species.json +++ b/dex/data/species.json @@ -30079,6 +30079,44 @@ "eggGroups": ["Amorphous", "Water 3"], "gen": 9 }, + "chuggon": { + "num": -73, + "name": "Chuggon", + "types": ["Dragon", "Poison"], + "baseStats": { + "hp": 30, + "atk": 23, + "def": 77, + "spa": 55, + "spd": 65, + "spe": 30 + }, + "abilities": {"0": "Shell Armor", "1": "White Smoke", "H": "Slow Start"}, + "weightkg": 50, + "evos": ["Draggalong"], + "eggGroups": ["Dragon", "Mineral"], + "gen": 9 + }, + "draggalong": { + "num": -74, + "name": "Draggalong", + "types": ["Dragon", "Poison"], + "baseStats": { + "hp": 40, + "atk": 33, + "def": 92, + "spa": 95, + "spd": 80, + "spe": 85 + }, + "abilities": {"0": "Armor Tail", "1": "White Smoke", "H": "Slow Start"}, + "weightkg": 110, + "prevo": "Chuggon", + "evoLevel": 36, + "evos": ["Chuggalong"], + "eggGroups": ["Dragon", "Mineral"], + "gen": 9 + }, "chuggalong": { "num": -75, "name": "Chuggalong", @@ -30093,6 +30131,8 @@ }, "abilities": {"0": "Armor Tail", "1": "White Smoke", "H": "Slow Start"}, "weightkg": 201.6, + "prevo": "Draggalong", + "evoLevel": 46, "eggGroups": ["Dragon", "Mineral"], "gen": 9 }, @@ -30102,13 +30142,17 @@ "types": ["Electric", "Normal"], "baseStats": { "hp": 136, - "atk": 73, - "def": 81, - "spa": 90, - "spd": 98, + "atk": 55, + "def": 87, + "spa": 108, + "spd": 108, "spe": 56 }, - "abilities": {"0": "Electromorphosis", "1": "Sticky Hold"}, + "abilities": { + "0": "Electromorphosis", + "1": "Sticky Hold", + "H": "Cud Chew" + }, "weightkg": 99.9, "eggGroups": ["Field"], "gen": 9 diff --git a/dex/package.json b/dex/package.json index 18801a0f..32c9ad04 100644 --- a/dex/package.json +++ b/dex/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/dex", - "version": "0.9.29", + "version": "0.9.30", "description": "A unification of Pokémon Showdown's client's and server's data layers", "repository": "github:pkmn/ps", "license": "MIT", @@ -16,7 +16,7 @@ "build" ], "dependencies": { - "@pkmn/dex-types": "^0.9.29" + "@pkmn/dex-types": "^0.9.30" }, "scripts": { "lint": "eslint --cache *.ts", diff --git a/dex/types/package.json b/dex/types/package.json index f004c0e7..8503463b 100644 --- a/dex/types/package.json +++ b/dex/types/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/dex-types", - "version": "0.9.29", + "version": "0.9.30", "types": "index.d.ts", "description": "Common Pokémon Showdown Dex types shared by @pkmn/dex and @pkmn/sim", "repository": "github:pkmn/ps", diff --git a/img/package.json b/img/package.json index 038efdca..02fdd3d1 100644 --- a/img/package.json +++ b/img/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/img", - "version": "0.2.34", + "version": "0.2.35", "description": "Logic for displaying Pokémon Showdown's sprite/icon resources", "repository": "github:pkmn/ps", "license": "MIT", diff --git a/img/src/data/data.json b/img/src/data/data.json index d70824d9..b0ace89e 100644 --- a/img/src/data/data.json +++ b/img/src/data/data.json @@ -1 +1 @@ -{"pokemon":{"bulbasaur":{"n":1,"f":{"w":45,"h":49},"b":{"w":52,"h":50},"bw":{"f":{"w":37,"h":38},"b":{"w":32,"h":37}},"g":1},"ivysaur":{"n":2,"f":{"w":84,"h":66},"b":{"w":76,"h":68},"bw":{"f":{"w":58,"h":51},"b":{"w":57,"h":45}},"g":1},"venusaur":{"n":3,"f":{"w":106,"h":77},"b":{"w":95,"h":78},"bf":{"w":108,"h":88},"bw":{"f":{"w":86,"h":71},"ff":{"w":86,"h":71},"b":{"w":89,"h":64},"bf":{"w":89,"h":64}},"g":1},"venusaurmega":{"n":3,"i":1320,"f":{"w":136,"h":91},"b":{"w":131,"h":92},"g":6,"s":8},"venusaurgmax":{"n":3,"i":1397,"g":8,"s":8},"charmander":{"n":4,"f":{"w":48,"h":57},"b":{"w":64,"h":57},"bw":{"f":{"w":41,"h":42},"b":{"w":44,"h":44}},"g":1},"charmeleon":{"n":5,"f":{"w":60,"h":70},"b":{"w":78,"h":75},"bw":{"f":{"w":69,"h":56},"b":{"w":67,"h":60}},"g":1},"charizard":{"n":6,"f":{"w":133,"h":140},"b":{"w":172,"h":166},"bw":{"f":{"w":89,"h":91},"b":{"w":98,"h":83}},"g":1},"charizardmegax":{"n":6,"i":1321,"f":{"w":161,"h":107},"b":{"w":186,"h":100},"bw":{"f":{"w":105,"h":94}},"g":6,"s":9},"charizardmegay":{"n":6,"i":1322,"f":{"w":201,"h":166},"b":{"w":256,"h":184},"g":6,"s":9},"charizardgmax":{"n":6,"i":1370,"f":{"w":163,"h":150},"b":{"w":216,"h":211},"g":8,"s":9},"squirtle":{"n":7,"f":{"w":53,"h":54},"b":{"w":62,"h":53},"bw":{"f":{"w":39,"h":43},"b":{"w":39,"h":45}},"g":1},"wartortle":{"n":8,"f":{"w":56,"h":73},"b":{"w":70,"h":72},"bw":{"f":{"w":60,"h":57},"b":{"w":56,"h":62}},"g":1},"blastoise":{"n":9,"f":{"w":88,"h":83},"b":{"w":97,"h":83},"bw":{"f":{"w":70,"h":66},"b":{"w":66,"h":67}},"g":1},"blastoisemega":{"n":9,"i":1323,"f":{"w":110,"h":114},"b":{"w":107,"h":108},"g":6,"s":9},"blastoisegmax":{"n":9,"i":1398,"g":8,"s":9},"caterpie":{"n":10,"f":{"w":46,"h":45},"b":{"w":50,"h":45},"bw":{"f":{"w":36,"h":37},"b":{"w":38,"h":35}},"g":1},"metapod":{"n":11,"f":{"w":42,"h":54},"b":{"w":47,"h":54},"bw":{"f":{"w":37,"h":38},"b":{"w":43,"h":43}},"g":1},"butterfree":{"n":12,"f":{"w":93,"h":89},"b":{"w":90,"h":95},"bf":{"w":103,"h":103},"bw":{"f":{"w":61,"h":58},"ff":{"w":61,"h":58},"b":{"w":64,"h":57},"bf":{"w":64,"h":57}},"g":1},"butterfreegmax":{"n":12,"i":1371,"f":{"w":247,"h":126},"b":{"w":245,"h":211},"g":8,"s":10},"weedle":{"n":13,"f":{"w":35,"h":53},"b":{"w":53,"h":53},"bw":{"f":{"w":37,"h":47},"b":{"w":42,"h":46}},"g":1},"kakuna":{"n":14,"f":{"w":36,"h":58},"b":{"w":35,"h":58},"bw":{"f":{"w":31,"h":40},"b":{"w":32,"h":41}},"g":1},"beedrill":{"n":15,"f":{"w":75,"h":86},"b":{"w":76,"h":90},"bw":{"f":{"w":73,"h":69},"b":{"w":76,"h":68}},"g":1},"beedrillmega":{"n":15,"i":1324,"f":{"w":86,"h":81},"b":{"w":77,"h":78},"bw":{"f":{"w":103,"h":88}},"g":6,"s":8},"pidgey":{"n":16,"f":{"w":36,"h":49},"b":{"w":49,"h":48},"bw":{"f":{"w":42,"h":48},"b":{"w":45,"h":47}},"g":1},"pidgeotto":{"n":17,"f":{"w":115,"h":86},"b":{"w":96,"h":85},"bw":{"f":{"w":82,"h":117},"b":{"w":95,"h":95}},"g":1},"pidgeot":{"n":18,"f":{"w":124,"h":124},"b":{"w":110,"h":117},"bw":{"f":{"w":58,"h":68},"b":{"w":68,"h":66}},"g":1},"pidgeotmega":{"n":18,"i":1325,"f":{"w":175,"h":60},"b":{"w":219,"h":64},"g":6,"s":7},"rattata":{"n":19,"f":{"w":43,"h":61},"ff":{"w":42,"h":61},"b":{"w":43,"h":64},"bf":{"w":54,"h":69},"bw":{"f":{"w":43,"h":43},"ff":{"w":43,"h":43},"b":{"w":59,"h":42},"bf":{"w":57,"h":42}},"g":1},"rattataalola":{"n":19,"i":1151,"f":{"w":49,"h":52},"b":{"w":59,"h":51},"bw":{"f":{"w":53,"h":52},"b":{"w":62,"h":49}},"g":7,"s":7},"raticate":{"n":20,"f":{"w":68,"h":64},"ff":{"w":68,"h":64},"b":{"w":87,"h":69},"bw":{"f":{"w":65,"h":51},"ff":{"w":63,"h":51},"b":{"w":66,"h":52},"bf":{"w":66,"h":52}},"g":1},"raticatealola":{"n":20,"i":1152,"f":{"w":70,"h":59},"b":{"w":81,"h":59},"bw":{"f":{"w":60,"h":47},"b":{"w":70,"h":52}},"g":7,"s":8},"raticatealolatotem":{"n":20,"i":1152,"g":7,"s":8},"spearow":{"n":21,"f":{"w":33,"h":52},"b":{"w":46,"h":53},"bw":{"f":{"w":33,"h":40},"b":{"w":34,"h":40}},"g":1},"fearow":{"n":22,"f":{"w":148,"h":135},"b":{"w":152,"h":142},"bw":{"f":{"w":82,"h":105},"b":{"w":78,"h":112}},"g":1},"ekans":{"n":23,"f":{"w":46,"h":42},"b":{"w":54,"h":41},"bw":{"f":{"w":59,"h":45},"b":{"w":57,"h":50}},"g":1},"arbok":{"n":24,"f":{"w":87,"h":83},"b":{"w":115,"h":82},"bw":{"f":{"w":82,"h":75},"b":{"w":86,"h":71}},"g":1},"pikachu":{"n":25,"f":{"w":60,"h":60},"ff":{"w":60,"h":60},"b":{"w":65,"h":61},"bf":{"w":77,"h":70},"bw":{"f":{"w":50,"h":46},"ff":{"w":50,"h":46},"b":{"w":40,"h":47},"bf":{"w":41,"h":47}},"g":1},"pikachucosplay":{"n":25,"i":1039,"f":{"w":60,"h":61},"b":{"w":62,"h":61},"g":6,"s":7},"pikachurockstar":{"n":25,"i":1038,"f":{"w":63,"h":64},"b":{"w":77,"h":69},"g":6,"s":7,"nd":true},"pikachubelle":{"n":25,"i":1034,"il":1404,"f":{"w":55,"h":69},"b":{"w":67,"h":74},"g":6,"s":7,"nd":true},"pikachupopstar":{"n":25,"i":1037,"il":1405,"f":{"w":65,"h":64},"b":{"w":84,"h":69},"g":6,"s":7,"nd":true},"pikachuphd":{"n":25,"i":1036,"f":{"w":59,"h":65},"b":{"w":78,"h":68},"g":6,"s":7,"nd":true},"pikachulibre":{"n":25,"i":1035,"f":{"w":68,"h":56},"g":6,"s":7,"nd":true},"pikachuoriginal":{"n":25,"i":1185,"il":1503,"f":{"w":60,"h":60},"b":{"w":80,"h":64},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachuhoenn":{"n":25,"i":1186,"f":{"w":60,"h":60},"b":{"w":80,"h":67},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachusinnoh":{"n":25,"i":1187,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachuunova":{"n":25,"i":1188,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachukalos":{"n":25,"i":1189,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachualola":{"n":25,"i":1190,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachupartner":{"n":25,"i":1191,"il":1504,"f":{"w":60,"h":59},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7},"pikachustarter":{"n":25,"i":1196,"f":{"w":60,"h":59},"ff":{"w":60,"h":59},"b":{"w":80,"h":65},"bf":{"w":80,"h":65},"bw":{"f":{"w":50,"h":46},"ff":{"w":50,"h":46},"b":{"w":43,"h":49},"bf":{"w":41,"h":47}},"g":7,"s":7},"pikachugmax":{"n":25,"i":1372,"f":{"w":92,"h":155},"b":{"w":84,"h":162},"g":8,"s":7},"pikachuworld":{"n":25,"i":1231,"bw":{"f":{"w":48,"h":44}},"g":8,"s":7},"raichu":{"n":26,"f":{"w":69,"h":103},"b":{"w":91,"h":113},"bf":{"w":93,"h":111},"bw":{"f":{"w":74,"h":73},"ff":{"w":71,"h":73},"b":{"w":76,"h":73},"bf":{"w":73,"h":73}},"g":1},"raichualola":{"n":26,"i":1153,"f":{"w":92,"h":93},"b":{"w":88,"h":93},"bw":{"f":{"w":105,"h":96},"b":{"w":123,"h":93}},"g":7,"s":6},"sandshrew":{"n":27,"f":{"w":45,"h":47},"b":{"w":56,"h":46},"bw":{"f":{"w":36,"h":39},"b":{"w":41,"h":38}},"g":1},"sandshrewalola":{"n":27,"i":1154,"f":{"w":39,"h":46},"b":{"w":51,"h":45},"bw":{"f":{"w":40,"h":38},"b":{"w":44,"h":38}},"g":7,"s":9},"sandslash":{"n":28,"f":{"w":61,"h":68},"b":{"w":68,"h":69},"bw":{"f":{"w":57,"h":53},"b":{"w":57,"h":52}},"g":1},"sandslashalola":{"n":28,"i":1155,"f":{"w":74,"h":84},"b":{"w":75,"h":86},"bw":{"f":{"w":61,"h":58},"b":{"w":56,"h":58}},"g":7,"s":9},"nidoranf":{"n":29,"f":{"w":43,"h":41},"b":{"w":42,"h":41},"bw":{"f":{"w":35,"h":34},"b":{"w":33,"h":36}},"g":1},"nidorina":{"n":30,"f":{"w":41,"h":56},"b":{"w":51,"h":56},"bw":{"f":{"w":52,"h":47},"b":{"w":51,"h":43}},"g":1},"nidoqueen":{"n":31,"f":{"w":64,"h":82},"b":{"w":85,"h":80},"bw":{"f":{"w":77,"h":70},"b":{"w":85,"h":71}},"g":1},"nidoranm":{"n":32,"f":{"w":52,"h":52},"b":{"w":54,"h":52},"bw":{"f":{"w":37,"h":37},"b":{"w":37,"h":43}},"g":1},"nidorino":{"n":33,"f":{"w":60,"h":56},"b":{"w":60,"h":56},"bw":{"f":{"w":52,"h":56},"b":{"w":54,"h":56}},"g":1},"nidoking":{"n":34,"f":{"w":105,"h":83},"b":{"w":128,"h":76},"bw":{"f":{"w":86,"h":71},"b":{"w":88,"h":69}},"g":1},"clefairy":{"n":35,"il":1406,"f":{"w":56,"h":48},"b":{"w":65,"h":48},"bw":{"f":{"w":48,"h":42},"b":{"w":55,"h":43}},"g":1},"clefable":{"n":36,"il":1407,"f":{"w":80,"h":65},"b":{"w":74,"h":68},"bw":{"f":{"w":54,"h":52},"b":{"w":55,"h":51}},"g":1},"vulpix":{"n":37,"f":{"w":52,"h":47},"b":{"w":58,"h":49},"bw":{"f":{"w":60,"h":50},"b":{"w":62,"h":52}},"g":1},"vulpixalola":{"n":37,"i":1156,"f":{"w":44,"h":47},"b":{"w":55,"h":46},"bw":{"f":{"w":59,"h":46},"b":{"w":63,"h":49}},"g":7,"s":6},"ninetales":{"n":38,"f":{"w":79,"h":77},"b":{"w":95,"h":79},"bw":{"f":{"w":74,"h":73},"b":{"w":76,"h":64}},"g":1},"ninetalesalola":{"n":38,"i":1157,"f":{"w":89,"h":70},"b":{"w":113,"h":70},"bw":{"f":{"w":86,"h":67},"b":{"w":82,"h":69}},"g":7,"s":9},"jigglypuff":{"n":39,"il":1408,"f":{"w":46,"h":46},"b":{"w":44,"h":45},"bw":{"f":{"w":47,"h":46},"b":{"w":46,"h":48}},"g":1},"wigglytuff":{"n":40,"il":1409,"f":{"w":72,"h":68},"b":{"w":57,"h":70},"bw":{"f":{"w":48,"h":82},"b":{"w":47,"h":82}},"g":1},"zubat":{"n":41,"f":{"w":104,"h":84},"ff":{"w":110,"h":89},"b":{"w":108,"h":88},"bw":{"f":{"w":53,"h":46},"ff":{"w":53,"h":46},"b":{"w":49,"h":59},"bf":{"w":49,"h":59}},"g":1},"golbat":{"n":42,"f":{"w":160,"h":136},"ff":{"w":160,"h":136},"b":{"w":147,"h":138},"bw":{"f":{"w":110,"h":82},"ff":{"w":110,"h":82},"b":{"w":95,"h":84},"bf":{"w":95,"h":84}},"g":1},"oddish":{"n":43,"f":{"w":52,"h":48},"b":{"w":42,"h":48},"bw":{"f":{"w":37,"h":50},"b":{"w":41,"h":51}},"g":1},"gloom":{"n":44,"f":{"w":62,"h":53},"b":{"w":64,"h":53},"bf":{"w":75,"h":60},"bw":{"f":{"w":50,"h":45},"ff":{"w":50,"h":45},"b":{"w":49,"h":47},"bf":{"w":49,"h":47}},"g":1},"vileplume":{"n":45,"f":{"w":81,"h":56},"b":{"w":81,"h":54},"bf":{"w":87,"h":62},"bw":{"f":{"w":56,"h":50},"ff":{"w":56,"h":50},"b":{"w":56,"h":48},"bf":{"w":56,"h":48}},"g":1},"paras":{"n":46,"f":{"w":52,"h":34},"b":{"w":54,"h":33},"bw":{"f":{"w":48,"h":37},"b":{"w":48,"h":32}},"g":1},"parasect":{"n":47,"f":{"w":77,"h":62},"b":{"w":78,"h":63},"bw":{"f":{"w":62,"h":63},"b":{"w":70,"h":52}},"g":1},"venonat":{"n":48,"f":{"w":58,"h":63},"b":{"w":55,"h":62},"bw":{"f":{"w":42,"h":53},"b":{"w":42,"h":52}},"g":1},"venomoth":{"n":49,"f":{"w":123,"h":85},"b":{"w":109,"h":94},"bw":{"f":{"w":100,"h":74},"b":{"w":104,"h":73}},"g":1},"diglett":{"n":50,"f":{"w":43,"h":35},"b":{"w":44,"h":35},"bw":{"f":{"w":38,"h":31},"b":{"w":38,"h":32}},"g":1},"diglettalola":{"n":50,"i":1158,"f":{"w":43,"h":43},"b":{"w":43,"h":43},"bw":{"f":{"w":31,"h":33},"b":{"w":31,"h":33}},"g":7,"s":7},"dugtrio":{"n":51,"f":{"w":65,"h":50},"b":{"w":68,"h":51},"bw":{"f":{"w":52,"h":42},"b":{"w":52,"h":43}},"g":1},"dugtrioalola":{"n":51,"i":1159,"il":1410,"f":{"w":75,"h":49},"b":{"w":85,"h":49},"bw":{"f":{"w":48,"h":45},"b":{"w":50,"h":45}},"g":7,"s":7},"meowth":{"n":52,"f":{"w":49,"h":61},"b":{"w":51,"h":60},"bw":{"f":{"w":48,"h":65},"b":{"w":59,"h":64}},"g":1},"meowthalola":{"n":52,"i":1160,"f":{"w":59,"h":60},"b":{"w":60,"h":59},"bw":{"f":{"w":42,"h":46},"b":{"w":48,"h":46}},"g":7,"s":6},"meowthgalar":{"n":52,"i":1198,"f":{"w":55,"h":69},"b":{"w":47,"h":68},"bw":{"f":{"w":53,"h":63}},"g":8,"s":6,"m":["gen5ani-shiny"]},"meowthgmax":{"n":52,"i":1373,"f":{"w":107,"h":160},"b":{"w":106,"h":164},"bw":{"f":{"w":96,"h":96}},"g":8,"s":6,"m":["gen5ani-shiny"]},"persian":{"n":53,"f":{"w":66,"h":70},"b":{"w":114,"h":66},"bw":{"f":{"w":72,"h":62},"b":{"w":78,"h":56}},"g":1},"persianalola":{"n":53,"i":1161,"f":{"w":70,"h":72},"b":{"w":111,"h":64},"bw":{"f":{"w":74,"h":66},"b":{"w":74,"h":67}},"g":7,"s":7},"psyduck":{"n":54,"f":{"w":51,"h":53},"b":{"w":42,"h":54},"bw":{"f":{"w":38,"h":46},"b":{"w":37,"h":45}},"g":1},"golduck":{"n":55,"f":{"w":68,"h":74},"b":{"w":72,"h":74},"bw":{"f":{"w":60,"h":59},"b":{"w":55,"h":57}},"g":1},"mankey":{"n":56,"f":{"w":52,"h":56},"b":{"w":65,"h":60},"bw":{"f":{"w":65,"h":61},"b":{"w":61,"h":59}},"g":1},"primeape":{"n":57,"f":{"w":71,"h":65},"b":{"w":69,"h":65},"bw":{"f":{"w":67,"h":61},"b":{"w":72,"h":58}},"g":1},"growlithe":{"n":58,"f":{"w":45,"h":57},"b":{"w":62,"h":57},"bw":{"f":{"w":56,"h":51},"b":{"w":56,"h":58}},"g":1},"growlithehisui":{"n":58,"i":1238,"f":{"w":44,"h":49},"b":{"w":58,"h":50},"g":8,"s":9},"arcanine":{"n":59,"f":{"w":74,"h":82},"b":{"w":118,"h":82},"bw":{"f":{"w":78,"h":69},"b":{"w":86,"h":69}},"g":1},"arcaninehisui":{"n":59,"i":1239,"f":{"w":85,"h":85},"b":{"w":122,"h":114},"g":8,"s":8},"poliwag":{"n":60,"f":{"w":55,"h":40},"b":{"w":68,"h":40},"bw":{"f":{"w":53,"h":34},"b":{"w":54,"h":35}},"g":1},"poliwhirl":{"n":61,"il":1411,"f":{"w":73,"h":50},"b":{"w":60,"h":49},"bw":{"f":{"w":74,"h":55},"b":{"w":80,"h":58}},"g":1},"poliwrath":{"n":62,"il":1412,"f":{"w":73,"h":63},"b":{"w":70,"h":60},"bw":{"f":{"w":81,"h":57},"b":{"w":74,"h":57}},"g":1},"abra":{"n":63,"f":{"w":69,"h":53},"b":{"w":74,"h":51},"bw":{"f":{"w":64,"h":53},"b":{"w":71,"h":56}},"g":1},"kadabra":{"n":64,"f":{"w":70,"h":71},"b":{"w":93,"h":69},"bf":{"w":101,"h":75},"bw":{"f":{"w":78,"h":61},"ff":{"w":78,"h":61},"b":{"w":80,"h":65},"bf":{"w":80,"h":65}},"g":1},"alakazam":{"n":65,"f":{"w":77,"h":79},"b":{"w":71,"h":79},"bf":{"w":76,"h":86},"bw":{"f":{"w":92,"h":69},"ff":{"w":92,"h":69},"b":{"w":83,"h":66},"bf":{"w":83,"h":66}},"g":1},"alakazammega":{"n":65,"i":1326,"f":{"w":113,"h":115},"b":{"w":109,"h":109},"bw":{"f":{"w":88,"h":98}},"g":6,"s":8},"machop":{"n":66,"f":{"w":39,"h":63},"b":{"w":44,"h":63},"bw":{"f":{"w":50,"h":50},"b":{"w":52,"h":51}},"g":1},"machoke":{"n":67,"f":{"w":72,"h":87},"b":{"w":60,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":61,"h":72}},"g":1},"machamp":{"n":68,"f":{"w":84,"h":100},"b":{"w":73,"h":97},"bw":{"f":{"w":63,"h":77},"b":{"w":67,"h":77}},"g":1},"machampgmax":{"n":68,"i":1374,"f":{"w":129,"h":133},"b":{"w":107,"h":115},"g":8,"s":7},"bellsprout":{"n":69,"f":{"w":55,"h":49},"b":{"w":41,"h":49},"bw":{"f":{"w":41,"h":44},"b":{"w":44,"h":52}},"g":1},"weepinbell":{"n":70,"f":{"w":65,"h":51},"b":{"w":51,"h":52},"bw":{"f":{"w":68,"h":50},"b":{"w":72,"h":54}},"g":1},"victreebel":{"n":71,"f":{"w":98,"h":82},"b":{"w":83,"h":86},"bw":{"f":{"w":65,"h":71},"b":{"w":69,"h":70}},"g":1},"tentacool":{"n":72,"f":{"w":45,"h":73},"b":{"w":45,"h":71},"bw":{"f":{"w":57,"h":70},"b":{"w":62,"h":77}},"g":1},"tentacruel":{"n":73,"f":{"w":68,"h":85},"b":{"w":69,"h":82},"bw":{"f":{"w":83,"h":85},"b":{"w":84,"h":85}},"g":1},"geodude":{"n":74,"f":{"w":75,"h":35},"b":{"w":56,"h":34},"bw":{"f":{"w":61,"h":45},"b":{"w":57,"h":52}},"g":1},"geodudealola":{"n":74,"i":1162,"f":{"w":60,"h":43},"b":{"w":46,"h":43},"bw":{"f":{"w":70,"h":42},"b":{"w":71,"h":44}},"g":7,"s":7},"graveler":{"n":75,"f":{"w":107,"h":59},"b":{"w":86,"h":59},"bw":{"f":{"w":71,"h":44},"b":{"w":65,"h":43}},"g":1},"graveleralola":{"n":75,"i":1163,"f":{"w":104,"h":59},"b":{"w":88,"h":58},"bw":{"f":{"w":84,"h":46},"b":{"w":81,"h":47}},"g":7,"s":8},"golem":{"n":76,"f":{"w":94,"h":78},"b":{"w":87,"h":77},"bw":{"f":{"w":72,"h":57},"b":{"w":68,"h":56}},"g":1},"golemalola":{"n":76,"i":1164,"f":{"w":75,"h":87},"b":{"w":69,"h":85},"bw":{"f":{"w":61,"h":74},"b":{"w":61,"h":69}},"g":7,"s":5},"ponyta":{"n":77,"f":{"w":51,"h":68},"b":{"w":60,"h":69},"bw":{"f":{"w":58,"h":57},"b":{"w":58,"h":59}},"g":1},"ponytagalar":{"n":77,"i":1199,"f":{"w":60,"h":71},"b":{"w":73,"h":72},"bw":{"f":{"w":69,"h":57}},"g":8,"s":6},"rapidash":{"n":78,"f":{"w":91,"h":95},"b":{"w":126,"h":96},"bw":{"f":{"w":74,"h":73},"b":{"w":76,"h":76}},"g":1},"rapidashgalar":{"n":78,"i":1200,"f":{"w":64,"h":98},"b":{"w":87,"h":95},"g":8,"s":8},"slowpoke":{"n":79,"f":{"w":47,"h":58},"b":{"w":65,"h":60},"bw":{"f":{"w":65,"h":54},"b":{"w":67,"h":51}},"g":1},"slowpokegalar":{"n":79,"i":1228,"f":{"w":76,"h":50},"b":{"w":155,"h":58},"bw":{"f":{"w":60,"h":35}},"g":8,"s":8},"slowbro":{"n":80,"f":{"w":92,"h":71},"b":{"w":97,"h":68},"bw":{"f":{"w":62,"h":60},"b":{"w":76,"h":58}},"g":1},"slowbromega":{"n":80,"i":1327,"f":{"w":75,"h":87},"b":{"w":78,"h":87},"g":6,"s":7},"slowbrogalar":{"n":80,"i":1229,"f":{"w":55,"h":75},"b":{"w":72,"h":71},"bw":{"f":{"w":82,"h":60}},"g":8,"s":7},"magnemite":{"n":81,"f":{"w":49,"h":35},"b":{"w":41,"h":35},"bw":{"f":{"w":37,"h":33},"b":{"w":36,"h":31}},"g":1},"magneton":{"n":82,"f":{"w":89,"h":69},"b":{"w":66,"h":70},"bw":{"f":{"w":68,"h":60},"b":{"w":73,"h":59}},"g":1},"farfetchd":{"n":83,"f":{"w":44,"h":50},"b":{"w":43,"h":51},"bw":{"f":{"w":45,"h":49},"b":{"w":46,"h":50}},"g":1},"farfetchdgalar":{"n":83,"i":1201,"f":{"w":97,"h":58},"b":{"w":100,"h":59},"bw":{"f":{"w":88,"h":48},"b":{"w":86,"h":48}},"g":8,"s":9},"doduo":{"n":84,"f":{"w":42,"h":70},"b":{"w":43,"h":70},"bf":{"w":54,"h":77},"bw":{"f":{"w":60,"h":54},"ff":{"w":60,"h":54},"b":{"w":60,"h":57},"bf":{"w":60,"h":57}},"g":1},"dodrio":{"n":85,"f":{"w":68,"h":102},"b":{"w":80,"h":100},"bf":{"w":79,"h":97},"bw":{"f":{"w":70,"h":76},"ff":{"w":70,"h":76},"b":{"w":73,"h":76},"bf":{"w":73,"h":76}},"g":1},"seel":{"n":86,"f":{"w":66,"h":45},"b":{"w":80,"h":43},"bw":{"f":{"w":62,"h":47},"b":{"w":61,"h":43}},"g":1},"dewgong":{"n":87,"f":{"w":99,"h":69},"b":{"w":137,"h":68},"bw":{"f":{"w":75,"h":75},"b":{"w":76,"h":87}},"g":1},"grimer":{"n":88,"f":{"w":68,"h":51},"b":{"w":72,"h":49},"bw":{"f":{"w":72,"h":42},"b":{"w":71,"h":46}},"g":1},"grimeralola":{"n":88,"i":1165,"f":{"w":65,"h":52},"b":{"w":70,"h":52},"bw":{"f":{"w":61,"h":40},"b":{"w":58,"h":39}},"g":7,"s":6},"muk":{"n":89,"f":{"w":137,"h":79},"b":{"w":132,"h":74},"bw":{"f":{"w":94,"h":68},"b":{"w":100,"h":82}},"g":1},"mukalola":{"n":89,"i":1166,"il":1413,"f":{"w":148,"h":86},"b":{"w":141,"h":83},"bw":{"f":{"w":83,"h":64},"b":{"w":93,"h":62}},"g":7,"s":3},"shellder":{"n":90,"f":{"w":52,"h":37},"b":{"w":49,"h":36},"bw":{"f":{"w":42,"h":38},"b":{"w":47,"h":38}},"g":1},"cloyster":{"n":91,"f":{"w":83,"h":85},"b":{"w":82,"h":86},"bw":{"f":{"w":73,"h":65},"b":{"w":69,"h":68}},"g":1},"gastly":{"n":92,"f":{"w":52,"h":61},"b":{"w":53,"h":60},"bw":{"f":{"w":67,"h":75},"b":{"w":64,"h":78}},"g":1},"haunter":{"n":93,"f":{"w":85,"h":73},"b":{"w":97,"h":70},"bw":{"f":{"w":85,"h":71},"b":{"w":91,"h":71}},"g":1},"gengar":{"n":94,"f":{"w":84,"h":78},"b":{"w":72,"h":78},"bw":{"f":{"w":79,"h":65},"b":{"w":72,"h":65}},"g":1},"gengarmega":{"n":94,"i":1328,"f":{"w":112,"h":92},"b":{"w":123,"h":94},"g":6,"s":6},"gengargmax":{"n":94,"i":1375,"f":{"w":155,"h":111},"b":{"w":146,"h":107},"g":8,"s":6},"onix":{"n":95,"f":{"w":90,"h":115},"b":{"w":98,"h":112},"bw":{"f":{"w":73,"h":74},"b":{"w":98,"h":70}},"g":1},"drowzee":{"n":96,"f":{"w":62,"h":57},"b":{"w":58,"h":57},"bw":{"f":{"w":52,"h":58},"b":{"w":57,"h":57}},"g":1},"hypno":{"n":97,"f":{"w":86,"h":78},"b":{"w":75,"h":75},"bf":{"w":81,"h":77},"bw":{"f":{"w":67,"h":62},"ff":{"w":67,"h":62},"b":{"w":65,"h":60},"bf":{"w":65,"h":60}},"g":1},"krabby":{"n":98,"f":{"w":64,"h":50},"b":{"w":58,"h":52},"bw":{"f":{"w":55,"h":40},"b":{"w":56,"h":43}},"g":1},"kingler":{"n":99,"il":1414,"f":{"w":87,"h":83},"b":{"w":78,"h":74},"bw":{"f":{"w":82,"h":59},"b":{"w":83,"h":62}},"g":1},"kinglergmax":{"n":99,"i":1376,"f":{"w":151,"h":146},"b":{"w":120,"h":134},"g":8,"s":7},"voltorb":{"n":100,"f":{"w":45,"h":43},"b":{"w":45,"h":43},"bw":{"f":{"w":46,"h":31},"b":{"w":46,"h":31}},"g":1},"voltorbhisui":{"n":100,"i":1240,"f":{"w":61,"h":44},"b":{"w":55,"h":44},"bw":{"f":{"w":51,"h":48}},"g":8,"s":7},"electrode":{"n":101,"f":{"w":72,"h":59},"b":{"w":73,"h":59},"bw":{"f":{"w":48,"h":52},"b":{"w":48,"h":52}},"g":1},"electrodehisui":{"n":101,"i":1241,"f":{"w":79,"h":60},"b":{"w":81,"h":59},"g":8,"s":9},"exeggcute":{"n":102,"f":{"w":77,"h":29},"b":{"w":84,"h":29},"bw":{"f":{"w":54,"h":43},"b":{"w":55,"h":40}},"g":1},"exeggutor":{"n":103,"f":{"w":142,"h":99},"b":{"w":130,"h":100},"bw":{"f":{"w":78,"h":73},"b":{"w":75,"h":71}},"g":1},"exeggutoralola":{"n":103,"i":1167,"f":{"w":111,"h":180},"b":{"w":117,"h":181},"bw":{"f":{"w":113,"h":102},"b":{"w":109,"h":100}},"g":7,"s":9},"cubone":{"n":104,"f":{"w":40,"h":49},"b":{"w":42,"h":47},"bw":{"f":{"w":49,"h":43},"b":{"w":53,"h":41}},"g":1},"marowak":{"n":105,"f":{"w":47,"h":67},"b":{"w":55,"h":68},"bw":{"f":{"w":67,"h":59},"b":{"w":65,"h":52}},"g":1},"marowakalola":{"n":105,"i":1168,"f":{"w":106,"h":90},"b":{"w":105,"h":99},"bw":{"f":{"w":71,"h":72},"b":{"w":66,"h":76}},"g":7,"s":7},"marowakalolatotem":{"n":105,"i":1168,"g":7,"s":7},"hitmonlee":{"n":106,"f":{"w":45,"h":68},"b":{"w":37,"h":67},"bw":{"f":{"w":67,"h":78},"b":{"w":62,"h":75}},"g":1},"hitmonchan":{"n":107,"f":{"w":51,"h":77},"b":{"w":52,"h":73},"bw":{"f":{"w":34,"h":59},"b":{"w":44,"h":56}},"g":1},"lickitung":{"n":108,"f":{"w":58,"h":59},"b":{"w":77,"h":58},"bw":{"f":{"w":68,"h":52},"b":{"w":76,"h":53}},"g":1},"koffing":{"n":109,"f":{"w":77,"h":77},"b":{"w":72,"h":73},"bw":{"f":{"w":90,"h":59},"b":{"w":78,"h":64}},"g":1},"weezing":{"n":110,"f":{"w":103,"h":88},"b":{"w":101,"h":94},"bw":{"f":{"w":85,"h":68},"b":{"w":87,"h":69}},"g":1},"weezinggalar":{"n":110,"i":1202,"f":{"w":138,"h":148},"b":{"w":167,"h":148},"bw":{"f":{"w":91,"h":93}},"g":8,"s":7},"rhyhorn":{"n":111,"f":{"w":66,"h":57},"b":{"w":73,"h":58},"bf":{"w":81,"h":62},"bw":{"f":{"w":68,"h":54},"ff":{"w":66,"h":54},"b":{"w":73,"h":54},"bf":{"w":72,"h":54}},"g":1},"rhydon":{"n":112,"f":{"w":96,"h":82},"ff":{"w":96,"h":82},"b":{"w":105,"h":78},"bw":{"f":{"w":79,"h":68},"ff":{"w":79,"h":68},"b":{"w":84,"h":69},"bf":{"w":81,"h":69}},"g":1},"chansey":{"n":113,"f":{"w":74,"h":58},"b":{"w":71,"h":58},"bw":{"f":{"w":61,"h":47},"b":{"w":66,"h":47}},"g":1},"tangela":{"n":114,"f":{"w":58,"h":53},"b":{"w":56,"h":53},"bw":{"f":{"w":49,"h":42},"b":{"w":49,"h":42}},"g":1},"kangaskhan":{"n":115,"f":{"w":96,"h":87},"b":{"w":113,"h":87},"bw":{"f":{"w":79,"h":61},"b":{"w":72,"h":67}},"g":1},"kangaskhanmega":{"n":115,"i":1329,"f":{"w":107,"h":89},"b":{"w":131,"h":86},"g":6,"s":10},"horsea":{"n":116,"f":{"w":31,"h":57},"b":{"w":34,"h":54},"bw":{"f":{"w":34,"h":43},"b":{"w":39,"h":40}},"g":1},"seadra":{"n":117,"f":{"w":69,"h":74},"b":{"w":68,"h":75},"bw":{"f":{"w":57,"h":57},"b":{"w":64,"h":58}},"g":1},"goldeen":{"n":118,"f":{"w":79,"h":54},"b":{"w":86,"h":60},"bf":{"w":91,"h":71},"bw":{"f":{"w":75,"h":57},"ff":{"w":75,"h":57},"b":{"w":74,"h":57},"bf":{"w":74,"h":55}},"g":1},"seaking":{"n":119,"f":{"w":85,"h":69},"b":{"w":88,"h":75},"bf":{"w":94,"h":79},"bw":{"f":{"w":75,"h":67},"ff":{"w":73,"h":67},"b":{"w":96,"h":72},"bf":{"w":94,"h":72}},"g":1},"staryu":{"n":120,"f":{"w":48,"h":50},"b":{"w":47,"h":50},"bw":{"f":{"w":58,"h":49},"b":{"w":55,"h":52}},"g":1},"starmie":{"n":121,"f":{"w":62,"h":61},"b":{"w":61,"h":61},"bw":{"f":{"w":65,"h":59},"b":{"w":55,"h":55}},"g":1},"mrmime":{"n":122,"f":{"w":75,"h":76},"b":{"w":68,"h":74},"bw":{"f":{"w":58,"h":53},"b":{"w":54,"h":51}},"g":1},"mrmimegalar":{"n":122,"i":1203,"f":{"w":91,"h":88},"b":{"w":63,"h":87},"g":8,"s":6},"scyther":{"n":123,"f":{"w":105,"h":103},"ff":{"w":105,"h":103},"b":{"w":95,"h":108},"bw":{"f":{"w":55,"h":61},"ff":{"w":55,"h":61},"b":{"w":69,"h":65},"bf":{"w":69,"h":65}},"g":1},"jynx":{"n":124,"f":{"w":77,"h":66},"b":{"w":74,"h":68},"bw":{"f":{"w":63,"h":60},"b":{"w":62,"h":60}},"g":1},"electabuzz":{"n":125,"f":{"w":78,"h":78},"b":{"w":93,"h":77},"bw":{"f":{"w":72,"h":65},"b":{"w":72,"h":64}},"g":1},"magmar":{"n":126,"f":{"w":78,"h":81},"b":{"w":102,"h":83},"bw":{"f":{"w":71,"h":61},"b":{"w":70,"h":59}},"g":1},"pinsir":{"n":127,"f":{"w":92,"h":76},"b":{"w":73,"h":74},"bw":{"f":{"w":72,"h":63},"b":{"w":70,"h":61}},"g":1},"pinsirmega":{"n":127,"i":1330,"f":{"w":133,"h":110},"b":{"w":130,"h":103},"g":6,"s":6},"tauros":{"n":128,"f":{"w":97,"h":95},"b":{"w":132,"h":104},"bw":{"f":{"w":75,"h":59},"b":{"w":72,"h":54}},"g":1},"taurospaldeacombat":{"n":128,"i":1256,"g":9,"s":6},"taurospaldeablaze":{"n":128,"i":1257,"g":9,"s":6},"taurospaldeaaqua":{"n":128,"i":1258,"g":9,"s":6},"magikarp":{"n":129,"f":{"w":58,"h":60},"ff":{"w":58,"h":60},"b":{"w":61,"h":58},"bw":{"f":{"w":47,"h":64},"ff":{"w":47,"h":64},"b":{"w":66,"h":58},"bf":{"w":66,"h":58}},"g":1},"gyarados":{"n":130,"f":{"w":115,"h":99},"b":{"w":150,"h":102},"bf":{"w":157,"h":114},"bw":{"f":{"w":102,"h":84},"ff":{"w":102,"h":84},"b":{"w":109,"h":83},"bf":{"w":109,"h":83}},"g":1},"gyaradosmega":{"n":130,"i":1331,"f":{"w":193,"h":122},"b":{"w":184,"h":127},"g":6,"s":8},"lapras":{"n":131,"f":{"w":94,"h":84},"b":{"w":93,"h":82},"bw":{"f":{"w":68,"h":72},"b":{"w":75,"h":71}},"g":1},"laprasgmax":{"n":131,"i":1377,"f":{"w":157,"h":131},"b":{"w":161,"h":125},"g":8,"s":6},"ditto":{"n":132,"f":{"w":43,"h":35},"b":{"w":36,"h":35},"bw":{"f":{"w":47,"h":32},"b":{"w":47,"h":32}},"g":1},"eevee":{"n":133,"f":{"w":64,"h":55},"b":{"w":72,"h":54},"bw":{"f":{"w":48,"h":47},"b":{"w":49,"h":50}},"g":1},"eeveestarter":{"n":133,"i":1197,"f":{"w":64,"h":55},"b":{"w":72,"h":54},"g":7,"s":5},"eeveegmax":{"n":133,"i":1378,"f":{"w":152,"h":174},"b":{"w":180,"h":157},"bw":{"f":{"w":75,"h":80}},"g":8,"s":5},"vaporeon":{"n":134,"f":{"w":102,"h":65},"b":{"w":136,"h":63},"bw":{"f":{"w":50,"h":59},"b":{"w":50,"h":56}},"g":1},"jolteon":{"n":135,"f":{"w":49,"h":69},"b":{"w":61,"h":66},"bw":{"f":{"w":47,"h":49},"b":{"w":49,"h":48}},"g":1},"flareon":{"n":136,"f":{"w":59,"h":93},"b":{"w":79,"h":99},"bw":{"f":{"w":66,"h":60},"b":{"w":70,"h":59}},"g":1},"porygon":{"n":137,"f":{"w":47,"h":53},"b":{"w":56,"h":54},"bw":{"f":{"w":57,"h":53},"b":{"w":62,"h":48}},"g":1},"omanyte":{"n":138,"f":{"w":44,"h":45},"b":{"w":53,"h":43},"bw":{"f":{"w":43,"h":45},"b":{"w":49,"h":48}},"g":1},"omastar":{"n":139,"f":{"w":73,"h":64},"b":{"w":71,"h":63},"bw":{"f":{"w":63,"h":59},"b":{"w":64,"h":61}},"g":1},"kabuto":{"n":140,"f":{"w":47,"h":33},"b":{"w":48,"h":33},"bw":{"f":{"w":39,"h":41},"b":{"w":37,"h":43}},"g":1},"kabutops":{"n":141,"f":{"w":58,"h":73},"b":{"w":56,"h":73},"bw":{"f":{"w":65,"h":61},"b":{"w":67,"h":55}},"g":1},"aerodactyl":{"n":142,"f":{"w":189,"h":145},"b":{"w":166,"h":160},"bw":{"f":{"w":94,"h":82},"b":{"w":89,"h":92}},"g":1},"aerodactylmega":{"n":142,"i":1332,"f":{"w":173,"h":140},"b":{"w":164,"h":145},"g":6,"s":10},"snorlax":{"n":143,"f":{"w":87,"h":79},"b":{"w":74,"h":78},"bw":{"f":{"w":74,"h":75},"b":{"w":75,"h":71}},"g":1},"snorlaxgmax":{"n":143,"i":1379,"f":{"w":141,"h":128},"b":{"w":154,"h":132},"g":8,"s":7},"articuno":{"n":144,"f":{"w":172,"h":171},"b":{"w":166,"h":172},"bw":{"f":{"w":73,"h":81},"b":{"w":78,"h":87}},"g":1},"articunogalar":{"n":144,"i":1232,"f":{"w":104,"h":143},"b":{"w":118,"h":135},"bw":{"f":{"w":86,"h":71}},"g":8,"s":8},"zapdos":{"n":145,"f":{"w":145,"h":106},"b":{"w":138,"h":111},"bw":{"f":{"w":96,"h":71},"b":{"w":85,"h":72}},"g":1},"zapdosgalar":{"n":145,"i":1233,"f":{"w":75,"h":100},"b":{"w":94,"h":98},"bw":{"f":{"w":72,"h":70},"b":{"w":70,"h":69}},"g":8,"s":6},"moltres":{"n":146,"f":{"w":217,"h":181},"b":{"w":193,"h":194},"bw":{"f":{"w":128,"h":97},"b":{"w":117,"h":79}},"g":1},"moltresgalar":{"n":146,"i":1234,"f":{"w":155,"h":145},"b":{"w":152,"h":161},"g":8,"s":7},"dratini":{"n":147,"f":{"w":46,"h":63},"b":{"w":50,"h":64},"bw":{"f":{"w":43,"h":51},"b":{"w":48,"h":56}},"g":1},"dragonair":{"n":148,"f":{"w":67,"h":93},"b":{"w":63,"h":91},"bw":{"f":{"w":64,"h":73},"b":{"w":63,"h":74}},"g":1},"dragonite":{"n":149,"f":{"w":85,"h":98},"b":{"w":110,"h":98},"bw":{"f":{"w":80,"h":82},"b":{"w":86,"h":81}},"g":1},"mewtwo":{"n":150,"f":{"w":100,"h":94},"b":{"w":157,"h":93},"bw":{"f":{"w":90,"h":69},"b":{"w":95,"h":71}},"g":1},"mewtwomegax":{"n":150,"i":1333,"f":{"w":69,"h":97},"b":{"w":56,"h":99},"bw":{"f":{"w":55,"h":71}},"g":6,"s":6},"mewtwomegay":{"n":150,"i":1334,"f":{"w":62,"h":92},"b":{"w":71,"h":103},"bw":{"f":{"w":75,"h":87}},"g":6,"s":6},"mew":{"n":151,"f":{"w":40,"h":51},"b":{"w":44,"h":50},"bw":{"f":{"w":77,"h":53},"b":{"w":60,"h":61}},"g":1},"chikorita":{"n":152,"f":{"w":32,"h":63},"b":{"w":48,"h":64},"bw":{"f":{"w":41,"h":56},"b":{"w":41,"h":59}},"g":2},"bayleef":{"n":153,"f":{"w":49,"h":84},"b":{"w":50,"h":82},"bw":{"f":{"w":52,"h":80},"b":{"w":53,"h":76}},"g":2},"meganium":{"n":154,"f":{"w":64,"h":93},"ff":{"w":64,"h":102},"b":{"w":76,"h":88},"bf":{"w":82,"h":98},"bw":{"f":{"w":59,"h":82},"ff":{"w":59,"h":82},"b":{"w":64,"h":80},"bf":{"w":64,"h":80}},"g":2},"cyndaquil":{"n":155,"f":{"w":38,"h":45},"b":{"w":45,"h":45},"bw":{"f":{"w":44,"h":37},"b":{"w":46,"h":37}},"g":2},"quilava":{"n":156,"f":{"w":52,"h":42},"b":{"w":59,"h":39},"bw":{"f":{"w":63,"h":53},"b":{"w":63,"h":53}},"g":2},"typhlosion":{"n":157,"f":{"w":99,"h":118},"b":{"w":71,"h":116},"bw":{"f":{"w":59,"h":72},"b":{"w":60,"h":72}},"g":2},"typhlosionhisui":{"n":157,"i":1242,"f":{"w":85,"h":114},"b":{"w":87,"h":114},"g":8,"s":10},"totodile":{"n":158,"f":{"w":52,"h":58},"b":{"w":48,"h":57},"bw":{"f":{"w":43,"h":59},"b":{"w":43,"h":61}},"g":2},"croconaw":{"n":159,"il":1415,"f":{"w":52,"h":78},"b":{"w":60,"h":78},"bw":{"f":{"w":45,"h":59},"b":{"w":46,"h":58}},"g":2},"feraligatr":{"n":160,"f":{"w":82,"h":98},"b":{"w":95,"h":91},"bw":{"f":{"w":83,"h":72},"b":{"w":82,"h":73}},"g":2},"sentret":{"n":161,"f":{"w":52,"h":55},"b":{"w":68,"h":56},"bw":{"f":{"w":50,"h":68},"b":{"w":48,"h":65}},"g":2},"furret":{"n":162,"f":{"w":85,"h":73},"b":{"w":103,"h":69},"bw":{"f":{"w":55,"h":58},"b":{"w":62,"h":61}},"g":2},"hoothoot":{"n":163,"f":{"w":64,"h":63},"b":{"w":57,"h":62},"bw":{"f":{"w":51,"h":60},"b":{"w":53,"h":58}},"g":2},"noctowl":{"n":164,"f":{"w":111,"h":84},"b":{"w":101,"h":90},"bw":{"f":{"w":44,"h":67},"b":{"w":40,"h":68}},"g":2},"ledyba":{"n":165,"f":{"w":61,"h":50},"ff":{"w":61,"h":47},"b":{"w":67,"h":50},"bf":{"w":76,"h":62},"bw":{"f":{"w":44,"h":51},"ff":{"w":44,"h":48},"b":{"w":47,"h":47},"bf":{"w":47,"h":46}},"g":2},"ledian":{"n":166,"f":{"w":46,"h":83},"ff":{"w":46,"h":78},"b":{"w":48,"h":84},"bf":{"w":57,"h":86},"bw":{"f":{"w":55,"h":65},"ff":{"w":55,"h":62},"b":{"w":59,"h":64},"bf":{"w":59,"h":61}},"g":2},"spinarak":{"n":167,"f":{"w":57,"h":27},"b":{"w":58,"h":26},"bw":{"f":{"w":43,"h":28},"b":{"w":45,"h":35}},"g":2},"ariados":{"n":168,"f":{"w":82,"h":61},"b":{"w":80,"h":64},"bw":{"f":{"w":65,"h":51},"b":{"w":56,"h":44}},"g":2},"crobat":{"n":169,"f":{"w":143,"h":107},"b":{"w":121,"h":114},"bw":{"f":{"w":105,"h":73},"b":{"w":107,"h":64}},"g":2},"chinchou":{"n":170,"f":{"w":81,"h":53},"b":{"w":73,"h":54},"bw":{"f":{"w":66,"h":52},"b":{"w":68,"h":46}},"g":2},"lanturn":{"n":171,"f":{"w":85,"h":84},"b":{"w":130,"h":86},"bw":{"f":{"w":74,"h":59},"b":{"w":71,"h":59}},"g":2},"pichu":{"n":172,"f":{"w":51,"h":52},"b":{"w":42,"h":52},"bw":{"f":{"w":44,"h":49},"b":{"w":43,"h":49}},"g":2},"pichuspikyeared":{"n":172,"g":4,"s":5},"cleffa":{"n":173,"il":1416,"f":{"w":46,"h":44},"b":{"w":42,"h":44},"bw":{"f":{"w":36,"h":34},"b":{"w":38,"h":34}},"g":2},"igglybuff":{"n":174,"il":1417,"f":{"w":40,"h":56},"b":{"w":40,"h":56},"bw":{"f":{"w":55,"h":51},"b":{"w":57,"h":51}},"g":2},"togepi":{"n":175,"f":{"w":47,"h":47},"b":{"w":44,"h":46},"bw":{"f":{"w":40,"h":38},"b":{"w":37,"h":38}},"g":2},"togetic":{"n":176,"f":{"w":58,"h":71},"b":{"w":57,"h":70},"bw":{"f":{"w":34,"h":70},"b":{"w":36,"h":73}},"g":2},"natu":{"n":177,"f":{"w":42,"h":48},"b":{"w":44,"h":50},"bw":{"f":{"w":37,"h":41},"b":{"w":42,"h":38}},"g":2},"xatu":{"n":178,"f":{"w":103,"h":58},"ff":{"w":111,"h":63},"b":{"w":98,"h":60},"bf":{"w":104,"h":65},"bw":{"f":{"w":45,"h":60},"ff":{"w":45,"h":60},"b":{"w":67,"h":60},"bf":{"w":67,"h":60}},"g":2},"mareep":{"n":179,"f":{"w":52,"h":54},"b":{"w":69,"h":56},"bw":{"f":{"w":50,"h":41},"b":{"w":48,"h":41}},"g":2},"flaaffy":{"n":180,"f":{"w":52,"h":67},"b":{"w":64,"h":65},"bw":{"f":{"w":46,"h":52},"b":{"w":45,"h":52}},"g":2},"ampharos":{"n":181,"f":{"w":69,"h":101},"b":{"w":79,"h":101},"bw":{"f":{"w":61,"h":68},"b":{"w":65,"h":64}},"g":2},"ampharosmega":{"n":181,"i":1335,"f":{"w":99,"h":112},"b":{"w":127,"h":116},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":8},"bellossom":{"n":182,"f":{"w":57,"h":55},"b":{"w":45,"h":55},"bw":{"f":{"w":42,"h":56},"b":{"w":42,"h":52}},"g":2},"marill":{"n":183,"f":{"w":51,"h":48},"b":{"w":69,"h":48},"bw":{"f":{"w":53,"h":37},"b":{"w":54,"h":36}},"g":2},"azumarill":{"n":184,"f":{"w":89,"h":90},"b":{"w":107,"h":91},"bw":{"f":{"w":73,"h":61},"b":{"w":74,"h":62}},"g":2},"sudowoodo":{"n":185,"f":{"w":58,"h":66},"ff":{"w":58,"h":64},"b":{"w":46,"h":66},"bf":{"w":55,"h":71},"bw":{"f":{"w":65,"h":58},"ff":{"w":65,"h":55},"b":{"w":69,"h":55},"bf":{"w":69,"h":54}},"g":2},"politoed":{"n":186,"il":1418,"f":{"w":63,"h":77},"ff":{"w":63,"h":77},"b":{"w":61,"h":75},"bw":{"f":{"w":51,"h":79},"ff":{"w":51,"h":79},"b":{"w":43,"h":80},"bf":{"w":43,"h":80}},"g":2},"hoppip":{"n":187,"f":{"w":88,"h":61},"b":{"w":88,"h":59},"bw":{"f":{"w":65,"h":66},"b":{"w":65,"h":66}},"g":2},"skiploom":{"n":188,"f":{"w":64,"h":41},"b":{"w":62,"h":41},"bw":{"f":{"w":52,"h":42},"b":{"w":59,"h":42}},"g":2},"jumpluff":{"n":189,"f":{"w":90,"h":82},"b":{"w":74,"h":84},"bw":{"f":{"w":66,"h":59},"b":{"w":66,"h":63}},"g":2},"aipom":{"n":190,"f":{"w":63,"h":61},"ff":{"w":63,"h":66},"b":{"w":59,"h":60},"bf":{"w":71,"h":73},"bw":{"f":{"w":35,"h":56},"ff":{"w":35,"h":58},"b":{"w":32,"h":52},"bf":{"w":32,"h":54}},"g":2},"sunkern":{"n":191,"f":{"w":44,"h":44},"b":{"w":33,"h":44},"bw":{"f":{"w":26,"h":40},"b":{"w":28,"h":41}},"g":2},"sunflora":{"n":192,"f":{"w":73,"h":74},"b":{"w":62,"h":72},"bw":{"f":{"w":40,"h":51},"b":{"w":45,"h":56}},"g":2},"yanma":{"n":193,"f":{"w":120,"h":77},"b":{"w":86,"h":75},"bw":{"f":{"w":90,"h":58},"b":{"w":91,"h":49}},"g":2},"wooper":{"n":194,"f":{"w":59,"h":47},"ff":{"w":54,"h":47},"b":{"w":52,"h":48},"bf":{"w":55,"h":51},"bw":{"f":{"w":43,"h":33},"ff":{"w":40,"h":32},"b":{"w":41,"h":32},"bf":{"w":40,"h":33}},"g":2},"wooperpaldea":{"n":194,"i":1259,"bw":{"f":{"w":44,"h":35}},"g":9,"s":6},"quagsire":{"n":195,"f":{"w":48,"h":77},"ff":{"w":48,"h":77},"b":{"w":84,"h":76},"bf":{"w":91,"h":83},"bw":{"f":{"w":67,"h":58},"ff":{"w":67,"h":58},"b":{"w":70,"h":64},"bf":{"w":70,"h":64}},"g":2},"espeon":{"n":196,"f":{"w":67,"h":73},"b":{"w":86,"h":80},"bw":{"f":{"w":63,"h":58},"b":{"w":60,"h":56}},"g":2},"umbreon":{"n":197,"f":{"w":46,"h":70},"b":{"w":73,"h":74},"bw":{"f":{"w":43,"h":51},"b":{"w":49,"h":51}},"g":2},"murkrow":{"n":198,"f":{"w":58,"h":65},"ff":{"w":58,"h":60},"b":{"w":66,"h":65},"bw":{"f":{"w":43,"h":45},"ff":{"w":43,"h":44},"b":{"w":42,"h":47},"bf":{"w":42,"h":45}},"g":2},"slowking":{"n":199,"f":{"w":62,"h":85},"b":{"w":69,"h":84},"bw":{"f":{"w":46,"h":69},"b":{"w":49,"h":68}},"g":2},"slowkinggalar":{"n":199,"i":1235,"f":{"w":61,"h":85},"b":{"w":74,"h":84},"bw":{"f":{"w":50,"h":68}},"g":8,"s":8},"misdreavus":{"n":200,"f":{"w":66,"h":63},"b":{"w":69,"h":65},"bw":{"f":{"w":49,"h":57},"b":{"w":46,"h":64}},"g":2},"unown":{"n":201,"if":1046,"f":{"w":58,"h":73},"ff":{"w":66,"h":54},"b":{"w":52,"h":74},"bf":{"w":43,"h":51},"bw":{"f":{"w":25,"h":45},"ff":{"w":30,"h":41},"b":{"w":23,"h":42},"bf":{"w":29,"h":37}},"g":2},"unownb":{"n":201,"i":1042,"il":1419,"f":{"w":63,"h":63},"b":{"w":56,"h":63},"bw":{"f":{"w":24,"h":42},"b":{"w":23,"h":39}},"g":2,"s":5},"unownc":{"n":201,"i":1043,"il":1420,"f":{"w":56,"h":57},"b":{"w":50,"h":57},"bw":{"f":{"w":28,"h":47},"b":{"w":29,"h":42}},"g":2,"s":5},"unownd":{"n":201,"i":1044,"il":1421,"f":{"w":46,"h":77},"b":{"w":40,"h":77},"bw":{"f":{"w":28,"h":44},"b":{"w":29,"h":39}},"g":2,"s":5},"unowne":{"n":201,"i":1045,"il":1422,"f":{"w":61,"h":58},"b":{"w":46,"h":58},"bw":{"f":{"w":29,"h":41},"b":{"w":27,"h":38}},"g":2,"s":5},"unownf":{"n":201,"i":1046,"il":1423,"f":{"w":66,"h":54},"b":{"w":43,"h":51},"bw":{"f":{"w":30,"h":41},"b":{"w":29,"h":37}},"g":2,"s":5},"unowng":{"n":201,"i":1047,"il":1424,"f":{"w":37,"h":69},"b":{"w":33,"h":69},"bw":{"f":{"w":22,"h":46},"b":{"w":23,"h":44}},"g":2,"s":5},"unownh":{"n":201,"i":1048,"il":1425,"f":{"w":82,"h":51},"b":{"w":65,"h":51},"bw":{"f":{"w":33,"h":42},"b":{"w":33,"h":39}},"g":2,"s":5},"unowni":{"n":201,"i":1049,"f":{"w":54,"h":67},"b":{"w":49,"h":67},"bw":{"f":{"w":19,"h":42},"b":{"w":19,"h":39}},"g":2,"s":5},"unownj":{"n":201,"i":1050,"il":1426,"f":{"w":73,"h":51},"b":{"w":64,"h":52},"bw":{"f":{"w":25,"h":40},"b":{"w":22,"h":37}},"g":2,"s":5},"unownk":{"n":201,"i":1051,"il":1427,"f":{"w":65,"h":72},"b":{"w":68,"h":73},"bw":{"f":{"w":26,"h":41},"b":{"w":26,"h":38}},"g":2,"s":5},"unownl":{"n":201,"i":1052,"il":1428,"f":{"w":56,"h":52},"b":{"w":51,"h":51},"bw":{"f":{"w":25,"h":38},"b":{"w":22,"h":34}},"g":2,"s":5},"unownm":{"n":201,"i":1053,"il":1429,"f":{"w":46,"h":57},"b":{"w":37,"h":57},"bw":{"f":{"w":32,"h":36},"b":{"w":32,"h":34}},"g":2,"s":5},"unownn":{"n":201,"i":1054,"il":1430,"f":{"w":82,"h":79},"b":{"w":65,"h":77},"bw":{"f":{"w":34,"h":35},"b":{"w":34,"h":32}},"g":2,"s":5},"unowno":{"n":201,"i":1055,"f":{"w":65,"h":53},"b":{"w":59,"h":55},"bw":{"f":{"w":50,"h":43},"b":{"w":50,"h":43}},"g":2,"s":5},"unownp":{"n":201,"i":1056,"il":1431,"f":{"w":58,"h":62},"b":{"w":45,"h":62},"bw":{"f":{"w":23,"h":38},"b":{"w":22,"h":34}},"g":2,"s":5},"unownq":{"n":201,"i":1057,"il":1432,"f":{"w":53,"h":54},"b":{"w":50,"h":55},"bw":{"f":{"w":27,"h":33},"b":{"w":27,"h":30}},"g":2,"s":5},"unownr":{"n":201,"i":1058,"il":1434,"f":{"w":51,"h":62},"b":{"w":45,"h":63},"bw":{"f":{"w":23,"h":37},"b":{"w":20,"h":34}},"g":2,"s":5},"unowns":{"n":201,"i":1059,"il":1435,"f":{"w":75,"h":69},"b":{"w":44,"h":69},"bw":{"f":{"w":28,"h":51},"b":{"w":28,"h":47}},"g":2,"s":5},"unownt":{"n":201,"i":1060,"il":1436,"f":{"w":36,"h":57},"b":{"w":40,"h":57},"bw":{"f":{"w":30,"h":39},"b":{"w":26,"h":34}},"g":2,"s":5},"unownu":{"n":201,"i":1061,"f":{"w":59,"h":49},"b":{"w":52,"h":50},"bw":{"f":{"w":38,"h":37},"b":{"w":39,"h":35}},"g":2,"s":5},"unownv":{"n":201,"i":1062,"il":1437,"f":{"w":38,"h":53},"b":{"w":35,"h":52},"bw":{"f":{"w":33,"h":41},"b":{"w":33,"h":36}},"g":2,"s":5},"unownw":{"n":201,"i":1063,"f":{"w":77,"h":62},"b":{"w":60,"h":61},"bw":{"f":{"w":38,"h":36},"b":{"w":35,"h":33}},"g":2,"s":5},"unownx":{"n":201,"i":1064,"f":{"w":51,"h":55},"b":{"w":50,"h":55},"bw":{"f":{"w":28,"h":33},"b":{"w":26,"h":30}},"g":2,"s":5},"unowny":{"n":201,"i":1065,"f":{"w":32,"h":50},"b":{"w":30,"h":51},"bw":{"f":{"w":28,"h":41},"b":{"w":26,"h":38}},"g":2,"s":5},"unownz":{"n":201,"i":1066,"il":1438,"f":{"w":35,"h":63},"b":{"w":32,"h":63},"bw":{"f":{"w":21,"h":44},"b":{"w":20,"h":41}},"g":2,"s":5},"unownexclamation":{"n":201,"i":1040,"f":{"w":35,"h":79},"b":{"w":26,"h":80},"bw":{"f":{"w":32,"h":45},"b":{"w":19,"h":41}},"g":2,"s":5},"unownquestion":{"n":201,"i":1041,"il":1433,"f":{"w":55,"h":56},"b":{"w":49,"h":59},"bw":{"f":{"w":26,"h":46},"b":{"w":21,"h":43}},"g":2,"s":5},"wobbuffet":{"n":202,"f":{"w":41,"h":68},"ff":{"w":41,"h":68},"b":{"w":54,"h":68},"bw":{"f":{"w":53,"h":58},"ff":{"w":53,"h":58},"b":{"w":47,"h":64},"bf":{"w":47,"h":64}},"g":2},"girafarig":{"n":203,"f":{"w":48,"h":88},"ff":{"w":48,"h":88},"b":{"w":62,"h":82},"bw":{"f":{"w":59,"h":77},"ff":{"w":59,"h":77},"b":{"w":62,"h":78},"bf":{"w":62,"h":78}},"g":2},"pineco":{"n":204,"f":{"w":56,"h":59},"b":{"w":56,"h":59},"bw":{"f":{"w":36,"h":53},"b":{"w":35,"h":53}},"g":2},"forretress":{"n":205,"f":{"w":93,"h":69},"b":{"w":91,"h":70},"bw":{"f":{"w":62,"h":58},"b":{"w":65,"h":57}},"g":2},"dunsparce":{"n":206,"f":{"w":62,"h":41},"b":{"w":67,"h":39},"bw":{"f":{"w":41,"h":45},"b":{"w":58,"h":32}},"g":2},"gligar":{"n":207,"f":{"w":76,"h":90},"ff":{"w":76,"h":84},"b":{"w":70,"h":92},"bf":{"w":76,"h":91},"bw":{"f":{"w":93,"h":60},"ff":{"w":93,"h":60},"b":{"w":92,"h":64},"bf":{"w":92,"h":63}},"g":2},"steelix":{"n":208,"f":{"w":92,"h":105},"ff":{"w":92,"h":105},"b":{"w":109,"h":98},"bw":{"f":{"w":94,"h":88},"ff":{"w":94,"h":88},"b":{"w":95,"h":92},"bf":{"w":95,"h":92}},"g":2},"steelixmega":{"n":208,"i":1336,"f":{"w":121,"h":122},"b":{"w":128,"h":125},"bw":{"f":{"w":96,"h":88}},"g":6,"s":7},"snubbull":{"n":209,"f":{"w":67,"h":58},"b":{"w":58,"h":59},"bw":{"f":{"w":42,"h":41},"b":{"w":41,"h":39}},"g":2},"granbull":{"n":210,"f":{"w":77,"h":84},"b":{"w":67,"h":84},"bw":{"f":{"w":49,"h":62},"b":{"w":48,"h":60}},"g":2},"qwilfish":{"n":211,"f":{"w":61,"h":50},"b":{"w":73,"h":53},"bw":{"f":{"w":49,"h":56},"b":{"w":55,"h":55}},"g":2},"qwilfishhisui":{"n":211,"i":1243,"g":8,"s":8},"scizor":{"n":212,"f":{"w":67,"h":93},"ff":{"w":67,"h":93},"b":{"w":59,"h":95},"bw":{"f":{"w":75,"h":73},"ff":{"w":75,"h":73},"b":{"w":68,"h":75},"bf":{"w":68,"h":75}},"g":2},"scizormega":{"n":212,"i":1337,"f":{"w":79,"h":103},"b":{"w":70,"h":104},"bw":{"f":{"w":92,"h":82},"b":{"w":96,"h":96}},"g":6,"s":6},"shuckle":{"n":213,"f":{"w":71,"h":57},"b":{"w":72,"h":55},"bw":{"f":{"w":54,"h":46},"b":{"w":52,"h":47}},"g":2},"heracross":{"n":214,"f":{"w":90,"h":87},"ff":{"w":90,"h":75},"b":{"w":75,"h":81},"bf":{"w":85,"h":76},"bw":{"f":{"w":61,"h":70},"ff":{"w":61,"h":65},"b":{"w":67,"h":72},"bf":{"w":67,"h":71}},"g":2},"heracrossmega":{"n":214,"i":1338,"f":{"w":111,"h":111},"b":{"w":113,"h":100},"g":6,"s":9},"sneasel":{"n":215,"il":1439,"f":{"w":47,"h":72},"ff":{"w":43,"h":63},"b":{"w":46,"h":68},"bf":{"w":48,"h":71},"bw":{"f":{"w":58,"h":52},"ff":{"w":55,"h":50},"b":{"w":58,"h":52},"bf":{"w":55,"h":50}},"g":2},"sneaselhisui":{"n":215,"i":1244,"f":{"w":61,"h":71},"ff":{"w":54,"h":63},"b":{"w":54,"h":67},"bf":{"w":53,"h":62},"g":8,"s":7},"teddiursa":{"n":216,"il":1440,"f":{"w":47,"h":57},"b":{"w":36,"h":58},"bw":{"f":{"w":30,"h":36},"b":{"w":29,"h":36}},"g":2},"ursaring":{"n":217,"f":{"w":68,"h":95},"ff":{"w":70,"h":95},"b":{"w":69,"h":92},"bf":{"w":76,"h":97},"bw":{"f":{"w":71,"h":81},"ff":{"w":71,"h":81},"b":{"w":63,"h":79},"bf":{"w":63,"h":79}},"g":2},"slugma":{"n":218,"f":{"w":62,"h":63},"b":{"w":66,"h":62},"bw":{"f":{"w":39,"h":40},"b":{"w":33,"h":42}},"g":2},"magcargo":{"n":219,"f":{"w":67,"h":70},"b":{"w":86,"h":70},"bw":{"f":{"w":54,"h":59},"b":{"w":51,"h":61}},"g":2},"swinub":{"n":220,"f":{"w":49,"h":33},"b":{"w":52,"h":33},"bw":{"f":{"w":35,"h":25},"b":{"w":34,"h":26}},"g":2},"piloswine":{"n":221,"f":{"w":70,"h":72},"ff":{"w":70,"h":72},"b":{"w":81,"h":74},"bf":{"w":85,"h":78},"bw":{"f":{"w":55,"h":56},"ff":{"w":55,"h":56},"b":{"w":52,"h":56},"bf":{"w":51,"h":56}},"g":2},"corsola":{"n":222,"f":{"w":70,"h":69},"b":{"w":79,"h":71},"bw":{"f":{"w":51,"h":43},"b":{"w":55,"h":45}},"g":2},"corsolagalar":{"n":222,"i":1204,"f":{"w":69,"h":74},"b":{"w":85,"h":74},"bw":{"f":{"w":49,"h":44}},"g":8,"s":7},"remoraid":{"n":223,"f":{"w":57,"h":62},"b":{"w":60,"h":70},"bw":{"f":{"w":47,"h":44},"b":{"w":58,"h":54}},"g":2},"octillery":{"n":224,"f":{"w":90,"h":60},"ff":{"w":90,"h":59},"b":{"w":91,"h":59},"bf":{"w":103,"h":82},"bw":{"f":{"w":67,"h":49},"ff":{"w":67,"h":49},"b":{"w":80,"h":54},"bf":{"w":80,"h":54}},"g":2},"delibird":{"n":225,"f":{"w":59,"h":71},"b":{"w":60,"h":72},"bw":{"f":{"w":49,"h":52},"b":{"w":50,"h":55}},"g":2},"mantine":{"n":226,"f":{"w":131,"h":59},"b":{"w":125,"h":64},"bw":{"f":{"w":83,"h":77},"b":{"w":86,"h":71}},"g":2},"skarmory":{"n":227,"f":{"w":116,"h":64},"b":{"w":119,"h":63},"bw":{"f":{"w":69,"h":70},"b":{"w":85,"h":69}},"g":2},"houndour":{"n":228,"f":{"w":36,"h":59},"b":{"w":52,"h":58},"bw":{"f":{"w":44,"h":44},"b":{"w":49,"h":44}},"g":2},"houndoom":{"n":229,"f":{"w":59,"h":86},"ff":{"w":59,"h":86},"b":{"w":93,"h":95},"bf":{"w":99,"h":97},"bw":{"f":{"w":77,"h":72},"ff":{"w":77,"h":72},"b":{"w":79,"h":69},"bf":{"w":79,"h":69}},"g":2},"houndoommega":{"n":229,"i":1339,"f":{"w":84,"h":114},"b":{"w":98,"h":105},"g":6,"s":8},"kingdra":{"n":230,"f":{"w":46,"h":97},"b":{"w":49,"h":97},"bw":{"f":{"w":54,"h":91},"b":{"w":50,"h":94}},"g":2},"phanpy":{"n":231,"f":{"w":67,"h":50},"b":{"w":60,"h":49},"bw":{"f":{"w":46,"h":34},"b":{"w":48,"h":35}},"g":2},"donphan":{"n":232,"f":{"w":109,"h":67},"ff":{"w":105,"h":67},"b":{"w":97,"h":65},"bf":{"w":104,"h":83},"bw":{"f":{"w":83,"h":55},"ff":{"w":83,"h":55},"b":{"w":90,"h":51},"bf":{"w":90,"h":51}},"g":2},"porygon2":{"n":233,"f":{"w":54,"h":63},"b":{"w":61,"h":60},"bw":{"f":{"w":49,"h":44},"b":{"w":58,"h":50}},"g":2},"stantler":{"n":234,"f":{"w":49,"h":92},"b":{"w":59,"h":90},"bw":{"f":{"w":57,"h":78},"b":{"w":65,"h":79}},"g":2},"smeargle":{"n":235,"f":{"w":58,"h":74},"b":{"w":57,"h":72},"bw":{"f":{"w":58,"h":49},"b":{"w":65,"h":50}},"g":2},"tyrogue":{"n":236,"f":{"w":38,"h":69},"b":{"w":31,"h":68},"bw":{"f":{"w":36,"h":45},"b":{"w":38,"h":45}},"g":2},"hitmontop":{"n":237,"f":{"w":86,"h":71},"b":{"w":73,"h":68},"bw":{"f":{"w":82,"h":63},"b":{"w":64,"h":61}},"g":2},"smoochum":{"n":238,"f":{"w":46,"h":61},"b":{"w":45,"h":61},"bw":{"f":{"w":31,"h":48},"b":{"w":30,"h":48}},"g":2},"elekid":{"n":239,"f":{"w":73,"h":63},"b":{"w":64,"h":63},"bw":{"f":{"w":53,"h":43},"b":{"w":53,"h":45}},"g":2},"magby":{"n":240,"f":{"w":46,"h":62},"b":{"w":46,"h":62},"bw":{"f":{"w":34,"h":56},"b":{"w":28,"h":57}},"g":2},"miltank":{"n":241,"f":{"w":80,"h":76},"b":{"w":84,"h":75},"bw":{"f":{"w":58,"h":53},"b":{"w":56,"h":50}},"g":2},"blissey":{"n":242,"f":{"w":83,"h":74},"b":{"w":80,"h":74},"bw":{"f":{"w":61,"h":59},"b":{"w":57,"h":58}},"g":2},"raikou":{"n":243,"f":{"w":68,"h":82},"b":{"w":93,"h":84},"bw":{"f":{"w":84,"h":69},"b":{"w":85,"h":70}},"g":2},"entei":{"n":244,"f":{"w":79,"h":87},"b":{"w":133,"h":88},"bw":{"f":{"w":76,"h":69},"b":{"w":87,"h":72}},"g":2},"suicune":{"n":245,"f":{"w":107,"h":86},"b":{"w":114,"h":91},"bw":{"f":{"w":81,"h":72},"b":{"w":94,"h":73}},"g":2},"larvitar":{"n":246,"f":{"w":46,"h":65},"b":{"w":49,"h":64},"bw":{"f":{"w":37,"h":52},"b":{"w":35,"h":54}},"g":2},"pupitar":{"n":247,"f":{"w":55,"h":68},"b":{"w":54,"h":67},"bw":{"f":{"w":54,"h":51},"b":{"w":49,"h":54}},"g":2},"tyranitar":{"n":248,"f":{"w":75,"h":101},"b":{"w":109,"h":100},"bw":{"f":{"w":88,"h":76},"b":{"w":77,"h":82}},"g":2},"tyranitarmega":{"n":248,"i":1340,"f":{"w":104,"h":119},"b":{"w":126,"h":119},"bw":{"f":{"w":94,"h":87},"b":{"w":88,"h":101}},"g":6,"s":9},"lugia":{"n":249,"f":{"w":156,"h":127},"b":{"w":168,"h":136},"bw":{"f":{"w":153,"h":97},"b":{"w":146,"h":103}},"g":2},"hooh":{"n":250,"f":{"w":157,"h":144},"b":{"w":142,"h":139},"bw":{"f":{"w":107,"h":101},"b":{"w":109,"h":97}},"g":2},"celebi":{"n":251,"f":{"w":67,"h":65},"b":{"w":62,"h":68},"bw":{"f":{"w":36,"h":63},"b":{"w":38,"h":66}},"g":2},"treecko":{"n":252,"f":{"w":47,"h":59},"b":{"w":48,"h":58},"bw":{"f":{"w":43,"h":63},"b":{"w":46,"h":63}},"g":3},"grovyle":{"n":253,"f":{"w":78,"h":79},"b":{"w":86,"h":79},"bw":{"f":{"w":64,"h":70},"b":{"w":75,"h":77}},"g":3},"sceptile":{"n":254,"f":{"w":100,"h":93},"b":{"w":117,"h":86},"bw":{"f":{"w":67,"h":74},"b":{"w":73,"h":85}},"g":3},"sceptilemega":{"n":254,"i":1341,"f":{"w":74,"h":97},"b":{"w":123,"h":96},"g":6,"s":8},"torchic":{"n":255,"f":{"w":33,"h":61},"ff":{"w":33,"h":61},"b":{"w":32,"h":60},"bw":{"f":{"w":33,"h":47},"ff":{"w":33,"h":47},"b":{"w":30,"h":46},"bf":{"w":30,"h":46}},"g":3},"combusken":{"n":256,"f":{"w":61,"h":83},"ff":{"w":61,"h":77},"b":{"w":48,"h":82},"bf":{"w":56,"h":82},"bw":{"f":{"w":71,"h":63},"ff":{"w":71,"h":62},"b":{"w":71,"h":65},"bf":{"w":71,"h":63}},"g":3},"blaziken":{"n":257,"f":{"w":83,"h":96},"ff":{"w":83,"h":94},"b":{"w":86,"h":93},"bf":{"w":93,"h":100},"bw":{"f":{"w":59,"h":75},"ff":{"w":59,"h":74},"b":{"w":73,"h":72},"bf":{"w":72,"h":71}},"g":3},"blazikenmega":{"n":257,"i":1342,"f":{"w":118,"h":107},"b":{"w":110,"h":110},"bw":{"f":{"w":114,"h":115}},"g":6,"s":8},"mudkip":{"n":258,"f":{"w":47,"h":66},"b":{"w":60,"h":64},"bw":{"f":{"w":43,"h":49},"b":{"w":42,"h":50}},"g":3},"marshtomp":{"n":259,"f":{"w":60,"h":77},"b":{"w":59,"h":76},"bw":{"f":{"w":54,"h":58},"b":{"w":50,"h":59}},"g":3},"swampert":{"n":260,"f":{"w":94,"h":90},"b":{"w":93,"h":82},"bw":{"f":{"w":76,"h":60},"b":{"w":82,"h":61}},"g":3},"swampertmega":{"n":260,"i":1343,"f":{"w":122,"h":80},"b":{"w":128,"h":81},"g":6,"s":8},"poochyena":{"n":261,"f":{"w":52,"h":54},"b":{"w":61,"h":54},"bw":{"f":{"w":52,"h":44},"b":{"w":53,"h":44}},"g":3},"mightyena":{"n":262,"f":{"w":73,"h":79},"b":{"w":93,"h":85},"bw":{"f":{"w":74,"h":64},"b":{"w":78,"h":65}},"g":3},"zigzagoon":{"n":263,"f":{"w":65,"h":47},"b":{"w":72,"h":51},"bw":{"f":{"w":58,"h":43},"b":{"w":59,"h":39}},"g":3},"zigzagoongalar":{"n":263,"i":1205,"f":{"w":63,"h":59},"b":{"w":85,"h":59},"bw":{"f":{"w":58,"h":44}},"g":8,"s":9},"linoone":{"n":264,"f":{"w":96,"h":39},"b":{"w":99,"h":37},"bw":{"f":{"w":81,"h":41},"b":{"w":78,"h":54}},"g":3},"linoonegalar":{"n":264,"i":1206,"f":{"w":98,"h":56},"b":{"w":110,"h":58},"bw":{"f":{"w":82,"h":41},"b":{"w":82,"h":45}},"g":8,"s":7},"wurmple":{"n":265,"f":{"w":40,"h":53},"b":{"w":43,"h":51},"bw":{"f":{"w":37,"h":46},"b":{"w":40,"h":47}},"g":3},"silcoon":{"n":266,"f":{"w":50,"h":39},"b":{"w":51,"h":39},"bw":{"f":{"w":50,"h":47},"b":{"w":48,"h":45}},"g":3},"beautifly":{"n":267,"f":{"w":81,"h":83},"ff":{"w":81,"h":83},"b":{"w":76,"h":96},"bf":{"w":93,"h":103},"bw":{"f":{"w":78,"h":55},"ff":{"w":78,"h":55},"b":{"w":81,"h":60},"bf":{"w":81,"h":60}},"g":3},"cascoon":{"n":268,"f":{"w":50,"h":40},"b":{"w":56,"h":40},"bw":{"f":{"w":55,"h":40},"b":{"w":54,"h":39}},"g":3},"dustox":{"n":269,"f":{"w":100,"h":71},"ff":{"w":100,"h":71},"b":{"w":97,"h":80},"bf":{"w":105,"h":88},"bw":{"f":{"w":80,"h":47},"ff":{"w":80,"h":45},"b":{"w":78,"h":53},"bf":{"w":78,"h":52}},"g":3},"lotad":{"n":270,"f":{"w":58,"h":31},"b":{"w":58,"h":31},"bw":{"f":{"w":44,"h":41},"b":{"w":44,"h":40}},"g":3},"lombre":{"n":271,"f":{"w":62,"h":62},"b":{"w":61,"h":58},"bw":{"f":{"w":50,"h":52},"b":{"w":46,"h":54}},"g":3},"ludicolo":{"n":272,"f":{"w":110,"h":90},"ff":{"w":110,"h":90},"b":{"w":107,"h":90},"bf":{"w":113,"h":95},"bw":{"f":{"w":84,"h":80},"ff":{"w":84,"h":80},"b":{"w":78,"h":77},"bf":{"w":78,"h":77}},"g":3},"seedot":{"n":273,"f":{"w":37,"h":46},"b":{"w":37,"h":46},"bw":{"f":{"w":35,"h":38},"b":{"w":35,"h":37}},"g":3},"nuzleaf":{"n":274,"f":{"w":63,"h":69},"ff":{"w":57,"h":69},"b":{"w":75,"h":69},"bf":{"w":77,"h":77},"bw":{"f":{"w":45,"h":58},"ff":{"w":43,"h":58},"b":{"w":46,"h":56},"bf":{"w":44,"h":55}},"g":3},"shiftry":{"n":275,"f":{"w":156,"h":78},"ff":{"w":137,"h":78},"b":{"w":130,"h":76},"bf":{"w":133,"h":81},"bw":{"f":{"w":100,"h":71},"ff":{"w":98,"h":69},"b":{"w":102,"h":71},"bf":{"w":100,"h":69}},"g":3},"taillow":{"n":276,"f":{"w":49,"h":46},"b":{"w":79,"h":43},"bw":{"f":{"w":43,"h":36},"b":{"w":48,"h":35}},"g":3},"swellow":{"n":277,"f":{"w":166,"h":44},"b":{"w":160,"h":45},"bw":{"f":{"w":72,"h":59},"b":{"w":71,"h":56}},"g":3},"wingull":{"n":278,"f":{"w":143,"h":24},"b":{"w":130,"h":26},"bw":{"f":{"w":63,"h":45},"b":{"w":64,"h":43}},"g":3},"pelipper":{"n":279,"f":{"w":101,"h":92},"b":{"w":96,"h":92},"bw":{"f":{"w":96,"h":76},"b":{"w":88,"h":74}},"g":3},"ralts":{"n":280,"f":{"w":32,"h":52},"b":{"w":34,"h":51},"bw":{"f":{"w":23,"h":39},"b":{"w":26,"h":42}},"g":3},"kirlia":{"n":281,"f":{"w":44,"h":68},"b":{"w":41,"h":68},"bw":{"f":{"w":36,"h":63},"b":{"w":37,"h":63}},"g":3},"gardevoir":{"n":282,"f":{"w":94,"h":96},"b":{"w":97,"h":97},"bw":{"f":{"w":71,"h":77},"b":{"w":74,"h":77}},"g":3},"gardevoirmega":{"n":282,"i":1344,"f":{"w":74,"h":98},"b":{"w":106,"h":101},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":9},"surskit":{"n":283,"f":{"w":75,"h":52},"b":{"w":79,"h":52},"bw":{"f":{"w":68,"h":51},"b":{"w":69,"h":50}},"g":3},"masquerain":{"n":284,"f":{"w":77,"h":58},"b":{"w":64,"h":60},"bw":{"f":{"w":73,"h":65},"b":{"w":64,"h":65}},"g":3},"shroomish":{"n":285,"f":{"w":51,"h":36},"b":{"w":51,"h":36},"bw":{"f":{"w":44,"h":48},"b":{"w":44,"h":46}},"g":3},"breloom":{"n":286,"f":{"w":66,"h":73},"b":{"w":92,"h":71},"bw":{"f":{"w":57,"h":71},"b":{"w":51,"h":72}},"g":3},"slakoth":{"n":287,"f":{"w":91,"h":31},"b":{"w":91,"h":29},"bw":{"f":{"w":52,"h":31},"b":{"w":51,"h":36}},"g":3},"vigoroth":{"n":288,"f":{"w":82,"h":80},"b":{"w":78,"h":75},"bw":{"f":{"w":67,"h":65},"b":{"w":54,"h":71}},"g":3},"slaking":{"n":289,"f":{"w":102,"h":72},"b":{"w":86,"h":67},"bw":{"f":{"w":75,"h":61},"b":{"w":79,"h":59}},"g":3},"nincada":{"n":290,"f":{"w":57,"h":30},"b":{"w":61,"h":29},"bw":{"f":{"w":51,"h":28},"b":{"w":52,"h":29}},"g":3},"ninjask":{"n":291,"f":{"w":91,"h":69},"b":{"w":72,"h":72},"bw":{"f":{"w":57,"h":51},"b":{"w":55,"h":47}},"g":3},"shedinja":{"n":292,"f":{"w":57,"h":58},"b":{"w":56,"h":56},"bw":{"f":{"w":43,"h":48},"b":{"w":45,"h":50}},"g":3},"whismur":{"n":293,"f":{"w":51,"h":48},"b":{"w":48,"h":48},"bw":{"f":{"w":40,"h":43},"b":{"w":37,"h":41}},"g":3},"loudred":{"n":294,"f":{"w":93,"h":78},"b":{"w":81,"h":78},"bw":{"f":{"w":63,"h":62},"b":{"w":56,"h":62}},"g":3},"exploud":{"n":295,"f":{"w":82,"h":84},"b":{"w":103,"h":85},"bw":{"f":{"w":72,"h":68},"b":{"w":82,"h":71}},"g":3},"makuhita":{"n":296,"f":{"w":70,"h":66},"b":{"w":62,"h":67},"bw":{"f":{"w":63,"h":63},"b":{"w":61,"h":61}},"g":3},"hariyama":{"n":297,"f":{"w":102,"h":87},"b":{"w":89,"h":92},"bw":{"f":{"w":88,"h":79},"b":{"w":79,"h":79}},"g":3},"azurill":{"n":298,"f":{"w":33,"h":72},"b":{"w":40,"h":72},"bw":{"f":{"w":44,"h":64},"b":{"w":48,"h":66}},"g":3},"nosepass":{"n":299,"f":{"w":62,"h":58},"b":{"w":59,"h":58},"bw":{"f":{"w":42,"h":46},"b":{"w":40,"h":47}},"g":3},"skitty":{"n":300,"f":{"w":59,"h":55},"b":{"w":46,"h":62},"bw":{"f":{"w":55,"h":46},"b":{"w":54,"h":46}},"g":3},"delcatty":{"n":301,"f":{"w":65,"h":77},"b":{"w":80,"h":77},"bw":{"f":{"w":61,"h":57},"b":{"w":64,"h":57}},"g":3},"sableye":{"n":302,"f":{"w":49,"h":64},"b":{"w":46,"h":64},"bw":{"f":{"w":43,"h":49},"b":{"w":39,"h":49}},"g":3},"sableyemega":{"n":302,"i":1345,"f":{"w":76,"h":75},"b":{"w":77,"h":72},"g":6,"s":7},"mawile":{"n":303,"f":{"w":83,"h":54},"b":{"w":59,"h":53},"bw":{"f":{"w":79,"h":51},"b":{"w":82,"h":49}},"g":3},"mawilemega":{"n":303,"i":1346,"f":{"w":93,"h":79},"b":{"w":86,"h":79},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":6},"aron":{"n":304,"f":{"w":39,"h":45},"b":{"w":46,"h":43},"bw":{"f":{"w":32,"h":31},"b":{"w":34,"h":32}},"g":3},"lairon":{"n":305,"f":{"w":74,"h":58},"b":{"w":76,"h":57},"bw":{"f":{"w":63,"h":50},"b":{"w":65,"h":49}},"g":3},"aggron":{"n":306,"f":{"w":106,"h":97},"b":{"w":141,"h":94},"bw":{"f":{"w":77,"h":76},"b":{"w":67,"h":77}},"g":3},"aggronmega":{"n":306,"i":1347,"f":{"w":138,"h":101},"b":{"w":155,"h":98},"g":6,"s":6},"meditite":{"n":307,"f":{"w":52,"h":59},"ff":{"w":48,"h":59},"b":{"w":46,"h":59},"bf":{"w":56,"h":65},"bw":{"f":{"w":44,"h":54},"ff":{"w":44,"h":54},"b":{"w":44,"h":51},"bf":{"w":44,"h":51}},"g":3},"medicham":{"n":308,"f":{"w":63,"h":90},"ff":{"w":63,"h":87},"b":{"w":56,"h":87},"bf":{"w":68,"h":93},"bw":{"f":{"w":44,"h":74},"ff":{"w":44,"h":73},"b":{"w":43,"h":74},"bf":{"w":43,"h":72}},"g":3},"medichammega":{"n":308,"i":1348,"f":{"w":134,"h":105},"b":{"w":127,"h":115},"bw":{"f":{"w":93,"h":81}},"g":6,"s":8},"electrike":{"n":309,"f":{"w":53,"h":38},"b":{"w":55,"h":40},"bw":{"f":{"w":50,"h":36},"b":{"w":47,"h":34}},"g":3},"manectric":{"n":310,"f":{"w":63,"h":80},"b":{"w":68,"h":77},"bw":{"f":{"w":62,"h":70},"b":{"w":64,"h":71}},"g":3},"manectricmega":{"n":310,"i":1349,"f":{"w":87,"h":110},"b":{"w":77,"h":122},"bw":{"f":{"w":92,"h":74}},"g":6,"s":9},"plusle":{"n":311,"f":{"w":67,"h":59},"b":{"w":44,"h":61},"bw":{"f":{"w":38,"h":49},"b":{"w":38,"h":49}},"g":3},"minun":{"n":312,"f":{"w":67,"h":59},"b":{"w":44,"h":61},"bw":{"f":{"w":41,"h":49},"b":{"w":40,"h":51}},"g":3},"volbeat":{"n":313,"f":{"w":68,"h":74},"b":{"w":71,"h":72},"bw":{"f":{"w":64,"h":54},"b":{"w":63,"h":54}},"g":3},"illumise":{"n":314,"f":{"w":53,"h":65},"b":{"w":53,"h":64},"bw":{"f":{"w":55,"h":52},"b":{"w":55,"h":50}},"g":3},"roselia":{"n":315,"il":1441,"f":{"w":71,"h":58},"ff":{"w":71,"h":59},"b":{"w":62,"h":60},"bf":{"w":73,"h":68},"bw":{"f":{"w":62,"h":55},"ff":{"w":62,"h":55},"b":{"w":60,"h":58},"bf":{"w":60,"h":58}},"g":3},"gulpin":{"n":316,"f":{"w":64,"h":52},"ff":{"w":56,"h":51},"b":{"w":83,"h":56},"bf":{"w":77,"h":62},"bw":{"f":{"w":35,"h":44},"ff":{"w":35,"h":40},"b":{"w":34,"h":42},"bf":{"w":34,"h":40}},"g":3},"swalot":{"n":317,"f":{"w":79,"h":70},"ff":{"w":79,"h":70},"b":{"w":78,"h":69},"bf":{"w":83,"h":78},"bw":{"f":{"w":64,"h":63},"ff":{"w":62,"h":63},"b":{"w":60,"h":60},"bf":{"w":60,"h":60}},"g":3},"carvanha":{"n":318,"f":{"w":52,"h":72},"b":{"w":55,"h":71},"bw":{"f":{"w":58,"h":54},"b":{"w":53,"h":55}},"g":3},"sharpedo":{"n":319,"f":{"w":78,"h":102},"b":{"w":70,"h":102},"bw":{"f":{"w":72,"h":72},"b":{"w":67,"h":72}},"g":3},"sharpedomega":{"n":319,"i":1350,"f":{"w":86,"h":96},"b":{"w":92,"h":107},"g":6,"s":8},"wailmer":{"n":320,"f":{"w":106,"h":68},"b":{"w":103,"h":68},"bw":{"f":{"w":84,"h":56},"b":{"w":83,"h":56}},"g":3},"wailord":{"n":321,"f":{"w":146,"h":81},"b":{"w":171,"h":102},"bw":{"f":{"w":103,"h":88},"b":{"w":110,"h":70}},"g":3},"numel":{"n":322,"f":{"w":52,"h":56},"ff":{"w":52,"h":56},"b":{"w":55,"h":55},"bf":{"w":63,"h":62},"bw":{"f":{"w":48,"h":48},"ff":{"w":48,"h":48},"b":{"w":48,"h":53},"bf":{"w":48,"h":53}},"g":3},"camerupt":{"n":323,"f":{"w":81,"h":74},"ff":{"w":74,"h":71},"b":{"w":85,"h":73},"bf":{"w":93,"h":85},"bw":{"f":{"w":79,"h":61},"ff":{"w":79,"h":62},"b":{"w":83,"h":62},"bf":{"w":83,"h":63}},"g":3},"cameruptmega":{"n":323,"i":1351,"f":{"w":102,"h":88},"b":{"w":107,"h":89},"g":6,"s":8},"torkoal":{"n":324,"f":{"w":63,"h":77},"b":{"w":65,"h":78},"bw":{"f":{"w":64,"h":65},"b":{"w":66,"h":64}},"g":3},"spoink":{"n":325,"f":{"w":35,"h":96},"b":{"w":29,"h":97},"bw":{"f":{"w":36,"h":66},"b":{"w":36,"h":65}},"g":3},"grumpig":{"n":326,"f":{"w":81,"h":73},"b":{"w":82,"h":76},"bw":{"f":{"w":59,"h":68},"b":{"w":61,"h":65}},"g":3},"spinda":{"n":327,"f":{"w":61,"h":69},"b":{"w":63,"h":69},"bw":{"f":{"w":39,"h":52},"b":{"w":41,"h":58}},"g":3},"trapinch":{"n":328,"f":{"w":62,"h":45},"b":{"w":52,"h":43},"bw":{"f":{"w":39,"h":42},"b":{"w":41,"h":45}},"g":3},"vibrava":{"n":329,"f":{"w":117,"h":50},"b":{"w":112,"h":47},"bw":{"f":{"w":62,"h":61},"b":{"w":63,"h":62}},"g":3},"flygon":{"n":330,"f":{"w":133,"h":106},"b":{"w":166,"h":110},"bw":{"f":{"w":71,"h":82},"b":{"w":89,"h":80}},"g":3},"cacnea":{"n":331,"f":{"w":81,"h":50},"b":{"w":75,"h":50},"bw":{"f":{"w":59,"h":41},"b":{"w":59,"h":41}},"g":3},"cacturne":{"n":332,"f":{"w":83,"h":87},"ff":{"w":83,"h":87},"b":{"w":76,"h":86},"bw":{"f":{"w":70,"h":70},"ff":{"w":70,"h":70},"b":{"w":71,"h":70},"bf":{"w":71,"h":70}},"g":3},"swablu":{"n":333,"f":{"w":93,"h":53},"b":{"w":70,"h":56},"bw":{"f":{"w":74,"h":49},"b":{"w":74,"h":52}},"g":3},"altaria":{"n":334,"f":{"w":144,"h":89},"b":{"w":120,"h":93},"bw":{"f":{"w":60,"h":64},"b":{"w":60,"h":71}},"g":3},"altariamega":{"n":334,"i":1352,"f":{"w":124,"h":142},"b":{"w":136,"h":151},"g":6,"s":7},"zangoose":{"n":335,"il":1442,"f":{"w":67,"h":78},"b":{"w":85,"h":82},"bw":{"f":{"w":74,"h":67},"b":{"w":70,"h":64}},"g":3},"seviper":{"n":336,"il":1443,"f":{"w":73,"h":88},"b":{"w":64,"h":92},"bw":{"f":{"w":104,"h":67},"b":{"w":106,"h":69}},"g":3},"lunatone":{"n":337,"f":{"w":45,"h":64},"b":{"w":43,"h":63},"bw":{"f":{"w":46,"h":59},"b":{"w":45,"h":59}},"g":3},"solrock":{"n":338,"f":{"w":90,"h":79},"b":{"w":81,"h":80},"bw":{"f":{"w":87,"h":66},"b":{"w":87,"h":65}},"g":3},"barboach":{"n":339,"f":{"w":49,"h":42},"b":{"w":70,"h":40},"bw":{"f":{"w":48,"h":35},"b":{"w":48,"h":36}},"g":3},"whiscash":{"n":340,"f":{"w":75,"h":62},"b":{"w":85,"h":66},"bw":{"f":{"w":75,"h":61},"b":{"w":70,"h":54}},"g":3},"corphish":{"n":341,"f":{"w":64,"h":55},"b":{"w":69,"h":53},"bw":{"f":{"w":59,"h":46},"b":{"w":57,"h":46}},"g":3},"crawdaunt":{"n":342,"f":{"w":102,"h":74},"b":{"w":100,"h":69},"bw":{"f":{"w":70,"h":64},"b":{"w":73,"h":64}},"g":3},"baltoy":{"n":343,"f":{"w":65,"h":60},"b":{"w":56,"h":60},"bw":{"f":{"w":41,"h":40},"b":{"w":40,"h":39}},"g":3},"claydol":{"n":344,"f":{"w":69,"h":85},"b":{"w":63,"h":85},"bw":{"f":{"w":70,"h":72},"b":{"w":70,"h":72}},"g":3},"lileep":{"n":345,"f":{"w":74,"h":68},"b":{"w":61,"h":68},"bw":{"f":{"w":60,"h":61},"b":{"w":54,"h":57}},"g":3},"cradily":{"n":346,"f":{"w":74,"h":88},"b":{"w":64,"h":87},"bw":{"f":{"w":60,"h":78},"b":{"w":64,"h":79}},"g":3},"anorith":{"n":347,"f":{"w":64,"h":37},"b":{"w":65,"h":36},"bw":{"f":{"w":45,"h":53},"b":{"w":46,"h":44}},"g":3},"armaldo":{"n":348,"f":{"w":76,"h":81},"b":{"w":114,"h":80},"bw":{"f":{"w":83,"h":68},"b":{"w":73,"h":68}},"g":3},"feebas":{"n":349,"f":{"w":43,"h":52},"b":{"w":49,"h":55},"bw":{"f":{"w":38,"h":52},"b":{"w":40,"h":51}},"g":3},"milotic":{"n":350,"f":{"w":98,"h":94},"ff":{"w":98,"h":95},"b":{"w":98,"h":93},"bf":{"w":107,"h":101},"bw":{"f":{"w":86,"h":78},"ff":{"w":86,"h":79},"b":{"w":93,"h":80},"bf":{"w":93,"h":80}},"g":3},"castform":{"n":351,"f":{"w":37,"h":59},"b":{"w":37,"h":59},"bw":{"f":{"w":47,"h":47},"b":{"w":47,"h":49}},"g":3},"castformsunny":{"n":351,"i":1069,"f":{"w":59,"h":69},"b":{"w":55,"h":68},"bw":{"f":{"w":62,"h":60},"b":{"w":62,"h":63}},"g":3,"s":8},"castformrainy":{"n":351,"i":1067,"f":{"w":38,"h":70},"b":{"w":38,"h":70},"bw":{"f":{"w":55,"h":61},"b":{"w":54,"h":60}},"g":3,"s":8},"castformsnowy":{"n":351,"i":1068,"il":1444,"f":{"w":61,"h":64},"b":{"w":63,"h":66},"bw":{"f":{"w":64,"h":69},"b":{"w":63,"h":67}},"g":3,"s":8},"kecleon":{"n":352,"f":{"w":51,"h":67},"b":{"w":50,"h":65},"bw":{"f":{"w":65,"h":55},"b":{"w":78,"h":58}},"g":3},"shuppet":{"n":353,"f":{"w":37,"h":63},"b":{"w":40,"h":61},"bw":{"f":{"w":39,"h":58},"b":{"w":41,"h":62}},"g":3},"banette":{"n":354,"f":{"w":62,"h":67},"b":{"w":84,"h":67},"bw":{"f":{"w":55,"h":51},"b":{"w":55,"h":52}},"g":3},"banettemega":{"n":354,"i":1353,"f":{"w":98,"h":99},"b":{"w":86,"h":104},"bw":{"f":{"w":96,"h":96}},"g":6,"s":7},"duskull":{"n":355,"f":{"w":48,"h":64},"b":{"w":47,"h":63},"bw":{"f":{"w":51,"h":45},"b":{"w":59,"h":47}},"g":3},"dusclops":{"n":356,"f":{"w":96,"h":81},"b":{"w":109,"h":83},"bw":{"f":{"w":84,"h":70},"b":{"w":75,"h":73}},"g":3},"tropius":{"n":357,"f":{"w":203,"h":79},"b":{"w":179,"h":73},"bw":{"f":{"w":94,"h":80},"b":{"w":82,"h":85}},"g":3},"chimecho":{"n":358,"f":{"w":41,"h":73},"b":{"w":37,"h":75},"bw":{"f":{"w":35,"h":65},"b":{"w":35,"h":65}},"g":3},"absol":{"n":359,"il":1446,"f":{"w":59,"h":92},"b":{"w":80,"h":89},"bw":{"f":{"w":65,"h":64},"b":{"w":68,"h":60}},"g":3},"absolmega":{"n":359,"i":1354,"il":1445,"f":{"w":98,"h":101},"b":{"w":101,"h":101},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":5},"wynaut":{"n":360,"f":{"w":76,"h":53},"b":{"w":66,"h":54},"bw":{"f":{"w":50,"h":58},"b":{"w":48,"h":59}},"g":3},"snorunt":{"n":361,"f":{"w":44,"h":47},"b":{"w":42,"h":47},"bw":{"f":{"w":32,"h":39},"b":{"w":34,"h":38}},"g":3},"glalie":{"n":362,"f":{"w":72,"h":75},"b":{"w":73,"h":75},"bw":{"f":{"w":59,"h":62},"b":{"w":62,"h":60}},"g":3},"glaliemega":{"n":362,"i":1355,"f":{"w":62,"h":87},"b":{"w":64,"h":89},"bw":{"f":{"w":62,"h":84},"b":{"w":65,"h":82}},"g":6,"s":6},"spheal":{"n":363,"f":{"w":45,"h":42},"b":{"w":53,"h":42},"bw":{"f":{"w":43,"h":38},"b":{"w":41,"h":37}},"g":3},"sealeo":{"n":364,"f":{"w":79,"h":50},"b":{"w":99,"h":48},"bw":{"f":{"w":67,"h":49},"b":{"w":63,"h":51}},"g":3},"walrein":{"n":365,"f":{"w":98,"h":71},"b":{"w":111,"h":67},"bw":{"f":{"w":78,"h":70},"b":{"w":74,"h":73}},"g":3},"clamperl":{"n":366,"f":{"w":56,"h":54},"b":{"w":57,"h":54},"bw":{"f":{"w":45,"h":42},"b":{"w":46,"h":43}},"g":3},"huntail":{"n":367,"f":{"w":93,"h":65},"b":{"w":145,"h":91},"bw":{"f":{"w":81,"h":74},"b":{"w":71,"h":69}},"g":3},"gorebyss":{"n":368,"f":{"w":82,"h":74},"b":{"w":96,"h":75},"bw":{"f":{"w":97,"h":50},"b":{"w":105,"h":57}},"g":3},"relicanth":{"n":369,"f":{"w":69,"h":68},"ff":{"w":69,"h":68},"b":{"w":70,"h":72},"bf":{"w":77,"h":77},"bw":{"f":{"w":59,"h":51},"ff":{"w":59,"h":51},"b":{"w":57,"h":51},"bf":{"w":57,"h":51}},"g":3},"luvdisc":{"n":370,"f":{"w":34,"h":43},"b":{"w":32,"h":43},"bw":{"f":{"w":30,"h":37},"b":{"w":32,"h":37}},"g":3},"bagon":{"n":371,"f":{"w":35,"h":59},"b":{"w":34,"h":58},"bw":{"f":{"w":43,"h":51},"b":{"w":40,"h":50}},"g":3},"shelgon":{"n":372,"f":{"w":57,"h":59},"b":{"w":57,"h":59},"bw":{"f":{"w":46,"h":49},"b":{"w":47,"h":50}},"g":3},"salamence":{"n":373,"f":{"w":137,"h":92},"b":{"w":188,"h":84},"bw":{"f":{"w":85,"h":72},"b":{"w":89,"h":82}},"g":3},"salamencemega":{"n":373,"i":1356,"f":{"w":217,"h":71},"b":{"w":243,"h":84},"bw":{"f":{"w":108,"h":77}},"g":6,"s":9},"beldum":{"n":374,"f":{"w":46,"h":33},"b":{"w":49,"h":34},"bw":{"f":{"w":47,"h":45},"b":{"w":45,"h":44}},"g":3},"metang":{"n":375,"f":{"w":105,"h":69},"b":{"w":93,"h":66},"bw":{"f":{"w":83,"h":64},"b":{"w":75,"h":59}},"g":3},"metagross":{"n":376,"f":{"w":142,"h":73},"b":{"w":147,"h":73},"bw":{"f":{"w":83,"h":58},"b":{"w":82,"h":56}},"g":3},"metagrossmega":{"n":376,"i":1357,"f":{"w":146,"h":118},"b":{"w":158,"h":101},"g":6,"s":9},"regirock":{"n":377,"il":1447,"f":{"w":92,"h":83},"b":{"w":84,"h":84},"bw":{"f":{"w":78,"h":71},"b":{"w":73,"h":69}},"g":3},"regice":{"n":378,"f":{"w":107,"h":82},"b":{"w":91,"h":83},"bw":{"f":{"w":87,"h":69},"b":{"w":81,"h":67}},"g":3},"registeel":{"n":379,"f":{"w":123,"h":77},"b":{"w":102,"h":79},"bw":{"f":{"w":71,"h":62},"b":{"w":72,"h":68}},"g":3},"latias":{"n":380,"f":{"w":108,"h":69},"b":{"w":110,"h":77},"bw":{"f":{"w":93,"h":66},"b":{"w":94,"h":69}},"g":3},"latiasmega":{"n":380,"i":1358,"f":{"w":183,"h":77},"b":{"w":192,"h":80},"bw":{"f":{"w":94,"h":109}},"g":6,"s":6},"latios":{"n":381,"f":{"w":121,"h":80},"b":{"w":119,"h":93},"bw":{"f":{"w":94,"h":85},"b":{"w":97,"h":85}},"g":3},"latiosmega":{"n":381,"i":1359,"f":{"w":187,"h":80},"b":{"w":195,"h":83},"bw":{"f":{"w":100,"h":104}},"g":6,"s":6},"kyogre":{"n":382,"f":{"w":234,"h":55},"b":{"w":228,"h":54},"bw":{"f":{"w":107,"h":83},"b":{"w":108,"h":68}},"g":3},"kyogreprimal":{"n":382,"i":1360,"f":{"w":230,"h":64},"b":{"w":262,"h":58},"bw":{"f":{"w":121,"h":109}},"g":6,"s":6},"groudon":{"n":383,"f":{"w":107,"h":94},"b":{"w":141,"h":89},"bw":{"f":{"w":90,"h":75},"b":{"w":88,"h":79}},"g":3},"groudonprimal":{"n":383,"i":1361,"f":{"w":117,"h":99},"b":{"w":157,"h":96},"bw":{"f":{"w":96,"h":79}},"g":6,"s":7},"rayquaza":{"n":384,"f":{"w":142,"h":153},"b":{"w":162,"h":165},"bw":{"f":{"w":110,"h":98},"b":{"w":101,"h":107}},"g":3},"rayquazamega":{"n":384,"i":1362,"f":{"w":137,"h":146},"b":{"w":244,"h":173},"bw":{"f":{"w":100,"h":108}},"g":6,"s":8},"jirachi":{"n":385,"f":{"w":92,"h":68},"b":{"w":78,"h":66},"bw":{"f":{"w":55,"h":47},"b":{"w":48,"h":46}},"g":3},"deoxys":{"n":386,"f":{"w":115,"h":86},"b":{"w":87,"h":87},"bw":{"f":{"w":68,"h":77},"b":{"w":70,"h":77}},"g":3},"deoxysattack":{"n":386,"i":1070,"f":{"w":90,"h":96},"b":{"w":77,"h":96},"bw":{"f":{"w":79,"h":85},"b":{"w":98,"h":84}},"g":3,"s":6},"deoxysdefense":{"n":386,"i":1071,"f":{"w":77,"h":93},"b":{"w":69,"h":92},"bw":{"f":{"w":87,"h":77},"b":{"w":77,"h":77}},"g":3,"s":6},"deoxysspeed":{"n":386,"i":1072,"f":{"w":87,"h":94},"b":{"w":89,"h":94},"bw":{"f":{"w":96,"h":78},"b":{"w":89,"h":77}},"g":3,"s":6},"turtwig":{"n":387,"f":{"w":45,"h":59},"b":{"w":44,"h":59},"bw":{"f":{"w":31,"h":42},"b":{"w":34,"h":43}},"g":4},"grotle":{"n":388,"f":{"w":70,"h":69},"b":{"w":85,"h":68},"bw":{"f":{"w":61,"h":61},"b":{"w":59,"h":62}},"g":4},"torterra":{"n":389,"il":1448,"f":{"w":98,"h":106},"b":{"w":101,"h":108},"bw":{"f":{"w":80,"h":80},"b":{"w":83,"h":82}},"g":4},"chimchar":{"n":390,"f":{"w":54,"h":70},"b":{"w":45,"h":72},"bw":{"f":{"w":41,"h":56},"b":{"w":45,"h":55}},"g":4},"monferno":{"n":391,"f":{"w":57,"h":91},"b":{"w":58,"h":103},"bw":{"f":{"w":70,"h":68},"b":{"w":68,"h":68}},"g":4},"infernape":{"n":392,"f":{"w":98,"h":119},"b":{"w":121,"h":118},"bw":{"f":{"w":80,"h":74},"b":{"w":83,"h":78}},"g":4},"piplup":{"n":393,"f":{"w":54,"h":59},"b":{"w":49,"h":58},"bw":{"f":{"w":30,"h":41},"b":{"w":28,"h":41}},"g":4},"prinplup":{"n":394,"f":{"w":77,"h":75},"b":{"w":55,"h":75},"bw":{"f":{"w":59,"h":61},"b":{"w":58,"h":60}},"g":4},"empoleon":{"n":395,"f":{"w":92,"h":111},"b":{"w":80,"h":111},"bw":{"f":{"w":89,"h":78},"b":{"w":82,"h":75}},"g":4},"starly":{"n":396,"f":{"w":35,"h":46},"ff":{"w":35,"h":46},"b":{"w":49,"h":46},"bw":{"f":{"w":38,"h":41},"ff":{"w":38,"h":41},"b":{"w":38,"h":42},"bf":{"w":38,"h":42}},"g":4},"staravia":{"n":397,"f":{"w":135,"h":122},"ff":{"w":135,"h":122},"b":{"w":106,"h":124},"bw":{"f":{"w":45,"h":54},"ff":{"w":45,"h":54},"b":{"w":48,"h":52},"bf":{"w":48,"h":52}},"g":4},"staraptor":{"n":398,"f":{"w":193,"h":195},"ff":{"w":193,"h":176},"b":{"w":168,"h":195},"bw":{"f":{"w":69,"h":69},"ff":{"w":69,"h":69},"b":{"w":74,"h":68},"bf":{"w":74,"h":68}},"g":4},"bidoof":{"n":399,"f":{"w":52,"h":46},"ff":{"w":52,"h":46},"b":{"w":60,"h":46},"bf":{"w":65,"h":48},"bw":{"f":{"w":49,"h":45},"ff":{"w":48,"h":45},"b":{"w":50,"h":45},"bf":{"w":50,"h":45}},"g":4},"bibarel":{"n":400,"f":{"w":81,"h":56},"ff":{"w":81,"h":56},"b":{"w":109,"h":66},"bw":{"f":{"w":70,"h":57},"ff":{"w":70,"h":57},"b":{"w":68,"h":59},"bf":{"w":68,"h":59}},"g":4},"kricketot":{"n":401,"f":{"w":60,"h":61},"ff":{"w":60,"h":61},"b":{"w":47,"h":61},"bw":{"f":{"w":44,"h":45},"ff":{"w":44,"h":45},"b":{"w":47,"h":47},"bf":{"w":47,"h":47}},"g":4},"kricketune":{"n":402,"f":{"w":67,"h":73},"ff":{"w":67,"h":73},"b":{"w":60,"h":73},"bw":{"f":{"w":69,"h":65},"ff":{"w":69,"h":65},"b":{"w":70,"h":65},"bf":{"w":70,"h":65}},"g":4},"shinx":{"n":403,"f":{"w":62,"h":59},"ff":{"w":62,"h":54},"b":{"w":77,"h":56},"bf":{"w":82,"h":56},"bw":{"f":{"w":51,"h":38},"ff":{"w":51,"h":37},"b":{"w":54,"h":39},"bf":{"w":54,"h":39}},"g":4},"luxio":{"n":404,"f":{"w":70,"h":77},"ff":{"w":66,"h":72},"b":{"w":103,"h":72},"bf":{"w":102,"h":74},"bw":{"f":{"w":68,"h":49},"ff":{"w":68,"h":47},"b":{"w":63,"h":54},"bf":{"w":63,"h":52}},"g":4},"luxray":{"n":405,"f":{"w":87,"h":99},"ff":{"w":87,"h":91},"b":{"w":105,"h":91},"bf":{"w":110,"h":86},"bw":{"f":{"w":77,"h":63},"ff":{"w":76,"h":61},"b":{"w":72,"h":66},"bf":{"w":72,"h":64}},"g":4},"budew":{"n":406,"il":1449,"f":{"w":42,"h":49},"b":{"w":40,"h":51},"bw":{"f":{"w":29,"h":56},"b":{"w":29,"h":56}},"g":4},"roserade":{"n":407,"il":1450,"f":{"w":57,"h":78},"ff":{"w":57,"h":78},"b":{"w":64,"h":79},"bf":{"w":58,"h":78},"bw":{"f":{"w":71,"h":58},"ff":{"w":71,"h":58},"b":{"w":69,"h":58},"bf":{"w":69,"h":58}},"g":4},"cranidos":{"n":408,"f":{"w":48,"h":68},"b":{"w":49,"h":64},"bw":{"f":{"w":41,"h":60},"b":{"w":48,"h":61}},"g":4},"rampardos":{"n":409,"f":{"w":75,"h":89},"b":{"w":92,"h":86},"bw":{"f":{"w":65,"h":81},"b":{"w":65,"h":82}},"g":4},"shieldon":{"n":410,"f":{"w":46,"h":55},"b":{"w":54,"h":54},"bw":{"f":{"w":49,"h":41},"b":{"w":51,"h":43}},"g":4},"bastiodon":{"n":411,"f":{"w":90,"h":80},"b":{"w":93,"h":74},"bw":{"f":{"w":69,"h":64},"b":{"w":69,"h":66}},"g":4},"burmy":{"n":412,"f":{"w":47,"h":64},"b":{"w":49,"h":64},"bw":{"f":{"w":62,"h":48},"b":{"w":62,"h":48}},"g":4},"burmysandy":{"n":412,"i":1073,"f":{"w":44,"h":61},"b":{"w":42,"h":60},"bw":{"f":{"w":55,"h":44},"b":{"w":56,"h":44}},"g":4,"s":5},"burmytrash":{"n":412,"i":1074,"f":{"w":52,"h":64},"b":{"w":47,"h":64},"bw":{"f":{"w":60,"h":48},"b":{"w":61,"h":48}},"g":4,"s":5},"wormadam":{"n":413,"f":{"w":81,"h":82},"b":{"w":66,"h":82},"bw":{"f":{"w":55,"h":63},"b":{"w":55,"h":64}},"g":4},"wormadamsandy":{"n":413,"i":1075,"f":{"w":82,"h":77},"b":{"w":77,"h":77},"bw":{"f":{"w":54,"h":63},"b":{"w":51,"h":63}},"g":4,"s":8},"wormadamtrash":{"n":413,"i":1076,"f":{"w":84,"h":82},"b":{"w":74,"h":82},"bw":{"f":{"w":57,"h":63},"b":{"w":52,"h":63}},"g":4,"s":8},"mothim":{"n":414,"f":{"w":150,"h":86},"b":{"w":124,"h":97},"bw":{"f":{"w":84,"h":49},"b":{"w":85,"h":56}},"g":4},"combee":{"n":415,"f":{"w":92,"h":46},"ff":{"w":92,"h":46},"b":{"w":87,"h":44},"bw":{"f":{"w":68,"h":42},"ff":{"w":68,"h":42},"b":{"w":67,"h":42},"bf":{"w":67,"h":42}},"g":4},"vespiquen":{"n":416,"f":{"w":75,"h":88},"b":{"w":75,"h":96},"bw":{"f":{"w":68,"h":79},"b":{"w":66,"h":79}},"g":4},"pachirisu":{"n":417,"f":{"w":57,"h":75},"ff":{"w":57,"h":75},"b":{"w":86,"h":80},"bw":{"f":{"w":53,"h":55},"ff":{"w":53,"h":55},"b":{"w":55,"h":58},"bf":{"w":55,"h":58}},"g":4},"buizel":{"n":418,"f":{"w":66,"h":69},"ff":{"w":66,"h":69},"b":{"w":79,"h":69},"bf":{"w":84,"h":75},"bw":{"f":{"w":45,"h":49},"ff":{"w":45,"h":49},"b":{"w":48,"h":49},"bf":{"w":48,"h":49}},"g":4},"floatzel":{"n":419,"f":{"w":88,"h":93},"ff":{"w":88,"h":93},"b":{"w":98,"h":95},"bf":{"w":101,"h":98},"bw":{"f":{"w":67,"h":71},"ff":{"w":67,"h":71},"b":{"w":65,"h":71},"bf":{"w":65,"h":71}},"g":4},"cherubi":{"n":420,"f":{"w":50,"h":48},"b":{"w":50,"h":48},"bw":{"f":{"w":41,"h":38},"b":{"w":37,"h":39}},"g":4},"cherrim":{"n":421,"f":{"w":50,"h":57},"b":{"w":48,"h":55},"bw":{"f":{"w":43,"h":50},"b":{"w":41,"h":51}},"g":4},"cherrimsunshine":{"n":421,"i":1077,"f":{"w":76,"h":67},"b":{"w":69,"h":68},"bw":{"f":{"w":44,"h":44},"b":{"w":41,"h":47}},"g":4,"s":7},"shellos":{"n":422,"f":{"w":44,"h":62},"b":{"w":50,"h":61},"bw":{"f":{"w":35,"h":40},"b":{"w":35,"h":42}},"g":4},"shelloseast":{"n":422,"i":1078,"f":{"w":51,"h":60},"b":{"w":53,"h":61},"bw":{"f":{"w":35,"h":39},"b":{"w":36,"h":40}},"g":4,"s":7},"gastrodon":{"n":423,"f":{"w":63,"h":77},"b":{"w":68,"h":74},"bw":{"f":{"w":54,"h":61},"b":{"w":55,"h":62}},"g":4},"gastrodoneast":{"n":423,"i":1079,"f":{"w":62,"h":77},"b":{"w":66,"h":75},"bw":{"f":{"w":58,"h":62},"b":{"w":53,"h":62}},"g":4,"s":9},"ambipom":{"n":424,"f":{"w":104,"h":88},"ff":{"w":104,"h":88},"b":{"w":77,"h":93},"bf":{"w":108,"h":99},"bw":{"f":{"w":87,"h":74},"ff":{"w":87,"h":74},"b":{"w":88,"h":75},"bf":{"w":88,"h":75}},"g":4},"drifloon":{"n":425,"f":{"w":32,"h":75},"b":{"w":32,"h":75},"bw":{"f":{"w":56,"h":69},"b":{"w":54,"h":70}},"g":4},"drifblim":{"n":426,"f":{"w":47,"h":89},"b":{"w":48,"h":90},"bw":{"f":{"w":73,"h":72},"b":{"w":71,"h":73}},"g":4},"buneary":{"n":427,"f":{"w":54,"h":73},"b":{"w":43,"h":75},"bw":{"f":{"w":40,"h":69},"b":{"w":44,"h":67}},"g":4},"lopunny":{"n":428,"f":{"w":57,"h":87},"b":{"w":59,"h":88},"bw":{"f":{"w":72,"h":62},"b":{"w":72,"h":63}},"g":4},"lopunnymega":{"n":428,"i":1363,"f":{"w":67,"h":88},"b":{"w":63,"h":87},"g":6,"s":7},"mismagius":{"n":429,"f":{"w":71,"h":116},"b":{"w":77,"h":117},"bw":{"f":{"w":61,"h":84},"b":{"w":55,"h":91}},"g":4},"honchkrow":{"n":430,"f":{"w":192,"h":182},"b":{"w":162,"h":177},"bw":{"f":{"w":77,"h":59},"b":{"w":82,"h":67}},"g":4},"glameow":{"n":431,"f":{"w":60,"h":86},"b":{"w":79,"h":94},"bw":{"f":{"w":72,"h":67},"b":{"w":73,"h":64}},"g":4},"purugly":{"n":432,"f":{"w":70,"h":81},"b":{"w":70,"h":80},"bw":{"f":{"w":66,"h":63},"b":{"w":73,"h":61}},"g":4},"chingling":{"n":433,"f":{"w":50,"h":66},"b":{"w":55,"h":72},"bw":{"f":{"w":38,"h":58},"b":{"w":41,"h":61}},"g":4},"stunky":{"n":434,"f":{"w":85,"h":66},"b":{"w":107,"h":73},"bw":{"f":{"w":57,"h":51},"b":{"w":57,"h":53}},"g":4},"skuntank":{"n":435,"f":{"w":87,"h":79},"b":{"w":88,"h":81},"bw":{"f":{"w":74,"h":57},"b":{"w":78,"h":64}},"g":4},"bronzor":{"n":436,"f":{"w":40,"h":55},"b":{"w":36,"h":55},"bw":{"f":{"w":47,"h":59},"b":{"w":48,"h":60}},"g":4},"bronzong":{"n":437,"f":{"w":89,"h":73},"b":{"w":72,"h":72},"bw":{"f":{"w":94,"h":74},"b":{"w":94,"h":74}},"g":4},"bonsly":{"n":438,"f":{"w":37,"h":57},"b":{"w":29,"h":57},"bw":{"f":{"w":42,"h":57},"b":{"w":42,"h":56}},"g":4},"mimejr":{"n":439,"f":{"w":49,"h":63},"b":{"w":34,"h":64},"bw":{"f":{"w":45,"h":61},"b":{"w":48,"h":64}},"g":4},"happiny":{"n":440,"f":{"w":39,"h":53},"b":{"w":39,"h":54},"bw":{"f":{"w":29,"h":50},"b":{"w":29,"h":51}},"g":4},"chatot":{"n":441,"f":{"w":48,"h":60},"b":{"w":59,"h":60},"bw":{"f":{"w":47,"h":49},"b":{"w":50,"h":49}},"g":4},"spiritomb":{"n":442,"f":{"w":78,"h":73},"b":{"w":73,"h":71},"bw":{"f":{"w":66,"h":63},"b":{"w":64,"h":62}},"g":4},"gible":{"n":443,"f":{"w":58,"h":57},"ff":{"w":58,"h":57},"b":{"w":61,"h":60},"bf":{"w":68,"h":65},"bw":{"f":{"w":57,"h":54},"ff":{"w":57,"h":54},"b":{"w":51,"h":51},"bf":{"w":51,"h":51}},"g":4},"gabite":{"n":444,"f":{"w":63,"h":76},"ff":{"w":63,"h":76},"b":{"w":83,"h":74},"bf":{"w":86,"h":80},"bw":{"f":{"w":71,"h":61},"ff":{"w":71,"h":61},"b":{"w":73,"h":60},"bf":{"w":73,"h":60}},"g":4},"garchomp":{"n":445,"f":{"w":115,"h":108},"ff":{"w":115,"h":108},"b":{"w":126,"h":106},"bf":{"w":124,"h":103},"bw":{"f":{"w":83,"h":80},"ff":{"w":83,"h":80},"b":{"w":89,"h":83},"bf":{"w":89,"h":83}},"g":4},"garchompmega":{"n":445,"i":1364,"f":{"w":132,"h":107},"b":{"w":163,"h":111},"bw":{"f":{"w":93,"h":80},"b":{"w":96,"h":96}},"g":6,"s":8},"munchlax":{"n":446,"f":{"w":47,"h":59},"b":{"w":44,"h":59},"bw":{"f":{"w":46,"h":48},"b":{"w":45,"h":50}},"g":4},"riolu":{"n":447,"f":{"w":42,"h":61},"b":{"w":47,"h":63},"bw":{"f":{"w":43,"h":50},"b":{"w":41,"h":49}},"g":4},"lucario":{"n":448,"f":{"w":52,"h":96},"b":{"w":70,"h":96},"bw":{"f":{"w":47,"h":63},"b":{"w":49,"h":65}},"g":4},"lucariomega":{"n":448,"i":1365,"f":{"w":58,"h":101},"b":{"w":58,"h":100},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":7},"hippopotas":{"n":449,"f":{"w":63,"h":53},"ff":{"w":63,"h":53},"b":{"w":62,"h":51},"bf":{"w":66,"h":60},"bw":{"f":{"w":64,"h":42},"ff":{"w":64,"h":42},"b":{"w":57,"h":44},"bf":{"w":57,"h":44}},"g":4},"hippowdon":{"n":450,"f":{"w":97,"h":58},"ff":{"w":97,"h":58},"b":{"w":92,"h":58},"bf":{"w":92,"h":58},"bw":{"f":{"w":85,"h":62},"ff":{"w":85,"h":62},"b":{"w":94,"h":69},"bf":{"w":94,"h":69}},"g":4},"skorupi":{"n":451,"f":{"w":75,"h":64},"b":{"w":82,"h":68},"bw":{"f":{"w":71,"h":46},"b":{"w":70,"h":45}},"g":4},"drapion":{"n":452,"f":{"w":141,"h":85},"b":{"w":167,"h":87},"bw":{"f":{"w":96,"h":71},"b":{"w":99,"h":74}},"g":4},"croagunk":{"n":453,"f":{"w":60,"h":52},"ff":{"w":60,"h":52},"b":{"w":60,"h":52},"bw":{"f":{"w":47,"h":51},"ff":{"w":47,"h":51},"b":{"w":43,"h":53},"bf":{"w":43,"h":53}},"g":4},"toxicroak":{"n":454,"f":{"w":92,"h":81},"ff":{"w":92,"h":81},"b":{"w":90,"h":79},"bf":{"w":96,"h":85},"bw":{"f":{"w":68,"h":60},"ff":{"w":68,"h":60},"b":{"w":71,"h":63},"bf":{"w":71,"h":63}},"g":4},"carnivine":{"n":455,"f":{"w":119,"h":91},"b":{"w":89,"h":90},"bw":{"f":{"w":89,"h":67},"b":{"w":87,"h":69}},"g":4},"finneon":{"n":456,"f":{"w":50,"h":42},"ff":{"w":50,"h":44},"b":{"w":52,"h":44},"bf":{"w":68,"h":69},"bw":{"f":{"w":77,"h":51},"ff":{"w":77,"h":51},"b":{"w":72,"h":42},"bf":{"w":72,"h":42}},"g":4},"lumineon":{"n":457,"f":{"w":85,"h":84},"ff":{"w":85,"h":84},"b":{"w":84,"h":79},"bf":{"w":92,"h":89},"bw":{"f":{"w":73,"h":70},"ff":{"w":73,"h":70},"b":{"w":72,"h":78},"bf":{"w":72,"h":84}},"g":4},"mantyke":{"n":458,"f":{"w":69,"h":44},"b":{"w":78,"h":42},"bw":{"f":{"w":64,"h":60},"b":{"w":69,"h":60}},"g":4},"snover":{"n":459,"f":{"w":88,"h":61},"ff":{"w":88,"h":61},"b":{"w":72,"h":61},"bf":{"w":87,"h":66},"bw":{"f":{"w":72,"h":56},"ff":{"w":72,"h":56},"b":{"w":73,"h":55},"bf":{"w":73,"h":55}},"g":4},"abomasnow":{"n":460,"f":{"w":128,"h":87},"ff":{"w":128,"h":87},"b":{"w":100,"h":87},"bw":{"f":{"w":96,"h":79},"ff":{"w":96,"h":79},"b":{"w":94,"h":86},"bf":{"w":94,"h":86}},"g":4},"abomasnowmega":{"n":460,"i":1366,"f":{"w":125,"h":110},"b":{"w":124,"h":118},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":9},"weavile":{"n":461,"f":{"w":62,"h":78},"ff":{"w":62,"h":78},"b":{"w":68,"h":83},"bf":{"w":56,"h":77},"bw":{"f":{"w":56,"h":81},"ff":{"w":56,"h":81},"b":{"w":47,"h":77},"bf":{"w":47,"h":77}},"g":4},"magnezone":{"n":462,"f":{"w":109,"h":73},"b":{"w":109,"h":76},"bw":{"f":{"w":84,"h":61},"b":{"w":82,"h":55}},"g":4},"lickilicky":{"n":463,"f":{"w":69,"h":79},"b":{"w":86,"h":79},"bw":{"f":{"w":70,"h":77},"b":{"w":80,"h":81}},"g":4},"rhyperior":{"n":464,"f":{"w":105,"h":94},"ff":{"w":105,"h":91},"b":{"w":117,"h":91},"bf":{"w":121,"h":95},"bw":{"f":{"w":83,"h":72},"ff":{"w":83,"h":71},"b":{"w":94,"h":68},"bf":{"w":94,"h":68}},"g":4},"tangrowth":{"n":465,"f":{"w":145,"h":82},"ff":{"w":145,"h":82},"b":{"w":123,"h":84},"bw":{"f":{"w":97,"h":67},"ff":{"w":97,"h":67},"b":{"w":97,"h":67},"bf":{"w":97,"h":67}},"g":4},"electivire":{"n":466,"f":{"w":99,"h":85},"b":{"w":95,"h":87},"bw":{"f":{"w":97,"h":85},"b":{"w":101,"h":85}},"g":4},"magmortar":{"n":467,"il":1451,"f":{"w":102,"h":89},"b":{"w":104,"h":90},"bw":{"f":{"w":89,"h":83},"b":{"w":90,"h":78}},"g":4},"togekiss":{"n":468,"il":1452,"f":{"w":93,"h":60},"b":{"w":80,"h":60},"bw":{"f":{"w":86,"h":52},"b":{"w":86,"h":53}},"g":4},"yanmega":{"n":469,"f":{"w":143,"h":67},"b":{"w":138,"h":58},"bw":{"f":{"w":89,"h":94},"b":{"w":94,"h":91}},"g":4},"leafeon":{"n":470,"f":{"w":48,"h":82},"b":{"w":69,"h":90},"bw":{"f":{"w":62,"h":59},"b":{"w":76,"h":62}},"g":4},"glaceon":{"n":471,"f":{"w":61,"h":85},"b":{"w":91,"h":91},"bw":{"f":{"w":76,"h":54},"b":{"w":69,"h":54}},"g":4},"gliscor":{"n":472,"f":{"w":111,"h":101},"b":{"w":102,"h":102},"bw":{"f":{"w":84,"h":82},"b":{"w":81,"h":88}},"g":4},"mamoswine":{"n":473,"f":{"w":104,"h":84},"ff":{"w":98,"h":84},"b":{"w":109,"h":82},"bf":{"w":110,"h":85},"bw":{"f":{"w":84,"h":73},"ff":{"w":83,"h":73},"b":{"w":81,"h":73},"bf":{"w":81,"h":73}},"g":4},"porygonz":{"n":474,"f":{"w":70,"h":68},"b":{"w":64,"h":67},"bw":{"f":{"w":39,"h":58},"b":{"w":43,"h":57}},"g":4},"gallade":{"n":475,"f":{"w":64,"h":101},"b":{"w":71,"h":102},"bw":{"f":{"w":58,"h":70},"b":{"w":53,"h":69}},"g":4},"gallademega":{"n":475,"i":1367,"f":{"w":64,"h":99},"b":{"w":63,"h":98},"g":6,"s":7},"probopass":{"n":476,"f":{"w":94,"h":81},"b":{"w":97,"h":80},"bw":{"f":{"w":65,"h":84},"b":{"w":68,"h":83}},"g":4},"dusknoir":{"n":477,"f":{"w":128,"h":101},"b":{"w":113,"h":100},"bw":{"f":{"w":74,"h":75},"b":{"w":72,"h":78}},"g":4},"froslass":{"n":478,"f":{"w":66,"h":79},"b":{"w":54,"h":79},"bw":{"f":{"w":35,"h":75},"b":{"w":42,"h":72}},"g":4},"rotom":{"n":479,"f":{"w":105,"h":70},"ff":{"w":117,"h":65},"b":{"w":58,"h":73},"bw":{"f":{"w":89,"h":60},"b":{"w":88,"h":59}},"g":4},"rotomheat":{"n":479,"i":1082,"f":{"w":107,"h":62},"b":{"w":83,"h":62},"bw":{"f":{"w":60,"h":81},"b":{"w":61,"h":81}},"g":4,"s":5},"rotomwash":{"n":479,"i":1084,"il":1453,"f":{"w":110,"h":64},"b":{"w":100,"h":64},"bw":{"f":{"w":98,"h":84},"b":{"w":89,"h":82}},"g":4,"s":5},"rotomfrost":{"n":479,"i":1081,"f":{"w":117,"h":65},"b":{"w":105,"h":65},"bw":{"f":{"w":113,"h":87},"b":{"w":113,"h":87}},"g":4,"s":5},"rotomfan":{"n":479,"i":1080,"f":{"w":112,"h":74},"b":{"w":99,"h":73},"bw":{"f":{"w":94,"h":79},"b":{"w":92,"h":78}},"g":4,"s":5},"rotommow":{"n":479,"i":1083,"f":{"w":93,"h":59},"b":{"w":83,"h":63},"bw":{"f":{"w":74,"h":78},"b":{"w":73,"h":66}},"g":4,"s":5},"uxie":{"n":480,"f":{"w":63,"h":78},"b":{"w":80,"h":87},"bw":{"f":{"w":48,"h":51},"b":{"w":49,"h":53}},"g":4},"mesprit":{"n":481,"f":{"w":72,"h":78},"b":{"w":90,"h":90},"bw":{"f":{"w":54,"h":90},"b":{"w":56,"h":89}},"g":4},"azelf":{"n":482,"f":{"w":83,"h":86},"b":{"w":91,"h":88},"bw":{"f":{"w":74,"h":60},"b":{"w":76,"h":63}},"g":4},"dialga":{"n":483,"f":{"w":100,"h":122},"b":{"w":134,"h":118},"bw":{"f":{"w":84,"h":89},"b":{"w":84,"h":86}},"g":4},"dialgaorigin":{"n":483,"i":1269,"bw":{"f":{"w":104,"h":106},"b":{"w":113,"h":99}},"g":8,"s":6},"palkia":{"n":484,"f":{"w":107,"h":107},"b":{"w":132,"h":113},"bw":{"f":{"w":86,"h":78},"b":{"w":89,"h":82}},"g":4},"palkiaorigin":{"n":484,"i":1270,"g":8,"s":6},"heatran":{"n":485,"f":{"w":124,"h":64},"b":{"w":123,"h":59},"bw":{"f":{"w":85,"h":57},"b":{"w":88,"h":52}},"g":4},"regigigas":{"n":486,"f":{"w":166,"h":96},"b":{"w":137,"h":96},"bw":{"f":{"w":87,"h":69},"b":{"w":93,"h":72}},"g":4},"giratina":{"n":487,"f":{"w":140,"h":114},"b":{"w":131,"h":111},"bw":{"f":{"w":102,"h":89},"b":{"w":104,"h":86}},"g":4},"giratinaorigin":{"n":487,"i":1085,"f":{"w":156,"h":154},"b":{"w":174,"h":191},"bw":{"f":{"w":91,"h":88},"b":{"w":101,"h":89}},"g":4,"s":8},"cresselia":{"n":488,"f":{"w":113,"h":96},"b":{"w":109,"h":97},"bw":{"f":{"w":80,"h":78},"b":{"w":95,"h":77}},"g":4},"phione":{"n":489,"f":{"w":65,"h":56},"b":{"w":83,"h":63},"bw":{"f":{"w":63,"h":49},"b":{"w":63,"h":48}},"g":4},"manaphy":{"n":490,"f":{"w":65,"h":55},"b":{"w":77,"h":56},"bw":{"f":{"w":56,"h":51},"b":{"w":56,"h":52}},"g":4},"darkrai":{"n":491,"f":{"w":124,"h":116},"b":{"w":136,"h":130},"bw":{"f":{"w":94,"h":86},"b":{"w":91,"h":86}},"g":4},"shaymin":{"n":492,"f":{"w":48,"h":43},"b":{"w":48,"h":42},"bw":{"f":{"w":36,"h":36},"b":{"w":38,"h":35}},"g":4},"shayminsky":{"n":492,"i":1086,"il":1454,"f":{"w":78,"h":73},"b":{"w":76,"h":70},"bw":{"f":{"w":63,"h":69},"b":{"w":64,"h":70}},"g":4,"s":7},"arceus":{"n":493,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4},"arceusbug":{"n":493,"i":1278,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusdark":{"n":493,"i":1279,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusdragon":{"n":493,"i":1280,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuselectric":{"n":493,"i":1281,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusfairy":{"n":493,"i":1282,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":69,"h":82},"b":{"w":72,"h":85}},"g":6,"s":6},"arceusfighting":{"n":493,"i":1283,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusfire":{"n":493,"i":1284,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusflying":{"n":493,"i":1285,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusghost":{"n":493,"i":1286,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusgrass":{"n":493,"i":1287,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusground":{"n":493,"i":1288,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusice":{"n":493,"i":1289,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuspoison":{"n":493,"i":1290,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuspsychic":{"n":493,"i":1291,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusrock":{"n":493,"i":1292,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceussteel":{"n":493,"i":1293,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuswater":{"n":493,"i":1294,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"victini":{"n":494,"f":{"w":53,"h":73},"b":{"w":47,"h":74},"bw":{"f":{"w":53,"h":62},"b":{"w":50,"h":58}},"g":5},"snivy":{"n":495,"f":{"w":56,"h":55},"b":{"w":54,"h":55},"bw":{"f":{"w":48,"h":44},"b":{"w":47,"h":42}},"g":5},"servine":{"n":496,"f":{"w":58,"h":82},"b":{"w":77,"h":82},"bw":{"f":{"w":65,"h":60},"b":{"w":64,"h":61}},"g":5},"serperior":{"n":497,"f":{"w":90,"h":108},"b":{"w":86,"h":105},"bw":{"f":{"w":90,"h":74},"b":{"w":80,"h":80}},"g":5},"tepig":{"n":498,"f":{"w":46,"h":62},"b":{"w":49,"h":61},"bw":{"f":{"w":44,"h":48},"b":{"w":44,"h":50}},"g":5},"pignite":{"n":499,"f":{"w":73,"h":78},"b":{"w":78,"h":73},"bw":{"f":{"w":54,"h":67},"b":{"w":59,"h":71}},"g":5},"emboar":{"n":500,"il":1455,"f":{"w":107,"h":102},"b":{"w":126,"h":102},"bw":{"f":{"w":90,"h":78},"b":{"w":92,"h":82}},"g":5},"oshawott":{"n":501,"f":{"w":41,"h":49},"b":{"w":47,"h":48},"bw":{"f":{"w":46,"h":52},"b":{"w":40,"h":54}},"g":5},"dewott":{"n":502,"f":{"w":44,"h":73},"b":{"w":51,"h":74},"bw":{"f":{"w":49,"h":57},"b":{"w":44,"h":56}},"g":5},"samurott":{"n":503,"f":{"w":103,"h":108},"b":{"w":94,"h":93},"bw":{"f":{"w":101,"h":94},"b":{"w":97,"h":91}},"g":5},"samurotthisui":{"n":503,"i":1245,"f":{"w":107,"h":97},"b":{"w":113,"h":110},"bw":{"f":{"w":94,"h":90},"b":{"w":89,"h":90}},"g":8,"s":8},"patrat":{"n":504,"f":{"w":46,"h":55},"b":{"w":53,"h":54},"bw":{"f":{"w":53,"h":45},"b":{"w":50,"h":45}},"g":5},"watchog":{"n":505,"f":{"w":48,"h":79},"b":{"w":56,"h":85},"bw":{"f":{"w":67,"h":69},"b":{"w":62,"h":69}},"g":5},"lillipup":{"n":506,"f":{"w":41,"h":55},"b":{"w":39,"h":55},"bw":{"f":{"w":40,"h":50},"b":{"w":45,"h":48}},"g":5},"herdier":{"n":507,"f":{"w":57,"h":74},"b":{"w":63,"h":72},"bw":{"f":{"w":55,"h":58},"b":{"w":58,"h":58}},"g":5},"stoutland":{"n":508,"f":{"w":91,"h":88},"b":{"w":91,"h":83},"bw":{"f":{"w":74,"h":71},"b":{"w":74,"h":71}},"g":5},"purrloin":{"n":509,"f":{"w":59,"h":70},"b":{"w":50,"h":71},"bw":{"f":{"w":58,"h":49},"b":{"w":57,"h":51}},"g":5},"liepard":{"n":510,"f":{"w":60,"h":109},"b":{"w":99,"h":120},"bw":{"f":{"w":81,"h":72},"b":{"w":82,"h":72}},"g":5},"pansage":{"n":511,"f":{"w":65,"h":66},"b":{"w":70,"h":64},"bw":{"f":{"w":48,"h":50},"b":{"w":48,"h":51}},"g":5},"simisage":{"n":512,"f":{"w":71,"h":95},"b":{"w":70,"h":92},"bw":{"f":{"w":69,"h":76},"b":{"w":61,"h":75}},"g":5},"pansear":{"n":513,"il":1456,"f":{"w":65,"h":63},"b":{"w":66,"h":63},"bw":{"f":{"w":44,"h":49},"b":{"w":44,"h":50}},"g":5},"simisear":{"n":514,"il":1457,"f":{"w":76,"h":81},"b":{"w":119,"h":83},"bw":{"f":{"w":69,"h":59},"b":{"w":73,"h":61}},"g":5},"panpour":{"n":515,"f":{"w":59,"h":64},"b":{"w":64,"h":64},"bw":{"f":{"w":46,"h":47},"b":{"w":46,"h":46}},"g":5},"simipour":{"n":516,"f":{"w":76,"h":83},"b":{"w":74,"h":84},"bw":{"f":{"w":60,"h":58},"b":{"w":59,"h":62}},"g":5},"munna":{"n":517,"f":{"w":46,"h":54},"b":{"w":47,"h":53},"bw":{"f":{"w":45,"h":46},"b":{"w":44,"h":46}},"g":5},"musharna":{"n":518,"f":{"w":95,"h":112},"b":{"w":79,"h":102},"bw":{"f":{"w":77,"h":74},"b":{"w":74,"h":73}},"g":5},"pidove":{"n":519,"f":{"w":41,"h":49},"b":{"w":48,"h":48},"bw":{"f":{"w":36,"h":38},"b":{"w":36,"h":39}},"g":5},"tranquill":{"n":520,"f":{"w":144,"h":124},"b":{"w":120,"h":119},"bw":{"f":{"w":58,"h":58},"b":{"w":58,"h":60}},"g":5},"unfezant":{"n":521,"if":1087,"f":{"w":156,"h":142},"ff":{"w":156,"h":142},"b":{"w":141,"h":151},"bf":{"w":142,"h":150},"bw":{"f":{"w":69,"h":76},"ff":{"w":63,"h":72},"b":{"w":76,"h":79},"bf":{"w":73,"h":67}},"g":5},"blitzle":{"n":522,"f":{"w":42,"h":84},"b":{"w":50,"h":81},"bw":{"f":{"w":46,"h":63},"b":{"w":49,"h":63}},"g":5},"zebstrika":{"n":523,"f":{"w":66,"h":96},"b":{"w":78,"h":91},"bw":{"f":{"w":74,"h":75},"b":{"w":72,"h":74}},"g":5},"roggenrola":{"n":524,"f":{"w":46,"h":60},"b":{"w":41,"h":61},"bw":{"f":{"w":24,"h":39},"b":{"w":24,"h":38}},"g":5},"boldore":{"n":525,"f":{"w":81,"h":67},"b":{"w":93,"h":68},"bw":{"f":{"w":60,"h":53},"b":{"w":55,"h":52}},"g":5},"gigalith":{"n":526,"f":{"w":101,"h":97},"b":{"w":111,"h":95},"bw":{"f":{"w":80,"h":78},"b":{"w":75,"h":76}},"g":5},"woobat":{"n":527,"f":{"w":95,"h":56},"b":{"w":67,"h":58},"bw":{"f":{"w":91,"h":53},"b":{"w":91,"h":52}},"g":5},"swoobat":{"n":528,"f":{"w":144,"h":107},"b":{"w":98,"h":115},"bw":{"f":{"w":105,"h":101},"b":{"w":110,"h":102}},"g":5},"drilbur":{"n":529,"il":1458,"f":{"w":83,"h":49},"b":{"w":78,"h":48},"bw":{"f":{"w":82,"h":52},"b":{"w":61,"h":44}},"g":5},"excadrill":{"n":530,"il":1459,"f":{"w":89,"h":79},"b":{"w":84,"h":74},"bw":{"f":{"w":91,"h":76},"b":{"w":93,"h":80}},"g":5},"audino":{"n":531,"f":{"w":63,"h":75},"b":{"w":57,"h":75},"bw":{"f":{"w":46,"h":53},"b":{"w":44,"h":53}},"g":5},"audinomega":{"n":531,"i":1368,"f":{"w":65,"h":96},"b":{"w":56,"h":97},"g":6,"s":6},"timburr":{"n":532,"f":{"w":60,"h":61},"b":{"w":71,"h":60},"bw":{"f":{"w":47,"h":70},"b":{"w":71,"h":83}},"g":5},"gurdurr":{"n":533,"f":{"w":98,"h":78},"b":{"w":100,"h":76},"bw":{"f":{"w":69,"h":81},"b":{"w":72,"h":74}},"g":5},"conkeldurr":{"n":534,"f":{"w":123,"h":89},"b":{"w":112,"h":82},"bw":{"f":{"w":102,"h":69},"b":{"w":80,"h":59}},"g":5},"tympole":{"n":535,"f":{"w":47,"h":38},"b":{"w":56,"h":42},"bw":{"f":{"w":39,"h":44},"b":{"w":40,"h":49}},"g":5},"palpitoad":{"n":536,"f":{"w":49,"h":66},"b":{"w":56,"h":65},"bw":{"f":{"w":42,"h":57},"b":{"w":41,"h":54}},"g":5},"seismitoad":{"n":537,"f":{"w":95,"h":90},"b":{"w":88,"h":85},"bw":{"f":{"w":98,"h":66},"b":{"w":89,"h":64}},"g":5},"throh":{"n":538,"f":{"w":109,"h":88},"b":{"w":86,"h":79},"bw":{"f":{"w":74,"h":53},"b":{"w":65,"h":52}},"g":5},"sawk":{"n":539,"il":1460,"f":{"w":81,"h":83},"b":{"w":89,"h":82},"bw":{"f":{"w":58,"h":66},"b":{"w":56,"h":66}},"g":5},"sewaddle":{"n":540,"f":{"w":44,"h":47},"b":{"w":44,"h":46},"bw":{"f":{"w":33,"h":36},"b":{"w":33,"h":41}},"g":5},"swadloon":{"n":541,"f":{"w":70,"h":57},"b":{"w":63,"h":57},"bw":{"f":{"w":51,"h":45},"b":{"w":50,"h":51}},"g":5},"leavanny":{"n":542,"f":{"w":52,"h":109},"b":{"w":50,"h":108},"bw":{"f":{"w":49,"h":75},"b":{"w":46,"h":77}},"g":5},"venipede":{"n":543,"f":{"w":63,"h":44},"b":{"w":76,"h":43},"bw":{"f":{"w":50,"h":35},"b":{"w":53,"h":35}},"g":5},"whirlipede":{"n":544,"f":{"w":96,"h":65},"b":{"w":81,"h":65},"bw":{"f":{"w":68,"h":62},"b":{"w":66,"h":64}},"g":5},"scolipede":{"n":545,"f":{"w":112,"h":124},"b":{"w":110,"h":109},"bw":{"f":{"w":103,"h":91},"b":{"w":99,"h":88}},"g":5},"cottonee":{"n":546,"f":{"w":61,"h":40},"b":{"w":53,"h":40},"bw":{"f":{"w":45,"h":52},"b":{"w":45,"h":52}},"g":5},"whimsicott":{"n":547,"f":{"w":75,"h":67},"b":{"w":75,"h":72},"bw":{"f":{"w":63,"h":71},"b":{"w":63,"h":69}},"g":5},"petilil":{"n":548,"f":{"w":42,"h":69},"b":{"w":43,"h":69},"bw":{"f":{"w":39,"h":52},"b":{"w":37,"h":52}},"g":5},"lilligant":{"n":549,"il":1461,"f":{"w":67,"h":89},"b":{"w":64,"h":89},"bw":{"f":{"w":57,"h":70},"b":{"w":60,"h":70}},"g":5},"lilliganthisui":{"n":549,"i":1246,"f":{"w":84,"h":93},"b":{"w":77,"h":98},"bw":{"f":{"w":60,"h":74}},"g":8,"s":9},"basculin":{"n":550,"f":{"w":71,"h":56},"b":{"w":69,"h":58},"bw":{"f":{"w":52,"h":48},"b":{"w":43,"h":49}},"g":5},"basculinbluestriped":{"n":550,"i":1088,"f":{"w":71,"h":60},"b":{"w":69,"h":65},"bw":{"f":{"w":54,"h":46},"b":{"w":44,"h":48}},"g":5,"s":8},"basculinwhitestriped":{"n":550,"i":1271,"f":{"w":57,"h":55},"b":{"w":65,"h":55},"bw":{"f":{"w":52,"h":39},"b":{"w":56,"h":42}},"g":8,"s":8},"sandile":{"n":551,"f":{"w":63,"h":47},"b":{"w":55,"h":44},"bw":{"f":{"w":52,"h":38},"b":{"w":58,"h":39}},"g":5},"krokorok":{"n":552,"f":{"w":81,"h":76},"b":{"w":97,"h":74},"bw":{"f":{"w":59,"h":62},"b":{"w":62,"h":64}},"g":5},"krookodile":{"n":553,"f":{"w":97,"h":94},"b":{"w":123,"h":100},"bw":{"f":{"w":95,"h":72},"b":{"w":85,"h":75}},"g":5},"darumaka":{"n":554,"f":{"w":74,"h":61},"b":{"w":65,"h":60},"bw":{"f":{"w":41,"h":42},"b":{"w":38,"h":43}},"g":5},"darumakagalar":{"n":554,"i":1207,"f":{"w":64,"h":56},"b":{"w":53,"h":57},"g":8,"s":8},"darmanitan":{"n":555,"f":{"w":99,"h":91},"b":{"w":87,"h":84},"bw":{"f":{"w":63,"h":69},"b":{"w":57,"h":64}},"g":5},"darmanitanzen":{"n":555,"i":1089,"f":{"w":62,"h":58},"b":{"w":60,"h":58},"bw":{"f":{"w":48,"h":48},"b":{"w":45,"h":48}},"g":5,"s":10},"darmanitangalar":{"n":555,"i":1208,"f":{"w":104,"h":106},"b":{"w":89,"h":103},"g":8,"s":10},"darmanitangalarzen":{"n":555,"i":1209,"f":{"w":104,"h":160},"b":{"w":107,"h":136},"bw":{"f":{"w":52,"h":72},"b":{"w":46,"h":68}},"g":8,"s":10},"maractus":{"n":556,"f":{"w":80,"h":84},"b":{"w":66,"h":85},"bw":{"f":{"w":61,"h":71},"b":{"w":80,"h":71}},"g":5},"dwebble":{"n":557,"f":{"w":53,"h":42},"b":{"w":57,"h":45},"bw":{"f":{"w":40,"h":38},"b":{"w":44,"h":35}},"g":5},"crustle":{"n":558,"f":{"w":97,"h":83},"b":{"w":99,"h":81},"bw":{"f":{"w":74,"h":67},"b":{"w":80,"h":65}},"g":5},"scraggy":{"n":559,"f":{"w":52,"h":63},"b":{"w":54,"h":64},"bw":{"f":{"w":38,"h":41},"b":{"w":34,"h":42}},"g":5},"scrafty":{"n":560,"f":{"w":56,"h":77},"b":{"w":62,"h":79},"bw":{"f":{"w":49,"h":77},"b":{"w":48,"h":78}},"g":5},"sigilyph":{"n":561,"f":{"w":143,"h":117},"b":{"w":130,"h":121},"bw":{"f":{"w":120,"h":99},"b":{"w":118,"h":98}},"g":5},"yamask":{"n":562,"f":{"w":64,"h":67},"b":{"w":58,"h":67},"bw":{"f":{"w":65,"h":52},"b":{"w":63,"h":52}},"g":5},"yamaskgalar":{"n":562,"i":1210,"f":{"w":60,"h":80},"b":{"w":51,"h":79},"g":8,"s":6},"cofagrigus":{"n":563,"f":{"w":165,"h":119},"b":{"w":150,"h":102},"bw":{"f":{"w":121,"h":89},"b":{"w":105,"h":90}},"g":5},"tirtouga":{"n":564,"f":{"w":105,"h":32},"b":{"w":102,"h":31},"bw":{"f":{"w":59,"h":47},"b":{"w":57,"h":52}},"g":5},"carracosta":{"n":565,"f":{"w":78,"h":85},"b":{"w":72,"h":84},"bw":{"f":{"w":78,"h":61},"b":{"w":85,"h":63}},"g":5},"archen":{"n":566,"f":{"w":104,"h":52},"b":{"w":110,"h":52},"bw":{"f":{"w":60,"h":54},"b":{"w":62,"h":47}},"g":5},"archeops":{"n":567,"f":{"w":144,"h":127},"b":{"w":182,"h":142},"bw":{"f":{"w":79,"h":92},"b":{"w":82,"h":98}},"g":5},"trubbish":{"n":568,"f":{"w":73,"h":57},"b":{"w":65,"h":59},"bw":{"f":{"w":54,"h":41},"b":{"w":60,"h":43}},"g":5},"garbodor":{"n":569,"il":1462,"f":{"w":118,"h":88},"b":{"w":129,"h":95},"bw":{"f":{"w":92,"h":70},"b":{"w":101,"h":84}},"g":5},"garbodorgmax":{"n":569,"i":1380,"f":{"w":167,"h":120},"b":{"w":249,"h":145},"bw":{"f":{"w":108,"h":88},"b":{"w":105,"h":95}},"g":8,"s":8},"zorua":{"n":570,"f":{"w":47,"h":63},"b":{"w":53,"h":62},"bw":{"f":{"w":45,"h":50},"b":{"w":44,"h":49}},"g":5},"zoruahisui":{"n":570,"i":1247,"f":{"w":91,"h":97},"b":{"w":111,"h":92},"g":8,"s":5},"zoroark":{"n":571,"f":{"w":86,"h":94},"b":{"w":141,"h":97},"bw":{"f":{"w":73,"h":64},"b":{"w":82,"h":66}},"g":5},"zoroarkhisui":{"n":571,"i":1248,"f":{"w":105,"h":117},"b":{"w":100,"h":112},"bw":{"f":{"w":72,"h":77}},"g":8,"s":7},"minccino":{"n":572,"f":{"w":72,"h":61},"b":{"w":69,"h":61},"bw":{"f":{"w":64,"h":55},"b":{"w":65,"h":55}},"g":5},"cinccino":{"n":573,"f":{"w":80,"h":63},"b":{"w":74,"h":65},"bw":{"f":{"w":67,"h":57},"b":{"w":70,"h":59}},"g":5},"gothita":{"n":574,"f":{"w":46,"h":59},"b":{"w":45,"h":58},"bw":{"f":{"w":34,"h":39},"b":{"w":34,"h":40}},"g":5},"gothorita":{"n":575,"f":{"w":69,"h":77},"b":{"w":55,"h":80},"bw":{"f":{"w":50,"h":61},"b":{"w":51,"h":59}},"g":5},"gothitelle":{"n":576,"f":{"w":62,"h":101},"b":{"w":60,"h":103},"bw":{"f":{"w":67,"h":73},"b":{"w":71,"h":74}},"g":5},"solosis":{"n":577,"il":1463,"f":{"w":45,"h":45},"b":{"w":45,"h":45},"bw":{"f":{"w":36,"h":36},"b":{"w":38,"h":36}},"g":5},"duosion":{"n":578,"f":{"w":52,"h":64},"b":{"w":53,"h":66},"bw":{"f":{"w":67,"h":66},"b":{"w":67,"h":67}},"g":5},"reuniclus":{"n":579,"f":{"w":160,"h":75},"b":{"w":105,"h":75},"bw":{"f":{"w":100,"h":63},"b":{"w":97,"h":67}},"g":5},"ducklett":{"n":580,"f":{"w":42,"h":62},"b":{"w":43,"h":60},"bw":{"f":{"w":37,"h":40},"b":{"w":39,"h":42}},"g":5},"swanna":{"n":581,"f":{"w":184,"h":183},"b":{"w":190,"h":167},"bw":{"f":{"w":137,"h":69},"b":{"w":93,"h":68}},"g":5},"vanillite":{"n":582,"f":{"w":49,"h":63},"b":{"w":46,"h":62},"bw":{"f":{"w":55,"h":44},"b":{"w":56,"h":49}},"g":5},"vanillish":{"n":583,"f":{"w":58,"h":85},"b":{"w":51,"h":85},"bw":{"f":{"w":58,"h":65},"b":{"w":58,"h":61}},"g":5},"vanilluxe":{"n":584,"il":1464,"f":{"w":83,"h":89},"b":{"w":67,"h":90},"bw":{"f":{"w":63,"h":72},"b":{"w":60,"h":75}},"g":5},"deerling":{"n":585,"f":{"w":46,"h":71},"b":{"w":52,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5},"deerlingsummer":{"n":585,"i":1091,"f":{"w":46,"h":71},"b":{"w":51,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5,"s":8},"deerlingautumn":{"n":585,"i":1090,"f":{"w":46,"h":71},"b":{"w":50,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5,"s":8},"deerlingwinter":{"n":585,"i":1092,"f":{"w":46,"h":71},"b":{"w":51,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5,"s":8},"sawsbuck":{"n":586,"f":{"w":53,"h":100},"b":{"w":62,"h":98},"bw":{"f":{"w":45,"h":78},"b":{"w":53,"h":78}},"g":5},"sawsbucksummer":{"n":586,"i":1094,"f":{"w":75,"h":110},"b":{"w":71,"h":108},"bw":{"f":{"w":71,"h":84},"b":{"w":71,"h":85}},"g":5,"s":8},"sawsbuckautumn":{"n":586,"i":1093,"f":{"w":78,"h":109},"b":{"w":71,"h":108},"bw":{"f":{"w":60,"h":85},"b":{"w":67,"h":82}},"g":5,"s":8},"sawsbuckwinter":{"n":586,"i":1095,"f":{"w":57,"h":101},"b":{"w":63,"h":99},"bw":{"f":{"w":50,"h":78},"b":{"w":57,"h":78}},"g":5,"s":8},"emolga":{"n":587,"f":{"w":66,"h":59},"b":{"w":78,"h":60},"bw":{"f":{"w":83,"h":76},"b":{"w":93,"h":76}},"g":5},"karrablast":{"n":588,"f":{"w":44,"h":67},"b":{"w":38,"h":67},"bw":{"f":{"w":32,"h":54},"b":{"w":33,"h":55}},"g":5},"escavalier":{"n":589,"f":{"w":105,"h":101},"b":{"w":108,"h":99},"bw":{"f":{"w":80,"h":75},"b":{"w":82,"h":77}},"g":5},"foongus":{"n":590,"f":{"w":47,"h":48},"b":{"w":47,"h":48},"bw":{"f":{"w":35,"h":36},"b":{"w":36,"h":35}},"g":5},"amoonguss":{"n":591,"il":1465,"f":{"w":78,"h":75},"b":{"w":74,"h":75},"bw":{"f":{"w":62,"h":57},"b":{"w":67,"h":60}},"g":5},"frillish":{"n":592,"if":1096,"f":{"w":68,"h":86},"ff":{"w":74,"h":87},"b":{"w":73,"h":91},"bf":{"w":72,"h":86},"bw":{"f":{"w":65,"h":72},"ff":{"w":64,"h":70},"b":{"w":65,"h":72},"bf":{"w":63,"h":70}},"g":5},"jellicent":{"n":593,"if":1097,"f":{"w":86,"h":105},"ff":{"w":99,"h":103},"b":{"w":87,"h":105},"bf":{"w":96,"h":106},"bw":{"f":{"w":84,"h":84},"ff":{"w":85,"h":86},"b":{"w":90,"h":83},"bf":{"w":87,"h":82}},"g":5},"alomomola":{"n":594,"f":{"w":44,"h":100},"b":{"w":56,"h":108},"bw":{"f":{"w":38,"h":88},"b":{"w":40,"h":89}},"g":5},"joltik":{"n":595,"f":{"w":47,"h":31},"b":{"w":47,"h":33},"bw":{"f":{"w":43,"h":37},"b":{"w":42,"h":35}},"g":5},"galvantula":{"n":596,"f":{"w":93,"h":49},"b":{"w":94,"h":53},"bw":{"f":{"w":68,"h":56},"b":{"w":69,"h":48}},"g":5},"ferroseed":{"n":597,"f":{"w":51,"h":64},"b":{"w":56,"h":64},"bw":{"f":{"w":31,"h":42},"b":{"w":33,"h":42}},"g":5},"ferrothorn":{"n":598,"f":{"w":128,"h":70},"b":{"w":138,"h":70},"bw":{"f":{"w":70,"h":78},"b":{"w":62,"h":78}},"g":5},"klink":{"n":599,"il":1466,"f":{"w":78,"h":73},"b":{"w":66,"h":74},"bw":{"f":{"w":43,"h":41},"b":{"w":43,"h":41}},"g":5},"klang":{"n":600,"il":1467,"f":{"w":84,"h":79},"b":{"w":84,"h":81},"bw":{"f":{"w":58,"h":51},"b":{"w":54,"h":56}},"g":5},"klinklang":{"n":601,"il":1468,"f":{"w":124,"h":72},"b":{"w":113,"h":75},"bw":{"f":{"w":70,"h":58},"b":{"w":69,"h":61}},"g":5},"tynamo":{"n":602,"f":{"w":49,"h":26},"b":{"w":46,"h":26},"bw":{"f":{"w":57,"h":19},"b":{"w":57,"h":20}},"g":5},"eelektrik":{"n":603,"f":{"w":74,"h":80},"b":{"w":86,"h":92},"bw":{"f":{"w":50,"h":69},"b":{"w":56,"h":72}},"g":5},"eelektross":{"n":604,"f":{"w":111,"h":70},"b":{"w":100,"h":73},"bw":{"f":{"w":96,"h":79},"b":{"w":87,"h":90}},"g":5},"elgyem":{"n":605,"f":{"w":33,"h":67},"b":{"w":33,"h":67},"bw":{"f":{"w":34,"h":51},"b":{"w":31,"h":51}},"g":5},"beheeyem":{"n":606,"f":{"w":49,"h":84},"b":{"w":47,"h":84},"bw":{"f":{"w":44,"h":67},"b":{"w":41,"h":66}},"g":5},"litwick":{"n":607,"il":1469,"f":{"w":43,"h":68},"b":{"w":42,"h":67},"bw":{"f":{"w":33,"h":44},"b":{"w":34,"h":45}},"g":5},"lampent":{"n":608,"f":{"w":98,"h":82},"b":{"w":76,"h":81},"bw":{"f":{"w":68,"h":63},"b":{"w":86,"h":62}},"g":5},"chandelure":{"n":609,"f":{"w":123,"h":108},"b":{"w":115,"h":110},"bw":{"f":{"w":92,"h":90},"b":{"w":92,"h":90}},"g":5},"axew":{"n":610,"f":{"w":47,"h":66},"b":{"w":49,"h":66},"bw":{"f":{"w":39,"h":45},"b":{"w":37,"h":46}},"g":5},"fraxure":{"n":611,"f":{"w":111,"h":78},"b":{"w":124,"h":76},"bw":{"f":{"w":63,"h":62},"b":{"w":72,"h":63}},"g":5},"haxorus":{"n":612,"f":{"w":115,"h":118},"b":{"w":146,"h":110},"bw":{"f":{"w":71,"h":85},"b":{"w":90,"h":88}},"g":5},"cubchoo":{"n":613,"f":{"w":51,"h":59},"b":{"w":41,"h":59},"bw":{"f":{"w":32,"h":38},"b":{"w":33,"h":37}},"g":5},"beartic":{"n":614,"f":{"w":105,"h":104},"b":{"w":95,"h":104},"bw":{"f":{"w":78,"h":76},"b":{"w":74,"h":74}},"g":5},"cryogonal":{"n":615,"f":{"w":78,"h":99},"b":{"w":74,"h":98},"bw":{"f":{"w":74,"h":86},"b":{"w":78,"h":86}},"g":5},"shelmet":{"n":616,"f":{"w":59,"h":49},"b":{"w":67,"h":49},"bw":{"f":{"w":48,"h":40},"b":{"w":48,"h":40}},"g":5},"accelgor":{"n":617,"f":{"w":92,"h":82},"b":{"w":138,"h":85},"bw":{"f":{"w":65,"h":75},"b":{"w":60,"h":78}},"g":5},"stunfisk":{"n":618,"f":{"w":98,"h":15},"b":{"w":93,"h":15},"bw":{"f":{"w":60,"h":46},"b":{"w":77,"h":33}},"g":5},"stunfiskgalar":{"n":618,"i":1211,"f":{"w":100,"h":61},"b":{"w":77,"h":60},"g":8,"s":8},"mienfoo":{"n":619,"f":{"w":58,"h":67},"b":{"w":58,"h":67},"bw":{"f":{"w":42,"h":66},"b":{"w":39,"h":64}},"g":5},"mienshao":{"n":620,"f":{"w":105,"h":96},"b":{"w":114,"h":93},"bw":{"f":{"w":87,"h":70},"b":{"w":80,"h":66}},"g":5},"druddigon":{"n":621,"f":{"w":123,"h":104},"b":{"w":125,"h":102},"bw":{"f":{"w":89,"h":74},"b":{"w":93,"h":82}},"g":5},"golett":{"n":622,"il":1470,"f":{"w":62,"h":65},"b":{"w":47,"h":65},"bw":{"f":{"w":58,"h":56},"b":{"w":56,"h":59}},"g":5},"golurk":{"n":623,"il":1471,"f":{"w":89,"h":108},"b":{"w":73,"h":110},"bw":{"f":{"w":83,"h":81},"b":{"w":77,"h":80}},"g":5},"pawniard":{"n":624,"f":{"w":46,"h":68},"b":{"w":48,"h":65},"bw":{"f":{"w":50,"h":46},"b":{"w":42,"h":45}},"g":5},"bisharp":{"n":625,"f":{"w":52,"h":99},"b":{"w":39,"h":97},"bw":{"f":{"w":58,"h":75},"b":{"w":58,"h":75}},"g":5},"bouffalant":{"n":626,"f":{"w":111,"h":87},"b":{"w":102,"h":81},"bw":{"f":{"w":82,"h":60},"b":{"w":88,"h":54}},"g":5},"rufflet":{"n":627,"f":{"w":45,"h":65},"b":{"w":59,"h":63},"bw":{"f":{"w":34,"h":55},"b":{"w":35,"h":56}},"g":5},"braviary":{"n":628,"f":{"w":207,"h":184},"b":{"w":192,"h":180},"bw":{"f":{"w":102,"h":110},"b":{"w":91,"h":119}},"g":5},"braviaryhisui":{"n":628,"i":1249,"f":{"w":181,"h":164},"b":{"w":173,"h":166},"g":8,"s":8},"vullaby":{"n":629,"f":{"w":64,"h":69},"b":{"w":60,"h":70},"bw":{"f":{"w":61,"h":62},"b":{"w":58,"h":61}},"g":5},"mandibuzz":{"n":630,"f":{"w":150,"h":126},"b":{"w":129,"h":124},"bw":{"f":{"w":57,"h":71},"b":{"w":54,"h":72}},"g":5},"heatmor":{"n":631,"f":{"w":77,"h":83},"b":{"w":82,"h":80},"bw":{"f":{"w":94,"h":57},"b":{"w":101,"h":59}},"g":5},"durant":{"n":632,"f":{"w":64,"h":38},"b":{"w":70,"h":39},"bw":{"f":{"w":54,"h":32},"b":{"w":53,"h":36}},"g":5},"deino":{"n":633,"f":{"w":43,"h":76},"b":{"w":55,"h":72},"bw":{"f":{"w":49,"h":50},"b":{"w":45,"h":50}},"g":5},"zweilous":{"n":634,"f":{"w":98,"h":86},"b":{"w":83,"h":74},"bw":{"f":{"w":67,"h":63},"b":{"w":66,"h":67}},"g":5},"hydreigon":{"n":635,"f":{"w":137,"h":130},"b":{"w":123,"h":134},"bw":{"f":{"w":90,"h":108},"b":{"w":84,"h":112}},"g":5},"larvesta":{"n":636,"f":{"w":62,"h":68},"b":{"w":68,"h":68},"bw":{"f":{"w":46,"h":49},"b":{"w":52,"h":47}},"g":5},"volcarona":{"n":637,"f":{"w":129,"h":93},"b":{"w":133,"h":101},"bw":{"f":{"w":92,"h":83},"b":{"w":91,"h":71}},"g":5},"cobalion":{"n":638,"f":{"w":56,"h":109},"b":{"w":72,"h":105},"bw":{"f":{"w":56,"h":79},"b":{"w":60,"h":81}},"g":5},"terrakion":{"n":639,"f":{"w":99,"h":84},"b":{"w":105,"h":81},"bw":{"f":{"w":81,"h":61},"b":{"w":86,"h":57}},"g":5},"virizion":{"n":640,"f":{"w":76,"h":97},"b":{"w":78,"h":98},"bw":{"f":{"w":61,"h":73},"b":{"w":60,"h":69}},"g":5},"tornadus":{"n":641,"f":{"w":82,"h":100},"b":{"w":89,"h":107},"bw":{"f":{"w":102,"h":98},"b":{"w":102,"h":99}},"g":5},"tornadustherian":{"n":641,"i":1098,"f":{"w":152,"h":135},"b":{"w":139,"h":137},"bw":{"f":{"w":149,"h":91},"b":{"w":124,"h":89}},"g":5,"s":8},"thundurus":{"n":642,"f":{"w":96,"h":103},"b":{"w":107,"h":117},"bw":{"f":{"w":109,"h":90},"b":{"w":109,"h":95}},"g":5},"thundurustherian":{"n":642,"i":1099,"f":{"w":129,"h":108},"b":{"w":145,"h":115},"bw":{"f":{"w":129,"h":98},"b":{"w":134,"h":109}},"g":5,"s":9},"reshiram":{"n":643,"f":{"w":163,"h":115},"b":{"w":165,"h":108},"bw":{"f":{"w":107,"h":84},"b":{"w":100,"h":90}},"g":5},"zekrom":{"n":644,"f":{"w":116,"h":136},"b":{"w":164,"h":135},"bw":{"f":{"w":102,"h":92},"b":{"w":108,"h":91}},"g":5},"landorus":{"n":645,"f":{"w":84,"h":93},"b":{"w":91,"h":104},"bw":{"f":{"w":87,"h":79},"b":{"w":86,"h":78}},"g":5},"landorustherian":{"n":645,"i":1100,"f":{"w":73,"h":94},"b":{"w":79,"h":94},"bw":{"f":{"w":92,"h":90},"b":{"w":90,"h":92}},"g":5,"s":8},"kyurem":{"n":646,"il":1474,"f":{"w":109,"h":91},"b":{"w":114,"h":86},"bw":{"f":{"w":99,"h":77},"b":{"w":80,"h":72}},"g":5},"kyuremblack":{"n":646,"i":1101,"il":1472,"f":{"w":124,"h":132},"b":{"w":147,"h":127},"bw":{"f":{"w":104,"h":107},"b":{"w":105,"h":113}},"g":5,"s":6},"kyuremwhite":{"n":646,"i":1102,"il":1473,"f":{"w":141,"h":133},"b":{"w":177,"h":129},"bw":{"f":{"w":103,"h":95},"b":{"w":117,"h":100}},"g":5,"s":6},"keldeo":{"n":647,"f":{"w":60,"h":88},"b":{"w":75,"h":87},"bw":{"f":{"w":64,"h":64},"b":{"w":61,"h":66}},"g":5},"keldeoresolute":{"n":647,"i":1103,"il":1475,"f":{"w":78,"h":86},"b":{"w":73,"h":82},"bw":{"f":{"w":76,"h":77},"b":{"w":78,"h":80}},"g":5,"s":6},"meloetta":{"n":648,"il":1476,"f":{"w":37,"h":71},"b":{"w":36,"h":70},"bw":{"f":{"w":49,"h":63},"b":{"w":40,"h":58}},"g":5},"meloettapirouette":{"n":648,"i":1104,"f":{"w":59,"h":89},"b":{"w":48,"h":89},"bw":{"f":{"w":46,"h":76},"b":{"w":40,"h":75}},"g":5,"s":8},"genesect":{"n":649,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5},"genesectdouse":{"n":649,"i":1295,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"genesectshock":{"n":649,"i":1296,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"genesectburn":{"n":649,"i":1297,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"genesectchill":{"n":649,"i":1298,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"chespin":{"n":650,"f":{"w":50,"h":64},"b":{"w":45,"h":65},"g":6},"quilladin":{"n":651,"f":{"w":73,"h":68},"b":{"w":69,"h":67},"bw":{"f":{"w":60,"h":53},"b":{"w":59,"h":54}},"g":6},"chesnaught":{"n":652,"f":{"w":128,"h":106},"b":{"w":131,"h":111},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"m":["gen5ani-shiny","gen5ani-back-shiny"]},"fennekin":{"n":653,"f":{"w":51,"h":59},"b":{"w":48,"h":59},"bw":{"f":{"w":44,"h":45},"b":{"w":46,"h":44}},"g":6},"braixen":{"n":654,"f":{"w":74,"h":86},"b":{"w":71,"h":87},"bw":{"f":{"w":63,"h":69},"b":{"w":55,"h":69}},"g":6},"delphox":{"n":655,"f":{"w":95,"h":110},"b":{"w":100,"h":121},"g":6},"froakie":{"n":656,"f":{"w":45,"h":52},"b":{"w":46,"h":52},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"frogadier":{"n":657,"f":{"w":73,"h":58},"b":{"w":70,"h":55},"g":6},"greninja":{"n":658,"il":1477,"f":{"w":131,"h":76},"b":{"w":123,"h":73},"bw":{"f":{"w":96,"h":96}},"g":6},"greninjabond":{"n":658,"il":1477,"g":7,"s":8},"greninjaash":{"n":658,"i":1169,"il":1478,"f":{"w":82,"h":90},"b":{"w":108,"h":93},"g":7,"s":8},"bunnelby":{"n":659,"f":{"w":64,"h":92},"b":{"w":54,"h":88},"g":6},"diggersby":{"n":660,"f":{"w":121,"h":105},"b":{"w":100,"h":100},"g":6},"fletchling":{"n":661,"f":{"w":47,"h":43},"b":{"w":55,"h":44},"bw":{"f":{"w":96,"h":96},"b":{"w":38,"h":40}},"g":6},"fletchinder":{"n":662,"f":{"w":109,"h":107},"b":{"w":100,"h":106},"bw":{"f":{"w":75,"h":86},"b":{"w":70,"h":87}},"g":6},"talonflame":{"n":663,"f":{"w":152,"h":185},"b":{"w":114,"h":185},"bw":{"f":{"w":128,"h":96},"b":{"w":128,"h":96}},"g":6},"scatterbug":{"n":664,"f":{"w":38,"h":56},"b":{"w":41,"h":56},"bw":{"f":{"w":28,"h":46},"b":{"w":28,"h":49}},"g":6},"spewpa":{"n":665,"f":{"w":44,"h":43},"b":{"w":42,"h":43},"bw":{"f":{"w":81,"h":45},"b":{"w":81,"h":45}},"g":6},"vivillon":{"n":666,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6},"vivillonarchipelago":{"n":666,"i":1105,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivilloncontinental":{"n":666,"i":1106,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonelegant":{"n":666,"i":1107,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillongarden":{"n":666,"i":1109,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonhighplains":{"n":666,"i":1110,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonicysnow":{"n":666,"i":1111,"f":{"w":104,"h":104},"b":{"w":96,"h":113},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonjungle":{"n":666,"i":1112,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonmarine":{"n":666,"i":1113,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonmodern":{"n":666,"i":1114,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonmonsoon":{"n":666,"i":1115,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonocean":{"n":666,"i":1116,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonpolar":{"n":666,"i":1118,"f":{"w":104,"h":104},"b":{"w":96,"h":113},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonriver":{"n":666,"i":1119,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonsandstorm":{"n":666,"i":1120,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonsavanna":{"n":666,"i":1121,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonsun":{"n":666,"i":1122,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillontundra":{"n":666,"i":1123,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonfancy":{"n":666,"i":1108,"f":{"w":104,"h":104},"b":{"w":98,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonpokeball":{"n":666,"i":1117,"f":{"w":104,"h":104},"b":{"w":98,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"litleo":{"n":667,"f":{"w":51,"h":61},"b":{"w":61,"h":59},"bw":{"f":{"w":42,"h":49},"b":{"w":43,"h":48}},"g":6},"pyroar":{"n":668,"if":1124,"f":{"w":79,"h":99},"ff":{"w":68,"h":95},"b":{"w":127,"h":100},"bf":{"w":112,"h":100},"bw":{"f":{"w":79,"h":77},"ff":{"w":80,"h":78},"b":{"w":80,"h":74},"bf":{"w":89,"h":78}},"g":6},"flabebe":{"n":669,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6},"flabebeblue":{"n":669,"i":1125,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"flabebeorange":{"n":669,"i":1126,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"flabebewhite":{"n":669,"i":1127,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"flabebeyellow":{"n":669,"i":1128,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"floette":{"n":670,"f":{"w":61,"h":95},"b":{"w":62,"h":97},"bw":{"f":{"w":96,"h":96}},"g":6},"floetteblue":{"n":670,"i":1129,"f":{"w":61,"h":95},"b":{"w":60,"h":96},"g":6,"s":7},"floetteorange":{"n":670,"i":1131,"f":{"w":61,"h":95},"b":{"w":60,"h":96},"g":6,"s":7},"floettewhite":{"n":670,"i":1132,"f":{"w":61,"h":95},"b":{"w":60,"h":96},"g":6,"s":7},"floetteyellow":{"n":670,"i":1133,"f":{"w":61,"h":95},"b":{"w":61,"h":96},"g":6,"s":7},"floetteeternal":{"n":670,"i":1130,"f":{"w":81,"h":90},"b":{"w":86,"h":99},"g":6,"s":7},"florges":{"n":671,"f":{"w":80,"h":100},"b":{"w":75,"h":105},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"florgesblue":{"n":671,"i":1134,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"florgesorange":{"n":671,"i":1135,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"florgeswhite":{"n":671,"i":1136,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"florgesyellow":{"n":671,"i":1137,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"skiddo":{"n":672,"f":{"w":48,"h":63},"b":{"w":57,"h":62},"bw":{"f":{"w":44,"h":58},"b":{"w":44,"h":58}},"g":6},"gogoat":{"n":673,"f":{"w":57,"h":83},"b":{"w":69,"h":81},"g":6},"pancham":{"n":674,"f":{"w":47,"h":64},"b":{"w":43,"h":63},"bw":{"f":{"w":50,"h":50},"b":{"w":96,"h":96}},"g":6},"pangoro":{"n":675,"f":{"w":97,"h":102},"b":{"w":105,"h":101},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"furfrou":{"n":676,"f":{"w":47,"h":84},"b":{"w":61,"h":81},"g":6},"furfroudandy":{"n":676,"i":1138,"f":{"w":56,"h":80},"b":{"w":55,"h":77},"g":6,"s":7},"furfroudebutante":{"n":676,"i":1139,"il":1479,"f":{"w":56,"h":77},"b":{"w":60,"h":72},"g":6,"s":7},"furfroudiamond":{"n":676,"i":1140,"f":{"w":51,"h":86},"b":{"w":55,"h":84},"g":6,"s":7},"furfrouheart":{"n":676,"i":1141,"f":{"w":52,"h":83},"b":{"w":54,"h":82},"g":6,"s":7},"furfroukabuki":{"n":676,"i":1142,"f":{"w":53,"h":78},"b":{"w":57,"h":76},"g":6,"s":7},"furfroulareine":{"n":676,"i":1143,"f":{"w":49,"h":79},"b":{"w":53,"h":76},"g":6,"s":7},"furfroumatron":{"n":676,"i":1144,"f":{"w":54,"h":75},"b":{"w":55,"h":73},"g":6,"s":7},"furfroupharaoh":{"n":676,"i":1145,"f":{"w":49,"h":84},"b":{"w":52,"h":81},"g":6,"s":7},"furfroustar":{"n":676,"i":1146,"f":{"w":53,"h":84},"b":{"w":58,"h":82},"g":6,"s":7},"espurr":{"n":677,"f":{"w":47,"h":58},"b":{"w":43,"h":58},"g":6},"meowstic":{"n":678,"if":1147,"f":{"w":55,"h":72},"ff":{"w":64,"h":73},"b":{"w":68,"h":74},"bf":{"w":70,"h":75},"g":6},"meowsticf":{"n":678,"i":1147,"f":{"w":64,"h":73},"b":{"w":70,"h":75},"g":6,"s":8},"honedge":{"n":679,"f":{"w":76,"h":79},"b":{"w":63,"h":77},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"doublade":{"n":680,"f":{"w":121,"h":76},"b":{"w":103,"h":73},"g":6},"aegislash":{"n":681,"f":{"w":75,"h":97},"b":{"w":68,"h":98},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"aegislashblade":{"n":681,"i":1148,"f":{"w":82,"h":104},"b":{"w":75,"h":105},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":9},"spritzee":{"n":682,"f":{"w":69,"h":61},"b":{"w":65,"h":62},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"aromatisse":{"n":683,"f":{"w":67,"h":80},"b":{"w":65,"h":79},"g":6},"swirlix":{"n":684,"f":{"w":47,"h":49},"b":{"w":50,"h":50},"bw":{"f":{"w":45,"h":53},"b":{"w":43,"h":52}},"g":6},"slurpuff":{"n":685,"f":{"w":68,"h":70},"b":{"w":61,"h":70},"bw":{"f":{"w":62,"h":69}},"g":6},"inkay":{"n":686,"f":{"w":68,"h":61},"b":{"w":54,"h":63},"bw":{"f":{"w":96,"h":96}},"g":6},"malamar":{"n":687,"f":{"w":130,"h":105},"b":{"w":115,"h":105},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"binacle":{"n":688,"f":{"w":76,"h":71},"b":{"w":69,"h":67},"bw":{"f":{"w":54,"h":58},"b":{"w":54,"h":56}},"g":6},"barbaracle":{"n":689,"il":1480,"f":{"w":118,"h":109},"b":{"w":100,"h":105},"g":6},"skrelp":{"n":690,"f":{"w":43,"h":77},"b":{"w":43,"h":76},"g":6},"dragalge":{"n":691,"f":{"w":139,"h":137},"b":{"w":141,"h":141},"bw":{"f":{"w":98,"h":98}},"g":6},"clauncher":{"n":692,"il":1481,"f":{"w":70,"h":52},"b":{"w":68,"h":50},"bw":{"f":{"w":63,"h":35},"b":{"w":63,"h":35}},"g":6},"clawitzer":{"n":693,"il":1482,"f":{"w":138,"h":95},"b":{"w":146,"h":127},"bw":{"f":{"w":118,"h":90},"b":{"w":111,"h":83}},"g":6},"helioptile":{"n":694,"f":{"w":58,"h":54},"b":{"w":65,"h":51},"bw":{"f":{"w":62,"h":50},"b":{"w":61,"h":48}},"g":6},"heliolisk":{"n":695,"f":{"w":71,"h":78},"b":{"w":102,"h":74},"g":6},"tyrunt":{"n":696,"f":{"w":65,"h":68},"b":{"w":77,"h":66},"bw":{"f":{"w":61,"h":50},"b":{"w":66,"h":50}},"g":6},"tyrantrum":{"n":697,"f":{"w":100,"h":108},"b":{"w":140,"h":108},"bw":{"f":{"w":100,"h":82},"b":{"w":100,"h":78}},"g":6},"amaura":{"n":698,"f":{"w":52,"h":90},"b":{"w":62,"h":85},"bw":{"f":{"w":38,"h":60},"b":{"w":45,"h":58}},"g":6},"aurorus":{"n":699,"f":{"w":67,"h":123},"b":{"w":109,"h":111},"g":6},"sylveon":{"n":700,"il":1483,"f":{"w":59,"h":86},"b":{"w":67,"h":83},"bw":{"f":{"w":51,"h":62},"b":{"w":55,"h":64}},"g":6},"hawlucha":{"n":701,"f":{"w":98,"h":72},"b":{"w":82,"h":72},"g":6},"dedenne":{"n":702,"f":{"w":68,"h":50},"b":{"w":69,"h":51},"bw":{"f":{"w":47,"h":36},"b":{"w":47,"h":35}},"g":6},"carbink":{"n":703,"f":{"w":54,"h":57},"b":{"w":46,"h":58},"bw":{"f":{"w":40,"h":49},"b":{"w":40,"h":49}},"g":6},"goomy":{"n":704,"f":{"w":39,"h":50},"b":{"w":52,"h":50},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"sliggoo":{"n":705,"f":{"w":42,"h":82},"b":{"w":47,"h":81},"bw":{"f":{"w":44,"h":64},"b":{"w":43,"h":63}},"g":6},"sliggoohisui":{"n":705,"i":1250,"f":{"w":61,"h":84},"b":{"w":67,"h":75},"bw":{"f":{"w":61,"h":65}},"g":8,"s":7},"goodra":{"n":706,"f":{"w":60,"h":102},"b":{"w":71,"h":101},"bw":{"f":{"w":72,"h":82}},"g":6},"goodrahisui":{"n":706,"i":1251,"f":{"w":71,"h":115},"b":{"w":99,"h":123},"bw":{"f":{"w":88,"h":91},"b":{"w":89,"h":93}},"g":8,"s":6},"klefki":{"n":707,"il":1484,"f":{"w":69,"h":88},"b":{"w":65,"h":88},"bw":{"f":{"w":108,"h":97},"b":{"w":108,"h":96}},"g":6},"phantump":{"n":708,"f":{"w":67,"h":60},"b":{"w":64,"h":61},"bw":{"f":{"w":70,"h":63},"b":{"w":67,"h":63}},"g":6},"trevenant":{"n":709,"f":{"w":131,"h":109},"b":{"w":102,"h":98},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"pumpkaboo":{"n":710,"f":{"w":56,"h":59},"b":{"w":44,"h":58},"g":6},"pumpkaboosmall":{"n":710,"f":{"w":48,"h":50},"b":{"w":43,"h":48},"g":6,"s":9},"pumpkaboolarge":{"n":710,"f":{"w":62,"h":65},"b":{"w":56,"h":64},"g":6,"s":9},"pumpkaboosuper":{"n":710,"f":{"w":62,"h":65},"b":{"w":70,"h":76},"g":6,"s":9},"gourgeist":{"n":711,"f":{"w":53,"h":83},"b":{"w":49,"h":84},"g":6},"gourgeistsmall":{"n":711,"f":{"w":46,"h":74},"b":{"w":43,"h":74},"g":6,"s":9},"gourgeistlarge":{"n":711,"f":{"w":53,"h":83},"b":{"w":54,"h":92},"g":6,"s":9},"gourgeistsuper":{"n":711,"f":{"w":53,"h":83},"b":{"w":64,"h":110},"g":6,"s":9},"bergmite":{"n":712,"f":{"w":50,"h":60},"b":{"w":51,"h":61},"bw":{"f":{"w":42,"h":44},"b":{"w":40,"h":44}},"g":6},"avalugg":{"n":713,"f":{"w":121,"h":57},"b":{"w":120,"h":58},"bw":{"f":{"w":84,"h":66},"b":{"w":92,"h":66}},"g":6},"avalugghisui":{"n":713,"i":1252,"f":{"w":109,"h":46},"b":{"w":129,"h":50},"g":8,"s":7},"noibat":{"n":714,"f":{"w":85,"h":96},"b":{"w":64,"h":98},"bw":{"f":{"w":66,"h":70},"b":{"w":68,"h":68}},"g":6},"noivern":{"n":715,"f":{"w":184,"h":156},"b":{"w":162,"h":157},"bw":{"f":{"w":96,"h":96}},"g":6,"m":["gen5ani-shiny"]},"xerneas":{"n":716,"f":{"w":106,"h":127},"b":{"w":94,"h":128},"bw":{"f":{"w":81,"h":96}},"g":6},"xerneasneutral":{"n":716,"i":1149,"f":{"w":106,"h":127},"b":{"w":94,"h":128},"g":6,"s":7,"nd":true},"yveltal":{"n":717,"f":{"w":201,"h":188},"b":{"w":186,"h":194},"bw":{"f":{"w":113,"h":104}},"g":6},"zygarde":{"n":718,"il":1485,"f":{"w":96,"h":107},"b":{"w":113,"h":123},"bw":{"f":{"w":88,"h":92},"b":{"w":87,"h":93}},"g":6},"zygarde10":{"n":718,"i":1170,"il":1486,"f":{"w":59,"h":73},"b":{"w":65,"h":71},"bw":{"f":{"w":61,"h":69},"b":{"w":64,"h":67}},"g":7,"s":7},"zygardecomplete":{"n":718,"i":1171,"il":1487,"f":{"w":158,"h":110},"b":{"w":145,"h":111},"g":7,"s":7},"diancie":{"n":719,"f":{"w":50,"h":90},"b":{"w":42,"h":93},"bw":{"f":{"w":63,"h":81},"b":{"w":61,"h":80}},"g":6},"dianciemega":{"n":719,"i":1369,"f":{"w":117,"h":114},"b":{"w":123,"h":123},"g":6,"s":7},"hoopa":{"n":720,"f":{"w":73,"h":68},"b":{"w":67,"h":71},"bw":{"f":{"w":90,"h":62}},"g":6},"hoopaunbound":{"n":720,"i":1150,"f":{"w":131,"h":126},"b":{"w":146,"h":130},"bw":{"f":{"w":105,"h":103}},"g":6,"s":5},"volcanion":{"n":721,"f":{"w":96,"h":91},"b":{"w":92,"h":96},"bw":{"f":{"w":81,"h":89}},"g":6},"rowlet":{"n":722,"f":{"w":43,"h":50},"b":{"w":43,"h":50},"bw":{"f":{"w":63,"h":35},"b":{"w":63,"h":35}},"g":7},"dartrix":{"n":723,"il":1488,"f":{"w":45,"h":68},"b":{"w":44,"h":68},"g":7},"decidueye":{"n":724,"f":{"w":61,"h":100},"b":{"w":59,"h":101},"g":7},"decidueyehisui":{"n":724,"i":1253,"f":{"w":64,"h":99},"b":{"w":62,"h":99},"g":8,"s":9},"litten":{"n":725,"f":{"w":55,"h":58},"b":{"w":61,"h":59},"bw":{"f":{"w":48,"h":49},"b":{"w":48,"h":50}},"g":7},"torracat":{"n":726,"f":{"w":86,"h":74},"b":{"w":91,"h":75},"g":7},"incineroar":{"n":727,"f":{"w":131,"h":96},"b":{"w":117,"h":93},"bw":{"f":{"w":87,"h":86},"b":{"w":88,"h":92}},"g":7},"popplio":{"n":728,"f":{"w":58,"h":49},"b":{"w":62,"h":48},"bw":{"f":{"w":46,"h":55},"b":{"w":43,"h":59}},"g":7},"brionne":{"n":729,"f":{"w":67,"h":71},"b":{"w":77,"h":69},"bw":{"f":{"w":64,"h":65},"b":{"w":68,"h":66}},"g":7},"primarina":{"n":730,"f":{"w":82,"h":108},"b":{"w":101,"h":132},"bw":{"f":{"w":91,"h":84},"b":{"w":84,"h":84}},"g":7},"pikipek":{"n":731,"f":{"w":38,"h":56},"b":{"w":43,"h":56},"bw":{"f":{"w":38,"h":42},"b":{"w":36,"h":42}},"g":7},"trumbeak":{"n":732,"f":{"w":89,"h":96},"b":{"w":91,"h":92},"bw":{"f":{"w":47,"h":52},"b":{"w":44,"h":52}},"g":7},"toucannon":{"n":733,"f":{"w":88,"h":76},"b":{"w":71,"h":76},"bw":{"f":{"w":89,"h":64},"b":{"w":93,"h":64}},"g":7},"yungoos":{"n":734,"f":{"w":71,"h":36},"b":{"w":99,"h":34},"bw":{"f":{"w":61,"h":37},"b":{"w":65,"h":39}},"g":7},"gumshoos":{"n":735,"f":{"w":59,"h":79},"b":{"w":85,"h":78},"bw":{"f":{"w":71,"h":62},"b":{"w":71,"h":67}},"g":7},"gumshoostotem":{"n":735,"f":{"w":86,"h":103},"b":{"w":113,"h":108},"g":7,"s":8},"grubbin":{"n":736,"f":{"w":57,"h":37},"b":{"w":56,"h":39},"bw":{"f":{"w":43,"h":24},"b":{"w":37,"h":24}},"g":7},"charjabug":{"n":737,"f":{"w":67,"h":48},"b":{"w":74,"h":47},"bw":{"f":{"w":45,"h":32},"b":{"w":47,"h":32}},"g":7},"vikavolt":{"n":738,"f":{"w":123,"h":78},"b":{"w":110,"h":79},"bw":{"f":{"w":74,"h":72},"b":{"w":74,"h":74}},"g":7},"vikavolttotem":{"n":738,"f":{"w":154,"h":98},"b":{"w":132,"h":99},"g":7,"s":8},"crabrawler":{"n":739,"f":{"w":73,"h":62},"b":{"w":74,"h":61},"bw":{"f":{"w":72,"h":57},"b":{"w":74,"h":57}},"g":7},"crabominable":{"n":740,"f":{"w":122,"h":78},"b":{"w":105,"h":73},"bw":{"f":{"w":101,"h":86},"b":{"w":99,"h":86}},"g":7},"oricorio":{"n":741,"f":{"w":64,"h":68},"b":{"w":65,"h":69},"g":7},"oricoriopompom":{"n":741,"i":1172,"f":{"w":68,"h":58},"b":{"w":57,"h":57},"bw":{"f":{"w":63,"h":54},"b":{"w":52,"h":55}},"g":7,"s":8},"oricoriopau":{"n":741,"i":1173,"f":{"w":65,"h":60},"b":{"w":55,"h":59},"bw":{"f":{"w":52,"h":54},"b":{"w":46,"h":55}},"g":7,"s":8},"oricoriosensu":{"n":741,"i":1174,"f":{"w":67,"h":59},"b":{"w":80,"h":59},"bw":{"f":{"w":65,"h":56},"b":{"w":69,"h":56}},"g":7,"s":8},"cutiefly":{"n":742,"f":{"w":60,"h":57},"b":{"w":56,"h":59},"bw":{"f":{"w":41,"h":46},"b":{"w":42,"h":44}},"g":7},"ribombee":{"n":743,"f":{"w":90,"h":64},"b":{"w":94,"h":63},"bw":{"f":{"w":50,"h":64},"b":{"w":54,"h":64}},"g":7},"ribombeetotem":{"n":743,"b":{"w":143,"h":101},"g":7,"s":8},"rockruff":{"n":744,"f":{"w":45,"h":57},"b":{"w":53,"h":58},"bw":{"f":{"w":42,"h":42},"b":{"w":42,"h":47}},"g":7},"lycanroc":{"n":745,"f":{"w":75,"h":75},"b":{"w":92,"h":73},"bw":{"f":{"w":68,"h":62},"b":{"w":76,"h":60}},"g":7},"lycanrocmidnight":{"n":745,"i":1175,"f":{"w":69,"h":83},"b":{"w":63,"h":78},"bw":{"f":{"w":72,"h":80},"b":{"w":73,"h":77}},"g":7,"s":8},"lycanrocdusk":{"n":745,"i":1192,"f":{"w":73,"h":90},"b":{"w":85,"h":84},"bw":{"f":{"w":60,"h":66}},"g":7,"s":8},"wishiwashi":{"n":746,"f":{"w":55,"h":37},"b":{"w":57,"h":36},"bw":{"f":{"w":37,"h":30},"b":{"w":38,"h":30}},"g":7},"wishiwashischool":{"n":746,"i":1176,"f":{"w":142,"h":103},"b":{"w":161,"h":93},"bw":{"f":{"w":104,"h":89},"b":{"w":100,"h":111}},"g":7,"s":10},"mareanie":{"n":747,"f":{"w":71,"h":60},"b":{"w":71,"h":60},"g":7},"toxapex":{"n":748,"f":{"w":113,"h":82},"b":{"w":114,"h":81},"bw":{"f":{"w":90,"h":77},"b":{"w":91,"h":76}},"g":7},"mudbray":{"n":749,"f":{"w":52,"h":71},"b":{"w":54,"h":68},"bw":{"f":{"w":54,"h":71},"b":{"w":53,"h":67}},"g":7},"mudsdale":{"n":750,"f":{"w":63,"h":89},"b":{"w":74,"h":83},"bw":{"f":{"w":90,"h":85},"b":{"w":93,"h":78}},"g":7},"dewpider":{"n":751,"f":{"w":45,"h":61},"b":{"w":45,"h":61},"bw":{"f":{"w":35,"h":43},"b":{"w":33,"h":44}},"g":7},"araquanid":{"n":752,"f":{"w":101,"h":67},"b":{"w":101,"h":67},"bw":{"f":{"w":84,"h":64},"b":{"w":82,"h":63}},"g":7},"araquanidtotem":{"n":752,"f":{"w":144,"h":97},"b":{"w":144,"h":98},"g":7,"s":9},"fomantis":{"n":753,"f":{"w":41,"h":56},"b":{"w":41,"h":57},"bw":{"f":{"w":30,"h":52},"b":{"w":31,"h":53}},"g":7},"lurantis":{"n":754,"f":{"w":61,"h":85},"b":{"w":64,"h":84},"bw":{"f":{"w":93,"h":68},"b":{"w":92,"h":68}},"g":7},"lurantistotem":{"n":754,"f":{"w":87,"h":113},"b":{"w":91,"h":110},"g":7,"s":8},"morelull":{"n":755,"f":{"w":29,"h":65},"b":{"w":34,"h":65},"bw":{"f":{"w":26,"h":55},"b":{"w":27,"h":55}},"g":7},"shiinotic":{"n":756,"f":{"w":85,"h":70},"b":{"w":85,"h":70},"bw":{"f":{"w":95,"h":70},"b":{"w":93,"h":71}},"g":7},"salandit":{"n":757,"f":{"w":80,"h":47},"b":{"w":108,"h":50},"g":7},"salazzle":{"n":758,"f":{"w":96,"h":88},"b":{"w":123,"h":97},"g":7},"salazzletotem":{"n":758,"f":{"w":113,"h":105},"b":{"w":147,"h":119},"g":7,"s":8},"stufful":{"n":759,"f":{"w":55,"h":54},"b":{"w":56,"h":53},"bw":{"f":{"w":41,"h":55}},"g":7},"bewear":{"n":760,"f":{"w":60,"h":79},"b":{"w":56,"h":80},"bw":{"f":{"w":64,"h":84},"b":{"w":60,"h":78}},"g":7},"bounsweet":{"n":761,"f":{"w":53,"h":51},"b":{"w":51,"h":52},"bw":{"f":{"w":38,"h":42},"b":{"w":40,"h":42}},"g":7},"steenee":{"n":762,"il":1489,"f":{"w":59,"h":77},"b":{"w":48,"h":77},"bw":{"f":{"w":52,"h":55},"b":{"w":52,"h":55}},"g":7},"tsareena":{"n":763,"il":1490,"f":{"w":66,"h":89},"b":{"w":76,"h":87},"g":7},"comfey":{"n":764,"il":1491,"f":{"w":72,"h":94},"b":{"w":96,"h":95},"bw":{"f":{"w":60,"h":83},"b":{"w":58,"h":87}},"g":7},"oranguru":{"n":765,"f":{"w":74,"h":75},"b":{"w":79,"h":69},"g":7},"passimian":{"n":766,"f":{"w":79,"h":74},"b":{"w":122,"h":74},"g":7},"wimpod":{"n":767,"f":{"w":97,"h":37},"b":{"w":138,"h":40},"bw":{"f":{"w":53,"h":42},"b":{"w":49,"h":39}},"g":7},"golisopod":{"n":768,"f":{"w":83,"h":80},"b":{"w":77,"h":83},"g":7},"sandygast":{"n":769,"f":{"w":84,"h":64},"b":{"w":84,"h":64},"bw":{"f":{"w":65,"h":53},"b":{"w":73,"h":52}},"g":7},"palossand":{"n":770,"f":{"w":102,"h":75},"b":{"w":99,"h":77},"bw":{"f":{"w":96,"h":57},"b":{"w":96,"h":57}},"g":7},"pyukumuku":{"n":771,"f":{"w":52,"h":39},"b":{"w":61,"h":39},"bw":{"f":{"w":59,"h":32},"b":{"w":59,"h":32}},"g":7},"typenull":{"n":772,"f":{"w":69,"h":94},"b":{"w":81,"h":92},"bw":{"f":{"w":68,"h":78},"b":{"w":72,"h":78}},"g":7},"silvally":{"n":773,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7},"silvallybug":{"n":773,"i":1299,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallydark":{"n":773,"i":1300,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallydragon":{"n":773,"i":1301,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyelectric":{"n":773,"i":1302,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyfairy":{"n":773,"i":1303,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyfighting":{"n":773,"i":1304,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyfire":{"n":773,"i":1305,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyflying":{"n":773,"i":1306,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyghost":{"n":773,"i":1307,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallygrass":{"n":773,"i":1308,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyground":{"n":773,"i":1309,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyice":{"n":773,"i":1310,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallypoison":{"n":773,"i":1311,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallypsychic":{"n":773,"i":1312,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyrock":{"n":773,"i":1313,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallysteel":{"n":773,"i":1314,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallywater":{"n":773,"i":1315,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"minior":{"n":774,"il":1493,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7},"miniororange":{"n":774,"i":1178,"il":1494,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"minioryellow":{"n":774,"i":1179,"il":1495,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorgreen":{"n":774,"i":1180,"il":1496,"f":{"w":77,"h":77},"b":{"w":66,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorblue":{"n":774,"i":1181,"il":1497,"f":{"w":77,"h":77},"b":{"w":68,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorindigo":{"n":774,"i":1182,"il":1499,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorviolet":{"n":774,"i":1183,"il":1498,"f":{"w":77,"h":77},"b":{"w":65,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniormeteor":{"n":774,"i":1177,"il":1492,"f":{"w":77,"h":71},"b":{"w":76,"h":72},"bw":{"f":{"w":84,"h":51},"b":{"w":86,"h":52}},"g":7,"s":6},"komala":{"n":775,"f":{"w":65,"h":60},"b":{"w":57,"h":60},"bw":{"f":{"w":49,"h":40},"b":{"w":52,"h":41}},"g":7},"turtonator":{"n":776,"f":{"w":68,"h":74},"b":{"w":71,"h":77},"bw":{"f":{"w":77,"h":65},"b":{"w":69,"h":68}},"g":7},"togedemaru":{"n":777,"f":{"w":63,"h":62},"b":{"w":48,"h":60},"bw":{"f":{"w":40,"h":44},"b":{"w":41,"h":46}},"g":7},"togedemarutotem":{"n":777,"f":{"w":103,"h":100},"b":{"w":100,"h":100},"g":7,"s":10},"mimikyu":{"n":778,"f":{"w":57,"h":67},"b":{"w":54,"h":67},"bw":{"f":{"w":60,"h":48},"b":{"w":57,"h":51}},"g":7},"mimikyubusted":{"n":778,"f":{"w":61,"h":37},"b":{"w":60,"h":37},"bw":{"f":{"w":64,"h":30},"b":{"w":64,"h":32}},"g":7,"s":7},"mimikyutotem":{"n":778,"f":{"w":81,"h":95},"b":{"w":74,"h":97},"g":7,"s":7},"mimikyubustedtotem":{"n":778,"g":7,"s":7},"bruxish":{"n":779,"f":{"w":59,"h":72},"b":{"w":66,"h":70},"bw":{"f":{"w":51,"h":44}},"g":7},"drampa":{"n":780,"f":{"w":87,"h":78},"b":{"w":111,"h":73},"bw":{"f":{"w":78,"h":72},"b":{"w":82,"h":79}},"g":7},"dhelmise":{"n":781,"il":1500,"f":{"w":65,"h":90},"b":{"w":57,"h":91},"bw":{"f":{"w":90,"h":91},"b":{"w":89,"h":92}},"g":7},"jangmoo":{"n":782,"f":{"w":50,"h":60},"b":{"w":63,"h":59},"bw":{"f":{"w":49,"h":52},"b":{"w":49,"h":52}},"g":7},"hakamoo":{"n":783,"f":{"w":89,"h":83},"b":{"w":101,"h":84},"bw":{"f":{"w":76,"h":71},"b":{"w":75,"h":71}},"g":7},"kommoo":{"n":784,"f":{"w":89,"h":95},"b":{"w":121,"h":100},"bw":{"f":{"w":108,"h":88},"b":{"w":112,"h":86}},"g":7},"kommoototem":{"n":784,"f":{"w":115,"h":111},"b":{"w":131,"h":121},"g":7,"s":6},"tapukoko":{"n":785,"f":{"w":71,"h":95},"b":{"w":65,"h":103},"bw":{"f":{"w":89,"h":82},"b":{"w":86,"h":85}},"g":7},"tapulele":{"n":786,"f":{"w":54,"h":84},"b":{"w":61,"h":85},"bw":{"f":{"w":57,"h":68},"b":{"w":58,"h":76}},"g":7},"tapubulu":{"n":787,"f":{"w":85,"h":104},"b":{"w":72,"h":103},"bw":{"f":{"w":89,"h":92},"b":{"w":91,"h":98}},"g":7},"tapufini":{"n":788,"f":{"w":68,"h":92},"b":{"w":67,"h":87},"g":7},"cosmog":{"n":789,"f":{"w":81,"h":59},"b":{"w":63,"h":61},"bw":{"f":{"w":87,"h":57},"b":{"w":92,"h":58}},"g":7},"cosmoem":{"n":790,"f":{"w":65,"h":69},"b":{"w":61,"h":69},"bw":{"f":{"w":62,"h":52},"b":{"w":62,"h":52}},"g":7},"solgaleo":{"n":791,"f":{"w":87,"h":95},"b":{"w":114,"h":91},"bw":{"f":{"w":99,"h":91},"b":{"w":104,"h":87}},"g":7},"lunala":{"n":792,"f":{"w":128,"h":101},"b":{"w":104,"h":98},"bw":{"f":{"w":103,"h":109},"b":{"w":110,"h":109}},"g":7},"nihilego":{"n":793,"f":{"w":61,"h":85},"b":{"w":57,"h":89},"bw":{"f":{"w":87,"h":85}},"g":7},"buzzwole":{"n":794,"f":{"w":77,"h":94},"b":{"w":76,"h":94},"bw":{"f":{"w":91,"h":96}},"g":7},"pheromosa":{"n":795,"f":{"w":63,"h":100},"b":{"w":54,"h":101},"bw":{"f":{"w":83,"h":93},"b":{"w":86,"h":93}},"g":7},"xurkitree":{"n":796,"f":{"w":92,"h":84},"b":{"w":62,"h":82},"bw":{"f":{"w":102,"h":101},"b":{"w":92,"h":100}},"g":7},"celesteela":{"n":797,"f":{"w":126,"h":105},"b":{"w":103,"h":105},"bw":{"f":{"w":100,"h":117},"b":{"w":101,"h":117}},"g":7},"kartana":{"n":798,"f":{"w":113,"h":83},"b":{"w":85,"h":84},"bw":{"f":{"w":82,"h":88},"b":{"w":90,"h":88}},"g":7},"guzzlord":{"n":799,"f":{"w":137,"h":88},"b":{"w":215,"h":88},"g":7},"necrozma":{"n":800,"il":1501,"f":{"w":99,"h":100},"b":{"w":71,"h":104},"bw":{"f":{"w":96,"h":95},"b":{"w":98,"h":88}},"g":7},"necrozmaduskmane":{"n":800,"i":1193,"il":1505,"f":{"w":131,"h":108},"b":{"w":132,"h":104},"bw":{"f":{"w":106,"h":100},"b":{"w":106,"h":93}},"g":7,"s":8},"necrozmadawnwings":{"n":800,"i":1194,"il":1506,"f":{"w":138,"h":104},"b":{"w":130,"h":107},"bw":{"f":{"w":112,"h":114},"b":{"w":114,"h":113}},"g":7,"s":8},"necrozmaultra":{"n":800,"i":1195,"il":1507,"f":{"w":218,"h":115},"b":{"w":225,"h":114},"bw":{"f":{"w":115,"h":140},"b":{"w":130,"h":151}},"g":7,"s":8},"magearna":{"n":801,"f":{"w":49,"h":68},"b":{"w":46,"h":68},"bw":{"f":{"w":49,"h":68},"b":{"w":48,"h":69}},"g":7},"magearnaoriginal":{"n":801,"i":1184,"f":{"w":49,"h":68},"b":{"w":46,"h":68},"bw":{"f":{"w":49,"h":68},"b":{"w":48,"h":69}},"g":7,"s":8},"marshadow":{"n":802,"il":1502,"f":{"w":48,"h":63},"b":{"w":47,"h":66},"bw":{"f":{"w":32,"h":51}},"g":7},"poipole":{"n":803,"f":{"w":45,"h":78},"b":{"w":52,"h":80},"g":7},"naganadel":{"n":804,"f":{"w":113,"h":126},"b":{"w":111,"h":135},"bw":{"f":{"w":73,"h":94},"b":{"w":74,"h":94}},"g":7},"stakataka":{"n":805,"il":1508,"f":{"w":101,"h":101},"b":{"w":100,"h":101},"bw":{"f":{"w":96,"h":93}},"g":7},"blacephalon":{"n":806,"il":1509,"f":{"w":72,"h":78},"b":{"w":66,"h":77},"bw":{"f":{"w":100,"h":143},"b":{"w":85,"h":144}},"g":7},"zeraora":{"n":807,"f":{"w":87,"h":67},"b":{"w":110,"h":75},"bw":{"f":{"w":77,"h":68},"b":{"w":79,"h":69}},"g":7},"meltan":{"n":808,"f":{"w":32,"h":38},"b":{"w":31,"h":38},"bw":{"f":{"w":32,"h":38}},"g":7},"melmetal":{"n":809,"f":{"w":109,"h":66},"b":{"w":104,"h":66},"bw":{"f":{"w":101,"h":75}},"g":7},"melmetalgmax":{"n":809,"i":1381,"f":{"w":175,"h":127},"b":{"w":163,"h":129},"g":8,"s":8},"grookey":{"n":810,"f":{"w":51,"h":65},"b":{"w":56,"h":63},"bw":{"f":{"w":96,"h":96}},"g":8,"m":["gen5ani-shiny"]},"thwackey":{"n":811,"f":{"w":79,"h":97},"b":{"w":71,"h":96},"bw":{"f":{"w":57,"h":58},"b":{"w":50,"h":55}},"g":8},"rillaboom":{"n":812,"f":{"w":101,"h":122},"b":{"w":113,"h":112},"g":8},"rillaboomgmax":{"n":812,"i":1399,"g":8,"s":9},"scorbunny":{"n":813,"f":{"w":54,"h":94},"b":{"w":43,"h":92},"bw":{"f":{"w":96,"h":96}},"g":8,"m":["gen5ani-shiny"]},"raboot":{"n":814,"f":{"w":56,"h":83},"b":{"w":42,"h":83},"bw":{"f":{"w":45,"h":58},"b":{"w":36,"h":57}},"g":8},"cinderace":{"n":815,"f":{"w":51,"h":114},"b":{"w":50,"h":113},"g":8},"cinderacegmax":{"n":815,"i":1400,"bw":{"f":{"w":100,"h":100},"b":{"w":100,"h":100}},"g":8,"s":9},"sobble":{"n":816,"f":{"w":44,"h":69},"b":{"w":52,"h":71},"bw":{"f":{"w":96,"h":96},"b":{"w":42,"h":49}},"g":8,"m":["gen5ani-shiny"]},"drizzile":{"n":817,"f":{"w":70,"h":77},"b":{"w":76,"h":75},"bw":{"f":{"w":51,"h":53},"b":{"w":53,"h":53}},"g":8},"inteleon":{"n":818,"f":{"w":37,"h":123},"b":{"w":57,"h":126},"bw":{"f":{"w":66,"h":80},"b":{"w":64,"h":79}},"g":8},"inteleongmax":{"n":818,"i":1401,"f":{"w":118,"h":193},"g":8,"s":8},"skwovet":{"n":819,"f":{"w":77,"h":92},"b":{"w":95,"h":93},"g":8},"greedent":{"n":820,"f":{"w":99,"h":100},"b":{"w":109,"h":107},"g":8},"rookidee":{"n":821,"f":{"w":40,"h":42},"b":{"w":55,"h":43},"bw":{"f":{"w":96,"h":96}},"g":8,"m":["gen5ani-shiny"]},"corvisquire":{"n":822,"f":{"w":149,"h":132},"b":{"w":118,"h":129},"bw":{"f":{"w":83,"h":93},"b":{"w":78,"h":92}},"g":8},"corviknight":{"n":823,"f":{"w":200,"h":162},"b":{"w":170,"h":167},"bw":{"f":{"w":96,"h":96},"b":{"w":63,"h":70}},"g":8,"m":["gen5ani-shiny"]},"corviknightgmax":{"n":823,"i":1382,"f":{"w":247,"h":141},"b":{"w":221,"h":145},"g":8,"s":11},"blipbug":{"n":824,"f":{"w":47,"h":71},"b":{"w":43,"h":71},"g":8},"dottler":{"n":825,"f":{"w":62,"h":49},"b":{"w":60,"h":48},"g":8},"orbeetle":{"n":826,"f":{"w":63,"h":64},"b":{"w":63,"h":65},"g":8},"orbeetlegmax":{"n":826,"i":1383,"f":{"w":169,"h":113},"b":{"w":173,"h":117},"bw":{"f":{"w":100,"h":87}},"g":8,"s":8},"nickit":{"n":827,"f":{"w":48,"h":72},"b":{"w":68,"h":76},"g":8},"thievul":{"n":828,"f":{"w":71,"h":93},"b":{"w":137,"h":83},"g":8},"gossifleur":{"n":829,"f":{"w":75,"h":65},"b":{"w":71,"h":64},"g":8},"eldegoss":{"n":830,"f":{"w":71,"h":78},"b":{"w":73,"h":79},"bw":{"f":{"w":53,"h":59},"b":{"w":55,"h":58}},"g":8},"wooloo":{"n":831,"f":{"w":61,"h":60},"b":{"w":67,"h":59},"bw":{"f":{"w":46,"h":42},"b":{"w":48,"h":42}},"g":8,"m":["gen5ani-shiny","gen5ani-back-shiny"]},"dubwool":{"n":832,"f":{"w":74,"h":95},"b":{"w":95,"h":94},"bw":{"f":{"w":67,"h":76},"b":{"w":71,"h":73}},"g":8},"chewtle":{"n":833,"f":{"w":40,"h":60},"b":{"w":49,"h":61},"bw":{"f":{"w":39,"h":47},"b":{"w":38,"h":49}},"g":8},"drednaw":{"n":834,"f":{"w":85,"h":69},"b":{"w":121,"h":70},"bw":{"f":{"w":96,"h":96},"b":{"w":77,"h":58}},"g":8,"m":["gen5ani-shiny"]},"drednawgmax":{"n":834,"i":1384,"f":{"w":110,"h":120},"b":{"w":117,"h":121},"bw":{"f":{"w":99,"h":101}},"g":8,"s":7,"m":["gen5ani-shiny"]},"yamper":{"n":835,"f":{"w":43,"h":54},"b":{"w":61,"h":56},"bw":{"f":{"w":35,"h":44},"b":{"w":43,"h":45}},"g":8,"m":["gen5ani-shiny","gen5ani-back-shiny"]},"boltund":{"n":836,"f":{"w":43,"h":90},"b":{"w":94,"h":88},"g":8},"rolycoly":{"n":837,"f":{"w":57,"h":46},"b":{"w":60,"h":46},"bw":{"f":{"w":96,"h":96},"b":{"w":53,"h":42}},"g":8},"carkol":{"n":838,"f":{"w":73,"h":89},"b":{"w":80,"h":90},"g":8},"coalossal":{"n":839,"f":{"w":100,"h":130},"b":{"w":91,"h":130},"bw":{"f":{"w":80,"h":84},"b":{"w":76,"h":83}},"g":8},"coalossalgmax":{"n":839,"i":1385,"f":{"w":128,"h":157},"b":{"w":109,"h":158},"bw":{"f":{"w":111,"h":96},"b":{"w":106,"h":96}},"g":8,"s":9},"applin":{"n":840,"f":{"w":29,"h":44},"b":{"w":36,"h":45},"bw":{"f":{"w":41,"h":42},"b":{"w":37,"h":44}},"g":8},"flapple":{"n":841,"f":{"w":113,"h":75},"b":{"w":104,"h":74},"g":8},"flapplegmax":{"n":841,"i":1386,"f":{"w":98,"h":153},"b":{"w":102,"h":155},"bw":{"f":{"w":78,"h":95}},"g":8,"s":7},"appletun":{"n":842,"f":{"w":62,"h":76},"b":{"w":71,"h":74},"g":8},"appletungmax":{"n":842,"i":1387,"f":{"w":98,"h":153},"b":{"w":102,"h":155},"bw":{"f":{"w":78,"h":95}},"g":8,"s":8},"silicobra":{"n":843,"f":{"w":48,"h":55},"b":{"w":75,"h":58},"bw":{"f":{"w":50,"h":47},"b":{"w":59,"h":43}},"g":8},"sandaconda":{"n":844,"f":{"w":92,"h":70},"b":{"w":128,"h":70},"bw":{"f":{"w":87,"h":60},"b":{"w":84,"h":56}},"g":8},"sandacondagmax":{"n":844,"i":1388,"f":{"w":161,"h":125},"b":{"w":161,"h":149},"g":8,"s":10},"cramorant":{"n":845,"f":{"w":88,"h":102},"b":{"w":76,"h":102},"bw":{"f":{"w":72,"h":78}},"g":8},"cramorantgulping":{"n":845,"i":1212,"f":{"w":85,"h":115},"b":{"w":77,"h":113},"g":8,"s":9},"cramorantgorging":{"n":845,"i":1213,"f":{"w":114,"h":118},"b":{"w":114,"h":116},"g":8,"s":9},"arrokuda":{"n":846,"f":{"w":58,"h":42},"b":{"w":104,"h":38},"bw":{"f":{"w":104,"h":54},"b":{"w":100,"h":37}},"g":8},"barraskewda":{"n":847,"f":{"w":79,"h":61},"b":{"w":141,"h":68},"bw":{"f":{"w":87,"h":44}},"g":8},"toxel":{"n":848,"f":{"w":49,"h":57},"b":{"w":58,"h":58},"bw":{"f":{"w":40,"h":50},"b":{"w":49,"h":50}},"g":8,"m":["gen5ani-shiny"]},"toxtricity":{"n":849,"f":{"w":58,"h":124},"b":{"w":62,"h":125},"bw":{"f":{"w":54,"h":85},"b":{"w":58,"h":85}},"g":8},"toxtricitylowkey":{"n":849,"i":1214,"f":{"w":64,"h":121},"b":{"w":59,"h":121},"g":8,"s":10},"toxtricitygmax":{"n":849,"i":1389,"f":{"w":155,"h":150},"b":{"w":177,"h":163},"bw":{"f":{"w":90,"h":93}},"g":8,"s":10},"toxtricitylowkeygmax":{"n":849,"i":1389,"g":8,"s":10},"sizzlipede":{"n":850,"f":{"w":53,"h":23},"b":{"w":110,"h":32},"g":8},"centiskorch":{"n":851,"f":{"w":96,"h":119},"b":{"w":142,"h":119},"g":8},"centiskorchgmax":{"n":851,"i":1390,"f":{"w":142,"h":121},"b":{"w":368,"h":107},"g":8,"s":11},"clobbopus":{"n":852,"f":{"w":86,"h":53},"b":{"w":73,"h":55},"bw":{"f":{"w":96,"h":96},"b":{"w":50,"h":35}},"g":8},"grapploct":{"n":853,"f":{"w":88,"h":85},"b":{"w":84,"h":86},"g":8},"sinistea":{"n":854,"f":{"w":79,"h":36},"b":{"w":61,"h":35},"g":8},"sinisteaantique":{"n":854,"f":{"w":73,"h":35},"b":{"w":75,"h":35},"g":8,"s":8},"polteageist":{"n":855,"f":{"w":101,"h":83},"b":{"w":70,"h":84},"g":8},"polteageistantique":{"n":855,"f":{"w":98,"h":83},"b":{"w":95,"h":85},"g":8,"s":11},"hatenna":{"n":856,"f":{"w":78,"h":70},"b":{"w":57,"h":74},"bw":{"f":{"w":46,"h":43},"b":{"w":47,"h":42}},"g":8,"m":["gen5ani-shiny"]},"hattrem":{"n":857,"f":{"w":87,"h":70},"b":{"w":73,"h":72},"g":8},"hatterene":{"n":858,"f":{"w":55,"h":119},"b":{"w":54,"h":122},"bw":{"f":{"w":69,"h":83}},"g":8},"hatterenegmax":{"n":858,"i":1391,"f":{"w":87,"h":136},"b":{"w":95,"h":151},"bw":{"f":{"w":80,"h":96}},"g":8,"s":9},"impidimp":{"n":859,"f":{"w":67,"h":62},"b":{"w":50,"h":63},"bw":{"f":{"w":54,"h":50},"b":{"w":48,"h":53}},"g":8},"morgrem":{"n":860,"f":{"w":81,"h":80},"b":{"w":71,"h":78},"g":8},"grimmsnarl":{"n":861,"f":{"w":132,"h":103},"b":{"w":108,"h":102},"bw":{"f":{"w":93,"h":80},"b":{"w":85,"h":80}},"g":8},"grimmsnarlgmax":{"n":861,"i":1392,"f":{"w":82,"h":142},"b":{"w":88,"h":150},"g":8,"s":10},"obstagoon":{"n":862,"f":{"w":66,"h":106},"b":{"w":75,"h":105},"bw":{"f":{"w":63,"h":80},"b":{"w":57,"h":75}},"g":8},"perrserker":{"n":863,"f":{"w":65,"h":78},"b":{"w":58,"h":77},"bw":{"f":{"w":54,"h":64},"b":{"w":53,"h":68}},"g":8},"cursola":{"n":864,"f":{"w":118,"h":115},"b":{"w":113,"h":115},"bw":{"f":{"w":96,"h":98},"b":{"w":100,"h":97}},"g":8},"sirfetchd":{"n":865,"f":{"w":78,"h":141},"b":{"w":63,"h":142},"g":8},"mrrime":{"n":866,"f":{"w":92,"h":87},"b":{"w":65,"h":88},"bw":{"f":{"w":69,"h":63},"b":{"w":65,"h":58}},"g":8},"runerigus":{"n":867,"f":{"w":171,"h":87},"b":{"w":141,"h":86},"bw":{"f":{"w":114,"h":66}},"g":8},"milcery":{"n":868,"f":{"w":55,"h":57},"b":{"w":43,"h":57},"bw":{"f":{"w":43,"h":57}},"g":8,"m":["gen5ani-shiny"]},"alcremie":{"n":869,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8},"alcremierubycream":{"n":869,"i":1215,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiematchacream":{"n":869,"i":1216,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiemintcream":{"n":869,"i":1217,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremielemoncream":{"n":869,"i":1218,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiesaltedcream":{"n":869,"i":1219,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremierubyswirl":{"n":869,"i":1220,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiecaramelswirl":{"n":869,"i":1221,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremierainbowswirl":{"n":869,"i":1222,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiegmax":{"n":869,"i":1393,"f":{"w":106,"h":154},"b":{"w":111,"h":159},"g":8,"s":8},"falinks":{"n":870,"f":{"w":81,"h":49},"b":{"w":151,"h":50},"bw":{"f":{"w":83,"h":56}},"g":8},"pincurchin":{"n":871,"f":{"w":59,"h":46},"b":{"w":59,"h":47},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":8},"snom":{"n":872,"f":{"w":48,"h":40},"b":{"w":58,"h":42},"bw":{"f":{"w":37,"h":26},"b":{"w":37,"h":26}},"g":8,"m":["gen5ani-shiny"]},"frosmoth":{"n":873,"f":{"w":144,"h":96},"b":{"w":126,"h":109},"bw":{"f":{"w":94,"h":85},"b":{"w":98,"h":86}},"g":8},"stonjourner":{"n":874,"f":{"w":84,"h":103},"b":{"w":81,"h":100},"bw":{"f":{"w":71,"h":83},"b":{"w":74,"h":82}},"g":8},"eiscue":{"n":875,"f":{"w":58,"h":92},"b":{"w":60,"h":90},"bw":{"f":{"w":58,"h":85},"b":{"w":58,"h":85}},"g":8},"eiscuenoice":{"n":875,"i":1223,"f":{"w":51,"h":73},"b":{"w":46,"h":71},"bw":{"f":{"w":50,"h":73},"b":{"w":50,"h":73}},"g":8,"s":6},"indeedee":{"n":876,"if":1224,"f":{"w":40,"h":74},"ff":{"w":48,"h":69},"b":{"w":39,"h":74},"bf":{"w":45,"h":69},"bw":{"f":{"w":41,"h":55},"ff":{"w":44,"h":52},"b":{"w":39,"h":55},"bf":{"w":44,"h":52}},"g":8},"indeedeef":{"n":876,"i":1224,"f":{"w":48,"h":69},"b":{"w":45,"h":69},"bw":{"f":{"w":44,"h":52},"b":{"w":44,"h":52}},"g":8,"s":8},"morpeko":{"n":877,"f":{"w":34,"h":58},"b":{"w":32,"h":56},"bw":{"f":{"w":32,"h":43},"b":{"w":32,"h":43}},"g":8},"morpekohangry":{"n":877,"i":1225,"f":{"w":34,"h":58},"b":{"w":32,"h":56},"bw":{"f":{"w":29,"h":43},"b":{"w":28,"h":42}},"g":8,"s":7},"cufant":{"n":878,"f":{"w":75,"h":66},"b":{"w":69,"h":66},"bw":{"f":{"w":78,"h":55},"b":{"w":72,"h":55}},"g":8},"copperajah":{"n":879,"f":{"w":81,"h":97},"b":{"w":89,"h":99},"g":8},"copperajahgmax":{"n":879,"i":1394,"f":{"w":132,"h":142},"b":{"w":173,"h":219},"g":8,"s":10},"dracozolt":{"n":880,"f":{"w":101,"h":78},"b":{"w":120,"h":75},"bw":{"f":{"w":85,"h":77}},"g":8},"arctozolt":{"n":881,"f":{"w":68,"h":98},"b":{"w":80,"h":93},"g":8},"dracovish":{"n":882,"f":{"w":54,"h":96},"b":{"w":54,"h":96},"bw":{"f":{"w":69,"h":84},"b":{"w":60,"h":82}},"g":8},"arctovish":{"n":883,"f":{"w":84,"h":88},"b":{"w":86,"h":97},"bw":{"f":{"w":91,"h":84},"b":{"w":101,"h":90}},"g":8},"duraludon":{"n":884,"f":{"w":96,"h":109},"b":{"w":99,"h":108},"bw":{"f":{"w":96,"h":96},"b":{"w":68,"h":76}},"g":8,"m":["gen5ani-shiny"]},"duraludongmax":{"n":884,"i":1395,"f":{"w":100,"h":139},"b":{"w":101,"h":140},"g":8,"s":9},"dreepy":{"n":885,"f":{"w":51,"h":46},"b":{"w":65,"h":46},"bw":{"f":{"w":59,"h":58},"b":{"w":64,"h":55}},"g":8},"drakloak":{"n":886,"f":{"w":73,"h":69},"b":{"w":84,"h":67},"bw":{"f":{"w":88,"h":74},"b":{"w":94,"h":73}},"g":8},"dragapult":{"n":887,"f":{"w":104,"h":102},"b":{"w":94,"h":102},"bw":{"f":{"w":92,"h":82},"b":{"w":91,"h":81}},"g":8},"zacian":{"n":888,"f":{"w":92,"h":95},"b":{"w":113,"h":78},"bw":{"f":{"w":89,"h":82},"b":{"w":91,"h":85}},"g":8},"zaciancrowned":{"n":888,"i":1226,"f":{"w":137,"h":111},"b":{"w":156,"h":120},"bw":{"f":{"w":93,"h":96},"b":{"w":97,"h":92}},"g":8,"s":6},"zamazenta":{"n":889,"f":{"w":95,"h":89},"b":{"w":123,"h":80},"bw":{"f":{"w":82,"h":96},"b":{"w":94,"h":90}},"g":8},"zamazentacrowned":{"n":889,"i":1227,"f":{"w":111,"h":112},"b":{"w":133,"h":105},"bw":{"f":{"w":93,"h":92},"b":{"w":103,"h":92}},"g":8,"s":9},"eternatus":{"n":890,"f":{"w":148,"h":126},"b":{"w":247,"h":149},"bw":{"f":{"w":111,"h":102},"b":{"w":123,"h":103}},"g":8},"eternatuseternamax":{"n":890,"i":1396,"f":{"w":183,"h":151},"b":{"w":137,"h":108},"g":8,"s":9},"kubfu":{"n":891,"f":{"w":44,"h":72},"b":{"w":51,"h":69},"g":8},"urshifu":{"n":892,"f":{"w":73,"h":122},"b":{"w":65,"h":126},"g":8},"urshifurapidstrike":{"n":892,"f":{"w":83,"h":108},"b":{"w":75,"h":104},"g":8,"s":7},"urshifugmax":{"n":892,"i":1402,"g":8,"s":7},"urshifurapidstrikegmax":{"n":892,"i":1403,"g":8,"s":7},"zarude":{"n":893,"f":{"w":131,"h":109},"b":{"w":133,"h":94},"g":8},"zarudedada":{"n":893,"i":1230,"f":{"w":131,"h":109},"b":{"w":133,"h":94},"g":8,"s":6},"regieleki":{"n":894,"f":{"w":181,"h":98},"b":{"w":177,"h":96},"g":8},"regidrago":{"n":895,"f":{"w":119,"h":120},"b":{"w":114,"h":122},"bw":{"f":{"w":82,"h":81},"b":{"w":86,"h":75}},"g":8},"glastrier":{"n":896,"f":{"w":69,"h":117},"b":{"w":84,"h":113},"bw":{"f":{"w":66,"h":84},"b":{"w":73,"h":82}},"g":8},"spectrier":{"n":897,"f":{"w":72,"h":108},"b":{"w":101,"h":97},"g":8},"calyrex":{"n":898,"f":{"w":64,"h":106},"b":{"w":69,"h":105},"bw":{"f":{"w":59,"h":109},"b":{"w":60,"h":110}},"g":8},"calyrexice":{"n":898,"i":1236,"f":{"w":76,"h":118},"b":{"w":82,"h":112},"bw":{"f":{"w":65,"h":84},"b":{"w":75,"h":82}},"g":8,"s":7},"calyrexshadow":{"n":898,"i":1237,"f":{"w":85,"h":110},"b":{"w":107,"h":113},"g":8,"s":7},"wyrdeer":{"n":899,"f":{"w":56,"h":118},"b":{"w":54,"h":115},"bw":{"f":{"w":82,"h":96}},"g":8},"kleavor":{"n":900,"f":{"w":115,"h":103},"b":{"w":103,"h":97},"g":8},"ursaluna":{"n":901,"f":{"w":105,"h":86},"b":{"w":113,"h":77},"bw":{"f":{"w":78,"h":74}},"g":8},"ursalunabloodmoon":{"n":901,"i":1272,"f":{"w":98,"h":105},"b":{"w":87,"h":97},"bw":{"f":{"w":75,"h":77}},"g":9,"s":8},"basculegion":{"n":902,"if":1254,"f":{"w":127,"h":90},"ff":{"w":121,"h":90},"b":{"w":169,"h":99},"bf":{"w":164,"h":99},"bw":{"f":{"w":110,"h":87},"ff":{"w":110,"h":85},"b":{"w":122,"h":80},"bf":{"w":122,"h":80}},"g":8},"basculegionf":{"n":902,"i":1254,"f":{"w":121,"h":90},"b":{"w":164,"h":99},"bw":{"f":{"w":110,"h":85},"b":{"w":122,"h":80}},"g":8,"s":11},"sneasler":{"n":903,"f":{"w":52,"h":87},"b":{"w":62,"h":84},"g":8},"overqwil":{"n":904,"f":{"w":112,"h":119},"b":{"w":89,"h":120},"bw":{"f":{"w":99,"h":107},"b":{"w":99,"h":110}},"g":8},"enamorus":{"n":905,"f":{"w":59,"h":110},"b":{"w":72,"h":115},"g":8},"enamorustherian":{"n":905,"i":1255,"f":{"w":74,"h":71},"b":{"w":97,"h":70},"g":8,"s":8},"sprigatito":{"n":906,"f":{"w":38,"h":55},"b":{"w":45,"h":53},"g":9},"floragato":{"n":907,"f":{"w":35,"h":78},"b":{"w":40,"h":80},"g":9},"meowscarada":{"n":908,"f":{"w":65,"h":106},"b":{"w":47,"h":106},"g":9},"fuecoco":{"n":909,"f":{"w":39,"h":56},"b":{"w":47,"h":55},"g":9},"crocalor":{"n":910,"f":{"w":55,"h":67},"b":{"w":67,"h":64},"g":9},"skeledirge":{"n":911,"f":{"w":106,"h":76},"b":{"w":143,"h":80},"g":9},"quaxly":{"n":912,"f":{"w":43,"h":60},"b":{"w":42,"h":60},"g":9},"quaxwell":{"n":913,"f":{"w":43,"h":83},"b":{"w":45,"h":81},"g":9},"quaquaval":{"n":914,"f":{"w":132,"h":129},"b":{"w":130,"h":138},"g":9},"lechonk":{"n":915,"f":{"w":48,"h":49},"b":{"w":53,"h":50},"g":9},"oinkologne":{"n":916,"if":1260,"f":{"w":55,"h":62},"ff":{"w":66,"h":81},"b":{"w":78,"h":62},"bf":{"w":74,"h":84},"g":9},"oinkolognef":{"n":916,"i":1260,"f":{"w":66,"h":81},"b":{"w":74,"h":84},"g":9,"s":10},"tarountula":{"n":917,"f":{"w":67,"h":74},"b":{"w":65,"h":74},"g":9},"spidops":{"n":918,"f":{"w":86,"h":75},"b":{"w":80,"h":66},"g":9},"nymble":{"n":919,"f":{"w":42,"h":53},"b":{"w":51,"h":53},"g":9},"lokix":{"n":920,"f":{"w":55,"h":85},"b":{"w":55,"h":87},"g":9},"pawmi":{"n":921,"g":9},"pawmo":{"n":922,"g":9},"pawmot":{"n":923,"g":9},"tandemaus":{"n":924,"f":{"w":99,"h":53},"b":{"w":89,"h":53},"bw":{"f":{"w":77,"h":42}},"g":9},"maushold":{"n":925,"f":{"w":94,"h":53},"b":{"w":87,"h":53},"bw":{"f":{"w":77,"h":42}},"g":9},"mausholdfour":{"n":925,"i":1262,"f":{"w":99,"h":53},"b":{"w":92,"h":55},"bw":{"f":{"w":78,"h":42}},"g":9,"s":8},"fidough":{"n":926,"g":9},"dachsbun":{"n":927,"g":9},"smoliv":{"n":928,"f":{"w":43,"h":48},"b":{"w":45,"h":47},"g":9},"dolliv":{"n":929,"f":{"w":37,"h":58},"b":{"w":32,"h":58},"g":9},"arboliva":{"n":930,"f":{"w":69,"h":117},"b":{"w":63,"h":117},"g":9},"squawkabilly":{"n":931,"g":9},"squawkabillyblue":{"n":931,"i":1265,"g":9,"s":12},"squawkabillyyellow":{"n":931,"i":1266,"g":9,"s":12},"squawkabillywhite":{"n":931,"i":1267,"g":9,"s":12},"nacli":{"n":932,"bw":{"f":{"w":37,"h":34}},"g":9},"naclstack":{"n":933,"g":9},"garganacl":{"n":934,"g":9},"charcadet":{"n":935,"g":9},"armarouge":{"n":936,"g":9},"ceruledge":{"n":937,"g":9},"tadbulb":{"n":938,"f":{"w":29,"h":57},"b":{"w":30,"h":57},"bw":{"f":{"w":27,"h":71}},"g":9},"bellibolt":{"n":939,"f":{"w":61,"h":66},"b":{"w":64,"h":65},"g":9},"wattrel":{"n":940,"g":9},"kilowattrel":{"n":941,"g":9},"maschiff":{"n":942,"g":9},"mabosstiff":{"n":943,"g":9},"shroodle":{"n":944,"g":9},"grafaiai":{"n":945,"g":9},"bramblin":{"n":946,"g":9},"brambleghast":{"n":947,"g":9},"toedscool":{"n":948,"g":9},"toedscruel":{"n":949,"g":9},"klawf":{"n":950,"g":9},"capsakid":{"n":951,"f":{"w":37,"h":48},"b":{"w":35,"h":47},"g":9},"scovillain":{"n":952,"f":{"w":62,"h":65},"b":{"w":71,"h":61},"g":9},"rellor":{"n":953,"f":{"w":83,"h":52},"b":{"w":81,"h":49},"g":9},"rabsca":{"n":954,"f":{"w":77,"h":116},"b":{"w":72,"h":116},"g":9},"flittle":{"n":955,"f":{"w":39,"h":44},"b":{"w":37,"h":45},"g":9},"espathra":{"n":956,"f":{"w":82,"h":106},"b":{"w":101,"h":96},"g":9},"tinkatink":{"n":957,"g":9},"tinkatuff":{"n":958,"g":9},"tinkaton":{"n":959,"g":9},"wiglett":{"n":960,"f":{"w":44,"h":80},"b":{"w":49,"h":75},"g":9},"wugtrio":{"n":961,"f":{"w":83,"h":70},"b":{"w":88,"h":73},"g":9},"bombirdier":{"n":962,"g":9},"finizen":{"n":963,"f":{"w":66,"h":55},"b":{"w":85,"h":53},"g":9},"palafin":{"n":964,"f":{"w":66,"h":55},"b":{"w":85,"h":53},"g":9},"palafinhero":{"n":964,"i":1261,"f":{"w":55,"h":102},"b":{"w":51,"h":103},"g":9,"s":7},"varoom":{"n":965,"f":{"w":53,"h":61},"b":{"w":71,"h":60},"g":9},"revavroom":{"n":966,"f":{"w":102,"h":71},"b":{"w":114,"h":73},"g":9},"cyclizar":{"n":967,"g":9},"orthworm":{"n":968,"f":{"w":60,"h":69},"b":{"w":108,"h":66},"g":9},"glimmet":{"n":969,"bw":{"f":{"w":65,"h":75}},"g":9},"glimmora":{"n":970,"g":9},"greavard":{"n":971,"f":{"w":42,"h":62},"b":{"w":59,"h":60},"g":9},"houndstone":{"n":972,"f":{"w":77,"h":79},"b":{"w":106,"h":76},"g":9},"flamigo":{"n":973,"g":9},"cetoddle":{"n":974,"f":{"w":98,"h":65},"b":{"w":89,"h":68},"g":9},"cetitan":{"n":975,"f":{"w":125,"h":73},"b":{"w":144,"h":80},"g":9},"veluza":{"n":976,"f":{"w":77,"h":93},"b":{"w":91,"h":88},"g":9},"dondozo":{"n":977,"f":{"w":152,"h":69},"b":{"w":179,"h":68},"g":9},"tatsugiri":{"n":978,"f":{"w":60,"h":44},"b":{"w":63,"h":46},"bw":{"f":{"w":34,"h":31}},"g":9},"tatsugiridroopy":{"n":978,"i":1263,"f":{"w":60,"h":44},"b":{"w":63,"h":46},"bw":{"f":{"w":34,"h":31}},"g":9,"s":9},"tatsugiristretchy":{"n":978,"i":1264,"f":{"w":60,"h":44},"b":{"w":63,"h":46},"bw":{"f":{"w":34,"h":31}},"g":9,"s":9},"annihilape":{"n":979,"g":9},"clodsire":{"n":980,"bw":{"f":{"w":74,"h":55}},"g":9},"farigiraf":{"n":981,"f":{"w":62,"h":128},"b":{"w":78,"h":118},"g":9},"dudunsparce":{"n":982,"f":{"w":78,"h":61},"b":{"w":90,"h":64},"g":9},"dudunsparcethreesegment":{"n":982,"f":{"w":88,"h":81},"b":{"w":109,"h":93},"g":9,"s":11},"kingambit":{"n":983,"g":9},"greattusk":{"n":984,"bw":{"f":{"w":98,"h":65}},"g":9},"screamtail":{"n":985,"g":9},"brutebonnet":{"n":986,"g":9},"fluttermane":{"n":987,"bw":{"f":{"w":72,"h":70}},"g":9},"slitherwing":{"n":988,"g":9},"sandyshocks":{"n":989,"g":9},"irontreads":{"n":990,"g":9},"ironbundle":{"n":991,"g":9},"ironhands":{"n":992,"bw":{"f":{"w":107,"h":74}},"g":9},"ironjugulis":{"n":993,"g":9},"ironmoth":{"n":994,"bw":{"f":{"w":100,"h":94}},"g":9},"ironthorns":{"n":995,"bw":{"f":{"w":88,"h":79}},"g":9},"frigibax":{"n":996,"bw":{"f":{"w":36,"h":37}},"g":9},"arctibax":{"n":997,"bw":{"f":{"w":57,"h":49}},"g":9},"baxcalibur":{"n":998,"g":9},"gimmighoul":{"n":999,"bw":{"f":{"w":49,"h":61}},"g":9},"gimmighoulroaming":{"n":999,"i":1268,"g":9,"s":10},"gholdengo":{"n":1000,"bw":{"f":{"w":119,"h":105}},"g":9},"wochien":{"n":1001,"bw":{"f":{"w":95,"h":93}},"g":9},"chienpao":{"n":1002,"bw":{"f":{"w":99,"h":90}},"g":9},"tinglu":{"n":1003,"bw":{"f":{"w":97,"h":82}},"g":9},"chiyu":{"n":1004,"bw":{"f":{"w":68,"h":62}},"g":9},"roaringmoon":{"n":1005,"g":9},"ironvaliant":{"n":1006,"bw":{"f":{"w":93,"h":86}},"g":9},"koraidon":{"n":1007,"g":9},"miraidon":{"n":1008,"bw":{"f":{"w":108,"h":100}},"g":9},"walkingwake":{"n":1009,"g":9},"ironleaves":{"n":1010,"g":9},"dipplin":{"n":1011,"g":9},"poltchageist":{"n":1012,"g":9},"poltchageistartisan":{"n":1012,"g":9,"s":12},"sinistcha":{"n":1013,"g":9},"sinistchamasterpiece":{"n":1013,"g":9,"s":9},"okidogi":{"n":1014,"g":9},"munkidori":{"n":1015,"g":9},"fezandipiti":{"n":1016,"g":9},"ogerpon":{"n":1017,"g":9},"ogerponwellspring":{"n":1017,"i":1273,"g":9,"s":7},"ogerponhearthflame":{"n":1017,"i":1274,"g":9,"s":7},"ogerponcornerstone":{"n":1017,"i":1275,"g":9,"s":7},"ogerpontealtera":{"n":1017,"g":9,"s":7},"ogerponwellspringtera":{"n":1017,"i":1273,"g":9,"s":7},"ogerponhearthflametera":{"n":1017,"i":1274,"g":9,"s":7},"ogerponcornerstonetera":{"n":1017,"i":1275,"g":9,"s":7},"archaludon":{"n":1018,"g":9},"hydrapple":{"n":1019,"bw":{"f":{"w":67,"h":80}},"g":9},"gougingfire":{"n":1020,"bw":{"f":{"w":90,"h":86}},"g":9},"ragingbolt":{"n":1021,"g":9},"ironboulder":{"n":1022,"g":9},"ironcrown":{"n":1023,"g":9},"terapagos":{"n":1024,"bw":{"f":{"w":51,"h":46}},"g":9},"terapagosterastal":{"n":1024,"i":1276,"bw":{"f":{"w":82,"h":78}},"g":9,"s":9},"terapagosstellar":{"n":1024,"i":1277,"bw":{"f":{"w":78,"h":96}},"g":9,"s":9},"pecharunt":{"n":1025,"g":9},"missingno":{"n":0,"g":0,"nd":true,"ns":true},"syclar":{"n":-1,"i":1548,"g":4,"nd":true},"syclant":{"n":-2,"i":1512,"g":4,"nd":true},"revenankh":{"n":-3,"i":1513,"g":4,"nd":true},"embirch":{"n":-4,"i":1549,"g":4,"nd":true},"flarelm":{"n":-5,"i":1550,"g":4,"nd":true},"pyroak":{"n":-6,"i":1514,"f":{"w":90,"h":96},"g":4,"nd":true},"breezi":{"n":-7,"i":1551,"g":4,"nd":true},"fidgit":{"n":-8,"i":1515,"f":{"w":156,"h":50},"b":{"w":156,"h":50},"g":4},"rebble":{"n":-9,"i":1563,"g":4,"nd":true},"tactite":{"n":-10,"i":1564,"g":4,"nd":true},"stratagem":{"n":-11,"i":1516,"f":{"w":86,"h":92},"b":{"w":84,"h":89},"g":4},"privatyke":{"n":-12,"i":1565,"g":4,"nd":true},"arghonaut":{"n":-13,"i":1517,"g":4,"nd":true},"kitsunoh":{"n":-14,"i":1518,"f":{"w":121,"h":66},"ff":{"w":121,"h":66},"b":{"w":139,"h":79},"bf":{"w":139,"h":79},"g":4,"nd":true},"cyclohm":{"n":-15,"i":1519,"g":4,"nd":true},"colossoil":{"n":-16,"i":1520,"f":{"w":100,"h":86},"ff":{"w":100,"h":86},"bw":{"f":{"w":100,"h":86},"ff":{"w":100,"h":86}},"g":4,"nd":true},"krilowatt":{"n":-17,"i":1521,"f":{"w":47,"h":90},"b":{"w":46,"h":93},"g":4,"nd":true},"voodoll":{"n":-18,"i":1570,"g":4,"nd":true},"voodoom":{"n":-19,"i":1522,"f":{"w":69,"h":96},"ff":{"w":69,"h":96},"b":{"w":79,"h":89},"bf":{"w":79,"h":89},"g":4,"nd":true},"scratchet":{"n":-20,"i":1552,"f":{"w":88,"h":77},"b":{"w":86,"h":72},"g":5},"tomohawk":{"n":-21,"i":1523,"f":{"w":128,"h":102},"b":{"w":116,"h":98},"bw":{"f":{"w":93,"h":59},"ff":{"w":93,"h":59},"b":{"w":91,"h":62},"bf":{"w":91,"h":62}},"g":5},"necturine":{"n":-22,"i":1553,"g":5,"nd":true},"necturna":{"n":-23,"i":1524,"f":{"w":88,"h":112},"b":{"w":74,"h":110},"bw":{"f":{"w":77,"h":87},"b":{"w":71,"h":85}},"g":5,"nd":true},"mollux":{"n":-24,"i":1525,"f":{"w":76,"h":69},"b":{"w":73,"h":72},"bw":{"f":{"w":60,"h":67},"b":{"w":59,"h":64}},"g":5},"cupra":{"n":-25,"i":1554,"g":5,"nd":true},"argalis":{"n":-26,"i":1555,"g":5,"nd":true},"aurumoth":{"n":-27,"i":1526,"f":{"w":112,"h":102},"b":{"w":113,"h":104},"bw":{"f":{"w":80,"h":72},"b":{"w":84,"h":76}},"g":5,"nd":true},"brattler":{"n":-28,"i":1556,"g":5,"nd":true},"malaconda":{"n":-29,"i":1527,"f":{"w":87,"h":76},"b":{"w":89,"h":79},"bw":{"f":{"w":87,"h":76},"b":{"w":89,"h":79}},"g":5,"nd":true},"cawdet":{"n":-30,"i":1557,"g":5,"nd":true},"cawmodore":{"n":-31,"i":1528,"f":{"w":154,"h":108},"b":{"w":144,"h":112},"bw":{"f":{"w":80,"h":69},"b":{"w":90,"h":69}},"g":5,"nd":true},"volkritter":{"n":-32,"i":1558,"g":6,"nd":true},"volkraken":{"n":-33,"i":1529,"f":{"w":92,"h":75},"b":{"w":82,"h":62},"bw":{"f":{"w":92,"h":75},"b":{"w":82,"h":62}},"g":6,"nd":true},"snugglow":{"n":-34,"i":1559,"g":6,"nd":true},"plasmanta":{"n":-35,"i":1530,"f":{"w":143,"h":105},"b":{"w":141,"h":140},"bw":{"f":{"w":104,"h":83},"b":{"w":99,"h":58}},"g":6,"nd":true},"floatoy":{"n":-36,"i":1560,"g":6,"nd":true},"caimanoe":{"n":-37,"i":1561,"g":6,"nd":true},"naviathan":{"n":-38,"i":1531,"f":{"w":142,"h":119},"b":{"w":147,"h":111},"g":6,"nd":true},"crucibelle":{"n":-39,"i":1532,"f":{"w":39,"h":92},"b":{"w":39,"h":91},"g":6},"crucibellemega":{"n":-39,"i":1533,"f":{"w":106,"h":106},"b":{"w":110,"h":105},"g":6,"s":10},"pluffle":{"n":-40,"i":1562,"f":{"w":59,"h":37},"b":{"w":56,"h":37},"g":6},"kerfluffle":{"n":-41,"i":1534,"f":{"w":69,"h":88},"ff":{"w":70,"h":88},"b":{"w":68,"h":85},"bf":{"w":68,"h":85},"g":6},"pajantom":{"n":-42,"i":1535,"f":{"w":83,"h":101},"b":{"w":87,"h":100},"bw":{"f":{"w":100,"h":96}},"g":7},"mumbao":{"n":-43,"i":1571,"f":{"w":78,"h":69},"b":{"w":81,"h":67},"g":7,"nd":true},"jumbao":{"n":-44,"i":1536,"f":{"w":111,"h":100},"b":{"w":108,"h":95},"g":7},"fawnifer":{"n":-45,"i":1572,"g":7,"nd":true},"electrelk":{"n":-46,"i":1573,"g":7,"nd":true},"caribolt":{"n":-47,"i":1537,"f":{"w":54,"h":112},"b":{"w":65,"h":105},"g":7},"smogecko":{"n":-48,"i":1574,"f":{"w":49,"h":58},"b":{"w":53,"h":56},"g":7},"smoguana":{"n":-49,"i":1575,"f":{"w":66,"h":75},"b":{"w":76,"h":76},"g":7,"nd":true},"smokomodo":{"n":-50,"i":1538,"f":{"w":106,"h":94},"b":{"w":104,"h":96},"g":7},"swirlpool":{"n":-51,"i":1576,"g":7,"nd":true},"coribalis":{"n":-52,"i":1577,"g":7,"nd":true},"snaelstrom":{"n":-53,"i":1539,"f":{"w":88,"h":111},"b":{"w":94,"h":102},"g":7},"justyke":{"n":-54,"i":1578,"f":{"w":40,"h":64},"b":{"w":59,"h":62},"g":7,"nd":true},"equilibra":{"n":-55,"i":1540,"f":{"w":129,"h":91},"b":{"w":117,"h":94},"g":7},"solotl":{"n":-56,"i":1579,"g":8,"nd":true},"astrolotl":{"n":-57,"i":1541,"f":{"w":79,"h":103},"b":{"w":95,"h":106},"g":8,"nd":true},"miasmite":{"n":-58,"i":1580,"g":8,"nd":true},"miasmaw":{"n":-59,"i":1542,"f":{"w":75,"h":93},"b":{"w":86,"h":94},"g":8,"nd":true},"chromera":{"n":-60,"i":1543,"f":{"w":103,"h":94},"b":{"w":112,"h":93},"g":8,"nd":true},"nohface":{"n":-61,"i":1566,"g":4,"nd":true},"monohm":{"n":-62,"i":1567,"g":4,"nd":true},"duohm":{"n":-63,"i":1568,"g":4,"nd":true},"dorsoil":{"n":-64,"i":1581,"g":4,"nd":true},"protowatt":{"n":-65,"i":1569,"f":{"w":28,"h":56},"ff":{"w":28,"h":56},"b":{"w":28,"h":58},"bf":{"w":28,"h":58},"g":4,"nd":true},"venomicon":{"n":-66,"i":1544,"g":8,"nd":true},"venomiconepilogue":{"n":-66,"i":1545,"g":8,"s":9,"nd":true},"saharascal":{"n":-67,"i":1582,"g":8,"nd":true},"saharaja":{"n":-68,"i":1546,"g":8,"nd":true},"ababo":{"n":-69,"i":1583,"g":9,"nd":true},"scattervein":{"n":-70,"i":1584,"g":9,"nd":true},"hemogoblin":{"n":-71,"i":1547,"g":9,"nd":true},"cresceidon":{"n":-72,"i":1585,"g":9,"nd":true},"chuggalong":{"n":-75,"i":1586,"g":9,"nd":true},"shox":{"n":-77,"i":1587,"g":9,"nd":true},"pokestarsmeargle":{"n":-5000,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"nd":true,"ns":true},"pokestarufo":{"n":-5001,"f":{"w":179,"h":119},"b":{"w":179,"h":119},"bw":{"f":{"w":179,"h":119},"b":{"w":179,"h":119}},"g":5,"ns":true},"pokestarufopropu1":{"n":-5001,"g":5,"s":11,"ns":true},"pokestarufo2":{"n":-5001,"f":{"w":179,"h":119},"g":5,"s":11,"ns":true},"pokestarbrycenman":{"n":-5002,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"ns":true},"pokestarbrycenmanprop":{"n":-5002,"g":5,"s":17,"ns":true},"pokestarmt":{"n":-5003,"f":{"w":151,"h":140},"b":{"w":151,"h":140},"bw":{"f":{"w":151,"h":140},"b":{"w":151,"h":140}},"g":5,"ns":true},"pokestarmtprop":{"n":-5003,"g":5,"s":10,"ns":true},"pokestarmt2":{"n":-5004,"f":{"w":151,"h":140},"b":{"w":151,"h":140},"bw":{"f":{"w":151,"h":140},"b":{"w":151,"h":140}},"g":5,"ns":true},"pokestarmt2prop":{"n":-5004,"g":5,"s":11,"ns":true},"pokestartransport":{"n":-5005,"f":{"w":109,"h":104},"b":{"w":109,"h":104},"bw":{"f":{"w":109,"h":104},"b":{"w":109,"h":104}},"g":5,"nd":true,"ns":true},"pokestartransportprop":{"n":-5005,"g":5,"s":17,"nd":true,"ns":true},"pokestargiant":{"n":-5006,"f":{"w":135,"h":186},"b":{"w":135,"h":186},"bw":{"f":{"w":135,"h":186},"b":{"w":135,"h":186}},"g":5,"ns":true},"pokestargiant2":{"n":-5006,"g":5,"s":13,"ns":true},"pokestargiantpropo1":{"n":-5006,"g":5,"s":13,"ns":true},"pokestargiantpropo2":{"n":-5006,"g":5,"s":13,"ns":true},"pokestarhumanoid":{"n":-5007,"f":{"w":80,"h":80},"b":{"w":80,"h":80},"bw":{"f":{"w":80,"h":80},"b":{"w":80,"h":80}},"g":5,"ns":true},"pokestarhumanoidprop":{"n":-5007,"g":5,"s":16,"ns":true},"pokestarmonster":{"n":-5008,"f":{"w":177,"h":120},"b":{"w":177,"h":120},"bw":{"f":{"w":177,"h":120},"b":{"w":177,"h":120}},"g":5,"ns":true},"pokestarmonsterprop":{"n":-5008,"g":5,"s":15,"ns":true},"pokestarf00":{"n":-5009,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"ns":true},"pokestarf00prop":{"n":-5009,"g":5,"s":11,"ns":true},"pokestarf002":{"n":-5010,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"ns":true},"pokestarf002prop":{"n":-5010,"g":5,"s":12,"ns":true},"pokestarspirit":{"n":-5011,"f":{"w":148,"h":148},"b":{"w":148,"h":148},"bw":{"f":{"w":148,"h":148},"b":{"w":148,"h":148}},"g":5,"ns":true},"pokestarspiritprop":{"n":-5011,"g":5,"s":14,"ns":true},"pokestarblackdoor":{"n":-5012,"f":{"w":128,"h":96},"b":{"w":128,"h":96},"bw":{"f":{"w":128,"h":96},"b":{"w":128,"h":96}},"g":5,"nd":true,"ns":true},"pokestarblackdoorprop":{"n":-5012,"g":5,"s":17,"nd":true,"ns":true},"pokestarwhitedoor":{"n":-5013,"f":{"w":128,"h":96},"b":{"w":128,"h":96},"bw":{"f":{"w":128,"h":96},"b":{"w":128,"h":96}},"g":5,"nd":true,"ns":true},"pokestarwhitedoorprop":{"n":-5013,"g":5,"s":17,"nd":true,"ns":true},"pokestarblackbelt":{"n":-5014,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"nd":true,"ns":true},"pokestarblackbeltprop":{"n":-5014,"g":5,"s":17,"nd":true,"ns":true},"pokestarufopropu2":{"n":-5001,"g":5,"s":11,"nd":true}},"items":{"abilityshield":746,"abomasite":575,"absolite":576,"absorbbulb":2,"adamantcrystal":741,"adamantorb":4,"adrenalineorb":660,"aerodactylite":577,"aggronite":578,"aguavberry":5,"airballoon":6,"alakazite":579,"aloraichiumz":655,"altarianite":615,"ampharosite":580,"apicotberry":10,"armorfossil":12,"aspearberry":13,"assaultvest":581,"audinite":617,"auspiciousarmor":753,"babiriberry":17,"banettite":582,"beastball":661,"beedrillite":628,"belueberry":21,"berryjuice":22,"berrysweet":706,"bignugget":27,"bigroot":29,"bindingband":31,"blackbelt":32,"blackglasses":35,"blacksludge":34,"blastoisinite":583,"blazikenite":584,"blueorb":41,"blukberry":44,"blunderpolicy":716,"boosterenergy":745,"bottlecap":696,"brightpowder":51,"buggem":53,"bugmemory":673,"buginiumz":642,"burndrive":54,"cameruptite":625,"cellbattery":60,"charcoal":61,"charizarditex":585,"charizarditey":586,"chartiberry":62,"cheriberry":63,"cherishball":64,"chestoberry":65,"chilanberry":66,"chilldrive":67,"chippedpot":720,"choiceband":68,"choicescarf":69,"choicespecs":70,"chopleberry":71,"clawfossil":72,"clearamulet":747,"cloversweet":707,"cobaberry":76,"colburberry":78,"cornerstonemask":758,"cornnberry":81,"coverfossil":85,"covertcloak":750,"crackedpot":719,"custapberry":86,"damprock":88,"darkgem":89,"darkmemory":683,"darkiniumz":646,"dawnstone":92,"decidiumz":650,"deepseascale":93,"deepseatooth":94,"destinyknot":95,"diancite":624,"diveball":101,"domefossil":102,"dousedrive":103,"dracoplate":105,"dragonfang":106,"dragongem":107,"dragonmemory":682,"dragonscale":108,"dragoniumz":645,"dreadplate":110,"dreamball":111,"dubiousdisc":113,"durinberry":114,"duskball":115,"duskstone":116,"earthplate":117,"eeviumz":657,"ejectbutton":118,"ejectpack":714,"electirizer":119,"electricgem":120,"electricmemory":679,"electricseed":664,"electriumz":634,"enigmaberry":124,"eviolite":130,"expertbelt":132,"fairiumz":648,"fairyfeather":754,"fairygem":611,"fairymemory":684,"fastball":137,"fightinggem":139,"fightingmemory":668,"fightiniumz":637,"figyberry":140,"firegem":141,"firememory":676,"firestone":142,"firiumz":632,"fistplate":143,"flameorb":145,"flameplate":146,"floatstone":147,"flowersweet":708,"flyinggem":149,"flyingmemory":669,"flyiniumz":640,"focusband":150,"focussash":151,"fossilizedbird":700,"fossilizeddino":703,"fossilizeddrake":702,"fossilizedfish":701,"friendball":153,"fullincense":155,"galaricacuff":739,"galaricawreath":740,"galladite":616,"ganlonberry":158,"garchompite":589,"gardevoirite":587,"gengarite":588,"ghostgem":161,"ghostmemory":674,"ghostiumz":644,"glalitite":623,"goldbottlecap":697,"grassgem":172,"grassmemory":678,"grassiumz":635,"grassyseed":667,"greatball":174,"grepaberry":178,"gripclaw":179,"griseouscore":743,"griseousorb":180,"groundgem":182,"groundmemory":671,"groundiumz":639,"gyaradosite":589,"habanberry":185,"hardstone":187,"healball":188,"hearthflamemask":760,"heatrock":193,"heavyball":194,"heavydutyboots":715,"helixfossil":195,"heracronite":590,"hondewberry":213,"houndoominite":591,"iapapaberry":217,"icegem":218,"icememory":681,"icestone":693,"icicleplate":220,"iciumz":636,"icyrock":221,"inciniumz":651,"insectplate":223,"ironball":224,"ironplate":225,"jabocaberry":230,"jawfossil":694,"kasibberry":233,"kebiaberry":234,"keeberry":593,"kelpsyberry":235,"kangaskhanite":592,"kingsrock":236,"kommoniumz":690,"laggingtail":237,"lansatberry":238,"latiasite":629,"latiosite":630,"laxincense":240,"leafstone":241,"leek":475,"leftovers":242,"leppaberry":244,"levelball":246,"liechiberry":248,"lifeorb":249,"lightball":251,"lightclay":252,"loadeddice":751,"lopunnite":626,"loveball":258,"lovesweet":705,"lucarionite":594,"luckypunch":261,"lumberry":262,"luminousmoss":595,"lunaliumz":686,"lureball":264,"lustrousglobe":742,"lustrousorb":265,"luxuryball":266,"lycaniumz":689,"machobrace":269,"magmarizer":272,"magnet":273,"magoberry":274,"magostberry":275,"mail":403,"maliciousarmor":744,"manectite":596,"marangaberry":597,"marshadiumz":654,"masterball":276,"masterpieceteacup":757,"mawilite":598,"meadowplate":282,"medichamite":599,"mentalherb":285,"metagrossite":618,"metalalloy":761,"metalcoat":286,"metalpowder":287,"metronome":289,"mewniumz":658,"mewtwonitex":600,"mewtwonitey":601,"micleberry":290,"mimikiumz":688,"mindplate":291,"miracleseed":292,"mirrorherb":748,"mistyseed":666,"moonball":294,"moonstone":295,"muscleband":297,"mysticwater":300,"nanabberry":302,"nestball":303,"netball":304,"nevermeltice":305,"nomelberry":306,"normalgem":307,"normaliumz":631,"occaberry":311,"oddincense":312,"oldamber":314,"oranberry":319,"ovalstone":321,"pamtreberry":323,"parkball":325,"passhoberry":329,"payapaberry":330,"pechaberry":333,"persimberry":334,"petayaberry":335,"pidgeotite":622,"pikaniumz":649,"pikashuniumz":659,"pinapberry":337,"pinsirite":602,"pixieplate":610,"plumefossil":339,"poisonbarb":343,"poisongem":344,"poisonmemory":670,"poisoniumz":638,"pokeball":345,"pomegberry":351,"poweranklet":354,"powerband":355,"powerbelt":356,"powerbracer":357,"powerherb":358,"powerlens":359,"powerweight":360,"premierball":363,"primariumz":652,"prismscale":365,"protectivepads":663,"protector":367,"psychicgem":369,"psychicmemory":680,"psychicseed":665,"psychiumz":641,"punchingglove":749,"qualotberry":371,"quickball":372,"quickclaw":373,"quickpowder":374,"rabutaberry":375,"rarebone":379,"rawstberry":381,"razorclaw":382,"razorfang":383,"razzberry":384,"reapercloth":385,"redcard":387,"redorb":390,"repeatball":401,"ribbonsweet":710,"rindoberry":409,"ringtarget":410,"rockgem":415,"rockincense":416,"rockmemory":672,"rockiumz":643,"rockyhelmet":417,"roomservice":717,"rootfossil":418,"roseincense":419,"roseliberry":603,"rowapberry":420,"rustedshield":699,"rustedsword":698,"sablenite":614,"sachet":691,"safariball":425,"safetygoggles":604,"sailfossil":695,"salacberry":426,"salamencite":627,"sceptilite":613,"scizorite":605,"scopelens":429,"seaincense":430,"sharpbeak":436,"sharpedonite":619,"shedshell":437,"shellbell":438,"shinystone":439,"shockdrive":442,"shucaberry":443,"silkscarf":444,"silverpowder":447,"sitrusberry":448,"skullfossil":449,"skyplate":450,"slowbronite":620,"smoothrock":453,"snorliumz":656,"snowball":606,"softsand":456,"solganiumz":685,"souldew":459,"spelltag":461,"spelonberry":462,"splashplate":463,"spookyplate":464,"sportball":465,"starfberry":472,"starsweet":709,"steelixite":621,"steelgem":473,"steelmemory":675,"steeliumz":647,"stick":475,"stickybarb":476,"stoneplate":477,"strangeball":308,"strawberrysweet":704,"sunstone":480,"swampertite":612,"sweetapple":711,"syrupyapple":755,"tamatoberry":486,"tangaberry":487,"tapuniumz":653,"tartapple":712,"terrainextender":662,"thickclub":491,"throatspray":713,"thunderstone":492,"timerball":494,"toxicorb":515,"toxicplate":516,"tr00":721,"tr01":721,"tr02":730,"tr03":731,"tr04":731,"tr05":735,"tr06":735,"tr07":722,"tr08":733,"tr09":733,"tr10":725,"tr11":734,"tr12":734,"tr13":721,"tr14":721,"tr15":730,"tr16":731,"tr17":734,"tr18":727,"tr19":721,"tr20":721,"tr21":722,"tr22":724,"tr23":725,"tr24":736,"tr25":734,"tr26":721,"tr27":721,"tr28":727,"tr29":721,"tr30":721,"tr31":729,"tr32":737,"tr33":728,"tr34":734,"tr35":721,"tr36":730,"tr37":737,"tr38":734,"tr39":722,"tr40":734,"tr41":730,"tr42":721,"tr43":730,"tr44":734,"tr45":731,"tr46":729,"tr47":736,"tr48":722,"tr49":734,"tr50":732,"tr51":736,"tr52":729,"tr53":722,"tr54":724,"tr55":730,"tr56":722,"tr57":724,"tr58":737,"tr59":732,"tr60":727,"tr61":727,"tr62":736,"tr63":726,"tr64":722,"tr65":732,"tr66":723,"tr67":725,"tr68":737,"tr69":734,"tr70":729,"tr71":732,"tr72":732,"tr73":724,"tr74":729,"tr75":726,"tr76":726,"tr77":732,"tr78":724,"tr79":729,"tr80":733,"tr81":737,"tr82":734,"tr83":734,"tr84":731,"tr85":721,"tr86":733,"tr87":725,"tr88":730,"tr89":723,"tr90":738,"tr91":724,"tr92":738,"tr93":737,"tr94":725,"tr95":737,"tr96":727,"tr97":734,"tr98":731,"tr99":722,"twistedspoon":520,"tyranitarite":607,"ultraball":521,"ultranecroziumz":687,"unremarkableteacup":756,"upgrade":523,"utilityumbrella":718,"venusaurite":608,"wacanberry":526,"watergem":528,"watermemory":677,"waterstone":529,"wateriumz":633,"watmelberry":530,"waveincense":531,"weaknesspolicy":609,"wellspringmask":759,"wepearberry":533,"whippeddream":692,"whiteherb":535,"widelens":537,"wikiberry":538,"wiseglasses":539,"yacheberry":567,"zapplate":572,"zoomlens":574,"berserkgene":388,"berry":319,"bitterberry":334,"burntberry":13,"goldberry":448,"iceberry":381,"mintberry":65,"miracleberry":262,"mysteryberry":244,"pinkbow":444,"polkadotbow":444,"przcureberry":63,"psncureberry":333,"crucibellite":577,"vilevial":752},"avatars":{"1":"lucas","2":"dawn","3":"youngster-gen4dp","4":"lass-gen4dp","5":"camper","6":"picnicker","7":"bugcatcher-gen4dp","8":"aromalady","9":"twins-gen4dp","10":"hiker-gen4","11":"battlegirl-gen4","12":"fisherman-gen4","13":"cyclist-gen4","14":"cyclistf-gen4","15":"blackbelt-gen4dp","16":"artist-gen4","17":"pokemonbreeder-gen4","18":"pokemonbreederf-gen4","19":"cowgirl","20":"jogger","21":"pokefan-gen4","22":"pokefanf-gen4","23":"pokekid","24":"youngcouple-gen4dp","25":"acetrainer-gen4dp","26":"acetrainerf-gen4dp","27":"waitress-gen4","28":"veteran-gen4","29":"ninjaboy","30":"dragontamer","31":"birdkeeper-gen4dp","32":"doubleteam","33":"richboy-gen4","34":"lady-gen4","35":"gentleman-gen4dp","36":"madame-gen4dp","37":"beauty-gen4dp","38":"collector","39":"policeman-gen4","40":"pokemonranger-gen4","41":"pokemonrangerf-gen4","42":"scientist-gen4dp","43":"swimmer-gen4dp","44":"swimmerf-gen4dp","45":"tuber","46":"tuberf","47":"sailor","48":"sisandbro","49":"ruinmaniac","50":"psychic-gen4","51":"psychicf-gen4","52":"gambler","53":"guitarist-gen4","54":"acetrainersnow","55":"acetrainersnowf","56":"skier","57":"skierf-gen4dp","58":"roughneck-gen4","59":"clown","60":"worker-gen4","61":"schoolkid-gen4dp","62":"schoolkidf-gen4","63":"roark","64":"barry","65":"byron","66":"aaron","67":"bertha","68":"flint","69":"lucian","70":"cynthia-gen4","71":"bellepa","72":"rancher","73":"mars","74":"galacticgrunt","75":"gardenia","76":"crasherwake","77":"maylene","78":"fantina","79":"candice","80":"volkner","81":"parasollady-gen4","82":"waiter-gen4dp","83":"interviewers","84":"cameraman","85":"reporter","86":"idol","87":"cyrus","88":"jupiter","89":"saturn","90":"galacticgruntf","91":"argenta","92":"palmer","93":"thorton","94":"buck","95":"darach-caitlin","96":"marley","97":"mira","98":"cheryl","99":"riley","100":"dahlia","101":"ethan","102":"lyra","103":"twins-gen4","104":"lass-gen4","105":"acetrainer-gen4","106":"acetrainerf-gen4","107":"juggler","108":"sage","109":"li","110":"gentleman-gen4","111":"teacher","112":"beauty","113":"birdkeeper","114":"swimmer-gen4","115":"swimmerf-gen4","116":"kimonogirl","117":"scientist-gen4","118":"acetrainercouple","119":"youngcouple","120":"supernerd","121":"medium","122":"schoolkid-gen4","123":"blackbelt-gen4","124":"pokemaniac","125":"firebreather","126":"burglar","127":"biker-gen4","128":"skierf","129":"boarder","130":"rocketgrunt","131":"rocketgruntf","132":"archer","133":"ariana","134":"proton","135":"petrel","136":"eusine","137":"lucas-gen4pt","138":"dawn-gen4pt","139":"madame-gen4","140":"waiter-gen4","141":"falkner","142":"bugsy","143":"whitney","144":"morty","145":"chuck","146":"jasmine","147":"pryce","148":"clair","149":"will","150":"koga","151":"bruno","152":"karen","153":"lance","154":"brock","155":"misty","156":"ltsurge","157":"erika","158":"janine","159":"sabrina","160":"blaine","161":"blue","162":"red","163":"red","164":"silver","165":"giovanni","166":"unknownf","167":"unknown","168":"unknown","169":"hilbert","170":"hilda","171":"youngster","172":"lass","173":"schoolkid","174":"schoolkidf","175":"smasher","176":"linebacker","177":"waiter","178":"waitress","179":"chili","180":"cilan","181":"cress","182":"nurseryaide","183":"preschoolerf","184":"preschooler","185":"twins","186":"pokemonbreeder","187":"pokemonbreederf","188":"lenora","189":"burgh","190":"elesa","191":"clay","192":"skyla","193":"pokemonranger","194":"pokemonrangerf","195":"worker","196":"backpacker","197":"backpackerf","198":"fisherman","199":"musician","200":"dancer","201":"harlequin","202":"artist","203":"baker","204":"psychic","205":"psychicf","206":"cheren","207":"bianca","208":"plasmagrunt-gen5bw","209":"n","210":"richboy","211":"lady","212":"pilot","213":"workerice","214":"hoopster","215":"scientistf","216":"clerkf","217":"acetrainerf","218":"acetrainer","219":"blackbelt","220":"scientist","221":"striker","222":"brycen","223":"iris","224":"drayden","225":"roughneck","226":"janitor","227":"pokefan","228":"pokefanf","229":"doctor","230":"nurse","231":"hooligans","232":"battlegirl","233":"parasollady","234":"clerk","235":"clerk-boss","236":"backers","237":"backersf","238":"veteran","239":"veteranf","240":"biker","241":"infielder","242":"hiker","243":"madame","244":"gentleman","245":"plasmagruntf-gen5bw","246":"shauntal","247":"marshal","248":"grimsley","249":"caitlin","250":"ghetsis-gen5bw","251":"depotagent","252":"swimmer","253":"swimmerf","254":"policeman","255":"maid","256":"ingo","257":"alder","258":"cyclist","259":"cyclistf","260":"cynthia","261":"emmet","262":"hilbert-wonderlauncher","263":"hilda-wonderlauncher","264":"hugh","265":"rosa","266":"nate","267":"colress","268":"beauty-gen5bw2","269":"ghetsis","270":"plasmagrunt","271":"plasmagruntf","272":"iris-gen5bw2","273":"brycenman","274":"shadowtriad","275":"rood","276":"zinzolin","277":"cheren-gen5bw2","278":"marlon","279":"roxie","280":"roxanne","281":"brawly","282":"wattson","283":"flannery","284":"norman","285":"winona","286":"tate","287":"liza","288":"juan","289":"guitarist","290":"steven","291":"wallace","292":"bellelba","293":"benga","294":"ash","1001":"#1001","1002":"#1002","1003":"#1003","1005":"#1005","1010":"#1010","#bw2elesa":"elesa-gen5bw2","#teamrocket":"teamrocket","#yellow":"yellow","#zinnia":"zinnia","#clemont":"clemont","#wally":"wally","breeder":"pokemonbreeder","breederf":"pokemonbreederf","hilbert-dueldisk":"hilbert-wonderlauncher","hilda-dueldisk":"hilda-wonderlauncher","nate-dueldisk":"nate-wonderlauncher","rosa-dueldisk":"rosa-wonderlauncher"}} \ No newline at end of file +{"pokemon":{"bulbasaur":{"n":1,"f":{"w":45,"h":49},"b":{"w":52,"h":50},"bw":{"f":{"w":37,"h":38},"b":{"w":32,"h":37}},"g":1},"ivysaur":{"n":2,"f":{"w":84,"h":66},"b":{"w":76,"h":68},"bw":{"f":{"w":58,"h":51},"b":{"w":57,"h":45}},"g":1},"venusaur":{"n":3,"f":{"w":106,"h":77},"b":{"w":95,"h":78},"bf":{"w":108,"h":88},"bw":{"f":{"w":86,"h":71},"ff":{"w":86,"h":71},"b":{"w":89,"h":64},"bf":{"w":89,"h":64}},"g":1},"venusaurmega":{"n":3,"i":1320,"f":{"w":136,"h":91},"b":{"w":131,"h":92},"g":6,"s":8},"venusaurgmax":{"n":3,"i":1397,"g":8,"s":8},"charmander":{"n":4,"f":{"w":48,"h":57},"b":{"w":64,"h":57},"bw":{"f":{"w":41,"h":42},"b":{"w":44,"h":44}},"g":1},"charmeleon":{"n":5,"f":{"w":60,"h":70},"b":{"w":78,"h":75},"bw":{"f":{"w":69,"h":56},"b":{"w":67,"h":60}},"g":1},"charizard":{"n":6,"f":{"w":133,"h":140},"b":{"w":172,"h":166},"bw":{"f":{"w":89,"h":91},"b":{"w":98,"h":83}},"g":1},"charizardmegax":{"n":6,"i":1321,"f":{"w":161,"h":107},"b":{"w":186,"h":100},"bw":{"f":{"w":105,"h":94}},"g":6,"s":9},"charizardmegay":{"n":6,"i":1322,"f":{"w":201,"h":166},"b":{"w":256,"h":184},"g":6,"s":9},"charizardgmax":{"n":6,"i":1370,"f":{"w":163,"h":150},"b":{"w":216,"h":211},"g":8,"s":9},"squirtle":{"n":7,"f":{"w":53,"h":54},"b":{"w":62,"h":53},"bw":{"f":{"w":39,"h":43},"b":{"w":39,"h":45}},"g":1},"wartortle":{"n":8,"f":{"w":56,"h":73},"b":{"w":70,"h":72},"bw":{"f":{"w":60,"h":57},"b":{"w":56,"h":62}},"g":1},"blastoise":{"n":9,"f":{"w":88,"h":83},"b":{"w":97,"h":83},"bw":{"f":{"w":70,"h":66},"b":{"w":66,"h":67}},"g":1},"blastoisemega":{"n":9,"i":1323,"f":{"w":110,"h":114},"b":{"w":107,"h":108},"g":6,"s":9},"blastoisegmax":{"n":9,"i":1398,"g":8,"s":9},"caterpie":{"n":10,"f":{"w":46,"h":45},"b":{"w":50,"h":45},"bw":{"f":{"w":36,"h":37},"b":{"w":38,"h":35}},"g":1},"metapod":{"n":11,"f":{"w":42,"h":54},"b":{"w":47,"h":54},"bw":{"f":{"w":37,"h":38},"b":{"w":43,"h":43}},"g":1},"butterfree":{"n":12,"f":{"w":93,"h":89},"b":{"w":90,"h":95},"bf":{"w":103,"h":103},"bw":{"f":{"w":61,"h":58},"ff":{"w":61,"h":58},"b":{"w":64,"h":57},"bf":{"w":64,"h":57}},"g":1},"butterfreegmax":{"n":12,"i":1371,"f":{"w":247,"h":126},"b":{"w":245,"h":211},"g":8,"s":10},"weedle":{"n":13,"f":{"w":35,"h":53},"b":{"w":53,"h":53},"bw":{"f":{"w":37,"h":47},"b":{"w":42,"h":46}},"g":1},"kakuna":{"n":14,"f":{"w":36,"h":58},"b":{"w":35,"h":58},"bw":{"f":{"w":31,"h":40},"b":{"w":32,"h":41}},"g":1},"beedrill":{"n":15,"f":{"w":75,"h":86},"b":{"w":76,"h":90},"bw":{"f":{"w":73,"h":69},"b":{"w":76,"h":68}},"g":1},"beedrillmega":{"n":15,"i":1324,"f":{"w":86,"h":81},"b":{"w":77,"h":78},"bw":{"f":{"w":103,"h":88}},"g":6,"s":8},"pidgey":{"n":16,"f":{"w":36,"h":49},"b":{"w":49,"h":48},"bw":{"f":{"w":42,"h":48},"b":{"w":45,"h":47}},"g":1},"pidgeotto":{"n":17,"f":{"w":115,"h":86},"b":{"w":96,"h":85},"bw":{"f":{"w":82,"h":117},"b":{"w":95,"h":95}},"g":1},"pidgeot":{"n":18,"f":{"w":124,"h":124},"b":{"w":110,"h":117},"bw":{"f":{"w":58,"h":68},"b":{"w":68,"h":66}},"g":1},"pidgeotmega":{"n":18,"i":1325,"f":{"w":175,"h":60},"b":{"w":219,"h":64},"g":6,"s":7},"rattata":{"n":19,"f":{"w":43,"h":61},"ff":{"w":42,"h":61},"b":{"w":43,"h":64},"bf":{"w":54,"h":69},"bw":{"f":{"w":43,"h":43},"ff":{"w":43,"h":43},"b":{"w":59,"h":42},"bf":{"w":57,"h":42}},"g":1},"rattataalola":{"n":19,"i":1151,"f":{"w":49,"h":52},"b":{"w":59,"h":51},"bw":{"f":{"w":53,"h":52},"b":{"w":62,"h":49}},"g":7,"s":7},"raticate":{"n":20,"f":{"w":68,"h":64},"ff":{"w":68,"h":64},"b":{"w":87,"h":69},"bw":{"f":{"w":65,"h":51},"ff":{"w":63,"h":51},"b":{"w":66,"h":52},"bf":{"w":66,"h":52}},"g":1},"raticatealola":{"n":20,"i":1152,"f":{"w":70,"h":59},"b":{"w":81,"h":59},"bw":{"f":{"w":60,"h":47},"b":{"w":70,"h":52}},"g":7,"s":8},"raticatealolatotem":{"n":20,"i":1152,"g":7,"s":8},"spearow":{"n":21,"f":{"w":33,"h":52},"b":{"w":46,"h":53},"bw":{"f":{"w":33,"h":40},"b":{"w":34,"h":40}},"g":1},"fearow":{"n":22,"f":{"w":148,"h":135},"b":{"w":152,"h":142},"bw":{"f":{"w":82,"h":105},"b":{"w":78,"h":112}},"g":1},"ekans":{"n":23,"f":{"w":46,"h":42},"b":{"w":54,"h":41},"bw":{"f":{"w":59,"h":45},"b":{"w":57,"h":50}},"g":1},"arbok":{"n":24,"f":{"w":87,"h":83},"b":{"w":115,"h":82},"bw":{"f":{"w":82,"h":75},"b":{"w":86,"h":71}},"g":1},"pikachu":{"n":25,"f":{"w":60,"h":60},"ff":{"w":60,"h":60},"b":{"w":65,"h":61},"bf":{"w":77,"h":70},"bw":{"f":{"w":50,"h":46},"ff":{"w":50,"h":46},"b":{"w":40,"h":47},"bf":{"w":41,"h":47}},"g":1},"pikachucosplay":{"n":25,"i":1039,"f":{"w":60,"h":61},"b":{"w":62,"h":61},"g":6,"s":7},"pikachurockstar":{"n":25,"i":1038,"f":{"w":63,"h":64},"b":{"w":77,"h":69},"g":6,"s":7,"nd":true},"pikachubelle":{"n":25,"i":1034,"il":1404,"f":{"w":55,"h":69},"b":{"w":67,"h":74},"g":6,"s":7,"nd":true},"pikachupopstar":{"n":25,"i":1037,"il":1405,"f":{"w":65,"h":64},"b":{"w":84,"h":69},"g":6,"s":7,"nd":true},"pikachuphd":{"n":25,"i":1036,"f":{"w":59,"h":65},"b":{"w":78,"h":68},"g":6,"s":7,"nd":true},"pikachulibre":{"n":25,"i":1035,"f":{"w":68,"h":56},"g":6,"s":7,"nd":true},"pikachuoriginal":{"n":25,"i":1185,"il":1503,"f":{"w":60,"h":60},"b":{"w":80,"h":64},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachuhoenn":{"n":25,"i":1186,"f":{"w":60,"h":60},"b":{"w":80,"h":67},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachusinnoh":{"n":25,"i":1187,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachuunova":{"n":25,"i":1188,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachukalos":{"n":25,"i":1189,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachualola":{"n":25,"i":1190,"f":{"w":60,"h":60},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7,"ns":true},"pikachupartner":{"n":25,"i":1191,"il":1504,"f":{"w":60,"h":59},"b":{"w":80,"h":65},"bw":{"f":{"w":48,"h":44},"b":{"w":43,"h":42}},"g":7,"s":7},"pikachustarter":{"n":25,"i":1196,"f":{"w":60,"h":59},"ff":{"w":60,"h":59},"b":{"w":80,"h":65},"bf":{"w":80,"h":65},"bw":{"f":{"w":50,"h":46},"ff":{"w":50,"h":46},"b":{"w":43,"h":49},"bf":{"w":41,"h":47}},"g":7,"s":7},"pikachugmax":{"n":25,"i":1372,"f":{"w":92,"h":155},"b":{"w":84,"h":162},"g":8,"s":7},"pikachuworld":{"n":25,"i":1231,"bw":{"f":{"w":48,"h":44}},"g":8,"s":7},"raichu":{"n":26,"f":{"w":69,"h":103},"b":{"w":91,"h":113},"bf":{"w":93,"h":111},"bw":{"f":{"w":74,"h":73},"ff":{"w":71,"h":73},"b":{"w":76,"h":73},"bf":{"w":73,"h":73}},"g":1},"raichualola":{"n":26,"i":1153,"f":{"w":92,"h":93},"b":{"w":88,"h":93},"bw":{"f":{"w":105,"h":96},"b":{"w":123,"h":93}},"g":7,"s":6},"sandshrew":{"n":27,"f":{"w":45,"h":47},"b":{"w":56,"h":46},"bw":{"f":{"w":36,"h":39},"b":{"w":41,"h":38}},"g":1},"sandshrewalola":{"n":27,"i":1154,"f":{"w":39,"h":46},"b":{"w":51,"h":45},"bw":{"f":{"w":40,"h":38},"b":{"w":44,"h":38}},"g":7,"s":9},"sandslash":{"n":28,"f":{"w":61,"h":68},"b":{"w":68,"h":69},"bw":{"f":{"w":57,"h":53},"b":{"w":57,"h":52}},"g":1},"sandslashalola":{"n":28,"i":1155,"f":{"w":74,"h":84},"b":{"w":75,"h":86},"bw":{"f":{"w":61,"h":58},"b":{"w":56,"h":58}},"g":7,"s":9},"nidoranf":{"n":29,"f":{"w":43,"h":41},"b":{"w":42,"h":41},"bw":{"f":{"w":35,"h":34},"b":{"w":33,"h":36}},"g":1},"nidorina":{"n":30,"f":{"w":41,"h":56},"b":{"w":51,"h":56},"bw":{"f":{"w":52,"h":47},"b":{"w":51,"h":43}},"g":1},"nidoqueen":{"n":31,"f":{"w":64,"h":82},"b":{"w":85,"h":80},"bw":{"f":{"w":77,"h":70},"b":{"w":85,"h":71}},"g":1},"nidoranm":{"n":32,"f":{"w":52,"h":52},"b":{"w":54,"h":52},"bw":{"f":{"w":37,"h":37},"b":{"w":37,"h":43}},"g":1},"nidorino":{"n":33,"f":{"w":60,"h":56},"b":{"w":60,"h":56},"bw":{"f":{"w":52,"h":56},"b":{"w":54,"h":56}},"g":1},"nidoking":{"n":34,"f":{"w":105,"h":83},"b":{"w":128,"h":76},"bw":{"f":{"w":86,"h":71},"b":{"w":88,"h":69}},"g":1},"clefairy":{"n":35,"il":1406,"f":{"w":56,"h":48},"b":{"w":65,"h":48},"bw":{"f":{"w":48,"h":42},"b":{"w":55,"h":43}},"g":1},"clefable":{"n":36,"il":1407,"f":{"w":80,"h":65},"b":{"w":74,"h":68},"bw":{"f":{"w":54,"h":52},"b":{"w":55,"h":51}},"g":1},"vulpix":{"n":37,"f":{"w":52,"h":47},"b":{"w":58,"h":49},"bw":{"f":{"w":60,"h":50},"b":{"w":62,"h":52}},"g":1},"vulpixalola":{"n":37,"i":1156,"f":{"w":44,"h":47},"b":{"w":55,"h":46},"bw":{"f":{"w":59,"h":46},"b":{"w":63,"h":49}},"g":7,"s":6},"ninetales":{"n":38,"f":{"w":79,"h":77},"b":{"w":95,"h":79},"bw":{"f":{"w":74,"h":73},"b":{"w":76,"h":64}},"g":1},"ninetalesalola":{"n":38,"i":1157,"f":{"w":89,"h":70},"b":{"w":113,"h":70},"bw":{"f":{"w":86,"h":67},"b":{"w":82,"h":69}},"g":7,"s":9},"jigglypuff":{"n":39,"il":1408,"f":{"w":46,"h":46},"b":{"w":44,"h":45},"bw":{"f":{"w":47,"h":46},"b":{"w":46,"h":48}},"g":1},"wigglytuff":{"n":40,"il":1409,"f":{"w":72,"h":68},"b":{"w":57,"h":70},"bw":{"f":{"w":48,"h":82},"b":{"w":47,"h":82}},"g":1},"zubat":{"n":41,"f":{"w":104,"h":84},"ff":{"w":110,"h":89},"b":{"w":108,"h":88},"bw":{"f":{"w":53,"h":46},"ff":{"w":53,"h":46},"b":{"w":49,"h":59},"bf":{"w":49,"h":59}},"g":1},"golbat":{"n":42,"f":{"w":160,"h":136},"ff":{"w":160,"h":136},"b":{"w":147,"h":138},"bw":{"f":{"w":110,"h":82},"ff":{"w":110,"h":82},"b":{"w":95,"h":84},"bf":{"w":95,"h":84}},"g":1},"oddish":{"n":43,"f":{"w":52,"h":48},"b":{"w":42,"h":48},"bw":{"f":{"w":37,"h":50},"b":{"w":41,"h":51}},"g":1},"gloom":{"n":44,"f":{"w":62,"h":53},"b":{"w":64,"h":53},"bf":{"w":75,"h":60},"bw":{"f":{"w":50,"h":45},"ff":{"w":50,"h":45},"b":{"w":49,"h":47},"bf":{"w":49,"h":47}},"g":1},"vileplume":{"n":45,"f":{"w":81,"h":56},"b":{"w":81,"h":54},"bf":{"w":87,"h":62},"bw":{"f":{"w":56,"h":50},"ff":{"w":56,"h":50},"b":{"w":56,"h":48},"bf":{"w":56,"h":48}},"g":1},"paras":{"n":46,"f":{"w":52,"h":34},"b":{"w":54,"h":33},"bw":{"f":{"w":48,"h":37},"b":{"w":48,"h":32}},"g":1},"parasect":{"n":47,"f":{"w":77,"h":62},"b":{"w":78,"h":63},"bw":{"f":{"w":62,"h":63},"b":{"w":70,"h":52}},"g":1},"venonat":{"n":48,"f":{"w":58,"h":63},"b":{"w":55,"h":62},"bw":{"f":{"w":42,"h":53},"b":{"w":42,"h":52}},"g":1},"venomoth":{"n":49,"f":{"w":123,"h":85},"b":{"w":109,"h":94},"bw":{"f":{"w":100,"h":74},"b":{"w":104,"h":73}},"g":1},"diglett":{"n":50,"f":{"w":43,"h":35},"b":{"w":44,"h":35},"bw":{"f":{"w":38,"h":31},"b":{"w":38,"h":32}},"g":1},"diglettalola":{"n":50,"i":1158,"f":{"w":43,"h":43},"b":{"w":43,"h":43},"bw":{"f":{"w":31,"h":33},"b":{"w":31,"h":33}},"g":7,"s":7},"dugtrio":{"n":51,"f":{"w":65,"h":50},"b":{"w":68,"h":51},"bw":{"f":{"w":52,"h":42},"b":{"w":52,"h":43}},"g":1},"dugtrioalola":{"n":51,"i":1159,"il":1410,"f":{"w":75,"h":49},"b":{"w":85,"h":49},"bw":{"f":{"w":48,"h":45},"b":{"w":50,"h":45}},"g":7,"s":7},"meowth":{"n":52,"f":{"w":49,"h":61},"b":{"w":51,"h":60},"bw":{"f":{"w":48,"h":65},"b":{"w":59,"h":64}},"g":1},"meowthalola":{"n":52,"i":1160,"f":{"w":59,"h":60},"b":{"w":60,"h":59},"bw":{"f":{"w":42,"h":46},"b":{"w":48,"h":46}},"g":7,"s":6},"meowthgalar":{"n":52,"i":1198,"f":{"w":55,"h":69},"b":{"w":47,"h":68},"bw":{"f":{"w":53,"h":63}},"g":8,"s":6,"m":["gen5ani-shiny"]},"meowthgmax":{"n":52,"i":1373,"f":{"w":107,"h":160},"b":{"w":106,"h":164},"bw":{"f":{"w":96,"h":96}},"g":8,"s":6,"m":["gen5ani-shiny"]},"persian":{"n":53,"f":{"w":66,"h":70},"b":{"w":114,"h":66},"bw":{"f":{"w":72,"h":62},"b":{"w":78,"h":56}},"g":1},"persianalola":{"n":53,"i":1161,"f":{"w":70,"h":72},"b":{"w":111,"h":64},"bw":{"f":{"w":74,"h":66},"b":{"w":74,"h":67}},"g":7,"s":7},"psyduck":{"n":54,"f":{"w":51,"h":53},"b":{"w":42,"h":54},"bw":{"f":{"w":38,"h":46},"b":{"w":37,"h":45}},"g":1},"golduck":{"n":55,"f":{"w":68,"h":74},"b":{"w":72,"h":74},"bw":{"f":{"w":60,"h":59},"b":{"w":55,"h":57}},"g":1},"mankey":{"n":56,"f":{"w":52,"h":56},"b":{"w":65,"h":60},"bw":{"f":{"w":65,"h":61},"b":{"w":61,"h":59}},"g":1},"primeape":{"n":57,"f":{"w":71,"h":65},"b":{"w":69,"h":65},"bw":{"f":{"w":67,"h":61},"b":{"w":72,"h":58}},"g":1},"growlithe":{"n":58,"f":{"w":45,"h":57},"b":{"w":62,"h":57},"bw":{"f":{"w":56,"h":51},"b":{"w":56,"h":58}},"g":1},"growlithehisui":{"n":58,"i":1238,"f":{"w":44,"h":49},"b":{"w":58,"h":50},"g":8,"s":9},"arcanine":{"n":59,"f":{"w":74,"h":82},"b":{"w":118,"h":82},"bw":{"f":{"w":78,"h":69},"b":{"w":86,"h":69}},"g":1},"arcaninehisui":{"n":59,"i":1239,"f":{"w":85,"h":85},"b":{"w":122,"h":114},"g":8,"s":8},"poliwag":{"n":60,"f":{"w":55,"h":40},"b":{"w":68,"h":40},"bw":{"f":{"w":53,"h":34},"b":{"w":54,"h":35}},"g":1},"poliwhirl":{"n":61,"il":1411,"f":{"w":73,"h":50},"b":{"w":60,"h":49},"bw":{"f":{"w":74,"h":55},"b":{"w":80,"h":58}},"g":1},"poliwrath":{"n":62,"il":1412,"f":{"w":73,"h":63},"b":{"w":70,"h":60},"bw":{"f":{"w":81,"h":57},"b":{"w":74,"h":57}},"g":1},"abra":{"n":63,"f":{"w":69,"h":53},"b":{"w":74,"h":51},"bw":{"f":{"w":64,"h":53},"b":{"w":71,"h":56}},"g":1},"kadabra":{"n":64,"f":{"w":70,"h":71},"b":{"w":93,"h":69},"bf":{"w":101,"h":75},"bw":{"f":{"w":78,"h":61},"ff":{"w":78,"h":61},"b":{"w":80,"h":65},"bf":{"w":80,"h":65}},"g":1},"alakazam":{"n":65,"f":{"w":77,"h":79},"b":{"w":71,"h":79},"bf":{"w":76,"h":86},"bw":{"f":{"w":92,"h":69},"ff":{"w":92,"h":69},"b":{"w":83,"h":66},"bf":{"w":83,"h":66}},"g":1},"alakazammega":{"n":65,"i":1326,"f":{"w":113,"h":115},"b":{"w":109,"h":109},"bw":{"f":{"w":88,"h":98}},"g":6,"s":8},"machop":{"n":66,"f":{"w":39,"h":63},"b":{"w":44,"h":63},"bw":{"f":{"w":50,"h":50},"b":{"w":52,"h":51}},"g":1},"machoke":{"n":67,"f":{"w":72,"h":87},"b":{"w":60,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":61,"h":72}},"g":1},"machamp":{"n":68,"f":{"w":84,"h":100},"b":{"w":73,"h":97},"bw":{"f":{"w":63,"h":77},"b":{"w":67,"h":77}},"g":1},"machampgmax":{"n":68,"i":1374,"f":{"w":129,"h":133},"b":{"w":107,"h":115},"g":8,"s":7},"bellsprout":{"n":69,"f":{"w":55,"h":49},"b":{"w":41,"h":49},"bw":{"f":{"w":41,"h":44},"b":{"w":44,"h":52}},"g":1},"weepinbell":{"n":70,"f":{"w":65,"h":51},"b":{"w":51,"h":52},"bw":{"f":{"w":68,"h":50},"b":{"w":72,"h":54}},"g":1},"victreebel":{"n":71,"f":{"w":98,"h":82},"b":{"w":83,"h":86},"bw":{"f":{"w":65,"h":71},"b":{"w":69,"h":70}},"g":1},"tentacool":{"n":72,"f":{"w":45,"h":73},"b":{"w":45,"h":71},"bw":{"f":{"w":57,"h":70},"b":{"w":62,"h":77}},"g":1},"tentacruel":{"n":73,"f":{"w":68,"h":85},"b":{"w":69,"h":82},"bw":{"f":{"w":83,"h":85},"b":{"w":84,"h":85}},"g":1},"geodude":{"n":74,"f":{"w":75,"h":35},"b":{"w":56,"h":34},"bw":{"f":{"w":61,"h":45},"b":{"w":57,"h":52}},"g":1},"geodudealola":{"n":74,"i":1162,"f":{"w":60,"h":43},"b":{"w":46,"h":43},"bw":{"f":{"w":70,"h":42},"b":{"w":71,"h":44}},"g":7,"s":7},"graveler":{"n":75,"f":{"w":107,"h":59},"b":{"w":86,"h":59},"bw":{"f":{"w":71,"h":44},"b":{"w":65,"h":43}},"g":1},"graveleralola":{"n":75,"i":1163,"f":{"w":104,"h":59},"b":{"w":88,"h":58},"bw":{"f":{"w":84,"h":46},"b":{"w":81,"h":47}},"g":7,"s":8},"golem":{"n":76,"f":{"w":94,"h":78},"b":{"w":87,"h":77},"bw":{"f":{"w":72,"h":57},"b":{"w":68,"h":56}},"g":1},"golemalola":{"n":76,"i":1164,"f":{"w":75,"h":87},"b":{"w":69,"h":85},"bw":{"f":{"w":61,"h":74},"b":{"w":61,"h":69}},"g":7,"s":5},"ponyta":{"n":77,"f":{"w":51,"h":68},"b":{"w":60,"h":69},"bw":{"f":{"w":58,"h":57},"b":{"w":58,"h":59}},"g":1},"ponytagalar":{"n":77,"i":1199,"f":{"w":60,"h":71},"b":{"w":73,"h":72},"bw":{"f":{"w":69,"h":57}},"g":8,"s":6},"rapidash":{"n":78,"f":{"w":91,"h":95},"b":{"w":126,"h":96},"bw":{"f":{"w":74,"h":73},"b":{"w":76,"h":76}},"g":1},"rapidashgalar":{"n":78,"i":1200,"f":{"w":64,"h":98},"b":{"w":87,"h":95},"g":8,"s":8},"slowpoke":{"n":79,"f":{"w":47,"h":58},"b":{"w":65,"h":60},"bw":{"f":{"w":65,"h":54},"b":{"w":67,"h":51}},"g":1},"slowpokegalar":{"n":79,"i":1228,"f":{"w":76,"h":50},"b":{"w":155,"h":58},"bw":{"f":{"w":60,"h":35}},"g":8,"s":8},"slowbro":{"n":80,"f":{"w":92,"h":71},"b":{"w":97,"h":68},"bw":{"f":{"w":62,"h":60},"b":{"w":76,"h":58}},"g":1},"slowbromega":{"n":80,"i":1327,"f":{"w":75,"h":87},"b":{"w":78,"h":87},"g":6,"s":7},"slowbrogalar":{"n":80,"i":1229,"f":{"w":55,"h":75},"b":{"w":72,"h":71},"bw":{"f":{"w":82,"h":60}},"g":8,"s":7},"magnemite":{"n":81,"f":{"w":49,"h":35},"b":{"w":41,"h":35},"bw":{"f":{"w":37,"h":33},"b":{"w":36,"h":31}},"g":1},"magneton":{"n":82,"f":{"w":89,"h":69},"b":{"w":66,"h":70},"bw":{"f":{"w":68,"h":60},"b":{"w":73,"h":59}},"g":1},"farfetchd":{"n":83,"f":{"w":44,"h":50},"b":{"w":43,"h":51},"bw":{"f":{"w":45,"h":49},"b":{"w":46,"h":50}},"g":1},"farfetchdgalar":{"n":83,"i":1201,"f":{"w":97,"h":58},"b":{"w":100,"h":59},"bw":{"f":{"w":88,"h":48},"b":{"w":86,"h":48}},"g":8,"s":9},"doduo":{"n":84,"f":{"w":42,"h":70},"b":{"w":43,"h":70},"bf":{"w":54,"h":77},"bw":{"f":{"w":60,"h":54},"ff":{"w":60,"h":54},"b":{"w":60,"h":57},"bf":{"w":60,"h":57}},"g":1},"dodrio":{"n":85,"f":{"w":68,"h":102},"b":{"w":80,"h":100},"bf":{"w":79,"h":97},"bw":{"f":{"w":70,"h":76},"ff":{"w":70,"h":76},"b":{"w":73,"h":76},"bf":{"w":73,"h":76}},"g":1},"seel":{"n":86,"f":{"w":66,"h":45},"b":{"w":80,"h":43},"bw":{"f":{"w":62,"h":47},"b":{"w":61,"h":43}},"g":1},"dewgong":{"n":87,"f":{"w":99,"h":69},"b":{"w":137,"h":68},"bw":{"f":{"w":75,"h":75},"b":{"w":76,"h":87}},"g":1},"grimer":{"n":88,"f":{"w":68,"h":51},"b":{"w":72,"h":49},"bw":{"f":{"w":72,"h":42},"b":{"w":71,"h":46}},"g":1},"grimeralola":{"n":88,"i":1165,"f":{"w":65,"h":52},"b":{"w":70,"h":52},"bw":{"f":{"w":61,"h":40},"b":{"w":58,"h":39}},"g":7,"s":6},"muk":{"n":89,"f":{"w":137,"h":79},"b":{"w":132,"h":74},"bw":{"f":{"w":94,"h":68},"b":{"w":100,"h":82}},"g":1},"mukalola":{"n":89,"i":1166,"il":1413,"f":{"w":148,"h":86},"b":{"w":141,"h":83},"bw":{"f":{"w":83,"h":64},"b":{"w":93,"h":62}},"g":7,"s":3},"shellder":{"n":90,"f":{"w":52,"h":37},"b":{"w":49,"h":36},"bw":{"f":{"w":42,"h":38},"b":{"w":47,"h":38}},"g":1},"cloyster":{"n":91,"f":{"w":83,"h":85},"b":{"w":82,"h":86},"bw":{"f":{"w":73,"h":65},"b":{"w":69,"h":68}},"g":1},"gastly":{"n":92,"f":{"w":52,"h":61},"b":{"w":53,"h":60},"bw":{"f":{"w":67,"h":75},"b":{"w":64,"h":78}},"g":1},"haunter":{"n":93,"f":{"w":85,"h":73},"b":{"w":97,"h":70},"bw":{"f":{"w":85,"h":71},"b":{"w":91,"h":71}},"g":1},"gengar":{"n":94,"f":{"w":84,"h":78},"b":{"w":72,"h":78},"bw":{"f":{"w":79,"h":65},"b":{"w":72,"h":65}},"g":1},"gengarmega":{"n":94,"i":1328,"f":{"w":112,"h":92},"b":{"w":123,"h":94},"g":6,"s":6},"gengargmax":{"n":94,"i":1375,"f":{"w":155,"h":111},"b":{"w":146,"h":107},"g":8,"s":6},"onix":{"n":95,"f":{"w":90,"h":115},"b":{"w":98,"h":112},"bw":{"f":{"w":73,"h":74},"b":{"w":98,"h":70}},"g":1},"drowzee":{"n":96,"f":{"w":62,"h":57},"b":{"w":58,"h":57},"bw":{"f":{"w":52,"h":58},"b":{"w":57,"h":57}},"g":1},"hypno":{"n":97,"f":{"w":86,"h":78},"b":{"w":75,"h":75},"bf":{"w":81,"h":77},"bw":{"f":{"w":67,"h":62},"ff":{"w":67,"h":62},"b":{"w":65,"h":60},"bf":{"w":65,"h":60}},"g":1},"krabby":{"n":98,"f":{"w":64,"h":50},"b":{"w":58,"h":52},"bw":{"f":{"w":55,"h":40},"b":{"w":56,"h":43}},"g":1},"kingler":{"n":99,"il":1414,"f":{"w":87,"h":83},"b":{"w":78,"h":74},"bw":{"f":{"w":82,"h":59},"b":{"w":83,"h":62}},"g":1},"kinglergmax":{"n":99,"i":1376,"f":{"w":151,"h":146},"b":{"w":120,"h":134},"g":8,"s":7},"voltorb":{"n":100,"f":{"w":45,"h":43},"b":{"w":45,"h":43},"bw":{"f":{"w":46,"h":31},"b":{"w":46,"h":31}},"g":1},"voltorbhisui":{"n":100,"i":1240,"f":{"w":61,"h":44},"b":{"w":55,"h":44},"bw":{"f":{"w":51,"h":48}},"g":8,"s":7},"electrode":{"n":101,"f":{"w":72,"h":59},"b":{"w":73,"h":59},"bw":{"f":{"w":48,"h":52},"b":{"w":48,"h":52}},"g":1},"electrodehisui":{"n":101,"i":1241,"f":{"w":79,"h":60},"b":{"w":81,"h":59},"g":8,"s":9},"exeggcute":{"n":102,"f":{"w":77,"h":29},"b":{"w":84,"h":29},"bw":{"f":{"w":54,"h":43},"b":{"w":55,"h":40}},"g":1},"exeggutor":{"n":103,"f":{"w":142,"h":99},"b":{"w":130,"h":100},"bw":{"f":{"w":78,"h":73},"b":{"w":75,"h":71}},"g":1},"exeggutoralola":{"n":103,"i":1167,"f":{"w":111,"h":180},"b":{"w":117,"h":181},"bw":{"f":{"w":113,"h":102},"b":{"w":109,"h":100}},"g":7,"s":9},"cubone":{"n":104,"f":{"w":40,"h":49},"b":{"w":42,"h":47},"bw":{"f":{"w":49,"h":43},"b":{"w":53,"h":41}},"g":1},"marowak":{"n":105,"f":{"w":47,"h":67},"b":{"w":55,"h":68},"bw":{"f":{"w":67,"h":59},"b":{"w":65,"h":52}},"g":1},"marowakalola":{"n":105,"i":1168,"f":{"w":106,"h":90},"b":{"w":105,"h":99},"bw":{"f":{"w":71,"h":72},"b":{"w":66,"h":76}},"g":7,"s":7},"marowakalolatotem":{"n":105,"i":1168,"g":7,"s":7},"hitmonlee":{"n":106,"f":{"w":45,"h":68},"b":{"w":37,"h":67},"bw":{"f":{"w":67,"h":78},"b":{"w":62,"h":75}},"g":1},"hitmonchan":{"n":107,"f":{"w":51,"h":77},"b":{"w":52,"h":73},"bw":{"f":{"w":34,"h":59},"b":{"w":44,"h":56}},"g":1},"lickitung":{"n":108,"f":{"w":58,"h":59},"b":{"w":77,"h":58},"bw":{"f":{"w":68,"h":52},"b":{"w":76,"h":53}},"g":1},"koffing":{"n":109,"f":{"w":77,"h":77},"b":{"w":72,"h":73},"bw":{"f":{"w":90,"h":59},"b":{"w":78,"h":64}},"g":1},"weezing":{"n":110,"f":{"w":103,"h":88},"b":{"w":101,"h":94},"bw":{"f":{"w":85,"h":68},"b":{"w":87,"h":69}},"g":1},"weezinggalar":{"n":110,"i":1202,"f":{"w":138,"h":148},"b":{"w":167,"h":148},"bw":{"f":{"w":91,"h":93}},"g":8,"s":7},"rhyhorn":{"n":111,"f":{"w":66,"h":57},"b":{"w":73,"h":58},"bf":{"w":81,"h":62},"bw":{"f":{"w":68,"h":54},"ff":{"w":66,"h":54},"b":{"w":73,"h":54},"bf":{"w":72,"h":54}},"g":1},"rhydon":{"n":112,"f":{"w":96,"h":82},"ff":{"w":96,"h":82},"b":{"w":105,"h":78},"bw":{"f":{"w":79,"h":68},"ff":{"w":79,"h":68},"b":{"w":84,"h":69},"bf":{"w":81,"h":69}},"g":1},"chansey":{"n":113,"f":{"w":74,"h":58},"b":{"w":71,"h":58},"bw":{"f":{"w":61,"h":47},"b":{"w":66,"h":47}},"g":1},"tangela":{"n":114,"f":{"w":58,"h":53},"b":{"w":56,"h":53},"bw":{"f":{"w":49,"h":42},"b":{"w":49,"h":42}},"g":1},"kangaskhan":{"n":115,"f":{"w":96,"h":87},"b":{"w":113,"h":87},"bw":{"f":{"w":79,"h":61},"b":{"w":72,"h":67}},"g":1},"kangaskhanmega":{"n":115,"i":1329,"f":{"w":107,"h":89},"b":{"w":131,"h":86},"g":6,"s":10},"horsea":{"n":116,"f":{"w":31,"h":57},"b":{"w":34,"h":54},"bw":{"f":{"w":34,"h":43},"b":{"w":39,"h":40}},"g":1},"seadra":{"n":117,"f":{"w":69,"h":74},"b":{"w":68,"h":75},"bw":{"f":{"w":57,"h":57},"b":{"w":64,"h":58}},"g":1},"goldeen":{"n":118,"f":{"w":79,"h":54},"b":{"w":86,"h":60},"bf":{"w":91,"h":71},"bw":{"f":{"w":75,"h":57},"ff":{"w":75,"h":57},"b":{"w":74,"h":57},"bf":{"w":74,"h":55}},"g":1},"seaking":{"n":119,"f":{"w":85,"h":69},"b":{"w":88,"h":75},"bf":{"w":94,"h":79},"bw":{"f":{"w":75,"h":67},"ff":{"w":73,"h":67},"b":{"w":96,"h":72},"bf":{"w":94,"h":72}},"g":1},"staryu":{"n":120,"f":{"w":48,"h":50},"b":{"w":47,"h":50},"bw":{"f":{"w":58,"h":49},"b":{"w":55,"h":52}},"g":1},"starmie":{"n":121,"f":{"w":62,"h":61},"b":{"w":61,"h":61},"bw":{"f":{"w":65,"h":59},"b":{"w":55,"h":55}},"g":1},"mrmime":{"n":122,"f":{"w":75,"h":76},"b":{"w":68,"h":74},"bw":{"f":{"w":58,"h":53},"b":{"w":54,"h":51}},"g":1},"mrmimegalar":{"n":122,"i":1203,"f":{"w":91,"h":88},"b":{"w":63,"h":87},"g":8,"s":6},"scyther":{"n":123,"f":{"w":105,"h":103},"ff":{"w":105,"h":103},"b":{"w":95,"h":108},"bw":{"f":{"w":55,"h":61},"ff":{"w":55,"h":61},"b":{"w":69,"h":65},"bf":{"w":69,"h":65}},"g":1},"jynx":{"n":124,"f":{"w":77,"h":66},"b":{"w":74,"h":68},"bw":{"f":{"w":63,"h":60},"b":{"w":62,"h":60}},"g":1},"electabuzz":{"n":125,"f":{"w":78,"h":78},"b":{"w":93,"h":77},"bw":{"f":{"w":72,"h":65},"b":{"w":72,"h":64}},"g":1},"magmar":{"n":126,"f":{"w":78,"h":81},"b":{"w":102,"h":83},"bw":{"f":{"w":71,"h":61},"b":{"w":70,"h":59}},"g":1},"pinsir":{"n":127,"f":{"w":92,"h":76},"b":{"w":73,"h":74},"bw":{"f":{"w":72,"h":63},"b":{"w":70,"h":61}},"g":1},"pinsirmega":{"n":127,"i":1330,"f":{"w":133,"h":110},"b":{"w":130,"h":103},"g":6,"s":6},"tauros":{"n":128,"f":{"w":97,"h":95},"b":{"w":132,"h":104},"bw":{"f":{"w":75,"h":59},"b":{"w":72,"h":54}},"g":1},"taurospaldeacombat":{"n":128,"i":1256,"g":9,"s":6},"taurospaldeablaze":{"n":128,"i":1257,"g":9,"s":6},"taurospaldeaaqua":{"n":128,"i":1258,"g":9,"s":6},"magikarp":{"n":129,"f":{"w":58,"h":60},"ff":{"w":58,"h":60},"b":{"w":61,"h":58},"bw":{"f":{"w":47,"h":64},"ff":{"w":47,"h":64},"b":{"w":66,"h":58},"bf":{"w":66,"h":58}},"g":1},"gyarados":{"n":130,"f":{"w":115,"h":99},"b":{"w":150,"h":102},"bf":{"w":157,"h":114},"bw":{"f":{"w":102,"h":84},"ff":{"w":102,"h":84},"b":{"w":109,"h":83},"bf":{"w":109,"h":83}},"g":1},"gyaradosmega":{"n":130,"i":1331,"f":{"w":193,"h":122},"b":{"w":184,"h":127},"g":6,"s":8},"lapras":{"n":131,"f":{"w":94,"h":84},"b":{"w":93,"h":82},"bw":{"f":{"w":68,"h":72},"b":{"w":75,"h":71}},"g":1},"laprasgmax":{"n":131,"i":1377,"f":{"w":157,"h":131},"b":{"w":161,"h":125},"g":8,"s":6},"ditto":{"n":132,"f":{"w":43,"h":35},"b":{"w":36,"h":35},"bw":{"f":{"w":47,"h":32},"b":{"w":47,"h":32}},"g":1},"eevee":{"n":133,"f":{"w":64,"h":55},"b":{"w":72,"h":54},"bw":{"f":{"w":48,"h":47},"b":{"w":49,"h":50}},"g":1},"eeveestarter":{"n":133,"i":1197,"f":{"w":64,"h":55},"b":{"w":72,"h":54},"g":7,"s":5},"eeveegmax":{"n":133,"i":1378,"f":{"w":152,"h":174},"b":{"w":180,"h":157},"bw":{"f":{"w":75,"h":80}},"g":8,"s":5},"vaporeon":{"n":134,"f":{"w":102,"h":65},"b":{"w":136,"h":63},"bw":{"f":{"w":50,"h":59},"b":{"w":50,"h":56}},"g":1},"jolteon":{"n":135,"f":{"w":49,"h":69},"b":{"w":61,"h":66},"bw":{"f":{"w":47,"h":49},"b":{"w":49,"h":48}},"g":1},"flareon":{"n":136,"f":{"w":59,"h":93},"b":{"w":79,"h":99},"bw":{"f":{"w":66,"h":60},"b":{"w":70,"h":59}},"g":1},"porygon":{"n":137,"f":{"w":47,"h":53},"b":{"w":56,"h":54},"bw":{"f":{"w":57,"h":53},"b":{"w":62,"h":48}},"g":1},"omanyte":{"n":138,"f":{"w":44,"h":45},"b":{"w":53,"h":43},"bw":{"f":{"w":43,"h":45},"b":{"w":49,"h":48}},"g":1},"omastar":{"n":139,"f":{"w":73,"h":64},"b":{"w":71,"h":63},"bw":{"f":{"w":63,"h":59},"b":{"w":64,"h":61}},"g":1},"kabuto":{"n":140,"f":{"w":47,"h":33},"b":{"w":48,"h":33},"bw":{"f":{"w":39,"h":41},"b":{"w":37,"h":43}},"g":1},"kabutops":{"n":141,"f":{"w":58,"h":73},"b":{"w":56,"h":73},"bw":{"f":{"w":65,"h":61},"b":{"w":67,"h":55}},"g":1},"aerodactyl":{"n":142,"f":{"w":189,"h":145},"b":{"w":166,"h":160},"bw":{"f":{"w":94,"h":82},"b":{"w":89,"h":92}},"g":1},"aerodactylmega":{"n":142,"i":1332,"f":{"w":173,"h":140},"b":{"w":164,"h":145},"g":6,"s":10},"snorlax":{"n":143,"f":{"w":87,"h":79},"b":{"w":74,"h":78},"bw":{"f":{"w":74,"h":75},"b":{"w":75,"h":71}},"g":1},"snorlaxgmax":{"n":143,"i":1379,"f":{"w":141,"h":128},"b":{"w":154,"h":132},"g":8,"s":7},"articuno":{"n":144,"f":{"w":172,"h":171},"b":{"w":166,"h":172},"bw":{"f":{"w":73,"h":81},"b":{"w":78,"h":87}},"g":1},"articunogalar":{"n":144,"i":1232,"f":{"w":104,"h":143},"b":{"w":118,"h":135},"bw":{"f":{"w":86,"h":71}},"g":8,"s":8},"zapdos":{"n":145,"f":{"w":145,"h":106},"b":{"w":138,"h":111},"bw":{"f":{"w":96,"h":71},"b":{"w":85,"h":72}},"g":1},"zapdosgalar":{"n":145,"i":1233,"f":{"w":75,"h":100},"b":{"w":94,"h":98},"bw":{"f":{"w":72,"h":70},"b":{"w":70,"h":69}},"g":8,"s":6},"moltres":{"n":146,"f":{"w":217,"h":181},"b":{"w":193,"h":194},"bw":{"f":{"w":128,"h":97},"b":{"w":117,"h":79}},"g":1},"moltresgalar":{"n":146,"i":1234,"f":{"w":155,"h":145},"b":{"w":152,"h":161},"g":8,"s":7},"dratini":{"n":147,"f":{"w":46,"h":63},"b":{"w":50,"h":64},"bw":{"f":{"w":43,"h":51},"b":{"w":48,"h":56}},"g":1},"dragonair":{"n":148,"f":{"w":67,"h":93},"b":{"w":63,"h":91},"bw":{"f":{"w":64,"h":73},"b":{"w":63,"h":74}},"g":1},"dragonite":{"n":149,"f":{"w":85,"h":98},"b":{"w":110,"h":98},"bw":{"f":{"w":80,"h":82},"b":{"w":86,"h":81}},"g":1},"mewtwo":{"n":150,"f":{"w":100,"h":94},"b":{"w":157,"h":93},"bw":{"f":{"w":90,"h":69},"b":{"w":95,"h":71}},"g":1},"mewtwomegax":{"n":150,"i":1333,"f":{"w":69,"h":97},"b":{"w":56,"h":99},"bw":{"f":{"w":55,"h":71}},"g":6,"s":6},"mewtwomegay":{"n":150,"i":1334,"f":{"w":62,"h":92},"b":{"w":71,"h":103},"bw":{"f":{"w":75,"h":87}},"g":6,"s":6},"mew":{"n":151,"f":{"w":40,"h":51},"b":{"w":44,"h":50},"bw":{"f":{"w":77,"h":53},"b":{"w":60,"h":61}},"g":1},"chikorita":{"n":152,"f":{"w":32,"h":63},"b":{"w":48,"h":64},"bw":{"f":{"w":41,"h":56},"b":{"w":41,"h":59}},"g":2},"bayleef":{"n":153,"f":{"w":49,"h":84},"b":{"w":50,"h":82},"bw":{"f":{"w":52,"h":80},"b":{"w":53,"h":76}},"g":2},"meganium":{"n":154,"f":{"w":64,"h":93},"ff":{"w":64,"h":102},"b":{"w":76,"h":88},"bf":{"w":82,"h":98},"bw":{"f":{"w":59,"h":82},"ff":{"w":59,"h":82},"b":{"w":64,"h":80},"bf":{"w":64,"h":80}},"g":2},"cyndaquil":{"n":155,"f":{"w":38,"h":45},"b":{"w":45,"h":45},"bw":{"f":{"w":44,"h":37},"b":{"w":46,"h":37}},"g":2},"quilava":{"n":156,"f":{"w":52,"h":42},"b":{"w":59,"h":39},"bw":{"f":{"w":63,"h":53},"b":{"w":63,"h":53}},"g":2},"typhlosion":{"n":157,"f":{"w":99,"h":118},"b":{"w":71,"h":116},"bw":{"f":{"w":59,"h":72},"b":{"w":60,"h":72}},"g":2},"typhlosionhisui":{"n":157,"i":1242,"f":{"w":85,"h":114},"b":{"w":87,"h":114},"g":8,"s":10},"totodile":{"n":158,"f":{"w":52,"h":58},"b":{"w":48,"h":57},"bw":{"f":{"w":43,"h":59},"b":{"w":43,"h":61}},"g":2},"croconaw":{"n":159,"il":1415,"f":{"w":52,"h":78},"b":{"w":60,"h":78},"bw":{"f":{"w":45,"h":59},"b":{"w":46,"h":58}},"g":2},"feraligatr":{"n":160,"f":{"w":82,"h":98},"b":{"w":95,"h":91},"bw":{"f":{"w":83,"h":72},"b":{"w":82,"h":73}},"g":2},"sentret":{"n":161,"f":{"w":52,"h":55},"b":{"w":68,"h":56},"bw":{"f":{"w":50,"h":68},"b":{"w":48,"h":65}},"g":2},"furret":{"n":162,"f":{"w":85,"h":73},"b":{"w":103,"h":69},"bw":{"f":{"w":55,"h":58},"b":{"w":62,"h":61}},"g":2},"hoothoot":{"n":163,"f":{"w":64,"h":63},"b":{"w":57,"h":62},"bw":{"f":{"w":51,"h":60},"b":{"w":53,"h":58}},"g":2},"noctowl":{"n":164,"f":{"w":111,"h":84},"b":{"w":101,"h":90},"bw":{"f":{"w":44,"h":67},"b":{"w":40,"h":68}},"g":2},"ledyba":{"n":165,"f":{"w":61,"h":50},"ff":{"w":61,"h":47},"b":{"w":67,"h":50},"bf":{"w":76,"h":62},"bw":{"f":{"w":44,"h":51},"ff":{"w":44,"h":48},"b":{"w":47,"h":47},"bf":{"w":47,"h":46}},"g":2},"ledian":{"n":166,"f":{"w":46,"h":83},"ff":{"w":46,"h":78},"b":{"w":48,"h":84},"bf":{"w":57,"h":86},"bw":{"f":{"w":55,"h":65},"ff":{"w":55,"h":62},"b":{"w":59,"h":64},"bf":{"w":59,"h":61}},"g":2},"spinarak":{"n":167,"f":{"w":57,"h":27},"b":{"w":58,"h":26},"bw":{"f":{"w":43,"h":28},"b":{"w":45,"h":35}},"g":2},"ariados":{"n":168,"f":{"w":82,"h":61},"b":{"w":80,"h":64},"bw":{"f":{"w":65,"h":51},"b":{"w":56,"h":44}},"g":2},"crobat":{"n":169,"f":{"w":143,"h":107},"b":{"w":121,"h":114},"bw":{"f":{"w":105,"h":73},"b":{"w":107,"h":64}},"g":2},"chinchou":{"n":170,"f":{"w":81,"h":53},"b":{"w":73,"h":54},"bw":{"f":{"w":66,"h":52},"b":{"w":68,"h":46}},"g":2},"lanturn":{"n":171,"f":{"w":85,"h":84},"b":{"w":130,"h":86},"bw":{"f":{"w":74,"h":59},"b":{"w":71,"h":59}},"g":2},"pichu":{"n":172,"f":{"w":51,"h":52},"b":{"w":42,"h":52},"bw":{"f":{"w":44,"h":49},"b":{"w":43,"h":49}},"g":2},"pichuspikyeared":{"n":172,"g":4,"s":5},"cleffa":{"n":173,"il":1416,"f":{"w":46,"h":44},"b":{"w":42,"h":44},"bw":{"f":{"w":36,"h":34},"b":{"w":38,"h":34}},"g":2},"igglybuff":{"n":174,"il":1417,"f":{"w":40,"h":56},"b":{"w":40,"h":56},"bw":{"f":{"w":55,"h":51},"b":{"w":57,"h":51}},"g":2},"togepi":{"n":175,"f":{"w":47,"h":47},"b":{"w":44,"h":46},"bw":{"f":{"w":40,"h":38},"b":{"w":37,"h":38}},"g":2},"togetic":{"n":176,"f":{"w":58,"h":71},"b":{"w":57,"h":70},"bw":{"f":{"w":34,"h":70},"b":{"w":36,"h":73}},"g":2},"natu":{"n":177,"f":{"w":42,"h":48},"b":{"w":44,"h":50},"bw":{"f":{"w":37,"h":41},"b":{"w":42,"h":38}},"g":2},"xatu":{"n":178,"f":{"w":103,"h":58},"ff":{"w":111,"h":63},"b":{"w":98,"h":60},"bf":{"w":104,"h":65},"bw":{"f":{"w":45,"h":60},"ff":{"w":45,"h":60},"b":{"w":67,"h":60},"bf":{"w":67,"h":60}},"g":2},"mareep":{"n":179,"f":{"w":52,"h":54},"b":{"w":69,"h":56},"bw":{"f":{"w":50,"h":41},"b":{"w":48,"h":41}},"g":2},"flaaffy":{"n":180,"f":{"w":52,"h":67},"b":{"w":64,"h":65},"bw":{"f":{"w":46,"h":52},"b":{"w":45,"h":52}},"g":2},"ampharos":{"n":181,"f":{"w":69,"h":101},"b":{"w":79,"h":101},"bw":{"f":{"w":61,"h":68},"b":{"w":65,"h":64}},"g":2},"ampharosmega":{"n":181,"i":1335,"f":{"w":99,"h":112},"b":{"w":127,"h":116},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":8},"bellossom":{"n":182,"f":{"w":57,"h":55},"b":{"w":45,"h":55},"bw":{"f":{"w":42,"h":56},"b":{"w":42,"h":52}},"g":2},"marill":{"n":183,"f":{"w":51,"h":48},"b":{"w":69,"h":48},"bw":{"f":{"w":53,"h":37},"b":{"w":54,"h":36}},"g":2},"azumarill":{"n":184,"f":{"w":89,"h":90},"b":{"w":107,"h":91},"bw":{"f":{"w":73,"h":61},"b":{"w":74,"h":62}},"g":2},"sudowoodo":{"n":185,"f":{"w":58,"h":66},"ff":{"w":58,"h":64},"b":{"w":46,"h":66},"bf":{"w":55,"h":71},"bw":{"f":{"w":65,"h":58},"ff":{"w":65,"h":55},"b":{"w":69,"h":55},"bf":{"w":69,"h":54}},"g":2},"politoed":{"n":186,"il":1418,"f":{"w":63,"h":77},"ff":{"w":63,"h":77},"b":{"w":61,"h":75},"bw":{"f":{"w":51,"h":79},"ff":{"w":51,"h":79},"b":{"w":43,"h":80},"bf":{"w":43,"h":80}},"g":2},"hoppip":{"n":187,"f":{"w":88,"h":61},"b":{"w":88,"h":59},"bw":{"f":{"w":65,"h":66},"b":{"w":65,"h":66}},"g":2},"skiploom":{"n":188,"f":{"w":64,"h":41},"b":{"w":62,"h":41},"bw":{"f":{"w":52,"h":42},"b":{"w":59,"h":42}},"g":2},"jumpluff":{"n":189,"f":{"w":90,"h":82},"b":{"w":74,"h":84},"bw":{"f":{"w":66,"h":59},"b":{"w":66,"h":63}},"g":2},"aipom":{"n":190,"f":{"w":63,"h":61},"ff":{"w":63,"h":66},"b":{"w":59,"h":60},"bf":{"w":71,"h":73},"bw":{"f":{"w":35,"h":56},"ff":{"w":35,"h":58},"b":{"w":32,"h":52},"bf":{"w":32,"h":54}},"g":2},"sunkern":{"n":191,"f":{"w":44,"h":44},"b":{"w":33,"h":44},"bw":{"f":{"w":26,"h":40},"b":{"w":28,"h":41}},"g":2},"sunflora":{"n":192,"f":{"w":73,"h":74},"b":{"w":62,"h":72},"bw":{"f":{"w":40,"h":51},"b":{"w":45,"h":56}},"g":2},"yanma":{"n":193,"f":{"w":120,"h":77},"b":{"w":86,"h":75},"bw":{"f":{"w":90,"h":58},"b":{"w":91,"h":49}},"g":2},"wooper":{"n":194,"f":{"w":59,"h":47},"ff":{"w":54,"h":47},"b":{"w":52,"h":48},"bf":{"w":55,"h":51},"bw":{"f":{"w":43,"h":33},"ff":{"w":40,"h":32},"b":{"w":41,"h":32},"bf":{"w":40,"h":33}},"g":2},"wooperpaldea":{"n":194,"i":1259,"bw":{"f":{"w":44,"h":35}},"g":9,"s":6},"quagsire":{"n":195,"f":{"w":48,"h":77},"ff":{"w":48,"h":77},"b":{"w":84,"h":76},"bf":{"w":91,"h":83},"bw":{"f":{"w":67,"h":58},"ff":{"w":67,"h":58},"b":{"w":70,"h":64},"bf":{"w":70,"h":64}},"g":2},"espeon":{"n":196,"f":{"w":67,"h":73},"b":{"w":86,"h":80},"bw":{"f":{"w":63,"h":58},"b":{"w":60,"h":56}},"g":2},"umbreon":{"n":197,"f":{"w":46,"h":70},"b":{"w":73,"h":74},"bw":{"f":{"w":43,"h":51},"b":{"w":49,"h":51}},"g":2},"murkrow":{"n":198,"f":{"w":58,"h":65},"ff":{"w":58,"h":60},"b":{"w":66,"h":65},"bw":{"f":{"w":43,"h":45},"ff":{"w":43,"h":44},"b":{"w":42,"h":47},"bf":{"w":42,"h":45}},"g":2},"slowking":{"n":199,"f":{"w":62,"h":85},"b":{"w":69,"h":84},"bw":{"f":{"w":46,"h":69},"b":{"w":49,"h":68}},"g":2},"slowkinggalar":{"n":199,"i":1235,"f":{"w":61,"h":85},"b":{"w":74,"h":84},"bw":{"f":{"w":50,"h":68}},"g":8,"s":8},"misdreavus":{"n":200,"f":{"w":66,"h":63},"b":{"w":69,"h":65},"bw":{"f":{"w":49,"h":57},"b":{"w":46,"h":64}},"g":2},"unown":{"n":201,"if":1046,"f":{"w":58,"h":73},"ff":{"w":66,"h":54},"b":{"w":52,"h":74},"bf":{"w":43,"h":51},"bw":{"f":{"w":25,"h":45},"ff":{"w":30,"h":41},"b":{"w":23,"h":42},"bf":{"w":29,"h":37}},"g":2},"unownb":{"n":201,"i":1042,"il":1419,"f":{"w":63,"h":63},"b":{"w":56,"h":63},"bw":{"f":{"w":24,"h":42},"b":{"w":23,"h":39}},"g":2,"s":5},"unownc":{"n":201,"i":1043,"il":1420,"f":{"w":56,"h":57},"b":{"w":50,"h":57},"bw":{"f":{"w":28,"h":47},"b":{"w":29,"h":42}},"g":2,"s":5},"unownd":{"n":201,"i":1044,"il":1421,"f":{"w":46,"h":77},"b":{"w":40,"h":77},"bw":{"f":{"w":28,"h":44},"b":{"w":29,"h":39}},"g":2,"s":5},"unowne":{"n":201,"i":1045,"il":1422,"f":{"w":61,"h":58},"b":{"w":46,"h":58},"bw":{"f":{"w":29,"h":41},"b":{"w":27,"h":38}},"g":2,"s":5},"unownf":{"n":201,"i":1046,"il":1423,"f":{"w":66,"h":54},"b":{"w":43,"h":51},"bw":{"f":{"w":30,"h":41},"b":{"w":29,"h":37}},"g":2,"s":5},"unowng":{"n":201,"i":1047,"il":1424,"f":{"w":37,"h":69},"b":{"w":33,"h":69},"bw":{"f":{"w":22,"h":46},"b":{"w":23,"h":44}},"g":2,"s":5},"unownh":{"n":201,"i":1048,"il":1425,"f":{"w":82,"h":51},"b":{"w":65,"h":51},"bw":{"f":{"w":33,"h":42},"b":{"w":33,"h":39}},"g":2,"s":5},"unowni":{"n":201,"i":1049,"f":{"w":54,"h":67},"b":{"w":49,"h":67},"bw":{"f":{"w":19,"h":42},"b":{"w":19,"h":39}},"g":2,"s":5},"unownj":{"n":201,"i":1050,"il":1426,"f":{"w":73,"h":51},"b":{"w":64,"h":52},"bw":{"f":{"w":25,"h":40},"b":{"w":22,"h":37}},"g":2,"s":5},"unownk":{"n":201,"i":1051,"il":1427,"f":{"w":65,"h":72},"b":{"w":68,"h":73},"bw":{"f":{"w":26,"h":41},"b":{"w":26,"h":38}},"g":2,"s":5},"unownl":{"n":201,"i":1052,"il":1428,"f":{"w":56,"h":52},"b":{"w":51,"h":51},"bw":{"f":{"w":25,"h":38},"b":{"w":22,"h":34}},"g":2,"s":5},"unownm":{"n":201,"i":1053,"il":1429,"f":{"w":46,"h":57},"b":{"w":37,"h":57},"bw":{"f":{"w":32,"h":36},"b":{"w":32,"h":34}},"g":2,"s":5},"unownn":{"n":201,"i":1054,"il":1430,"f":{"w":82,"h":79},"b":{"w":65,"h":77},"bw":{"f":{"w":34,"h":35},"b":{"w":34,"h":32}},"g":2,"s":5},"unowno":{"n":201,"i":1055,"f":{"w":65,"h":53},"b":{"w":59,"h":55},"bw":{"f":{"w":50,"h":43},"b":{"w":50,"h":43}},"g":2,"s":5},"unownp":{"n":201,"i":1056,"il":1431,"f":{"w":58,"h":62},"b":{"w":45,"h":62},"bw":{"f":{"w":23,"h":38},"b":{"w":22,"h":34}},"g":2,"s":5},"unownq":{"n":201,"i":1057,"il":1432,"f":{"w":53,"h":54},"b":{"w":50,"h":55},"bw":{"f":{"w":27,"h":33},"b":{"w":27,"h":30}},"g":2,"s":5},"unownr":{"n":201,"i":1058,"il":1434,"f":{"w":51,"h":62},"b":{"w":45,"h":63},"bw":{"f":{"w":23,"h":37},"b":{"w":20,"h":34}},"g":2,"s":5},"unowns":{"n":201,"i":1059,"il":1435,"f":{"w":75,"h":69},"b":{"w":44,"h":69},"bw":{"f":{"w":28,"h":51},"b":{"w":28,"h":47}},"g":2,"s":5},"unownt":{"n":201,"i":1060,"il":1436,"f":{"w":36,"h":57},"b":{"w":40,"h":57},"bw":{"f":{"w":30,"h":39},"b":{"w":26,"h":34}},"g":2,"s":5},"unownu":{"n":201,"i":1061,"f":{"w":59,"h":49},"b":{"w":52,"h":50},"bw":{"f":{"w":38,"h":37},"b":{"w":39,"h":35}},"g":2,"s":5},"unownv":{"n":201,"i":1062,"il":1437,"f":{"w":38,"h":53},"b":{"w":35,"h":52},"bw":{"f":{"w":33,"h":41},"b":{"w":33,"h":36}},"g":2,"s":5},"unownw":{"n":201,"i":1063,"f":{"w":77,"h":62},"b":{"w":60,"h":61},"bw":{"f":{"w":38,"h":36},"b":{"w":35,"h":33}},"g":2,"s":5},"unownx":{"n":201,"i":1064,"f":{"w":51,"h":55},"b":{"w":50,"h":55},"bw":{"f":{"w":28,"h":33},"b":{"w":26,"h":30}},"g":2,"s":5},"unowny":{"n":201,"i":1065,"f":{"w":32,"h":50},"b":{"w":30,"h":51},"bw":{"f":{"w":28,"h":41},"b":{"w":26,"h":38}},"g":2,"s":5},"unownz":{"n":201,"i":1066,"il":1438,"f":{"w":35,"h":63},"b":{"w":32,"h":63},"bw":{"f":{"w":21,"h":44},"b":{"w":20,"h":41}},"g":2,"s":5},"unownexclamation":{"n":201,"i":1040,"f":{"w":35,"h":79},"b":{"w":26,"h":80},"bw":{"f":{"w":32,"h":45},"b":{"w":19,"h":41}},"g":2,"s":5},"unownquestion":{"n":201,"i":1041,"il":1433,"f":{"w":55,"h":56},"b":{"w":49,"h":59},"bw":{"f":{"w":26,"h":46},"b":{"w":21,"h":43}},"g":2,"s":5},"wobbuffet":{"n":202,"f":{"w":41,"h":68},"ff":{"w":41,"h":68},"b":{"w":54,"h":68},"bw":{"f":{"w":53,"h":58},"ff":{"w":53,"h":58},"b":{"w":47,"h":64},"bf":{"w":47,"h":64}},"g":2},"girafarig":{"n":203,"f":{"w":48,"h":88},"ff":{"w":48,"h":88},"b":{"w":62,"h":82},"bw":{"f":{"w":59,"h":77},"ff":{"w":59,"h":77},"b":{"w":62,"h":78},"bf":{"w":62,"h":78}},"g":2},"pineco":{"n":204,"f":{"w":56,"h":59},"b":{"w":56,"h":59},"bw":{"f":{"w":36,"h":53},"b":{"w":35,"h":53}},"g":2},"forretress":{"n":205,"f":{"w":93,"h":69},"b":{"w":91,"h":70},"bw":{"f":{"w":62,"h":58},"b":{"w":65,"h":57}},"g":2},"dunsparce":{"n":206,"f":{"w":62,"h":41},"b":{"w":67,"h":39},"bw":{"f":{"w":41,"h":45},"b":{"w":58,"h":32}},"g":2},"gligar":{"n":207,"f":{"w":76,"h":90},"ff":{"w":76,"h":84},"b":{"w":70,"h":92},"bf":{"w":76,"h":91},"bw":{"f":{"w":93,"h":60},"ff":{"w":93,"h":60},"b":{"w":92,"h":64},"bf":{"w":92,"h":63}},"g":2},"steelix":{"n":208,"f":{"w":92,"h":105},"ff":{"w":92,"h":105},"b":{"w":109,"h":98},"bw":{"f":{"w":94,"h":88},"ff":{"w":94,"h":88},"b":{"w":95,"h":92},"bf":{"w":95,"h":92}},"g":2},"steelixmega":{"n":208,"i":1336,"f":{"w":121,"h":122},"b":{"w":128,"h":125},"bw":{"f":{"w":96,"h":88}},"g":6,"s":7},"snubbull":{"n":209,"f":{"w":67,"h":58},"b":{"w":58,"h":59},"bw":{"f":{"w":42,"h":41},"b":{"w":41,"h":39}},"g":2},"granbull":{"n":210,"f":{"w":77,"h":84},"b":{"w":67,"h":84},"bw":{"f":{"w":49,"h":62},"b":{"w":48,"h":60}},"g":2},"qwilfish":{"n":211,"f":{"w":61,"h":50},"b":{"w":73,"h":53},"bw":{"f":{"w":49,"h":56},"b":{"w":55,"h":55}},"g":2},"qwilfishhisui":{"n":211,"i":1243,"g":8,"s":8},"scizor":{"n":212,"f":{"w":67,"h":93},"ff":{"w":67,"h":93},"b":{"w":59,"h":95},"bw":{"f":{"w":75,"h":73},"ff":{"w":75,"h":73},"b":{"w":68,"h":75},"bf":{"w":68,"h":75}},"g":2},"scizormega":{"n":212,"i":1337,"f":{"w":79,"h":103},"b":{"w":70,"h":104},"bw":{"f":{"w":92,"h":82},"b":{"w":96,"h":96}},"g":6,"s":6},"shuckle":{"n":213,"f":{"w":71,"h":57},"b":{"w":72,"h":55},"bw":{"f":{"w":54,"h":46},"b":{"w":52,"h":47}},"g":2},"heracross":{"n":214,"f":{"w":90,"h":87},"ff":{"w":90,"h":75},"b":{"w":75,"h":81},"bf":{"w":85,"h":76},"bw":{"f":{"w":61,"h":70},"ff":{"w":61,"h":65},"b":{"w":67,"h":72},"bf":{"w":67,"h":71}},"g":2},"heracrossmega":{"n":214,"i":1338,"f":{"w":111,"h":111},"b":{"w":113,"h":100},"g":6,"s":9},"sneasel":{"n":215,"il":1439,"f":{"w":47,"h":72},"ff":{"w":43,"h":63},"b":{"w":46,"h":68},"bf":{"w":48,"h":71},"bw":{"f":{"w":58,"h":52},"ff":{"w":55,"h":50},"b":{"w":58,"h":52},"bf":{"w":55,"h":50}},"g":2},"sneaselhisui":{"n":215,"i":1244,"f":{"w":61,"h":71},"ff":{"w":54,"h":63},"b":{"w":54,"h":67},"bf":{"w":53,"h":62},"g":8,"s":7},"teddiursa":{"n":216,"il":1440,"f":{"w":47,"h":57},"b":{"w":36,"h":58},"bw":{"f":{"w":30,"h":36},"b":{"w":29,"h":36}},"g":2},"ursaring":{"n":217,"f":{"w":68,"h":95},"ff":{"w":70,"h":95},"b":{"w":69,"h":92},"bf":{"w":76,"h":97},"bw":{"f":{"w":71,"h":81},"ff":{"w":71,"h":81},"b":{"w":63,"h":79},"bf":{"w":63,"h":79}},"g":2},"slugma":{"n":218,"f":{"w":62,"h":63},"b":{"w":66,"h":62},"bw":{"f":{"w":39,"h":40},"b":{"w":33,"h":42}},"g":2},"magcargo":{"n":219,"f":{"w":67,"h":70},"b":{"w":86,"h":70},"bw":{"f":{"w":54,"h":59},"b":{"w":51,"h":61}},"g":2},"swinub":{"n":220,"f":{"w":49,"h":33},"b":{"w":52,"h":33},"bw":{"f":{"w":35,"h":25},"b":{"w":34,"h":26}},"g":2},"piloswine":{"n":221,"f":{"w":70,"h":72},"ff":{"w":70,"h":72},"b":{"w":81,"h":74},"bf":{"w":85,"h":78},"bw":{"f":{"w":55,"h":56},"ff":{"w":55,"h":56},"b":{"w":52,"h":56},"bf":{"w":51,"h":56}},"g":2},"corsola":{"n":222,"f":{"w":70,"h":69},"b":{"w":79,"h":71},"bw":{"f":{"w":51,"h":43},"b":{"w":55,"h":45}},"g":2},"corsolagalar":{"n":222,"i":1204,"f":{"w":69,"h":74},"b":{"w":85,"h":74},"bw":{"f":{"w":49,"h":44}},"g":8,"s":7},"remoraid":{"n":223,"f":{"w":57,"h":62},"b":{"w":60,"h":70},"bw":{"f":{"w":47,"h":44},"b":{"w":58,"h":54}},"g":2},"octillery":{"n":224,"f":{"w":90,"h":60},"ff":{"w":90,"h":59},"b":{"w":91,"h":59},"bf":{"w":103,"h":82},"bw":{"f":{"w":67,"h":49},"ff":{"w":67,"h":49},"b":{"w":80,"h":54},"bf":{"w":80,"h":54}},"g":2},"delibird":{"n":225,"f":{"w":59,"h":71},"b":{"w":60,"h":72},"bw":{"f":{"w":49,"h":52},"b":{"w":50,"h":55}},"g":2},"mantine":{"n":226,"f":{"w":131,"h":59},"b":{"w":125,"h":64},"bw":{"f":{"w":83,"h":77},"b":{"w":86,"h":71}},"g":2},"skarmory":{"n":227,"f":{"w":116,"h":64},"b":{"w":119,"h":63},"bw":{"f":{"w":69,"h":70},"b":{"w":85,"h":69}},"g":2},"houndour":{"n":228,"f":{"w":36,"h":59},"b":{"w":52,"h":58},"bw":{"f":{"w":44,"h":44},"b":{"w":49,"h":44}},"g":2},"houndoom":{"n":229,"f":{"w":59,"h":86},"ff":{"w":59,"h":86},"b":{"w":93,"h":95},"bf":{"w":99,"h":97},"bw":{"f":{"w":77,"h":72},"ff":{"w":77,"h":72},"b":{"w":79,"h":69},"bf":{"w":79,"h":69}},"g":2},"houndoommega":{"n":229,"i":1339,"f":{"w":84,"h":114},"b":{"w":98,"h":105},"g":6,"s":8},"kingdra":{"n":230,"f":{"w":46,"h":97},"b":{"w":49,"h":97},"bw":{"f":{"w":54,"h":91},"b":{"w":50,"h":94}},"g":2},"phanpy":{"n":231,"f":{"w":67,"h":50},"b":{"w":60,"h":49},"bw":{"f":{"w":46,"h":34},"b":{"w":48,"h":35}},"g":2},"donphan":{"n":232,"f":{"w":109,"h":67},"ff":{"w":105,"h":67},"b":{"w":97,"h":65},"bf":{"w":104,"h":83},"bw":{"f":{"w":83,"h":55},"ff":{"w":83,"h":55},"b":{"w":90,"h":51},"bf":{"w":90,"h":51}},"g":2},"porygon2":{"n":233,"f":{"w":54,"h":63},"b":{"w":61,"h":60},"bw":{"f":{"w":49,"h":44},"b":{"w":58,"h":50}},"g":2},"stantler":{"n":234,"f":{"w":49,"h":92},"b":{"w":59,"h":90},"bw":{"f":{"w":57,"h":78},"b":{"w":65,"h":79}},"g":2},"smeargle":{"n":235,"f":{"w":58,"h":74},"b":{"w":57,"h":72},"bw":{"f":{"w":58,"h":49},"b":{"w":65,"h":50}},"g":2},"tyrogue":{"n":236,"f":{"w":38,"h":69},"b":{"w":31,"h":68},"bw":{"f":{"w":36,"h":45},"b":{"w":38,"h":45}},"g":2},"hitmontop":{"n":237,"f":{"w":86,"h":71},"b":{"w":73,"h":68},"bw":{"f":{"w":82,"h":63},"b":{"w":64,"h":61}},"g":2},"smoochum":{"n":238,"f":{"w":46,"h":61},"b":{"w":45,"h":61},"bw":{"f":{"w":31,"h":48},"b":{"w":30,"h":48}},"g":2},"elekid":{"n":239,"f":{"w":73,"h":63},"b":{"w":64,"h":63},"bw":{"f":{"w":53,"h":43},"b":{"w":53,"h":45}},"g":2},"magby":{"n":240,"f":{"w":46,"h":62},"b":{"w":46,"h":62},"bw":{"f":{"w":34,"h":56},"b":{"w":28,"h":57}},"g":2},"miltank":{"n":241,"f":{"w":80,"h":76},"b":{"w":84,"h":75},"bw":{"f":{"w":58,"h":53},"b":{"w":56,"h":50}},"g":2},"blissey":{"n":242,"f":{"w":83,"h":74},"b":{"w":80,"h":74},"bw":{"f":{"w":61,"h":59},"b":{"w":57,"h":58}},"g":2},"raikou":{"n":243,"f":{"w":68,"h":82},"b":{"w":93,"h":84},"bw":{"f":{"w":84,"h":69},"b":{"w":85,"h":70}},"g":2},"entei":{"n":244,"f":{"w":79,"h":87},"b":{"w":133,"h":88},"bw":{"f":{"w":76,"h":69},"b":{"w":87,"h":72}},"g":2},"suicune":{"n":245,"f":{"w":107,"h":86},"b":{"w":114,"h":91},"bw":{"f":{"w":81,"h":72},"b":{"w":94,"h":73}},"g":2},"larvitar":{"n":246,"f":{"w":46,"h":65},"b":{"w":49,"h":64},"bw":{"f":{"w":37,"h":52},"b":{"w":35,"h":54}},"g":2},"pupitar":{"n":247,"f":{"w":55,"h":68},"b":{"w":54,"h":67},"bw":{"f":{"w":54,"h":51},"b":{"w":49,"h":54}},"g":2},"tyranitar":{"n":248,"f":{"w":75,"h":101},"b":{"w":109,"h":100},"bw":{"f":{"w":88,"h":76},"b":{"w":77,"h":82}},"g":2},"tyranitarmega":{"n":248,"i":1340,"f":{"w":104,"h":119},"b":{"w":126,"h":119},"bw":{"f":{"w":94,"h":87},"b":{"w":88,"h":101}},"g":6,"s":9},"lugia":{"n":249,"f":{"w":156,"h":127},"b":{"w":168,"h":136},"bw":{"f":{"w":153,"h":97},"b":{"w":146,"h":103}},"g":2},"hooh":{"n":250,"f":{"w":157,"h":144},"b":{"w":142,"h":139},"bw":{"f":{"w":107,"h":101},"b":{"w":109,"h":97}},"g":2},"celebi":{"n":251,"f":{"w":67,"h":65},"b":{"w":62,"h":68},"bw":{"f":{"w":36,"h":63},"b":{"w":38,"h":66}},"g":2},"treecko":{"n":252,"f":{"w":47,"h":59},"b":{"w":48,"h":58},"bw":{"f":{"w":43,"h":63},"b":{"w":46,"h":63}},"g":3},"grovyle":{"n":253,"f":{"w":78,"h":79},"b":{"w":86,"h":79},"bw":{"f":{"w":64,"h":70},"b":{"w":75,"h":77}},"g":3},"sceptile":{"n":254,"f":{"w":100,"h":93},"b":{"w":117,"h":86},"bw":{"f":{"w":67,"h":74},"b":{"w":73,"h":85}},"g":3},"sceptilemega":{"n":254,"i":1341,"f":{"w":74,"h":97},"b":{"w":123,"h":96},"g":6,"s":8},"torchic":{"n":255,"f":{"w":33,"h":61},"ff":{"w":33,"h":61},"b":{"w":32,"h":60},"bw":{"f":{"w":33,"h":47},"ff":{"w":33,"h":47},"b":{"w":30,"h":46},"bf":{"w":30,"h":46}},"g":3},"combusken":{"n":256,"f":{"w":61,"h":83},"ff":{"w":61,"h":77},"b":{"w":48,"h":82},"bf":{"w":56,"h":82},"bw":{"f":{"w":71,"h":63},"ff":{"w":71,"h":62},"b":{"w":71,"h":65},"bf":{"w":71,"h":63}},"g":3},"blaziken":{"n":257,"f":{"w":83,"h":96},"ff":{"w":83,"h":94},"b":{"w":86,"h":93},"bf":{"w":93,"h":100},"bw":{"f":{"w":59,"h":75},"ff":{"w":59,"h":74},"b":{"w":73,"h":72},"bf":{"w":72,"h":71}},"g":3},"blazikenmega":{"n":257,"i":1342,"f":{"w":118,"h":107},"b":{"w":110,"h":110},"bw":{"f":{"w":114,"h":115}},"g":6,"s":8},"mudkip":{"n":258,"f":{"w":47,"h":66},"b":{"w":60,"h":64},"bw":{"f":{"w":43,"h":49},"b":{"w":42,"h":50}},"g":3},"marshtomp":{"n":259,"f":{"w":60,"h":77},"b":{"w":59,"h":76},"bw":{"f":{"w":54,"h":58},"b":{"w":50,"h":59}},"g":3},"swampert":{"n":260,"f":{"w":94,"h":90},"b":{"w":93,"h":82},"bw":{"f":{"w":76,"h":60},"b":{"w":82,"h":61}},"g":3},"swampertmega":{"n":260,"i":1343,"f":{"w":122,"h":80},"b":{"w":128,"h":81},"g":6,"s":8},"poochyena":{"n":261,"f":{"w":52,"h":54},"b":{"w":61,"h":54},"bw":{"f":{"w":52,"h":44},"b":{"w":53,"h":44}},"g":3},"mightyena":{"n":262,"f":{"w":73,"h":79},"b":{"w":93,"h":85},"bw":{"f":{"w":74,"h":64},"b":{"w":78,"h":65}},"g":3},"zigzagoon":{"n":263,"f":{"w":65,"h":47},"b":{"w":72,"h":51},"bw":{"f":{"w":58,"h":43},"b":{"w":59,"h":39}},"g":3},"zigzagoongalar":{"n":263,"i":1205,"f":{"w":63,"h":59},"b":{"w":85,"h":59},"bw":{"f":{"w":58,"h":44}},"g":8,"s":9},"linoone":{"n":264,"f":{"w":96,"h":39},"b":{"w":99,"h":37},"bw":{"f":{"w":81,"h":41},"b":{"w":78,"h":54}},"g":3},"linoonegalar":{"n":264,"i":1206,"f":{"w":98,"h":56},"b":{"w":110,"h":58},"bw":{"f":{"w":82,"h":41},"b":{"w":82,"h":45}},"g":8,"s":7},"wurmple":{"n":265,"f":{"w":40,"h":53},"b":{"w":43,"h":51},"bw":{"f":{"w":37,"h":46},"b":{"w":40,"h":47}},"g":3},"silcoon":{"n":266,"f":{"w":50,"h":39},"b":{"w":51,"h":39},"bw":{"f":{"w":50,"h":47},"b":{"w":48,"h":45}},"g":3},"beautifly":{"n":267,"f":{"w":81,"h":83},"ff":{"w":81,"h":83},"b":{"w":76,"h":96},"bf":{"w":93,"h":103},"bw":{"f":{"w":78,"h":55},"ff":{"w":78,"h":55},"b":{"w":81,"h":60},"bf":{"w":81,"h":60}},"g":3},"cascoon":{"n":268,"f":{"w":50,"h":40},"b":{"w":56,"h":40},"bw":{"f":{"w":55,"h":40},"b":{"w":54,"h":39}},"g":3},"dustox":{"n":269,"f":{"w":100,"h":71},"ff":{"w":100,"h":71},"b":{"w":97,"h":80},"bf":{"w":105,"h":88},"bw":{"f":{"w":80,"h":47},"ff":{"w":80,"h":45},"b":{"w":78,"h":53},"bf":{"w":78,"h":52}},"g":3},"lotad":{"n":270,"f":{"w":58,"h":31},"b":{"w":58,"h":31},"bw":{"f":{"w":44,"h":41},"b":{"w":44,"h":40}},"g":3},"lombre":{"n":271,"f":{"w":62,"h":62},"b":{"w":61,"h":58},"bw":{"f":{"w":50,"h":52},"b":{"w":46,"h":54}},"g":3},"ludicolo":{"n":272,"f":{"w":110,"h":90},"ff":{"w":110,"h":90},"b":{"w":107,"h":90},"bf":{"w":113,"h":95},"bw":{"f":{"w":84,"h":80},"ff":{"w":84,"h":80},"b":{"w":78,"h":77},"bf":{"w":78,"h":77}},"g":3},"seedot":{"n":273,"f":{"w":37,"h":46},"b":{"w":37,"h":46},"bw":{"f":{"w":35,"h":38},"b":{"w":35,"h":37}},"g":3},"nuzleaf":{"n":274,"f":{"w":63,"h":69},"ff":{"w":57,"h":69},"b":{"w":75,"h":69},"bf":{"w":77,"h":77},"bw":{"f":{"w":45,"h":58},"ff":{"w":43,"h":58},"b":{"w":46,"h":56},"bf":{"w":44,"h":55}},"g":3},"shiftry":{"n":275,"f":{"w":156,"h":78},"ff":{"w":137,"h":78},"b":{"w":130,"h":76},"bf":{"w":133,"h":81},"bw":{"f":{"w":100,"h":71},"ff":{"w":98,"h":69},"b":{"w":102,"h":71},"bf":{"w":100,"h":69}},"g":3},"taillow":{"n":276,"f":{"w":49,"h":46},"b":{"w":79,"h":43},"bw":{"f":{"w":43,"h":36},"b":{"w":48,"h":35}},"g":3},"swellow":{"n":277,"f":{"w":166,"h":44},"b":{"w":160,"h":45},"bw":{"f":{"w":72,"h":59},"b":{"w":71,"h":56}},"g":3},"wingull":{"n":278,"f":{"w":143,"h":24},"b":{"w":130,"h":26},"bw":{"f":{"w":63,"h":45},"b":{"w":64,"h":43}},"g":3},"pelipper":{"n":279,"f":{"w":101,"h":92},"b":{"w":96,"h":92},"bw":{"f":{"w":96,"h":76},"b":{"w":88,"h":74}},"g":3},"ralts":{"n":280,"f":{"w":32,"h":52},"b":{"w":34,"h":51},"bw":{"f":{"w":23,"h":39},"b":{"w":26,"h":42}},"g":3},"kirlia":{"n":281,"f":{"w":44,"h":68},"b":{"w":41,"h":68},"bw":{"f":{"w":36,"h":63},"b":{"w":37,"h":63}},"g":3},"gardevoir":{"n":282,"f":{"w":94,"h":96},"b":{"w":97,"h":97},"bw":{"f":{"w":71,"h":77},"b":{"w":74,"h":77}},"g":3},"gardevoirmega":{"n":282,"i":1344,"f":{"w":74,"h":98},"b":{"w":106,"h":101},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":9},"surskit":{"n":283,"f":{"w":75,"h":52},"b":{"w":79,"h":52},"bw":{"f":{"w":68,"h":51},"b":{"w":69,"h":50}},"g":3},"masquerain":{"n":284,"f":{"w":77,"h":58},"b":{"w":64,"h":60},"bw":{"f":{"w":73,"h":65},"b":{"w":64,"h":65}},"g":3},"shroomish":{"n":285,"f":{"w":51,"h":36},"b":{"w":51,"h":36},"bw":{"f":{"w":44,"h":48},"b":{"w":44,"h":46}},"g":3},"breloom":{"n":286,"f":{"w":66,"h":73},"b":{"w":92,"h":71},"bw":{"f":{"w":57,"h":71},"b":{"w":51,"h":72}},"g":3},"slakoth":{"n":287,"f":{"w":91,"h":31},"b":{"w":91,"h":29},"bw":{"f":{"w":52,"h":31},"b":{"w":51,"h":36}},"g":3},"vigoroth":{"n":288,"f":{"w":82,"h":80},"b":{"w":78,"h":75},"bw":{"f":{"w":67,"h":65},"b":{"w":54,"h":71}},"g":3},"slaking":{"n":289,"f":{"w":102,"h":72},"b":{"w":86,"h":67},"bw":{"f":{"w":75,"h":61},"b":{"w":79,"h":59}},"g":3},"nincada":{"n":290,"f":{"w":57,"h":30},"b":{"w":61,"h":29},"bw":{"f":{"w":51,"h":28},"b":{"w":52,"h":29}},"g":3},"ninjask":{"n":291,"f":{"w":91,"h":69},"b":{"w":72,"h":72},"bw":{"f":{"w":57,"h":51},"b":{"w":55,"h":47}},"g":3},"shedinja":{"n":292,"f":{"w":57,"h":58},"b":{"w":56,"h":56},"bw":{"f":{"w":43,"h":48},"b":{"w":45,"h":50}},"g":3},"whismur":{"n":293,"f":{"w":51,"h":48},"b":{"w":48,"h":48},"bw":{"f":{"w":40,"h":43},"b":{"w":37,"h":41}},"g":3},"loudred":{"n":294,"f":{"w":93,"h":78},"b":{"w":81,"h":78},"bw":{"f":{"w":63,"h":62},"b":{"w":56,"h":62}},"g":3},"exploud":{"n":295,"f":{"w":82,"h":84},"b":{"w":103,"h":85},"bw":{"f":{"w":72,"h":68},"b":{"w":82,"h":71}},"g":3},"makuhita":{"n":296,"f":{"w":70,"h":66},"b":{"w":62,"h":67},"bw":{"f":{"w":63,"h":63},"b":{"w":61,"h":61}},"g":3},"hariyama":{"n":297,"f":{"w":102,"h":87},"b":{"w":89,"h":92},"bw":{"f":{"w":88,"h":79},"b":{"w":79,"h":79}},"g":3},"azurill":{"n":298,"f":{"w":33,"h":72},"b":{"w":40,"h":72},"bw":{"f":{"w":44,"h":64},"b":{"w":48,"h":66}},"g":3},"nosepass":{"n":299,"f":{"w":62,"h":58},"b":{"w":59,"h":58},"bw":{"f":{"w":42,"h":46},"b":{"w":40,"h":47}},"g":3},"skitty":{"n":300,"f":{"w":59,"h":55},"b":{"w":46,"h":62},"bw":{"f":{"w":55,"h":46},"b":{"w":54,"h":46}},"g":3},"delcatty":{"n":301,"f":{"w":65,"h":77},"b":{"w":80,"h":77},"bw":{"f":{"w":61,"h":57},"b":{"w":64,"h":57}},"g":3},"sableye":{"n":302,"f":{"w":49,"h":64},"b":{"w":46,"h":64},"bw":{"f":{"w":43,"h":49},"b":{"w":39,"h":49}},"g":3},"sableyemega":{"n":302,"i":1345,"f":{"w":76,"h":75},"b":{"w":77,"h":72},"g":6,"s":7},"mawile":{"n":303,"f":{"w":83,"h":54},"b":{"w":59,"h":53},"bw":{"f":{"w":79,"h":51},"b":{"w":82,"h":49}},"g":3},"mawilemega":{"n":303,"i":1346,"f":{"w":93,"h":79},"b":{"w":86,"h":79},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":6},"aron":{"n":304,"f":{"w":39,"h":45},"b":{"w":46,"h":43},"bw":{"f":{"w":32,"h":31},"b":{"w":34,"h":32}},"g":3},"lairon":{"n":305,"f":{"w":74,"h":58},"b":{"w":76,"h":57},"bw":{"f":{"w":63,"h":50},"b":{"w":65,"h":49}},"g":3},"aggron":{"n":306,"f":{"w":106,"h":97},"b":{"w":141,"h":94},"bw":{"f":{"w":77,"h":76},"b":{"w":67,"h":77}},"g":3},"aggronmega":{"n":306,"i":1347,"f":{"w":138,"h":101},"b":{"w":155,"h":98},"g":6,"s":6},"meditite":{"n":307,"f":{"w":52,"h":59},"ff":{"w":48,"h":59},"b":{"w":46,"h":59},"bf":{"w":56,"h":65},"bw":{"f":{"w":44,"h":54},"ff":{"w":44,"h":54},"b":{"w":44,"h":51},"bf":{"w":44,"h":51}},"g":3},"medicham":{"n":308,"f":{"w":63,"h":90},"ff":{"w":63,"h":87},"b":{"w":56,"h":87},"bf":{"w":68,"h":93},"bw":{"f":{"w":44,"h":74},"ff":{"w":44,"h":73},"b":{"w":43,"h":74},"bf":{"w":43,"h":72}},"g":3},"medichammega":{"n":308,"i":1348,"f":{"w":134,"h":105},"b":{"w":127,"h":115},"bw":{"f":{"w":93,"h":81}},"g":6,"s":8},"electrike":{"n":309,"f":{"w":53,"h":38},"b":{"w":55,"h":40},"bw":{"f":{"w":50,"h":36},"b":{"w":47,"h":34}},"g":3},"manectric":{"n":310,"f":{"w":63,"h":80},"b":{"w":68,"h":77},"bw":{"f":{"w":62,"h":70},"b":{"w":64,"h":71}},"g":3},"manectricmega":{"n":310,"i":1349,"f":{"w":87,"h":110},"b":{"w":77,"h":122},"bw":{"f":{"w":92,"h":74}},"g":6,"s":9},"plusle":{"n":311,"f":{"w":67,"h":59},"b":{"w":44,"h":61},"bw":{"f":{"w":38,"h":49},"b":{"w":38,"h":49}},"g":3},"minun":{"n":312,"f":{"w":67,"h":59},"b":{"w":44,"h":61},"bw":{"f":{"w":41,"h":49},"b":{"w":40,"h":51}},"g":3},"volbeat":{"n":313,"f":{"w":68,"h":74},"b":{"w":71,"h":72},"bw":{"f":{"w":64,"h":54},"b":{"w":63,"h":54}},"g":3},"illumise":{"n":314,"f":{"w":53,"h":65},"b":{"w":53,"h":64},"bw":{"f":{"w":55,"h":52},"b":{"w":55,"h":50}},"g":3},"roselia":{"n":315,"il":1441,"f":{"w":71,"h":58},"ff":{"w":71,"h":59},"b":{"w":62,"h":60},"bf":{"w":73,"h":68},"bw":{"f":{"w":62,"h":55},"ff":{"w":62,"h":55},"b":{"w":60,"h":58},"bf":{"w":60,"h":58}},"g":3},"gulpin":{"n":316,"f":{"w":64,"h":52},"ff":{"w":56,"h":51},"b":{"w":83,"h":56},"bf":{"w":77,"h":62},"bw":{"f":{"w":35,"h":44},"ff":{"w":35,"h":40},"b":{"w":34,"h":42},"bf":{"w":34,"h":40}},"g":3},"swalot":{"n":317,"f":{"w":79,"h":70},"ff":{"w":79,"h":70},"b":{"w":78,"h":69},"bf":{"w":83,"h":78},"bw":{"f":{"w":64,"h":63},"ff":{"w":62,"h":63},"b":{"w":60,"h":60},"bf":{"w":60,"h":60}},"g":3},"carvanha":{"n":318,"f":{"w":52,"h":72},"b":{"w":55,"h":71},"bw":{"f":{"w":58,"h":54},"b":{"w":53,"h":55}},"g":3},"sharpedo":{"n":319,"f":{"w":78,"h":102},"b":{"w":70,"h":102},"bw":{"f":{"w":72,"h":72},"b":{"w":67,"h":72}},"g":3},"sharpedomega":{"n":319,"i":1350,"f":{"w":86,"h":96},"b":{"w":92,"h":107},"g":6,"s":8},"wailmer":{"n":320,"f":{"w":106,"h":68},"b":{"w":103,"h":68},"bw":{"f":{"w":84,"h":56},"b":{"w":83,"h":56}},"g":3},"wailord":{"n":321,"f":{"w":146,"h":81},"b":{"w":171,"h":102},"bw":{"f":{"w":103,"h":88},"b":{"w":110,"h":70}},"g":3},"numel":{"n":322,"f":{"w":52,"h":56},"ff":{"w":52,"h":56},"b":{"w":55,"h":55},"bf":{"w":63,"h":62},"bw":{"f":{"w":48,"h":48},"ff":{"w":48,"h":48},"b":{"w":48,"h":53},"bf":{"w":48,"h":53}},"g":3},"camerupt":{"n":323,"f":{"w":81,"h":74},"ff":{"w":74,"h":71},"b":{"w":85,"h":73},"bf":{"w":93,"h":85},"bw":{"f":{"w":79,"h":61},"ff":{"w":79,"h":62},"b":{"w":83,"h":62},"bf":{"w":83,"h":63}},"g":3},"cameruptmega":{"n":323,"i":1351,"f":{"w":102,"h":88},"b":{"w":107,"h":89},"g":6,"s":8},"torkoal":{"n":324,"f":{"w":63,"h":77},"b":{"w":65,"h":78},"bw":{"f":{"w":64,"h":65},"b":{"w":66,"h":64}},"g":3},"spoink":{"n":325,"f":{"w":35,"h":96},"b":{"w":29,"h":97},"bw":{"f":{"w":36,"h":66},"b":{"w":36,"h":65}},"g":3},"grumpig":{"n":326,"f":{"w":81,"h":73},"b":{"w":82,"h":76},"bw":{"f":{"w":59,"h":68},"b":{"w":61,"h":65}},"g":3},"spinda":{"n":327,"f":{"w":61,"h":69},"b":{"w":63,"h":69},"bw":{"f":{"w":39,"h":52},"b":{"w":41,"h":58}},"g":3},"trapinch":{"n":328,"f":{"w":62,"h":45},"b":{"w":52,"h":43},"bw":{"f":{"w":39,"h":42},"b":{"w":41,"h":45}},"g":3},"vibrava":{"n":329,"f":{"w":117,"h":50},"b":{"w":112,"h":47},"bw":{"f":{"w":62,"h":61},"b":{"w":63,"h":62}},"g":3},"flygon":{"n":330,"f":{"w":133,"h":106},"b":{"w":166,"h":110},"bw":{"f":{"w":71,"h":82},"b":{"w":89,"h":80}},"g":3},"cacnea":{"n":331,"f":{"w":81,"h":50},"b":{"w":75,"h":50},"bw":{"f":{"w":59,"h":41},"b":{"w":59,"h":41}},"g":3},"cacturne":{"n":332,"f":{"w":83,"h":87},"ff":{"w":83,"h":87},"b":{"w":76,"h":86},"bw":{"f":{"w":70,"h":70},"ff":{"w":70,"h":70},"b":{"w":71,"h":70},"bf":{"w":71,"h":70}},"g":3},"swablu":{"n":333,"f":{"w":93,"h":53},"b":{"w":70,"h":56},"bw":{"f":{"w":74,"h":49},"b":{"w":74,"h":52}},"g":3},"altaria":{"n":334,"f":{"w":144,"h":89},"b":{"w":120,"h":93},"bw":{"f":{"w":60,"h":64},"b":{"w":60,"h":71}},"g":3},"altariamega":{"n":334,"i":1352,"f":{"w":124,"h":142},"b":{"w":136,"h":151},"g":6,"s":7},"zangoose":{"n":335,"il":1442,"f":{"w":67,"h":78},"b":{"w":85,"h":82},"bw":{"f":{"w":74,"h":67},"b":{"w":70,"h":64}},"g":3},"seviper":{"n":336,"il":1443,"f":{"w":73,"h":88},"b":{"w":64,"h":92},"bw":{"f":{"w":104,"h":67},"b":{"w":106,"h":69}},"g":3},"lunatone":{"n":337,"f":{"w":45,"h":64},"b":{"w":43,"h":63},"bw":{"f":{"w":46,"h":59},"b":{"w":45,"h":59}},"g":3},"solrock":{"n":338,"f":{"w":90,"h":79},"b":{"w":81,"h":80},"bw":{"f":{"w":87,"h":66},"b":{"w":87,"h":65}},"g":3},"barboach":{"n":339,"f":{"w":49,"h":42},"b":{"w":70,"h":40},"bw":{"f":{"w":48,"h":35},"b":{"w":48,"h":36}},"g":3},"whiscash":{"n":340,"f":{"w":75,"h":62},"b":{"w":85,"h":66},"bw":{"f":{"w":75,"h":61},"b":{"w":70,"h":54}},"g":3},"corphish":{"n":341,"f":{"w":64,"h":55},"b":{"w":69,"h":53},"bw":{"f":{"w":59,"h":46},"b":{"w":57,"h":46}},"g":3},"crawdaunt":{"n":342,"f":{"w":102,"h":74},"b":{"w":100,"h":69},"bw":{"f":{"w":70,"h":64},"b":{"w":73,"h":64}},"g":3},"baltoy":{"n":343,"f":{"w":65,"h":60},"b":{"w":56,"h":60},"bw":{"f":{"w":41,"h":40},"b":{"w":40,"h":39}},"g":3},"claydol":{"n":344,"f":{"w":69,"h":85},"b":{"w":63,"h":85},"bw":{"f":{"w":70,"h":72},"b":{"w":70,"h":72}},"g":3},"lileep":{"n":345,"f":{"w":74,"h":68},"b":{"w":61,"h":68},"bw":{"f":{"w":60,"h":61},"b":{"w":54,"h":57}},"g":3},"cradily":{"n":346,"f":{"w":74,"h":88},"b":{"w":64,"h":87},"bw":{"f":{"w":60,"h":78},"b":{"w":64,"h":79}},"g":3},"anorith":{"n":347,"f":{"w":64,"h":37},"b":{"w":65,"h":36},"bw":{"f":{"w":45,"h":53},"b":{"w":46,"h":44}},"g":3},"armaldo":{"n":348,"f":{"w":76,"h":81},"b":{"w":114,"h":80},"bw":{"f":{"w":83,"h":68},"b":{"w":73,"h":68}},"g":3},"feebas":{"n":349,"f":{"w":43,"h":52},"b":{"w":49,"h":55},"bw":{"f":{"w":38,"h":52},"b":{"w":40,"h":51}},"g":3},"milotic":{"n":350,"f":{"w":98,"h":94},"ff":{"w":98,"h":95},"b":{"w":98,"h":93},"bf":{"w":107,"h":101},"bw":{"f":{"w":86,"h":78},"ff":{"w":86,"h":79},"b":{"w":93,"h":80},"bf":{"w":93,"h":80}},"g":3},"castform":{"n":351,"f":{"w":37,"h":59},"b":{"w":37,"h":59},"bw":{"f":{"w":47,"h":47},"b":{"w":47,"h":49}},"g":3},"castformsunny":{"n":351,"i":1069,"f":{"w":59,"h":69},"b":{"w":55,"h":68},"bw":{"f":{"w":62,"h":60},"b":{"w":62,"h":63}},"g":3,"s":8},"castformrainy":{"n":351,"i":1067,"f":{"w":38,"h":70},"b":{"w":38,"h":70},"bw":{"f":{"w":55,"h":61},"b":{"w":54,"h":60}},"g":3,"s":8},"castformsnowy":{"n":351,"i":1068,"il":1444,"f":{"w":61,"h":64},"b":{"w":63,"h":66},"bw":{"f":{"w":64,"h":69},"b":{"w":63,"h":67}},"g":3,"s":8},"kecleon":{"n":352,"f":{"w":51,"h":67},"b":{"w":50,"h":65},"bw":{"f":{"w":65,"h":55},"b":{"w":78,"h":58}},"g":3},"shuppet":{"n":353,"f":{"w":37,"h":63},"b":{"w":40,"h":61},"bw":{"f":{"w":39,"h":58},"b":{"w":41,"h":62}},"g":3},"banette":{"n":354,"f":{"w":62,"h":67},"b":{"w":84,"h":67},"bw":{"f":{"w":55,"h":51},"b":{"w":55,"h":52}},"g":3},"banettemega":{"n":354,"i":1353,"f":{"w":98,"h":99},"b":{"w":86,"h":104},"bw":{"f":{"w":96,"h":96}},"g":6,"s":7},"duskull":{"n":355,"f":{"w":48,"h":64},"b":{"w":47,"h":63},"bw":{"f":{"w":51,"h":45},"b":{"w":59,"h":47}},"g":3},"dusclops":{"n":356,"f":{"w":96,"h":81},"b":{"w":109,"h":83},"bw":{"f":{"w":84,"h":70},"b":{"w":75,"h":73}},"g":3},"tropius":{"n":357,"f":{"w":203,"h":79},"b":{"w":179,"h":73},"bw":{"f":{"w":94,"h":80},"b":{"w":82,"h":85}},"g":3},"chimecho":{"n":358,"f":{"w":41,"h":73},"b":{"w":37,"h":75},"bw":{"f":{"w":35,"h":65},"b":{"w":35,"h":65}},"g":3},"absol":{"n":359,"il":1446,"f":{"w":59,"h":92},"b":{"w":80,"h":89},"bw":{"f":{"w":65,"h":64},"b":{"w":68,"h":60}},"g":3},"absolmega":{"n":359,"i":1354,"il":1445,"f":{"w":98,"h":101},"b":{"w":101,"h":101},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":5},"wynaut":{"n":360,"f":{"w":76,"h":53},"b":{"w":66,"h":54},"bw":{"f":{"w":50,"h":58},"b":{"w":48,"h":59}},"g":3},"snorunt":{"n":361,"f":{"w":44,"h":47},"b":{"w":42,"h":47},"bw":{"f":{"w":32,"h":39},"b":{"w":34,"h":38}},"g":3},"glalie":{"n":362,"f":{"w":72,"h":75},"b":{"w":73,"h":75},"bw":{"f":{"w":59,"h":62},"b":{"w":62,"h":60}},"g":3},"glaliemega":{"n":362,"i":1355,"f":{"w":62,"h":87},"b":{"w":64,"h":89},"bw":{"f":{"w":62,"h":84},"b":{"w":65,"h":82}},"g":6,"s":6},"spheal":{"n":363,"f":{"w":45,"h":42},"b":{"w":53,"h":42},"bw":{"f":{"w":43,"h":38},"b":{"w":41,"h":37}},"g":3},"sealeo":{"n":364,"f":{"w":79,"h":50},"b":{"w":99,"h":48},"bw":{"f":{"w":67,"h":49},"b":{"w":63,"h":51}},"g":3},"walrein":{"n":365,"f":{"w":98,"h":71},"b":{"w":111,"h":67},"bw":{"f":{"w":78,"h":70},"b":{"w":74,"h":73}},"g":3},"clamperl":{"n":366,"f":{"w":56,"h":54},"b":{"w":57,"h":54},"bw":{"f":{"w":45,"h":42},"b":{"w":46,"h":43}},"g":3},"huntail":{"n":367,"f":{"w":93,"h":65},"b":{"w":145,"h":91},"bw":{"f":{"w":81,"h":74},"b":{"w":71,"h":69}},"g":3},"gorebyss":{"n":368,"f":{"w":82,"h":74},"b":{"w":96,"h":75},"bw":{"f":{"w":97,"h":50},"b":{"w":105,"h":57}},"g":3},"relicanth":{"n":369,"f":{"w":69,"h":68},"ff":{"w":69,"h":68},"b":{"w":70,"h":72},"bf":{"w":77,"h":77},"bw":{"f":{"w":59,"h":51},"ff":{"w":59,"h":51},"b":{"w":57,"h":51},"bf":{"w":57,"h":51}},"g":3},"luvdisc":{"n":370,"f":{"w":34,"h":43},"b":{"w":32,"h":43},"bw":{"f":{"w":30,"h":37},"b":{"w":32,"h":37}},"g":3},"bagon":{"n":371,"f":{"w":35,"h":59},"b":{"w":34,"h":58},"bw":{"f":{"w":43,"h":51},"b":{"w":40,"h":50}},"g":3},"shelgon":{"n":372,"f":{"w":57,"h":59},"b":{"w":57,"h":59},"bw":{"f":{"w":46,"h":49},"b":{"w":47,"h":50}},"g":3},"salamence":{"n":373,"f":{"w":137,"h":92},"b":{"w":188,"h":84},"bw":{"f":{"w":85,"h":72},"b":{"w":89,"h":82}},"g":3},"salamencemega":{"n":373,"i":1356,"f":{"w":217,"h":71},"b":{"w":243,"h":84},"bw":{"f":{"w":108,"h":77}},"g":6,"s":9},"beldum":{"n":374,"f":{"w":46,"h":33},"b":{"w":49,"h":34},"bw":{"f":{"w":47,"h":45},"b":{"w":45,"h":44}},"g":3},"metang":{"n":375,"f":{"w":105,"h":69},"b":{"w":93,"h":66},"bw":{"f":{"w":83,"h":64},"b":{"w":75,"h":59}},"g":3},"metagross":{"n":376,"f":{"w":142,"h":73},"b":{"w":147,"h":73},"bw":{"f":{"w":83,"h":58},"b":{"w":82,"h":56}},"g":3},"metagrossmega":{"n":376,"i":1357,"f":{"w":146,"h":118},"b":{"w":158,"h":101},"g":6,"s":9},"regirock":{"n":377,"il":1447,"f":{"w":92,"h":83},"b":{"w":84,"h":84},"bw":{"f":{"w":78,"h":71},"b":{"w":73,"h":69}},"g":3},"regice":{"n":378,"f":{"w":107,"h":82},"b":{"w":91,"h":83},"bw":{"f":{"w":87,"h":69},"b":{"w":81,"h":67}},"g":3},"registeel":{"n":379,"f":{"w":123,"h":77},"b":{"w":102,"h":79},"bw":{"f":{"w":71,"h":62},"b":{"w":72,"h":68}},"g":3},"latias":{"n":380,"f":{"w":108,"h":69},"b":{"w":110,"h":77},"bw":{"f":{"w":93,"h":66},"b":{"w":94,"h":69}},"g":3},"latiasmega":{"n":380,"i":1358,"f":{"w":183,"h":77},"b":{"w":192,"h":80},"bw":{"f":{"w":94,"h":109}},"g":6,"s":6},"latios":{"n":381,"f":{"w":121,"h":80},"b":{"w":119,"h":93},"bw":{"f":{"w":94,"h":85},"b":{"w":97,"h":85}},"g":3},"latiosmega":{"n":381,"i":1359,"f":{"w":187,"h":80},"b":{"w":195,"h":83},"bw":{"f":{"w":100,"h":104}},"g":6,"s":6},"kyogre":{"n":382,"f":{"w":234,"h":55},"b":{"w":228,"h":54},"bw":{"f":{"w":107,"h":83},"b":{"w":108,"h":68}},"g":3},"kyogreprimal":{"n":382,"i":1360,"f":{"w":230,"h":64},"b":{"w":262,"h":58},"bw":{"f":{"w":121,"h":109}},"g":6,"s":6},"groudon":{"n":383,"f":{"w":107,"h":94},"b":{"w":141,"h":89},"bw":{"f":{"w":90,"h":75},"b":{"w":88,"h":79}},"g":3},"groudonprimal":{"n":383,"i":1361,"f":{"w":117,"h":99},"b":{"w":157,"h":96},"bw":{"f":{"w":96,"h":79}},"g":6,"s":7},"rayquaza":{"n":384,"f":{"w":142,"h":153},"b":{"w":162,"h":165},"bw":{"f":{"w":110,"h":98},"b":{"w":101,"h":107}},"g":3},"rayquazamega":{"n":384,"i":1362,"f":{"w":137,"h":146},"b":{"w":244,"h":173},"bw":{"f":{"w":100,"h":108}},"g":6,"s":8},"jirachi":{"n":385,"f":{"w":92,"h":68},"b":{"w":78,"h":66},"bw":{"f":{"w":55,"h":47},"b":{"w":48,"h":46}},"g":3},"deoxys":{"n":386,"f":{"w":115,"h":86},"b":{"w":87,"h":87},"bw":{"f":{"w":68,"h":77},"b":{"w":70,"h":77}},"g":3},"deoxysattack":{"n":386,"i":1070,"f":{"w":90,"h":96},"b":{"w":77,"h":96},"bw":{"f":{"w":79,"h":85},"b":{"w":98,"h":84}},"g":3,"s":6},"deoxysdefense":{"n":386,"i":1071,"f":{"w":77,"h":93},"b":{"w":69,"h":92},"bw":{"f":{"w":87,"h":77},"b":{"w":77,"h":77}},"g":3,"s":6},"deoxysspeed":{"n":386,"i":1072,"f":{"w":87,"h":94},"b":{"w":89,"h":94},"bw":{"f":{"w":96,"h":78},"b":{"w":89,"h":77}},"g":3,"s":6},"turtwig":{"n":387,"f":{"w":45,"h":59},"b":{"w":44,"h":59},"bw":{"f":{"w":31,"h":42},"b":{"w":34,"h":43}},"g":4},"grotle":{"n":388,"f":{"w":70,"h":69},"b":{"w":85,"h":68},"bw":{"f":{"w":61,"h":61},"b":{"w":59,"h":62}},"g":4},"torterra":{"n":389,"il":1448,"f":{"w":98,"h":106},"b":{"w":101,"h":108},"bw":{"f":{"w":80,"h":80},"b":{"w":83,"h":82}},"g":4},"chimchar":{"n":390,"f":{"w":54,"h":70},"b":{"w":45,"h":72},"bw":{"f":{"w":41,"h":56},"b":{"w":45,"h":55}},"g":4},"monferno":{"n":391,"f":{"w":57,"h":91},"b":{"w":58,"h":103},"bw":{"f":{"w":70,"h":68},"b":{"w":68,"h":68}},"g":4},"infernape":{"n":392,"f":{"w":98,"h":119},"b":{"w":121,"h":118},"bw":{"f":{"w":80,"h":74},"b":{"w":83,"h":78}},"g":4},"piplup":{"n":393,"f":{"w":54,"h":59},"b":{"w":49,"h":58},"bw":{"f":{"w":30,"h":41},"b":{"w":28,"h":41}},"g":4},"prinplup":{"n":394,"f":{"w":77,"h":75},"b":{"w":55,"h":75},"bw":{"f":{"w":59,"h":61},"b":{"w":58,"h":60}},"g":4},"empoleon":{"n":395,"f":{"w":92,"h":111},"b":{"w":80,"h":111},"bw":{"f":{"w":89,"h":78},"b":{"w":82,"h":75}},"g":4},"starly":{"n":396,"f":{"w":35,"h":46},"ff":{"w":35,"h":46},"b":{"w":49,"h":46},"bw":{"f":{"w":38,"h":41},"ff":{"w":38,"h":41},"b":{"w":38,"h":42},"bf":{"w":38,"h":42}},"g":4},"staravia":{"n":397,"f":{"w":135,"h":122},"ff":{"w":135,"h":122},"b":{"w":106,"h":124},"bw":{"f":{"w":45,"h":54},"ff":{"w":45,"h":54},"b":{"w":48,"h":52},"bf":{"w":48,"h":52}},"g":4},"staraptor":{"n":398,"f":{"w":193,"h":195},"ff":{"w":193,"h":176},"b":{"w":168,"h":195},"bw":{"f":{"w":69,"h":69},"ff":{"w":69,"h":69},"b":{"w":74,"h":68},"bf":{"w":74,"h":68}},"g":4},"bidoof":{"n":399,"f":{"w":52,"h":46},"ff":{"w":52,"h":46},"b":{"w":60,"h":46},"bf":{"w":65,"h":48},"bw":{"f":{"w":49,"h":45},"ff":{"w":48,"h":45},"b":{"w":50,"h":45},"bf":{"w":50,"h":45}},"g":4},"bibarel":{"n":400,"f":{"w":81,"h":56},"ff":{"w":81,"h":56},"b":{"w":109,"h":66},"bw":{"f":{"w":70,"h":57},"ff":{"w":70,"h":57},"b":{"w":68,"h":59},"bf":{"w":68,"h":59}},"g":4},"kricketot":{"n":401,"f":{"w":60,"h":61},"ff":{"w":60,"h":61},"b":{"w":47,"h":61},"bw":{"f":{"w":44,"h":45},"ff":{"w":44,"h":45},"b":{"w":47,"h":47},"bf":{"w":47,"h":47}},"g":4},"kricketune":{"n":402,"f":{"w":67,"h":73},"ff":{"w":67,"h":73},"b":{"w":60,"h":73},"bw":{"f":{"w":69,"h":65},"ff":{"w":69,"h":65},"b":{"w":70,"h":65},"bf":{"w":70,"h":65}},"g":4},"shinx":{"n":403,"f":{"w":62,"h":59},"ff":{"w":62,"h":54},"b":{"w":77,"h":56},"bf":{"w":82,"h":56},"bw":{"f":{"w":51,"h":38},"ff":{"w":51,"h":37},"b":{"w":54,"h":39},"bf":{"w":54,"h":39}},"g":4},"luxio":{"n":404,"f":{"w":70,"h":77},"ff":{"w":66,"h":72},"b":{"w":103,"h":72},"bf":{"w":102,"h":74},"bw":{"f":{"w":68,"h":49},"ff":{"w":68,"h":47},"b":{"w":63,"h":54},"bf":{"w":63,"h":52}},"g":4},"luxray":{"n":405,"f":{"w":87,"h":99},"ff":{"w":87,"h":91},"b":{"w":105,"h":91},"bf":{"w":110,"h":86},"bw":{"f":{"w":77,"h":63},"ff":{"w":76,"h":61},"b":{"w":72,"h":66},"bf":{"w":72,"h":64}},"g":4},"budew":{"n":406,"il":1449,"f":{"w":42,"h":49},"b":{"w":40,"h":51},"bw":{"f":{"w":29,"h":56},"b":{"w":29,"h":56}},"g":4},"roserade":{"n":407,"il":1450,"f":{"w":57,"h":78},"ff":{"w":57,"h":78},"b":{"w":64,"h":79},"bf":{"w":58,"h":78},"bw":{"f":{"w":71,"h":58},"ff":{"w":71,"h":58},"b":{"w":69,"h":58},"bf":{"w":69,"h":58}},"g":4},"cranidos":{"n":408,"f":{"w":48,"h":68},"b":{"w":49,"h":64},"bw":{"f":{"w":41,"h":60},"b":{"w":48,"h":61}},"g":4},"rampardos":{"n":409,"f":{"w":75,"h":89},"b":{"w":92,"h":86},"bw":{"f":{"w":65,"h":81},"b":{"w":65,"h":82}},"g":4},"shieldon":{"n":410,"f":{"w":46,"h":55},"b":{"w":54,"h":54},"bw":{"f":{"w":49,"h":41},"b":{"w":51,"h":43}},"g":4},"bastiodon":{"n":411,"f":{"w":90,"h":80},"b":{"w":93,"h":74},"bw":{"f":{"w":69,"h":64},"b":{"w":69,"h":66}},"g":4},"burmy":{"n":412,"f":{"w":47,"h":64},"b":{"w":49,"h":64},"bw":{"f":{"w":62,"h":48},"b":{"w":62,"h":48}},"g":4},"burmysandy":{"n":412,"i":1073,"f":{"w":44,"h":61},"b":{"w":42,"h":60},"bw":{"f":{"w":55,"h":44},"b":{"w":56,"h":44}},"g":4,"s":5},"burmytrash":{"n":412,"i":1074,"f":{"w":52,"h":64},"b":{"w":47,"h":64},"bw":{"f":{"w":60,"h":48},"b":{"w":61,"h":48}},"g":4,"s":5},"wormadam":{"n":413,"f":{"w":81,"h":82},"b":{"w":66,"h":82},"bw":{"f":{"w":55,"h":63},"b":{"w":55,"h":64}},"g":4},"wormadamsandy":{"n":413,"i":1075,"f":{"w":82,"h":77},"b":{"w":77,"h":77},"bw":{"f":{"w":54,"h":63},"b":{"w":51,"h":63}},"g":4,"s":8},"wormadamtrash":{"n":413,"i":1076,"f":{"w":84,"h":82},"b":{"w":74,"h":82},"bw":{"f":{"w":57,"h":63},"b":{"w":52,"h":63}},"g":4,"s":8},"mothim":{"n":414,"f":{"w":150,"h":86},"b":{"w":124,"h":97},"bw":{"f":{"w":84,"h":49},"b":{"w":85,"h":56}},"g":4},"combee":{"n":415,"f":{"w":92,"h":46},"ff":{"w":92,"h":46},"b":{"w":87,"h":44},"bw":{"f":{"w":68,"h":42},"ff":{"w":68,"h":42},"b":{"w":67,"h":42},"bf":{"w":67,"h":42}},"g":4},"vespiquen":{"n":416,"f":{"w":75,"h":88},"b":{"w":75,"h":96},"bw":{"f":{"w":68,"h":79},"b":{"w":66,"h":79}},"g":4},"pachirisu":{"n":417,"f":{"w":57,"h":75},"ff":{"w":57,"h":75},"b":{"w":86,"h":80},"bw":{"f":{"w":53,"h":55},"ff":{"w":53,"h":55},"b":{"w":55,"h":58},"bf":{"w":55,"h":58}},"g":4},"buizel":{"n":418,"f":{"w":66,"h":69},"ff":{"w":66,"h":69},"b":{"w":79,"h":69},"bf":{"w":84,"h":75},"bw":{"f":{"w":45,"h":49},"ff":{"w":45,"h":49},"b":{"w":48,"h":49},"bf":{"w":48,"h":49}},"g":4},"floatzel":{"n":419,"f":{"w":88,"h":93},"ff":{"w":88,"h":93},"b":{"w":98,"h":95},"bf":{"w":101,"h":98},"bw":{"f":{"w":67,"h":71},"ff":{"w":67,"h":71},"b":{"w":65,"h":71},"bf":{"w":65,"h":71}},"g":4},"cherubi":{"n":420,"f":{"w":50,"h":48},"b":{"w":50,"h":48},"bw":{"f":{"w":41,"h":38},"b":{"w":37,"h":39}},"g":4},"cherrim":{"n":421,"f":{"w":50,"h":57},"b":{"w":48,"h":55},"bw":{"f":{"w":43,"h":50},"b":{"w":41,"h":51}},"g":4},"cherrimsunshine":{"n":421,"i":1077,"f":{"w":76,"h":67},"b":{"w":69,"h":68},"bw":{"f":{"w":44,"h":44},"b":{"w":41,"h":47}},"g":4,"s":7},"shellos":{"n":422,"f":{"w":44,"h":62},"b":{"w":50,"h":61},"bw":{"f":{"w":35,"h":40},"b":{"w":35,"h":42}},"g":4},"shelloseast":{"n":422,"i":1078,"f":{"w":51,"h":60},"b":{"w":53,"h":61},"bw":{"f":{"w":35,"h":39},"b":{"w":36,"h":40}},"g":4,"s":7},"gastrodon":{"n":423,"f":{"w":63,"h":77},"b":{"w":68,"h":74},"bw":{"f":{"w":54,"h":61},"b":{"w":55,"h":62}},"g":4},"gastrodoneast":{"n":423,"i":1079,"f":{"w":62,"h":77},"b":{"w":66,"h":75},"bw":{"f":{"w":58,"h":62},"b":{"w":53,"h":62}},"g":4,"s":9},"ambipom":{"n":424,"f":{"w":104,"h":88},"ff":{"w":104,"h":88},"b":{"w":77,"h":93},"bf":{"w":108,"h":99},"bw":{"f":{"w":87,"h":74},"ff":{"w":87,"h":74},"b":{"w":88,"h":75},"bf":{"w":88,"h":75}},"g":4},"drifloon":{"n":425,"f":{"w":32,"h":75},"b":{"w":32,"h":75},"bw":{"f":{"w":56,"h":69},"b":{"w":54,"h":70}},"g":4},"drifblim":{"n":426,"f":{"w":47,"h":89},"b":{"w":48,"h":90},"bw":{"f":{"w":73,"h":72},"b":{"w":71,"h":73}},"g":4},"buneary":{"n":427,"f":{"w":54,"h":73},"b":{"w":43,"h":75},"bw":{"f":{"w":40,"h":69},"b":{"w":44,"h":67}},"g":4},"lopunny":{"n":428,"f":{"w":57,"h":87},"b":{"w":59,"h":88},"bw":{"f":{"w":72,"h":62},"b":{"w":72,"h":63}},"g":4},"lopunnymega":{"n":428,"i":1363,"f":{"w":67,"h":88},"b":{"w":63,"h":87},"g":6,"s":7},"mismagius":{"n":429,"f":{"w":71,"h":116},"b":{"w":77,"h":117},"bw":{"f":{"w":61,"h":84},"b":{"w":55,"h":91}},"g":4},"honchkrow":{"n":430,"f":{"w":192,"h":182},"b":{"w":162,"h":177},"bw":{"f":{"w":77,"h":59},"b":{"w":82,"h":67}},"g":4},"glameow":{"n":431,"f":{"w":60,"h":86},"b":{"w":79,"h":94},"bw":{"f":{"w":72,"h":67},"b":{"w":73,"h":64}},"g":4},"purugly":{"n":432,"f":{"w":70,"h":81},"b":{"w":70,"h":80},"bw":{"f":{"w":66,"h":63},"b":{"w":73,"h":61}},"g":4},"chingling":{"n":433,"f":{"w":50,"h":66},"b":{"w":55,"h":72},"bw":{"f":{"w":38,"h":58},"b":{"w":41,"h":61}},"g":4},"stunky":{"n":434,"f":{"w":85,"h":66},"b":{"w":107,"h":73},"bw":{"f":{"w":57,"h":51},"b":{"w":57,"h":53}},"g":4},"skuntank":{"n":435,"f":{"w":87,"h":79},"b":{"w":88,"h":81},"bw":{"f":{"w":74,"h":57},"b":{"w":78,"h":64}},"g":4},"bronzor":{"n":436,"f":{"w":40,"h":55},"b":{"w":36,"h":55},"bw":{"f":{"w":47,"h":59},"b":{"w":48,"h":60}},"g":4},"bronzong":{"n":437,"f":{"w":89,"h":73},"b":{"w":72,"h":72},"bw":{"f":{"w":94,"h":74},"b":{"w":94,"h":74}},"g":4},"bonsly":{"n":438,"f":{"w":37,"h":57},"b":{"w":29,"h":57},"bw":{"f":{"w":42,"h":57},"b":{"w":42,"h":56}},"g":4},"mimejr":{"n":439,"f":{"w":49,"h":63},"b":{"w":34,"h":64},"bw":{"f":{"w":45,"h":61},"b":{"w":48,"h":64}},"g":4},"happiny":{"n":440,"f":{"w":39,"h":53},"b":{"w":39,"h":54},"bw":{"f":{"w":29,"h":50},"b":{"w":29,"h":51}},"g":4},"chatot":{"n":441,"f":{"w":48,"h":60},"b":{"w":59,"h":60},"bw":{"f":{"w":47,"h":49},"b":{"w":50,"h":49}},"g":4},"spiritomb":{"n":442,"f":{"w":78,"h":73},"b":{"w":73,"h":71},"bw":{"f":{"w":66,"h":63},"b":{"w":64,"h":62}},"g":4},"gible":{"n":443,"f":{"w":58,"h":57},"ff":{"w":58,"h":57},"b":{"w":61,"h":60},"bf":{"w":68,"h":65},"bw":{"f":{"w":57,"h":54},"ff":{"w":57,"h":54},"b":{"w":51,"h":51},"bf":{"w":51,"h":51}},"g":4},"gabite":{"n":444,"f":{"w":63,"h":76},"ff":{"w":63,"h":76},"b":{"w":83,"h":74},"bf":{"w":86,"h":80},"bw":{"f":{"w":71,"h":61},"ff":{"w":71,"h":61},"b":{"w":73,"h":60},"bf":{"w":73,"h":60}},"g":4},"garchomp":{"n":445,"f":{"w":115,"h":108},"ff":{"w":115,"h":108},"b":{"w":126,"h":106},"bf":{"w":124,"h":103},"bw":{"f":{"w":83,"h":80},"ff":{"w":83,"h":80},"b":{"w":89,"h":83},"bf":{"w":89,"h":83}},"g":4},"garchompmega":{"n":445,"i":1364,"f":{"w":132,"h":107},"b":{"w":163,"h":111},"bw":{"f":{"w":93,"h":80},"b":{"w":96,"h":96}},"g":6,"s":8},"munchlax":{"n":446,"f":{"w":47,"h":59},"b":{"w":44,"h":59},"bw":{"f":{"w":46,"h":48},"b":{"w":45,"h":50}},"g":4},"riolu":{"n":447,"f":{"w":42,"h":61},"b":{"w":47,"h":63},"bw":{"f":{"w":43,"h":50},"b":{"w":41,"h":49}},"g":4},"lucario":{"n":448,"f":{"w":52,"h":96},"b":{"w":70,"h":96},"bw":{"f":{"w":47,"h":63},"b":{"w":49,"h":65}},"g":4},"lucariomega":{"n":448,"i":1365,"f":{"w":58,"h":101},"b":{"w":58,"h":100},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":7},"hippopotas":{"n":449,"f":{"w":63,"h":53},"ff":{"w":63,"h":53},"b":{"w":62,"h":51},"bf":{"w":66,"h":60},"bw":{"f":{"w":64,"h":42},"ff":{"w":64,"h":42},"b":{"w":57,"h":44},"bf":{"w":57,"h":44}},"g":4},"hippowdon":{"n":450,"f":{"w":97,"h":58},"ff":{"w":97,"h":58},"b":{"w":92,"h":58},"bf":{"w":92,"h":58},"bw":{"f":{"w":85,"h":62},"ff":{"w":85,"h":62},"b":{"w":94,"h":69},"bf":{"w":94,"h":69}},"g":4},"skorupi":{"n":451,"f":{"w":75,"h":64},"b":{"w":82,"h":68},"bw":{"f":{"w":71,"h":46},"b":{"w":70,"h":45}},"g":4},"drapion":{"n":452,"f":{"w":141,"h":85},"b":{"w":167,"h":87},"bw":{"f":{"w":96,"h":71},"b":{"w":99,"h":74}},"g":4},"croagunk":{"n":453,"f":{"w":60,"h":52},"ff":{"w":60,"h":52},"b":{"w":60,"h":52},"bw":{"f":{"w":47,"h":51},"ff":{"w":47,"h":51},"b":{"w":43,"h":53},"bf":{"w":43,"h":53}},"g":4},"toxicroak":{"n":454,"f":{"w":92,"h":81},"ff":{"w":92,"h":81},"b":{"w":90,"h":79},"bf":{"w":96,"h":85},"bw":{"f":{"w":68,"h":60},"ff":{"w":68,"h":60},"b":{"w":71,"h":63},"bf":{"w":71,"h":63}},"g":4},"carnivine":{"n":455,"f":{"w":119,"h":91},"b":{"w":89,"h":90},"bw":{"f":{"w":89,"h":67},"b":{"w":87,"h":69}},"g":4},"finneon":{"n":456,"f":{"w":50,"h":42},"ff":{"w":50,"h":44},"b":{"w":52,"h":44},"bf":{"w":68,"h":69},"bw":{"f":{"w":77,"h":51},"ff":{"w":77,"h":51},"b":{"w":72,"h":42},"bf":{"w":72,"h":42}},"g":4},"lumineon":{"n":457,"f":{"w":85,"h":84},"ff":{"w":85,"h":84},"b":{"w":84,"h":79},"bf":{"w":92,"h":89},"bw":{"f":{"w":73,"h":70},"ff":{"w":73,"h":70},"b":{"w":72,"h":78},"bf":{"w":72,"h":84}},"g":4},"mantyke":{"n":458,"f":{"w":69,"h":44},"b":{"w":78,"h":42},"bw":{"f":{"w":64,"h":60},"b":{"w":69,"h":60}},"g":4},"snover":{"n":459,"f":{"w":88,"h":61},"ff":{"w":88,"h":61},"b":{"w":72,"h":61},"bf":{"w":87,"h":66},"bw":{"f":{"w":72,"h":56},"ff":{"w":72,"h":56},"b":{"w":73,"h":55},"bf":{"w":73,"h":55}},"g":4},"abomasnow":{"n":460,"f":{"w":128,"h":87},"ff":{"w":128,"h":87},"b":{"w":100,"h":87},"bw":{"f":{"w":96,"h":79},"ff":{"w":96,"h":79},"b":{"w":94,"h":86},"bf":{"w":94,"h":86}},"g":4},"abomasnowmega":{"n":460,"i":1366,"f":{"w":125,"h":110},"b":{"w":124,"h":118},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":9},"weavile":{"n":461,"f":{"w":62,"h":78},"ff":{"w":62,"h":78},"b":{"w":68,"h":83},"bf":{"w":56,"h":77},"bw":{"f":{"w":56,"h":81},"ff":{"w":56,"h":81},"b":{"w":47,"h":77},"bf":{"w":47,"h":77}},"g":4},"magnezone":{"n":462,"f":{"w":109,"h":73},"b":{"w":109,"h":76},"bw":{"f":{"w":84,"h":61},"b":{"w":82,"h":55}},"g":4},"lickilicky":{"n":463,"f":{"w":69,"h":79},"b":{"w":86,"h":79},"bw":{"f":{"w":70,"h":77},"b":{"w":80,"h":81}},"g":4},"rhyperior":{"n":464,"f":{"w":105,"h":94},"ff":{"w":105,"h":91},"b":{"w":117,"h":91},"bf":{"w":121,"h":95},"bw":{"f":{"w":83,"h":72},"ff":{"w":83,"h":71},"b":{"w":94,"h":68},"bf":{"w":94,"h":68}},"g":4},"tangrowth":{"n":465,"f":{"w":145,"h":82},"ff":{"w":145,"h":82},"b":{"w":123,"h":84},"bw":{"f":{"w":97,"h":67},"ff":{"w":97,"h":67},"b":{"w":97,"h":67},"bf":{"w":97,"h":67}},"g":4},"electivire":{"n":466,"f":{"w":99,"h":85},"b":{"w":95,"h":87},"bw":{"f":{"w":97,"h":85},"b":{"w":101,"h":85}},"g":4},"magmortar":{"n":467,"il":1451,"f":{"w":102,"h":89},"b":{"w":104,"h":90},"bw":{"f":{"w":89,"h":83},"b":{"w":90,"h":78}},"g":4},"togekiss":{"n":468,"il":1452,"f":{"w":93,"h":60},"b":{"w":80,"h":60},"bw":{"f":{"w":86,"h":52},"b":{"w":86,"h":53}},"g":4},"yanmega":{"n":469,"f":{"w":143,"h":67},"b":{"w":138,"h":58},"bw":{"f":{"w":89,"h":94},"b":{"w":94,"h":91}},"g":4},"leafeon":{"n":470,"f":{"w":48,"h":82},"b":{"w":69,"h":90},"bw":{"f":{"w":62,"h":59},"b":{"w":76,"h":62}},"g":4},"glaceon":{"n":471,"f":{"w":61,"h":85},"b":{"w":91,"h":91},"bw":{"f":{"w":76,"h":54},"b":{"w":69,"h":54}},"g":4},"gliscor":{"n":472,"f":{"w":111,"h":101},"b":{"w":102,"h":102},"bw":{"f":{"w":84,"h":82},"b":{"w":81,"h":88}},"g":4},"mamoswine":{"n":473,"f":{"w":104,"h":84},"ff":{"w":98,"h":84},"b":{"w":109,"h":82},"bf":{"w":110,"h":85},"bw":{"f":{"w":84,"h":73},"ff":{"w":83,"h":73},"b":{"w":81,"h":73},"bf":{"w":81,"h":73}},"g":4},"porygonz":{"n":474,"f":{"w":70,"h":68},"b":{"w":64,"h":67},"bw":{"f":{"w":39,"h":58},"b":{"w":43,"h":57}},"g":4},"gallade":{"n":475,"f":{"w":64,"h":101},"b":{"w":71,"h":102},"bw":{"f":{"w":58,"h":70},"b":{"w":53,"h":69}},"g":4},"gallademega":{"n":475,"i":1367,"f":{"w":64,"h":99},"b":{"w":63,"h":98},"g":6,"s":7},"probopass":{"n":476,"f":{"w":94,"h":81},"b":{"w":97,"h":80},"bw":{"f":{"w":65,"h":84},"b":{"w":68,"h":83}},"g":4},"dusknoir":{"n":477,"f":{"w":128,"h":101},"b":{"w":113,"h":100},"bw":{"f":{"w":74,"h":75},"b":{"w":72,"h":78}},"g":4},"froslass":{"n":478,"f":{"w":66,"h":79},"b":{"w":54,"h":79},"bw":{"f":{"w":35,"h":75},"b":{"w":42,"h":72}},"g":4},"rotom":{"n":479,"f":{"w":105,"h":70},"ff":{"w":117,"h":65},"b":{"w":58,"h":73},"bw":{"f":{"w":89,"h":60},"b":{"w":88,"h":59}},"g":4},"rotomheat":{"n":479,"i":1082,"f":{"w":107,"h":62},"b":{"w":83,"h":62},"bw":{"f":{"w":60,"h":81},"b":{"w":61,"h":81}},"g":4,"s":5},"rotomwash":{"n":479,"i":1084,"il":1453,"f":{"w":110,"h":64},"b":{"w":100,"h":64},"bw":{"f":{"w":98,"h":84},"b":{"w":89,"h":82}},"g":4,"s":5},"rotomfrost":{"n":479,"i":1081,"f":{"w":117,"h":65},"b":{"w":105,"h":65},"bw":{"f":{"w":113,"h":87},"b":{"w":113,"h":87}},"g":4,"s":5},"rotomfan":{"n":479,"i":1080,"f":{"w":112,"h":74},"b":{"w":99,"h":73},"bw":{"f":{"w":94,"h":79},"b":{"w":92,"h":78}},"g":4,"s":5},"rotommow":{"n":479,"i":1083,"f":{"w":93,"h":59},"b":{"w":83,"h":63},"bw":{"f":{"w":74,"h":78},"b":{"w":73,"h":66}},"g":4,"s":5},"uxie":{"n":480,"f":{"w":63,"h":78},"b":{"w":80,"h":87},"bw":{"f":{"w":48,"h":51},"b":{"w":49,"h":53}},"g":4},"mesprit":{"n":481,"f":{"w":72,"h":78},"b":{"w":90,"h":90},"bw":{"f":{"w":54,"h":90},"b":{"w":56,"h":89}},"g":4},"azelf":{"n":482,"f":{"w":83,"h":86},"b":{"w":91,"h":88},"bw":{"f":{"w":74,"h":60},"b":{"w":76,"h":63}},"g":4},"dialga":{"n":483,"f":{"w":100,"h":122},"b":{"w":134,"h":118},"bw":{"f":{"w":84,"h":89},"b":{"w":84,"h":86}},"g":4},"dialgaorigin":{"n":483,"i":1269,"bw":{"f":{"w":104,"h":106},"b":{"w":113,"h":99}},"g":8,"s":6},"palkia":{"n":484,"f":{"w":107,"h":107},"b":{"w":132,"h":113},"bw":{"f":{"w":86,"h":78},"b":{"w":89,"h":82}},"g":4},"palkiaorigin":{"n":484,"i":1270,"g":8,"s":6},"heatran":{"n":485,"f":{"w":124,"h":64},"b":{"w":123,"h":59},"bw":{"f":{"w":85,"h":57},"b":{"w":88,"h":52}},"g":4},"regigigas":{"n":486,"f":{"w":166,"h":96},"b":{"w":137,"h":96},"bw":{"f":{"w":87,"h":69},"b":{"w":93,"h":72}},"g":4},"giratina":{"n":487,"f":{"w":140,"h":114},"b":{"w":131,"h":111},"bw":{"f":{"w":102,"h":89},"b":{"w":104,"h":86}},"g":4},"giratinaorigin":{"n":487,"i":1085,"f":{"w":156,"h":154},"b":{"w":174,"h":191},"bw":{"f":{"w":91,"h":88},"b":{"w":101,"h":89}},"g":4,"s":8},"cresselia":{"n":488,"f":{"w":113,"h":96},"b":{"w":109,"h":97},"bw":{"f":{"w":80,"h":78},"b":{"w":95,"h":77}},"g":4},"phione":{"n":489,"f":{"w":65,"h":56},"b":{"w":83,"h":63},"bw":{"f":{"w":63,"h":49},"b":{"w":63,"h":48}},"g":4},"manaphy":{"n":490,"f":{"w":65,"h":55},"b":{"w":77,"h":56},"bw":{"f":{"w":56,"h":51},"b":{"w":56,"h":52}},"g":4},"darkrai":{"n":491,"f":{"w":124,"h":116},"b":{"w":136,"h":130},"bw":{"f":{"w":94,"h":86},"b":{"w":91,"h":86}},"g":4},"shaymin":{"n":492,"f":{"w":48,"h":43},"b":{"w":48,"h":42},"bw":{"f":{"w":36,"h":36},"b":{"w":38,"h":35}},"g":4},"shayminsky":{"n":492,"i":1086,"il":1454,"f":{"w":78,"h":73},"b":{"w":76,"h":70},"bw":{"f":{"w":63,"h":69},"b":{"w":64,"h":70}},"g":4,"s":7},"arceus":{"n":493,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4},"arceusbug":{"n":493,"i":1278,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusdark":{"n":493,"i":1279,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusdragon":{"n":493,"i":1280,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuselectric":{"n":493,"i":1281,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusfairy":{"n":493,"i":1282,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":69,"h":82},"b":{"w":72,"h":85}},"g":6,"s":6},"arceusfighting":{"n":493,"i":1283,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusfire":{"n":493,"i":1284,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusflying":{"n":493,"i":1285,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusghost":{"n":493,"i":1286,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusgrass":{"n":493,"i":1287,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusground":{"n":493,"i":1288,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusice":{"n":493,"i":1289,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuspoison":{"n":493,"i":1290,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuspsychic":{"n":493,"i":1291,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceusrock":{"n":493,"i":1292,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceussteel":{"n":493,"i":1293,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"arceuswater":{"n":493,"i":1294,"f":{"w":82,"h":114},"b":{"w":95,"h":111},"bw":{"f":{"w":70,"h":81},"b":{"w":72,"h":86}},"g":4,"s":6},"victini":{"n":494,"f":{"w":53,"h":73},"b":{"w":47,"h":74},"bw":{"f":{"w":53,"h":62},"b":{"w":50,"h":58}},"g":5},"snivy":{"n":495,"f":{"w":56,"h":55},"b":{"w":54,"h":55},"bw":{"f":{"w":48,"h":44},"b":{"w":47,"h":42}},"g":5},"servine":{"n":496,"f":{"w":58,"h":82},"b":{"w":77,"h":82},"bw":{"f":{"w":65,"h":60},"b":{"w":64,"h":61}},"g":5},"serperior":{"n":497,"f":{"w":90,"h":108},"b":{"w":86,"h":105},"bw":{"f":{"w":90,"h":74},"b":{"w":80,"h":80}},"g":5},"tepig":{"n":498,"f":{"w":46,"h":62},"b":{"w":49,"h":61},"bw":{"f":{"w":44,"h":48},"b":{"w":44,"h":50}},"g":5},"pignite":{"n":499,"f":{"w":73,"h":78},"b":{"w":78,"h":73},"bw":{"f":{"w":54,"h":67},"b":{"w":59,"h":71}},"g":5},"emboar":{"n":500,"il":1455,"f":{"w":107,"h":102},"b":{"w":126,"h":102},"bw":{"f":{"w":90,"h":78},"b":{"w":92,"h":82}},"g":5},"oshawott":{"n":501,"f":{"w":41,"h":49},"b":{"w":47,"h":48},"bw":{"f":{"w":46,"h":52},"b":{"w":40,"h":54}},"g":5},"dewott":{"n":502,"f":{"w":44,"h":73},"b":{"w":51,"h":74},"bw":{"f":{"w":49,"h":57},"b":{"w":44,"h":56}},"g":5},"samurott":{"n":503,"f":{"w":103,"h":108},"b":{"w":94,"h":93},"bw":{"f":{"w":101,"h":94},"b":{"w":97,"h":91}},"g":5},"samurotthisui":{"n":503,"i":1245,"f":{"w":107,"h":97},"b":{"w":113,"h":110},"bw":{"f":{"w":94,"h":90},"b":{"w":89,"h":90}},"g":8,"s":8},"patrat":{"n":504,"f":{"w":46,"h":55},"b":{"w":53,"h":54},"bw":{"f":{"w":53,"h":45},"b":{"w":50,"h":45}},"g":5},"watchog":{"n":505,"f":{"w":48,"h":79},"b":{"w":56,"h":85},"bw":{"f":{"w":67,"h":69},"b":{"w":62,"h":69}},"g":5},"lillipup":{"n":506,"f":{"w":41,"h":55},"b":{"w":39,"h":55},"bw":{"f":{"w":40,"h":50},"b":{"w":45,"h":48}},"g":5},"herdier":{"n":507,"f":{"w":57,"h":74},"b":{"w":63,"h":72},"bw":{"f":{"w":55,"h":58},"b":{"w":58,"h":58}},"g":5},"stoutland":{"n":508,"f":{"w":91,"h":88},"b":{"w":91,"h":83},"bw":{"f":{"w":74,"h":71},"b":{"w":74,"h":71}},"g":5},"purrloin":{"n":509,"f":{"w":59,"h":70},"b":{"w":50,"h":71},"bw":{"f":{"w":58,"h":49},"b":{"w":57,"h":51}},"g":5},"liepard":{"n":510,"f":{"w":60,"h":109},"b":{"w":99,"h":120},"bw":{"f":{"w":81,"h":72},"b":{"w":82,"h":72}},"g":5},"pansage":{"n":511,"f":{"w":65,"h":66},"b":{"w":70,"h":64},"bw":{"f":{"w":48,"h":50},"b":{"w":48,"h":51}},"g":5},"simisage":{"n":512,"f":{"w":71,"h":95},"b":{"w":70,"h":92},"bw":{"f":{"w":69,"h":76},"b":{"w":61,"h":75}},"g":5},"pansear":{"n":513,"il":1456,"f":{"w":65,"h":63},"b":{"w":66,"h":63},"bw":{"f":{"w":44,"h":49},"b":{"w":44,"h":50}},"g":5},"simisear":{"n":514,"il":1457,"f":{"w":76,"h":81},"b":{"w":119,"h":83},"bw":{"f":{"w":69,"h":59},"b":{"w":73,"h":61}},"g":5},"panpour":{"n":515,"f":{"w":59,"h":64},"b":{"w":64,"h":64},"bw":{"f":{"w":46,"h":47},"b":{"w":46,"h":46}},"g":5},"simipour":{"n":516,"f":{"w":76,"h":83},"b":{"w":74,"h":84},"bw":{"f":{"w":60,"h":58},"b":{"w":59,"h":62}},"g":5},"munna":{"n":517,"f":{"w":46,"h":54},"b":{"w":47,"h":53},"bw":{"f":{"w":45,"h":46},"b":{"w":44,"h":46}},"g":5},"musharna":{"n":518,"f":{"w":95,"h":112},"b":{"w":79,"h":102},"bw":{"f":{"w":77,"h":74},"b":{"w":74,"h":73}},"g":5},"pidove":{"n":519,"f":{"w":41,"h":49},"b":{"w":48,"h":48},"bw":{"f":{"w":36,"h":38},"b":{"w":36,"h":39}},"g":5},"tranquill":{"n":520,"f":{"w":144,"h":124},"b":{"w":120,"h":119},"bw":{"f":{"w":58,"h":58},"b":{"w":58,"h":60}},"g":5},"unfezant":{"n":521,"if":1087,"f":{"w":156,"h":142},"ff":{"w":156,"h":142},"b":{"w":141,"h":151},"bf":{"w":142,"h":150},"bw":{"f":{"w":69,"h":76},"ff":{"w":63,"h":72},"b":{"w":76,"h":79},"bf":{"w":73,"h":67}},"g":5},"blitzle":{"n":522,"f":{"w":42,"h":84},"b":{"w":50,"h":81},"bw":{"f":{"w":46,"h":63},"b":{"w":49,"h":63}},"g":5},"zebstrika":{"n":523,"f":{"w":66,"h":96},"b":{"w":78,"h":91},"bw":{"f":{"w":74,"h":75},"b":{"w":72,"h":74}},"g":5},"roggenrola":{"n":524,"f":{"w":46,"h":60},"b":{"w":41,"h":61},"bw":{"f":{"w":24,"h":39},"b":{"w":24,"h":38}},"g":5},"boldore":{"n":525,"f":{"w":81,"h":67},"b":{"w":93,"h":68},"bw":{"f":{"w":60,"h":53},"b":{"w":55,"h":52}},"g":5},"gigalith":{"n":526,"f":{"w":101,"h":97},"b":{"w":111,"h":95},"bw":{"f":{"w":80,"h":78},"b":{"w":75,"h":76}},"g":5},"woobat":{"n":527,"f":{"w":95,"h":56},"b":{"w":67,"h":58},"bw":{"f":{"w":91,"h":53},"b":{"w":91,"h":52}},"g":5},"swoobat":{"n":528,"f":{"w":144,"h":107},"b":{"w":98,"h":115},"bw":{"f":{"w":105,"h":101},"b":{"w":110,"h":102}},"g":5},"drilbur":{"n":529,"il":1458,"f":{"w":83,"h":49},"b":{"w":78,"h":48},"bw":{"f":{"w":82,"h":52},"b":{"w":61,"h":44}},"g":5},"excadrill":{"n":530,"il":1459,"f":{"w":89,"h":79},"b":{"w":84,"h":74},"bw":{"f":{"w":91,"h":76},"b":{"w":93,"h":80}},"g":5},"audino":{"n":531,"f":{"w":63,"h":75},"b":{"w":57,"h":75},"bw":{"f":{"w":46,"h":53},"b":{"w":44,"h":53}},"g":5},"audinomega":{"n":531,"i":1368,"f":{"w":65,"h":96},"b":{"w":56,"h":97},"g":6,"s":6},"timburr":{"n":532,"f":{"w":60,"h":61},"b":{"w":71,"h":60},"bw":{"f":{"w":47,"h":70},"b":{"w":71,"h":83}},"g":5},"gurdurr":{"n":533,"f":{"w":98,"h":78},"b":{"w":100,"h":76},"bw":{"f":{"w":69,"h":81},"b":{"w":72,"h":74}},"g":5},"conkeldurr":{"n":534,"f":{"w":123,"h":89},"b":{"w":112,"h":82},"bw":{"f":{"w":102,"h":69},"b":{"w":80,"h":59}},"g":5},"tympole":{"n":535,"f":{"w":47,"h":38},"b":{"w":56,"h":42},"bw":{"f":{"w":39,"h":44},"b":{"w":40,"h":49}},"g":5},"palpitoad":{"n":536,"f":{"w":49,"h":66},"b":{"w":56,"h":65},"bw":{"f":{"w":42,"h":57},"b":{"w":41,"h":54}},"g":5},"seismitoad":{"n":537,"f":{"w":95,"h":90},"b":{"w":88,"h":85},"bw":{"f":{"w":98,"h":66},"b":{"w":89,"h":64}},"g":5},"throh":{"n":538,"f":{"w":109,"h":88},"b":{"w":86,"h":79},"bw":{"f":{"w":74,"h":53},"b":{"w":65,"h":52}},"g":5},"sawk":{"n":539,"il":1460,"f":{"w":81,"h":83},"b":{"w":89,"h":82},"bw":{"f":{"w":58,"h":66},"b":{"w":56,"h":66}},"g":5},"sewaddle":{"n":540,"f":{"w":44,"h":47},"b":{"w":44,"h":46},"bw":{"f":{"w":33,"h":36},"b":{"w":33,"h":41}},"g":5},"swadloon":{"n":541,"f":{"w":70,"h":57},"b":{"w":63,"h":57},"bw":{"f":{"w":51,"h":45},"b":{"w":50,"h":51}},"g":5},"leavanny":{"n":542,"f":{"w":52,"h":109},"b":{"w":50,"h":108},"bw":{"f":{"w":49,"h":75},"b":{"w":46,"h":77}},"g":5},"venipede":{"n":543,"f":{"w":63,"h":44},"b":{"w":76,"h":43},"bw":{"f":{"w":50,"h":35},"b":{"w":53,"h":35}},"g":5},"whirlipede":{"n":544,"f":{"w":96,"h":65},"b":{"w":81,"h":65},"bw":{"f":{"w":68,"h":62},"b":{"w":66,"h":64}},"g":5},"scolipede":{"n":545,"f":{"w":112,"h":124},"b":{"w":110,"h":109},"bw":{"f":{"w":103,"h":91},"b":{"w":99,"h":88}},"g":5},"cottonee":{"n":546,"f":{"w":61,"h":40},"b":{"w":53,"h":40},"bw":{"f":{"w":45,"h":52},"b":{"w":45,"h":52}},"g":5},"whimsicott":{"n":547,"f":{"w":75,"h":67},"b":{"w":75,"h":72},"bw":{"f":{"w":63,"h":71},"b":{"w":63,"h":69}},"g":5},"petilil":{"n":548,"f":{"w":42,"h":69},"b":{"w":43,"h":69},"bw":{"f":{"w":39,"h":52},"b":{"w":37,"h":52}},"g":5},"lilligant":{"n":549,"il":1461,"f":{"w":67,"h":89},"b":{"w":64,"h":89},"bw":{"f":{"w":57,"h":70},"b":{"w":60,"h":70}},"g":5},"lilliganthisui":{"n":549,"i":1246,"f":{"w":84,"h":93},"b":{"w":77,"h":98},"bw":{"f":{"w":60,"h":74}},"g":8,"s":9},"basculin":{"n":550,"f":{"w":71,"h":56},"b":{"w":69,"h":58},"bw":{"f":{"w":52,"h":48},"b":{"w":43,"h":49}},"g":5},"basculinbluestriped":{"n":550,"i":1088,"f":{"w":71,"h":60},"b":{"w":69,"h":65},"bw":{"f":{"w":54,"h":46},"b":{"w":44,"h":48}},"g":5,"s":8},"basculinwhitestriped":{"n":550,"i":1271,"f":{"w":57,"h":55},"b":{"w":65,"h":55},"bw":{"f":{"w":52,"h":39},"b":{"w":56,"h":42}},"g":8,"s":8},"sandile":{"n":551,"f":{"w":63,"h":47},"b":{"w":55,"h":44},"bw":{"f":{"w":52,"h":38},"b":{"w":58,"h":39}},"g":5},"krokorok":{"n":552,"f":{"w":81,"h":76},"b":{"w":97,"h":74},"bw":{"f":{"w":59,"h":62},"b":{"w":62,"h":64}},"g":5},"krookodile":{"n":553,"f":{"w":97,"h":94},"b":{"w":123,"h":100},"bw":{"f":{"w":95,"h":72},"b":{"w":85,"h":75}},"g":5},"darumaka":{"n":554,"f":{"w":74,"h":61},"b":{"w":65,"h":60},"bw":{"f":{"w":41,"h":42},"b":{"w":38,"h":43}},"g":5},"darumakagalar":{"n":554,"i":1207,"f":{"w":64,"h":56},"b":{"w":53,"h":57},"g":8,"s":8},"darmanitan":{"n":555,"f":{"w":99,"h":91},"b":{"w":87,"h":84},"bw":{"f":{"w":63,"h":69},"b":{"w":57,"h":64}},"g":5},"darmanitanzen":{"n":555,"i":1089,"f":{"w":62,"h":58},"b":{"w":60,"h":58},"bw":{"f":{"w":48,"h":48},"b":{"w":45,"h":48}},"g":5,"s":10},"darmanitangalar":{"n":555,"i":1208,"f":{"w":104,"h":106},"b":{"w":89,"h":103},"g":8,"s":10},"darmanitangalarzen":{"n":555,"i":1209,"f":{"w":104,"h":160},"b":{"w":107,"h":136},"bw":{"f":{"w":52,"h":72},"b":{"w":46,"h":68}},"g":8,"s":10},"maractus":{"n":556,"f":{"w":80,"h":84},"b":{"w":66,"h":85},"bw":{"f":{"w":61,"h":71},"b":{"w":80,"h":71}},"g":5},"dwebble":{"n":557,"f":{"w":53,"h":42},"b":{"w":57,"h":45},"bw":{"f":{"w":40,"h":38},"b":{"w":44,"h":35}},"g":5},"crustle":{"n":558,"f":{"w":97,"h":83},"b":{"w":99,"h":81},"bw":{"f":{"w":74,"h":67},"b":{"w":80,"h":65}},"g":5},"scraggy":{"n":559,"f":{"w":52,"h":63},"b":{"w":54,"h":64},"bw":{"f":{"w":38,"h":41},"b":{"w":34,"h":42}},"g":5},"scrafty":{"n":560,"f":{"w":56,"h":77},"b":{"w":62,"h":79},"bw":{"f":{"w":49,"h":77},"b":{"w":48,"h":78}},"g":5},"sigilyph":{"n":561,"f":{"w":143,"h":117},"b":{"w":130,"h":121},"bw":{"f":{"w":120,"h":99},"b":{"w":118,"h":98}},"g":5},"yamask":{"n":562,"f":{"w":64,"h":67},"b":{"w":58,"h":67},"bw":{"f":{"w":65,"h":52},"b":{"w":63,"h":52}},"g":5},"yamaskgalar":{"n":562,"i":1210,"f":{"w":60,"h":80},"b":{"w":51,"h":79},"g":8,"s":6},"cofagrigus":{"n":563,"f":{"w":165,"h":119},"b":{"w":150,"h":102},"bw":{"f":{"w":121,"h":89},"b":{"w":105,"h":90}},"g":5},"tirtouga":{"n":564,"f":{"w":105,"h":32},"b":{"w":102,"h":31},"bw":{"f":{"w":59,"h":47},"b":{"w":57,"h":52}},"g":5},"carracosta":{"n":565,"f":{"w":78,"h":85},"b":{"w":72,"h":84},"bw":{"f":{"w":78,"h":61},"b":{"w":85,"h":63}},"g":5},"archen":{"n":566,"f":{"w":104,"h":52},"b":{"w":110,"h":52},"bw":{"f":{"w":60,"h":54},"b":{"w":62,"h":47}},"g":5},"archeops":{"n":567,"f":{"w":144,"h":127},"b":{"w":182,"h":142},"bw":{"f":{"w":79,"h":92},"b":{"w":82,"h":98}},"g":5},"trubbish":{"n":568,"f":{"w":73,"h":57},"b":{"w":65,"h":59},"bw":{"f":{"w":54,"h":41},"b":{"w":60,"h":43}},"g":5},"garbodor":{"n":569,"il":1462,"f":{"w":118,"h":88},"b":{"w":129,"h":95},"bw":{"f":{"w":92,"h":70},"b":{"w":101,"h":84}},"g":5},"garbodorgmax":{"n":569,"i":1380,"f":{"w":167,"h":120},"b":{"w":249,"h":145},"bw":{"f":{"w":108,"h":88},"b":{"w":105,"h":95}},"g":8,"s":8},"zorua":{"n":570,"f":{"w":47,"h":63},"b":{"w":53,"h":62},"bw":{"f":{"w":45,"h":50},"b":{"w":44,"h":49}},"g":5},"zoruahisui":{"n":570,"i":1247,"f":{"w":91,"h":97},"b":{"w":111,"h":92},"g":8,"s":5},"zoroark":{"n":571,"f":{"w":86,"h":94},"b":{"w":141,"h":97},"bw":{"f":{"w":73,"h":64},"b":{"w":82,"h":66}},"g":5},"zoroarkhisui":{"n":571,"i":1248,"f":{"w":105,"h":117},"b":{"w":100,"h":112},"bw":{"f":{"w":72,"h":77}},"g":8,"s":7},"minccino":{"n":572,"f":{"w":72,"h":61},"b":{"w":69,"h":61},"bw":{"f":{"w":64,"h":55},"b":{"w":65,"h":55}},"g":5},"cinccino":{"n":573,"f":{"w":80,"h":63},"b":{"w":74,"h":65},"bw":{"f":{"w":67,"h":57},"b":{"w":70,"h":59}},"g":5},"gothita":{"n":574,"f":{"w":46,"h":59},"b":{"w":45,"h":58},"bw":{"f":{"w":34,"h":39},"b":{"w":34,"h":40}},"g":5},"gothorita":{"n":575,"f":{"w":69,"h":77},"b":{"w":55,"h":80},"bw":{"f":{"w":50,"h":61},"b":{"w":51,"h":59}},"g":5},"gothitelle":{"n":576,"f":{"w":62,"h":101},"b":{"w":60,"h":103},"bw":{"f":{"w":67,"h":73},"b":{"w":71,"h":74}},"g":5},"solosis":{"n":577,"il":1463,"f":{"w":45,"h":45},"b":{"w":45,"h":45},"bw":{"f":{"w":36,"h":36},"b":{"w":38,"h":36}},"g":5},"duosion":{"n":578,"f":{"w":52,"h":64},"b":{"w":53,"h":66},"bw":{"f":{"w":67,"h":66},"b":{"w":67,"h":67}},"g":5},"reuniclus":{"n":579,"f":{"w":160,"h":75},"b":{"w":105,"h":75},"bw":{"f":{"w":100,"h":63},"b":{"w":97,"h":67}},"g":5},"ducklett":{"n":580,"f":{"w":42,"h":62},"b":{"w":43,"h":60},"bw":{"f":{"w":37,"h":40},"b":{"w":39,"h":42}},"g":5},"swanna":{"n":581,"f":{"w":184,"h":183},"b":{"w":190,"h":167},"bw":{"f":{"w":137,"h":69},"b":{"w":93,"h":68}},"g":5},"vanillite":{"n":582,"f":{"w":49,"h":63},"b":{"w":46,"h":62},"bw":{"f":{"w":55,"h":44},"b":{"w":56,"h":49}},"g":5},"vanillish":{"n":583,"f":{"w":58,"h":85},"b":{"w":51,"h":85},"bw":{"f":{"w":58,"h":65},"b":{"w":58,"h":61}},"g":5},"vanilluxe":{"n":584,"il":1464,"f":{"w":83,"h":89},"b":{"w":67,"h":90},"bw":{"f":{"w":63,"h":72},"b":{"w":60,"h":75}},"g":5},"deerling":{"n":585,"f":{"w":46,"h":71},"b":{"w":52,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5},"deerlingsummer":{"n":585,"i":1091,"f":{"w":46,"h":71},"b":{"w":51,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5,"s":8},"deerlingautumn":{"n":585,"i":1090,"f":{"w":46,"h":71},"b":{"w":50,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5,"s":8},"deerlingwinter":{"n":585,"i":1092,"f":{"w":46,"h":71},"b":{"w":51,"h":70},"bw":{"f":{"w":35,"h":50},"b":{"w":34,"h":51}},"g":5,"s":8},"sawsbuck":{"n":586,"f":{"w":53,"h":100},"b":{"w":62,"h":98},"bw":{"f":{"w":45,"h":78},"b":{"w":53,"h":78}},"g":5},"sawsbucksummer":{"n":586,"i":1094,"f":{"w":75,"h":110},"b":{"w":71,"h":108},"bw":{"f":{"w":71,"h":84},"b":{"w":71,"h":85}},"g":5,"s":8},"sawsbuckautumn":{"n":586,"i":1093,"f":{"w":78,"h":109},"b":{"w":71,"h":108},"bw":{"f":{"w":60,"h":85},"b":{"w":67,"h":82}},"g":5,"s":8},"sawsbuckwinter":{"n":586,"i":1095,"f":{"w":57,"h":101},"b":{"w":63,"h":99},"bw":{"f":{"w":50,"h":78},"b":{"w":57,"h":78}},"g":5,"s":8},"emolga":{"n":587,"f":{"w":66,"h":59},"b":{"w":78,"h":60},"bw":{"f":{"w":83,"h":76},"b":{"w":93,"h":76}},"g":5},"karrablast":{"n":588,"f":{"w":44,"h":67},"b":{"w":38,"h":67},"bw":{"f":{"w":32,"h":54},"b":{"w":33,"h":55}},"g":5},"escavalier":{"n":589,"f":{"w":105,"h":101},"b":{"w":108,"h":99},"bw":{"f":{"w":80,"h":75},"b":{"w":82,"h":77}},"g":5},"foongus":{"n":590,"f":{"w":47,"h":48},"b":{"w":47,"h":48},"bw":{"f":{"w":35,"h":36},"b":{"w":36,"h":35}},"g":5},"amoonguss":{"n":591,"il":1465,"f":{"w":78,"h":75},"b":{"w":74,"h":75},"bw":{"f":{"w":62,"h":57},"b":{"w":67,"h":60}},"g":5},"frillish":{"n":592,"if":1096,"f":{"w":68,"h":86},"ff":{"w":74,"h":87},"b":{"w":73,"h":91},"bf":{"w":72,"h":86},"bw":{"f":{"w":65,"h":72},"ff":{"w":64,"h":70},"b":{"w":65,"h":72},"bf":{"w":63,"h":70}},"g":5},"jellicent":{"n":593,"if":1097,"f":{"w":86,"h":105},"ff":{"w":99,"h":103},"b":{"w":87,"h":105},"bf":{"w":96,"h":106},"bw":{"f":{"w":84,"h":84},"ff":{"w":85,"h":86},"b":{"w":90,"h":83},"bf":{"w":87,"h":82}},"g":5},"alomomola":{"n":594,"f":{"w":44,"h":100},"b":{"w":56,"h":108},"bw":{"f":{"w":38,"h":88},"b":{"w":40,"h":89}},"g":5},"joltik":{"n":595,"f":{"w":47,"h":31},"b":{"w":47,"h":33},"bw":{"f":{"w":43,"h":37},"b":{"w":42,"h":35}},"g":5},"galvantula":{"n":596,"f":{"w":93,"h":49},"b":{"w":94,"h":53},"bw":{"f":{"w":68,"h":56},"b":{"w":69,"h":48}},"g":5},"ferroseed":{"n":597,"f":{"w":51,"h":64},"b":{"w":56,"h":64},"bw":{"f":{"w":31,"h":42},"b":{"w":33,"h":42}},"g":5},"ferrothorn":{"n":598,"f":{"w":128,"h":70},"b":{"w":138,"h":70},"bw":{"f":{"w":70,"h":78},"b":{"w":62,"h":78}},"g":5},"klink":{"n":599,"il":1466,"f":{"w":78,"h":73},"b":{"w":66,"h":74},"bw":{"f":{"w":43,"h":41},"b":{"w":43,"h":41}},"g":5},"klang":{"n":600,"il":1467,"f":{"w":84,"h":79},"b":{"w":84,"h":81},"bw":{"f":{"w":58,"h":51},"b":{"w":54,"h":56}},"g":5},"klinklang":{"n":601,"il":1468,"f":{"w":124,"h":72},"b":{"w":113,"h":75},"bw":{"f":{"w":70,"h":58},"b":{"w":69,"h":61}},"g":5},"tynamo":{"n":602,"f":{"w":49,"h":26},"b":{"w":46,"h":26},"bw":{"f":{"w":57,"h":19},"b":{"w":57,"h":20}},"g":5},"eelektrik":{"n":603,"f":{"w":74,"h":80},"b":{"w":86,"h":92},"bw":{"f":{"w":50,"h":69},"b":{"w":56,"h":72}},"g":5},"eelektross":{"n":604,"f":{"w":111,"h":70},"b":{"w":100,"h":73},"bw":{"f":{"w":96,"h":79},"b":{"w":87,"h":90}},"g":5},"elgyem":{"n":605,"f":{"w":33,"h":67},"b":{"w":33,"h":67},"bw":{"f":{"w":34,"h":51},"b":{"w":31,"h":51}},"g":5},"beheeyem":{"n":606,"f":{"w":49,"h":84},"b":{"w":47,"h":84},"bw":{"f":{"w":44,"h":67},"b":{"w":41,"h":66}},"g":5},"litwick":{"n":607,"il":1469,"f":{"w":43,"h":68},"b":{"w":42,"h":67},"bw":{"f":{"w":33,"h":44},"b":{"w":34,"h":45}},"g":5},"lampent":{"n":608,"f":{"w":98,"h":82},"b":{"w":76,"h":81},"bw":{"f":{"w":68,"h":63},"b":{"w":86,"h":62}},"g":5},"chandelure":{"n":609,"f":{"w":123,"h":108},"b":{"w":115,"h":110},"bw":{"f":{"w":92,"h":90},"b":{"w":92,"h":90}},"g":5},"axew":{"n":610,"f":{"w":47,"h":66},"b":{"w":49,"h":66},"bw":{"f":{"w":39,"h":45},"b":{"w":37,"h":46}},"g":5},"fraxure":{"n":611,"f":{"w":111,"h":78},"b":{"w":124,"h":76},"bw":{"f":{"w":63,"h":62},"b":{"w":72,"h":63}},"g":5},"haxorus":{"n":612,"f":{"w":115,"h":118},"b":{"w":146,"h":110},"bw":{"f":{"w":71,"h":85},"b":{"w":90,"h":88}},"g":5},"cubchoo":{"n":613,"f":{"w":51,"h":59},"b":{"w":41,"h":59},"bw":{"f":{"w":32,"h":38},"b":{"w":33,"h":37}},"g":5},"beartic":{"n":614,"f":{"w":105,"h":104},"b":{"w":95,"h":104},"bw":{"f":{"w":78,"h":76},"b":{"w":74,"h":74}},"g":5},"cryogonal":{"n":615,"f":{"w":78,"h":99},"b":{"w":74,"h":98},"bw":{"f":{"w":74,"h":86},"b":{"w":78,"h":86}},"g":5},"shelmet":{"n":616,"f":{"w":59,"h":49},"b":{"w":67,"h":49},"bw":{"f":{"w":48,"h":40},"b":{"w":48,"h":40}},"g":5},"accelgor":{"n":617,"f":{"w":92,"h":82},"b":{"w":138,"h":85},"bw":{"f":{"w":65,"h":75},"b":{"w":60,"h":78}},"g":5},"stunfisk":{"n":618,"f":{"w":98,"h":15},"b":{"w":93,"h":15},"bw":{"f":{"w":60,"h":46},"b":{"w":77,"h":33}},"g":5},"stunfiskgalar":{"n":618,"i":1211,"f":{"w":100,"h":61},"b":{"w":77,"h":60},"g":8,"s":8},"mienfoo":{"n":619,"f":{"w":58,"h":67},"b":{"w":58,"h":67},"bw":{"f":{"w":42,"h":66},"b":{"w":39,"h":64}},"g":5},"mienshao":{"n":620,"f":{"w":105,"h":96},"b":{"w":114,"h":93},"bw":{"f":{"w":87,"h":70},"b":{"w":80,"h":66}},"g":5},"druddigon":{"n":621,"f":{"w":123,"h":104},"b":{"w":125,"h":102},"bw":{"f":{"w":89,"h":74},"b":{"w":93,"h":82}},"g":5},"golett":{"n":622,"il":1470,"f":{"w":62,"h":65},"b":{"w":47,"h":65},"bw":{"f":{"w":58,"h":56},"b":{"w":56,"h":59}},"g":5},"golurk":{"n":623,"il":1471,"f":{"w":89,"h":108},"b":{"w":73,"h":110},"bw":{"f":{"w":83,"h":81},"b":{"w":77,"h":80}},"g":5},"pawniard":{"n":624,"f":{"w":46,"h":68},"b":{"w":48,"h":65},"bw":{"f":{"w":50,"h":46},"b":{"w":42,"h":45}},"g":5},"bisharp":{"n":625,"f":{"w":52,"h":99},"b":{"w":39,"h":97},"bw":{"f":{"w":58,"h":75},"b":{"w":58,"h":75}},"g":5},"bouffalant":{"n":626,"f":{"w":111,"h":87},"b":{"w":102,"h":81},"bw":{"f":{"w":82,"h":60},"b":{"w":88,"h":54}},"g":5},"rufflet":{"n":627,"f":{"w":45,"h":65},"b":{"w":59,"h":63},"bw":{"f":{"w":34,"h":55},"b":{"w":35,"h":56}},"g":5},"braviary":{"n":628,"f":{"w":207,"h":184},"b":{"w":192,"h":180},"bw":{"f":{"w":102,"h":110},"b":{"w":91,"h":119}},"g":5},"braviaryhisui":{"n":628,"i":1249,"f":{"w":181,"h":164},"b":{"w":173,"h":166},"g":8,"s":8},"vullaby":{"n":629,"f":{"w":64,"h":69},"b":{"w":60,"h":70},"bw":{"f":{"w":61,"h":62},"b":{"w":58,"h":61}},"g":5},"mandibuzz":{"n":630,"f":{"w":150,"h":126},"b":{"w":129,"h":124},"bw":{"f":{"w":57,"h":71},"b":{"w":54,"h":72}},"g":5},"heatmor":{"n":631,"f":{"w":77,"h":83},"b":{"w":82,"h":80},"bw":{"f":{"w":94,"h":57},"b":{"w":101,"h":59}},"g":5},"durant":{"n":632,"f":{"w":64,"h":38},"b":{"w":70,"h":39},"bw":{"f":{"w":54,"h":32},"b":{"w":53,"h":36}},"g":5},"deino":{"n":633,"f":{"w":43,"h":76},"b":{"w":55,"h":72},"bw":{"f":{"w":49,"h":50},"b":{"w":45,"h":50}},"g":5},"zweilous":{"n":634,"f":{"w":98,"h":86},"b":{"w":83,"h":74},"bw":{"f":{"w":67,"h":63},"b":{"w":66,"h":67}},"g":5},"hydreigon":{"n":635,"f":{"w":137,"h":130},"b":{"w":123,"h":134},"bw":{"f":{"w":90,"h":108},"b":{"w":84,"h":112}},"g":5},"larvesta":{"n":636,"f":{"w":62,"h":68},"b":{"w":68,"h":68},"bw":{"f":{"w":46,"h":49},"b":{"w":52,"h":47}},"g":5},"volcarona":{"n":637,"f":{"w":129,"h":93},"b":{"w":133,"h":101},"bw":{"f":{"w":92,"h":83},"b":{"w":91,"h":71}},"g":5},"cobalion":{"n":638,"f":{"w":56,"h":109},"b":{"w":72,"h":105},"bw":{"f":{"w":56,"h":79},"b":{"w":60,"h":81}},"g":5},"terrakion":{"n":639,"f":{"w":99,"h":84},"b":{"w":105,"h":81},"bw":{"f":{"w":81,"h":61},"b":{"w":86,"h":57}},"g":5},"virizion":{"n":640,"f":{"w":76,"h":97},"b":{"w":78,"h":98},"bw":{"f":{"w":61,"h":73},"b":{"w":60,"h":69}},"g":5},"tornadus":{"n":641,"f":{"w":82,"h":100},"b":{"w":89,"h":107},"bw":{"f":{"w":102,"h":98},"b":{"w":102,"h":99}},"g":5},"tornadustherian":{"n":641,"i":1098,"f":{"w":152,"h":135},"b":{"w":139,"h":137},"bw":{"f":{"w":149,"h":91},"b":{"w":124,"h":89}},"g":5,"s":8},"thundurus":{"n":642,"f":{"w":96,"h":103},"b":{"w":107,"h":117},"bw":{"f":{"w":109,"h":90},"b":{"w":109,"h":95}},"g":5},"thundurustherian":{"n":642,"i":1099,"f":{"w":129,"h":108},"b":{"w":145,"h":115},"bw":{"f":{"w":129,"h":98},"b":{"w":134,"h":109}},"g":5,"s":9},"reshiram":{"n":643,"f":{"w":163,"h":115},"b":{"w":165,"h":108},"bw":{"f":{"w":107,"h":84},"b":{"w":100,"h":90}},"g":5},"zekrom":{"n":644,"f":{"w":116,"h":136},"b":{"w":164,"h":135},"bw":{"f":{"w":102,"h":92},"b":{"w":108,"h":91}},"g":5},"landorus":{"n":645,"f":{"w":84,"h":93},"b":{"w":91,"h":104},"bw":{"f":{"w":87,"h":79},"b":{"w":86,"h":78}},"g":5},"landorustherian":{"n":645,"i":1100,"f":{"w":73,"h":94},"b":{"w":79,"h":94},"bw":{"f":{"w":92,"h":90},"b":{"w":90,"h":92}},"g":5,"s":8},"kyurem":{"n":646,"il":1474,"f":{"w":109,"h":91},"b":{"w":114,"h":86},"bw":{"f":{"w":99,"h":77},"b":{"w":80,"h":72}},"g":5},"kyuremblack":{"n":646,"i":1101,"il":1472,"f":{"w":124,"h":132},"b":{"w":147,"h":127},"bw":{"f":{"w":104,"h":107},"b":{"w":105,"h":113}},"g":5,"s":6},"kyuremwhite":{"n":646,"i":1102,"il":1473,"f":{"w":141,"h":133},"b":{"w":177,"h":129},"bw":{"f":{"w":103,"h":95},"b":{"w":117,"h":100}},"g":5,"s":6},"keldeo":{"n":647,"f":{"w":60,"h":88},"b":{"w":75,"h":87},"bw":{"f":{"w":64,"h":64},"b":{"w":61,"h":66}},"g":5},"keldeoresolute":{"n":647,"i":1103,"il":1475,"f":{"w":78,"h":86},"b":{"w":73,"h":82},"bw":{"f":{"w":76,"h":77},"b":{"w":78,"h":80}},"g":5,"s":6},"meloetta":{"n":648,"il":1476,"f":{"w":37,"h":71},"b":{"w":36,"h":70},"bw":{"f":{"w":49,"h":63},"b":{"w":40,"h":58}},"g":5},"meloettapirouette":{"n":648,"i":1104,"f":{"w":59,"h":89},"b":{"w":48,"h":89},"bw":{"f":{"w":46,"h":76},"b":{"w":40,"h":75}},"g":5,"s":8},"genesect":{"n":649,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5},"genesectdouse":{"n":649,"i":1295,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"genesectshock":{"n":649,"i":1296,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"genesectburn":{"n":649,"i":1297,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"genesectchill":{"n":649,"i":1298,"f":{"w":70,"h":92},"b":{"w":73,"h":88},"bw":{"f":{"w":61,"h":71},"b":{"w":69,"h":70}},"g":5,"s":8},"chespin":{"n":650,"f":{"w":50,"h":64},"b":{"w":45,"h":65},"g":6},"quilladin":{"n":651,"f":{"w":73,"h":68},"b":{"w":69,"h":67},"bw":{"f":{"w":60,"h":53},"b":{"w":59,"h":54}},"g":6},"chesnaught":{"n":652,"f":{"w":128,"h":106},"b":{"w":131,"h":111},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"m":["gen5ani-shiny","gen5ani-back-shiny"]},"fennekin":{"n":653,"f":{"w":51,"h":59},"b":{"w":48,"h":59},"bw":{"f":{"w":44,"h":45},"b":{"w":46,"h":44}},"g":6},"braixen":{"n":654,"f":{"w":74,"h":86},"b":{"w":71,"h":87},"bw":{"f":{"w":63,"h":69},"b":{"w":55,"h":69}},"g":6},"delphox":{"n":655,"f":{"w":95,"h":110},"b":{"w":100,"h":121},"g":6},"froakie":{"n":656,"f":{"w":45,"h":52},"b":{"w":46,"h":52},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"frogadier":{"n":657,"f":{"w":73,"h":58},"b":{"w":70,"h":55},"g":6},"greninja":{"n":658,"il":1477,"f":{"w":131,"h":76},"b":{"w":123,"h":73},"bw":{"f":{"w":96,"h":96}},"g":6},"greninjabond":{"n":658,"il":1477,"g":7,"s":8},"greninjaash":{"n":658,"i":1169,"il":1478,"f":{"w":82,"h":90},"b":{"w":108,"h":93},"g":7,"s":8},"bunnelby":{"n":659,"f":{"w":64,"h":92},"b":{"w":54,"h":88},"g":6},"diggersby":{"n":660,"f":{"w":121,"h":105},"b":{"w":100,"h":100},"g":6},"fletchling":{"n":661,"f":{"w":47,"h":43},"b":{"w":55,"h":44},"bw":{"f":{"w":96,"h":96},"b":{"w":38,"h":40}},"g":6},"fletchinder":{"n":662,"f":{"w":109,"h":107},"b":{"w":100,"h":106},"bw":{"f":{"w":75,"h":86},"b":{"w":70,"h":87}},"g":6},"talonflame":{"n":663,"f":{"w":152,"h":185},"b":{"w":114,"h":185},"bw":{"f":{"w":128,"h":96},"b":{"w":128,"h":96}},"g":6},"scatterbug":{"n":664,"f":{"w":38,"h":56},"b":{"w":41,"h":56},"bw":{"f":{"w":28,"h":46},"b":{"w":28,"h":49}},"g":6},"spewpa":{"n":665,"f":{"w":44,"h":43},"b":{"w":42,"h":43},"bw":{"f":{"w":81,"h":45},"b":{"w":81,"h":45}},"g":6},"vivillon":{"n":666,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6},"vivillonarchipelago":{"n":666,"i":1105,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivilloncontinental":{"n":666,"i":1106,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonelegant":{"n":666,"i":1107,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillongarden":{"n":666,"i":1109,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonhighplains":{"n":666,"i":1110,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonicysnow":{"n":666,"i":1111,"f":{"w":104,"h":104},"b":{"w":96,"h":113},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonjungle":{"n":666,"i":1112,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonmarine":{"n":666,"i":1113,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonmodern":{"n":666,"i":1114,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonmonsoon":{"n":666,"i":1115,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonocean":{"n":666,"i":1116,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonpolar":{"n":666,"i":1118,"f":{"w":104,"h":104},"b":{"w":96,"h":113},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonriver":{"n":666,"i":1119,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonsandstorm":{"n":666,"i":1120,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonsavanna":{"n":666,"i":1121,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonsun":{"n":666,"i":1122,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillontundra":{"n":666,"i":1123,"f":{"w":104,"h":104},"b":{"w":101,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonfancy":{"n":666,"i":1108,"f":{"w":104,"h":104},"b":{"w":98,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"vivillonpokeball":{"n":666,"i":1117,"f":{"w":104,"h":104},"b":{"w":98,"h":112},"bw":{"f":{"w":67,"h":74},"b":{"w":67,"h":73}},"g":6,"s":8},"litleo":{"n":667,"f":{"w":51,"h":61},"b":{"w":61,"h":59},"bw":{"f":{"w":42,"h":49},"b":{"w":43,"h":48}},"g":6},"pyroar":{"n":668,"if":1124,"f":{"w":79,"h":99},"ff":{"w":68,"h":95},"b":{"w":127,"h":100},"bf":{"w":112,"h":100},"bw":{"f":{"w":79,"h":77},"ff":{"w":80,"h":78},"b":{"w":80,"h":74},"bf":{"w":89,"h":78}},"g":6},"flabebe":{"n":669,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6},"flabebeblue":{"n":669,"i":1125,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"flabebeorange":{"n":669,"i":1126,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"flabebewhite":{"n":669,"i":1127,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"flabebeyellow":{"n":669,"i":1128,"f":{"w":76,"h":78},"b":{"w":75,"h":79},"bw":{"f":{"w":44,"h":63}},"g":6,"s":7},"floette":{"n":670,"f":{"w":61,"h":95},"b":{"w":62,"h":97},"bw":{"f":{"w":96,"h":96}},"g":6},"floetteblue":{"n":670,"i":1129,"f":{"w":61,"h":95},"b":{"w":60,"h":96},"g":6,"s":7},"floetteorange":{"n":670,"i":1131,"f":{"w":61,"h":95},"b":{"w":60,"h":96},"g":6,"s":7},"floettewhite":{"n":670,"i":1132,"f":{"w":61,"h":95},"b":{"w":60,"h":96},"g":6,"s":7},"floetteyellow":{"n":670,"i":1133,"f":{"w":61,"h":95},"b":{"w":61,"h":96},"g":6,"s":7},"floetteeternal":{"n":670,"i":1130,"f":{"w":81,"h":90},"b":{"w":86,"h":99},"g":6,"s":7},"florges":{"n":671,"f":{"w":80,"h":100},"b":{"w":75,"h":105},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"florgesblue":{"n":671,"i":1134,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"florgesorange":{"n":671,"i":1135,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"florgeswhite":{"n":671,"i":1136,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"florgesyellow":{"n":671,"i":1137,"f":{"w":80,"h":100},"b":{"w":69,"h":105},"g":6,"s":7},"skiddo":{"n":672,"f":{"w":48,"h":63},"b":{"w":57,"h":62},"bw":{"f":{"w":44,"h":58},"b":{"w":44,"h":58}},"g":6},"gogoat":{"n":673,"f":{"w":57,"h":83},"b":{"w":69,"h":81},"g":6},"pancham":{"n":674,"f":{"w":47,"h":64},"b":{"w":43,"h":63},"bw":{"f":{"w":50,"h":50},"b":{"w":96,"h":96}},"g":6},"pangoro":{"n":675,"f":{"w":97,"h":102},"b":{"w":105,"h":101},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"furfrou":{"n":676,"f":{"w":47,"h":84},"b":{"w":61,"h":81},"g":6},"furfroudandy":{"n":676,"i":1138,"f":{"w":56,"h":80},"b":{"w":55,"h":77},"g":6,"s":7},"furfroudebutante":{"n":676,"i":1139,"il":1479,"f":{"w":56,"h":77},"b":{"w":60,"h":72},"g":6,"s":7},"furfroudiamond":{"n":676,"i":1140,"f":{"w":51,"h":86},"b":{"w":55,"h":84},"g":6,"s":7},"furfrouheart":{"n":676,"i":1141,"f":{"w":52,"h":83},"b":{"w":54,"h":82},"g":6,"s":7},"furfroukabuki":{"n":676,"i":1142,"f":{"w":53,"h":78},"b":{"w":57,"h":76},"g":6,"s":7},"furfroulareine":{"n":676,"i":1143,"f":{"w":49,"h":79},"b":{"w":53,"h":76},"g":6,"s":7},"furfroumatron":{"n":676,"i":1144,"f":{"w":54,"h":75},"b":{"w":55,"h":73},"g":6,"s":7},"furfroupharaoh":{"n":676,"i":1145,"f":{"w":49,"h":84},"b":{"w":52,"h":81},"g":6,"s":7},"furfroustar":{"n":676,"i":1146,"f":{"w":53,"h":84},"b":{"w":58,"h":82},"g":6,"s":7},"espurr":{"n":677,"f":{"w":47,"h":58},"b":{"w":43,"h":58},"g":6},"meowstic":{"n":678,"if":1147,"f":{"w":55,"h":72},"ff":{"w":64,"h":73},"b":{"w":68,"h":74},"bf":{"w":70,"h":75},"g":6},"meowsticf":{"n":678,"i":1147,"f":{"w":64,"h":73},"b":{"w":70,"h":75},"g":6,"s":8},"honedge":{"n":679,"f":{"w":76,"h":79},"b":{"w":63,"h":77},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"doublade":{"n":680,"f":{"w":121,"h":76},"b":{"w":103,"h":73},"g":6},"aegislash":{"n":681,"f":{"w":75,"h":97},"b":{"w":68,"h":98},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"aegislashblade":{"n":681,"i":1148,"f":{"w":82,"h":104},"b":{"w":75,"h":105},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6,"s":9},"spritzee":{"n":682,"f":{"w":69,"h":61},"b":{"w":65,"h":62},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"aromatisse":{"n":683,"f":{"w":67,"h":80},"b":{"w":65,"h":79},"g":6},"swirlix":{"n":684,"f":{"w":47,"h":49},"b":{"w":50,"h":50},"bw":{"f":{"w":45,"h":53},"b":{"w":43,"h":52}},"g":6},"slurpuff":{"n":685,"f":{"w":68,"h":70},"b":{"w":61,"h":70},"bw":{"f":{"w":62,"h":69}},"g":6},"inkay":{"n":686,"f":{"w":68,"h":61},"b":{"w":54,"h":63},"bw":{"f":{"w":96,"h":96}},"g":6},"malamar":{"n":687,"f":{"w":130,"h":105},"b":{"w":115,"h":105},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"binacle":{"n":688,"f":{"w":76,"h":71},"b":{"w":69,"h":67},"bw":{"f":{"w":54,"h":58},"b":{"w":54,"h":56}},"g":6},"barbaracle":{"n":689,"il":1480,"f":{"w":118,"h":109},"b":{"w":100,"h":105},"g":6},"skrelp":{"n":690,"f":{"w":43,"h":77},"b":{"w":43,"h":76},"g":6},"dragalge":{"n":691,"f":{"w":139,"h":137},"b":{"w":141,"h":141},"bw":{"f":{"w":98,"h":98}},"g":6},"clauncher":{"n":692,"il":1481,"f":{"w":70,"h":52},"b":{"w":68,"h":50},"bw":{"f":{"w":63,"h":35},"b":{"w":63,"h":35}},"g":6},"clawitzer":{"n":693,"il":1482,"f":{"w":138,"h":95},"b":{"w":146,"h":127},"bw":{"f":{"w":118,"h":90},"b":{"w":111,"h":83}},"g":6},"helioptile":{"n":694,"f":{"w":58,"h":54},"b":{"w":65,"h":51},"bw":{"f":{"w":62,"h":50},"b":{"w":61,"h":48}},"g":6},"heliolisk":{"n":695,"f":{"w":71,"h":78},"b":{"w":102,"h":74},"g":6},"tyrunt":{"n":696,"f":{"w":65,"h":68},"b":{"w":77,"h":66},"bw":{"f":{"w":61,"h":50},"b":{"w":66,"h":50}},"g":6},"tyrantrum":{"n":697,"f":{"w":100,"h":108},"b":{"w":140,"h":108},"bw":{"f":{"w":100,"h":82},"b":{"w":100,"h":78}},"g":6},"amaura":{"n":698,"f":{"w":52,"h":90},"b":{"w":62,"h":85},"bw":{"f":{"w":38,"h":60},"b":{"w":45,"h":58}},"g":6},"aurorus":{"n":699,"f":{"w":67,"h":123},"b":{"w":109,"h":111},"g":6},"sylveon":{"n":700,"il":1483,"f":{"w":59,"h":86},"b":{"w":67,"h":83},"bw":{"f":{"w":51,"h":62},"b":{"w":55,"h":64}},"g":6},"hawlucha":{"n":701,"f":{"w":98,"h":72},"b":{"w":82,"h":72},"g":6},"dedenne":{"n":702,"f":{"w":68,"h":50},"b":{"w":69,"h":51},"bw":{"f":{"w":47,"h":36},"b":{"w":47,"h":35}},"g":6},"carbink":{"n":703,"f":{"w":54,"h":57},"b":{"w":46,"h":58},"bw":{"f":{"w":40,"h":49},"b":{"w":40,"h":49}},"g":6},"goomy":{"n":704,"f":{"w":39,"h":50},"b":{"w":52,"h":50},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"sliggoo":{"n":705,"f":{"w":42,"h":82},"b":{"w":47,"h":81},"bw":{"f":{"w":44,"h":64},"b":{"w":43,"h":63}},"g":6},"sliggoohisui":{"n":705,"i":1250,"f":{"w":61,"h":84},"b":{"w":67,"h":75},"bw":{"f":{"w":61,"h":65}},"g":8,"s":7},"goodra":{"n":706,"f":{"w":60,"h":102},"b":{"w":71,"h":101},"bw":{"f":{"w":72,"h":82}},"g":6},"goodrahisui":{"n":706,"i":1251,"f":{"w":71,"h":115},"b":{"w":99,"h":123},"bw":{"f":{"w":88,"h":91},"b":{"w":89,"h":93}},"g":8,"s":6},"klefki":{"n":707,"il":1484,"f":{"w":69,"h":88},"b":{"w":65,"h":88},"bw":{"f":{"w":108,"h":97},"b":{"w":108,"h":96}},"g":6},"phantump":{"n":708,"f":{"w":67,"h":60},"b":{"w":64,"h":61},"bw":{"f":{"w":70,"h":63},"b":{"w":67,"h":63}},"g":6},"trevenant":{"n":709,"f":{"w":131,"h":109},"b":{"w":102,"h":98},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":6},"pumpkaboo":{"n":710,"f":{"w":56,"h":59},"b":{"w":44,"h":58},"g":6},"pumpkaboosmall":{"n":710,"f":{"w":48,"h":50},"b":{"w":43,"h":48},"g":6,"s":9},"pumpkaboolarge":{"n":710,"f":{"w":62,"h":65},"b":{"w":56,"h":64},"g":6,"s":9},"pumpkaboosuper":{"n":710,"f":{"w":62,"h":65},"b":{"w":70,"h":76},"g":6,"s":9},"gourgeist":{"n":711,"f":{"w":53,"h":83},"b":{"w":49,"h":84},"g":6},"gourgeistsmall":{"n":711,"f":{"w":46,"h":74},"b":{"w":43,"h":74},"g":6,"s":9},"gourgeistlarge":{"n":711,"f":{"w":53,"h":83},"b":{"w":54,"h":92},"g":6,"s":9},"gourgeistsuper":{"n":711,"f":{"w":53,"h":83},"b":{"w":64,"h":110},"g":6,"s":9},"bergmite":{"n":712,"f":{"w":50,"h":60},"b":{"w":51,"h":61},"bw":{"f":{"w":42,"h":44},"b":{"w":40,"h":44}},"g":6},"avalugg":{"n":713,"f":{"w":121,"h":57},"b":{"w":120,"h":58},"bw":{"f":{"w":84,"h":66},"b":{"w":92,"h":66}},"g":6},"avalugghisui":{"n":713,"i":1252,"f":{"w":109,"h":46},"b":{"w":129,"h":50},"g":8,"s":7},"noibat":{"n":714,"f":{"w":85,"h":96},"b":{"w":64,"h":98},"bw":{"f":{"w":66,"h":70},"b":{"w":68,"h":68}},"g":6},"noivern":{"n":715,"f":{"w":184,"h":156},"b":{"w":162,"h":157},"bw":{"f":{"w":96,"h":96}},"g":6,"m":["gen5ani-shiny"]},"xerneas":{"n":716,"f":{"w":106,"h":127},"b":{"w":94,"h":128},"bw":{"f":{"w":81,"h":96}},"g":6},"xerneasneutral":{"n":716,"i":1149,"f":{"w":106,"h":127},"b":{"w":94,"h":128},"g":6,"s":7,"nd":true},"yveltal":{"n":717,"f":{"w":201,"h":188},"b":{"w":186,"h":194},"bw":{"f":{"w":113,"h":104}},"g":6},"zygarde":{"n":718,"il":1485,"f":{"w":96,"h":107},"b":{"w":113,"h":123},"bw":{"f":{"w":88,"h":92},"b":{"w":87,"h":93}},"g":6},"zygarde10":{"n":718,"i":1170,"il":1486,"f":{"w":59,"h":73},"b":{"w":65,"h":71},"bw":{"f":{"w":61,"h":69},"b":{"w":64,"h":67}},"g":7,"s":7},"zygardecomplete":{"n":718,"i":1171,"il":1487,"f":{"w":158,"h":110},"b":{"w":145,"h":111},"g":7,"s":7},"diancie":{"n":719,"f":{"w":50,"h":90},"b":{"w":42,"h":93},"bw":{"f":{"w":63,"h":81},"b":{"w":61,"h":80}},"g":6},"dianciemega":{"n":719,"i":1369,"f":{"w":117,"h":114},"b":{"w":123,"h":123},"g":6,"s":7},"hoopa":{"n":720,"f":{"w":73,"h":68},"b":{"w":67,"h":71},"bw":{"f":{"w":90,"h":62}},"g":6},"hoopaunbound":{"n":720,"i":1150,"f":{"w":131,"h":126},"b":{"w":146,"h":130},"bw":{"f":{"w":105,"h":103}},"g":6,"s":5},"volcanion":{"n":721,"f":{"w":96,"h":91},"b":{"w":92,"h":96},"bw":{"f":{"w":81,"h":89}},"g":6},"rowlet":{"n":722,"f":{"w":43,"h":50},"b":{"w":43,"h":50},"bw":{"f":{"w":63,"h":35},"b":{"w":63,"h":35}},"g":7},"dartrix":{"n":723,"il":1488,"f":{"w":45,"h":68},"b":{"w":44,"h":68},"g":7},"decidueye":{"n":724,"f":{"w":61,"h":100},"b":{"w":59,"h":101},"g":7},"decidueyehisui":{"n":724,"i":1253,"f":{"w":64,"h":99},"b":{"w":62,"h":99},"g":8,"s":9},"litten":{"n":725,"f":{"w":55,"h":58},"b":{"w":61,"h":59},"bw":{"f":{"w":48,"h":49},"b":{"w":48,"h":50}},"g":7},"torracat":{"n":726,"f":{"w":86,"h":74},"b":{"w":91,"h":75},"g":7},"incineroar":{"n":727,"f":{"w":131,"h":96},"b":{"w":117,"h":93},"bw":{"f":{"w":87,"h":86},"b":{"w":88,"h":92}},"g":7},"popplio":{"n":728,"f":{"w":58,"h":49},"b":{"w":62,"h":48},"bw":{"f":{"w":46,"h":55},"b":{"w":43,"h":59}},"g":7},"brionne":{"n":729,"f":{"w":67,"h":71},"b":{"w":77,"h":69},"bw":{"f":{"w":64,"h":65},"b":{"w":68,"h":66}},"g":7},"primarina":{"n":730,"f":{"w":82,"h":108},"b":{"w":101,"h":132},"bw":{"f":{"w":91,"h":84},"b":{"w":84,"h":84}},"g":7},"pikipek":{"n":731,"f":{"w":38,"h":56},"b":{"w":43,"h":56},"bw":{"f":{"w":38,"h":42},"b":{"w":36,"h":42}},"g":7},"trumbeak":{"n":732,"f":{"w":89,"h":96},"b":{"w":91,"h":92},"bw":{"f":{"w":47,"h":52},"b":{"w":44,"h":52}},"g":7},"toucannon":{"n":733,"f":{"w":88,"h":76},"b":{"w":71,"h":76},"bw":{"f":{"w":89,"h":64},"b":{"w":93,"h":64}},"g":7},"yungoos":{"n":734,"f":{"w":71,"h":36},"b":{"w":99,"h":34},"bw":{"f":{"w":61,"h":37},"b":{"w":65,"h":39}},"g":7},"gumshoos":{"n":735,"f":{"w":59,"h":79},"b":{"w":85,"h":78},"bw":{"f":{"w":71,"h":62},"b":{"w":71,"h":67}},"g":7},"gumshoostotem":{"n":735,"f":{"w":86,"h":103},"b":{"w":113,"h":108},"g":7,"s":8},"grubbin":{"n":736,"f":{"w":57,"h":37},"b":{"w":56,"h":39},"bw":{"f":{"w":43,"h":24},"b":{"w":37,"h":24}},"g":7},"charjabug":{"n":737,"f":{"w":67,"h":48},"b":{"w":74,"h":47},"bw":{"f":{"w":45,"h":32},"b":{"w":47,"h":32}},"g":7},"vikavolt":{"n":738,"f":{"w":123,"h":78},"b":{"w":110,"h":79},"bw":{"f":{"w":74,"h":72},"b":{"w":74,"h":74}},"g":7},"vikavolttotem":{"n":738,"f":{"w":154,"h":98},"b":{"w":132,"h":99},"g":7,"s":8},"crabrawler":{"n":739,"f":{"w":73,"h":62},"b":{"w":74,"h":61},"bw":{"f":{"w":72,"h":57},"b":{"w":74,"h":57}},"g":7},"crabominable":{"n":740,"f":{"w":122,"h":78},"b":{"w":105,"h":73},"bw":{"f":{"w":101,"h":86},"b":{"w":99,"h":86}},"g":7},"oricorio":{"n":741,"f":{"w":64,"h":68},"b":{"w":65,"h":69},"g":7},"oricoriopompom":{"n":741,"i":1172,"f":{"w":68,"h":58},"b":{"w":57,"h":57},"bw":{"f":{"w":63,"h":54},"b":{"w":52,"h":55}},"g":7,"s":8},"oricoriopau":{"n":741,"i":1173,"f":{"w":65,"h":60},"b":{"w":55,"h":59},"bw":{"f":{"w":52,"h":54},"b":{"w":46,"h":55}},"g":7,"s":8},"oricoriosensu":{"n":741,"i":1174,"f":{"w":67,"h":59},"b":{"w":80,"h":59},"bw":{"f":{"w":65,"h":56},"b":{"w":69,"h":56}},"g":7,"s":8},"cutiefly":{"n":742,"f":{"w":60,"h":57},"b":{"w":56,"h":59},"bw":{"f":{"w":41,"h":46},"b":{"w":42,"h":44}},"g":7},"ribombee":{"n":743,"f":{"w":90,"h":64},"b":{"w":94,"h":63},"bw":{"f":{"w":50,"h":64},"b":{"w":54,"h":64}},"g":7},"ribombeetotem":{"n":743,"b":{"w":143,"h":101},"g":7,"s":8},"rockruff":{"n":744,"f":{"w":45,"h":57},"b":{"w":53,"h":58},"bw":{"f":{"w":42,"h":42},"b":{"w":42,"h":47}},"g":7},"rockruffdusk":{"n":744,"g":7,"s":8},"lycanroc":{"n":745,"f":{"w":75,"h":75},"b":{"w":92,"h":73},"bw":{"f":{"w":68,"h":62},"b":{"w":76,"h":60}},"g":7},"lycanrocmidnight":{"n":745,"i":1175,"f":{"w":69,"h":83},"b":{"w":63,"h":78},"bw":{"f":{"w":72,"h":80},"b":{"w":73,"h":77}},"g":7,"s":8},"lycanrocdusk":{"n":745,"i":1192,"f":{"w":73,"h":90},"b":{"w":85,"h":84},"bw":{"f":{"w":60,"h":66}},"g":7,"s":8},"wishiwashi":{"n":746,"f":{"w":55,"h":37},"b":{"w":57,"h":36},"bw":{"f":{"w":37,"h":30},"b":{"w":38,"h":30}},"g":7},"wishiwashischool":{"n":746,"i":1176,"f":{"w":142,"h":103},"b":{"w":161,"h":93},"bw":{"f":{"w":104,"h":89},"b":{"w":100,"h":111}},"g":7,"s":10},"mareanie":{"n":747,"f":{"w":71,"h":60},"b":{"w":71,"h":60},"g":7},"toxapex":{"n":748,"f":{"w":113,"h":82},"b":{"w":114,"h":81},"bw":{"f":{"w":90,"h":77},"b":{"w":91,"h":76}},"g":7},"mudbray":{"n":749,"f":{"w":52,"h":71},"b":{"w":54,"h":68},"bw":{"f":{"w":54,"h":71},"b":{"w":53,"h":67}},"g":7},"mudsdale":{"n":750,"f":{"w":63,"h":89},"b":{"w":74,"h":83},"bw":{"f":{"w":90,"h":85},"b":{"w":93,"h":78}},"g":7},"dewpider":{"n":751,"f":{"w":45,"h":61},"b":{"w":45,"h":61},"bw":{"f":{"w":35,"h":43},"b":{"w":33,"h":44}},"g":7},"araquanid":{"n":752,"f":{"w":101,"h":67},"b":{"w":101,"h":67},"bw":{"f":{"w":84,"h":64},"b":{"w":82,"h":63}},"g":7},"araquanidtotem":{"n":752,"f":{"w":144,"h":97},"b":{"w":144,"h":98},"g":7,"s":9},"fomantis":{"n":753,"f":{"w":41,"h":56},"b":{"w":41,"h":57},"bw":{"f":{"w":30,"h":52},"b":{"w":31,"h":53}},"g":7},"lurantis":{"n":754,"f":{"w":61,"h":85},"b":{"w":64,"h":84},"bw":{"f":{"w":93,"h":68},"b":{"w":92,"h":68}},"g":7},"lurantistotem":{"n":754,"f":{"w":87,"h":113},"b":{"w":91,"h":110},"g":7,"s":8},"morelull":{"n":755,"f":{"w":29,"h":65},"b":{"w":34,"h":65},"bw":{"f":{"w":26,"h":55},"b":{"w":27,"h":55}},"g":7},"shiinotic":{"n":756,"f":{"w":85,"h":70},"b":{"w":85,"h":70},"bw":{"f":{"w":95,"h":70},"b":{"w":93,"h":71}},"g":7},"salandit":{"n":757,"f":{"w":80,"h":47},"b":{"w":108,"h":50},"g":7},"salazzle":{"n":758,"f":{"w":96,"h":88},"b":{"w":123,"h":97},"g":7},"salazzletotem":{"n":758,"f":{"w":113,"h":105},"b":{"w":147,"h":119},"g":7,"s":8},"stufful":{"n":759,"f":{"w":55,"h":54},"b":{"w":56,"h":53},"bw":{"f":{"w":41,"h":55}},"g":7},"bewear":{"n":760,"f":{"w":60,"h":79},"b":{"w":56,"h":80},"bw":{"f":{"w":64,"h":84},"b":{"w":60,"h":78}},"g":7},"bounsweet":{"n":761,"f":{"w":53,"h":51},"b":{"w":51,"h":52},"bw":{"f":{"w":38,"h":42},"b":{"w":40,"h":42}},"g":7},"steenee":{"n":762,"il":1489,"f":{"w":59,"h":77},"b":{"w":48,"h":77},"bw":{"f":{"w":52,"h":55},"b":{"w":52,"h":55}},"g":7},"tsareena":{"n":763,"il":1490,"f":{"w":66,"h":89},"b":{"w":76,"h":87},"g":7},"comfey":{"n":764,"il":1491,"f":{"w":72,"h":94},"b":{"w":96,"h":95},"bw":{"f":{"w":60,"h":83},"b":{"w":58,"h":87}},"g":7},"oranguru":{"n":765,"f":{"w":74,"h":75},"b":{"w":79,"h":69},"g":7},"passimian":{"n":766,"f":{"w":79,"h":74},"b":{"w":122,"h":74},"g":7},"wimpod":{"n":767,"f":{"w":97,"h":37},"b":{"w":138,"h":40},"bw":{"f":{"w":53,"h":42},"b":{"w":49,"h":39}},"g":7},"golisopod":{"n":768,"f":{"w":83,"h":80},"b":{"w":77,"h":83},"g":7},"sandygast":{"n":769,"f":{"w":84,"h":64},"b":{"w":84,"h":64},"bw":{"f":{"w":65,"h":53},"b":{"w":73,"h":52}},"g":7},"palossand":{"n":770,"f":{"w":102,"h":75},"b":{"w":99,"h":77},"bw":{"f":{"w":96,"h":57},"b":{"w":96,"h":57}},"g":7},"pyukumuku":{"n":771,"f":{"w":52,"h":39},"b":{"w":61,"h":39},"bw":{"f":{"w":59,"h":32},"b":{"w":59,"h":32}},"g":7},"typenull":{"n":772,"f":{"w":69,"h":94},"b":{"w":81,"h":92},"bw":{"f":{"w":68,"h":78},"b":{"w":72,"h":78}},"g":7},"silvally":{"n":773,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7},"silvallybug":{"n":773,"i":1299,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallydark":{"n":773,"i":1300,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallydragon":{"n":773,"i":1301,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyelectric":{"n":773,"i":1302,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyfairy":{"n":773,"i":1303,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyfighting":{"n":773,"i":1304,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyfire":{"n":773,"i":1305,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyflying":{"n":773,"i":1306,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyghost":{"n":773,"i":1307,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallygrass":{"n":773,"i":1308,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyground":{"n":773,"i":1309,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyice":{"n":773,"i":1310,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallypoison":{"n":773,"i":1311,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallypsychic":{"n":773,"i":1312,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallyrock":{"n":773,"i":1313,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallysteel":{"n":773,"i":1314,"f":{"w":57,"h":117},"b":{"w":68,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"silvallywater":{"n":773,"i":1315,"f":{"w":57,"h":117},"b":{"w":67,"h":112},"bw":{"f":{"w":68,"h":86},"b":{"w":64,"h":88}},"g":7,"s":8},"minior":{"n":774,"il":1493,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7},"miniororange":{"n":774,"i":1178,"il":1494,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"minioryellow":{"n":774,"i":1179,"il":1495,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorgreen":{"n":774,"i":1180,"il":1496,"f":{"w":77,"h":77},"b":{"w":66,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorblue":{"n":774,"i":1181,"il":1497,"f":{"w":77,"h":77},"b":{"w":68,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorindigo":{"n":774,"i":1182,"il":1499,"f":{"w":77,"h":77},"b":{"w":70,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniorviolet":{"n":774,"i":1183,"il":1498,"f":{"w":77,"h":77},"b":{"w":65,"h":78},"bw":{"f":{"w":84,"h":50},"b":{"w":80,"h":50}},"g":7,"s":6},"miniormeteor":{"n":774,"i":1177,"il":1492,"f":{"w":77,"h":71},"b":{"w":76,"h":72},"bw":{"f":{"w":84,"h":51},"b":{"w":86,"h":52}},"g":7,"s":6},"komala":{"n":775,"f":{"w":65,"h":60},"b":{"w":57,"h":60},"bw":{"f":{"w":49,"h":40},"b":{"w":52,"h":41}},"g":7},"turtonator":{"n":776,"f":{"w":68,"h":74},"b":{"w":71,"h":77},"bw":{"f":{"w":77,"h":65},"b":{"w":69,"h":68}},"g":7},"togedemaru":{"n":777,"f":{"w":63,"h":62},"b":{"w":48,"h":60},"bw":{"f":{"w":40,"h":44},"b":{"w":41,"h":46}},"g":7},"togedemarutotem":{"n":777,"f":{"w":103,"h":100},"b":{"w":100,"h":100},"g":7,"s":10},"mimikyu":{"n":778,"f":{"w":57,"h":67},"b":{"w":54,"h":67},"bw":{"f":{"w":60,"h":48},"b":{"w":57,"h":51}},"g":7},"mimikyubusted":{"n":778,"f":{"w":61,"h":37},"b":{"w":60,"h":37},"bw":{"f":{"w":64,"h":30},"b":{"w":64,"h":32}},"g":7,"s":7},"mimikyutotem":{"n":778,"f":{"w":81,"h":95},"b":{"w":74,"h":97},"g":7,"s":7},"mimikyubustedtotem":{"n":778,"g":7,"s":7},"bruxish":{"n":779,"f":{"w":59,"h":72},"b":{"w":66,"h":70},"bw":{"f":{"w":51,"h":44}},"g":7},"drampa":{"n":780,"f":{"w":87,"h":78},"b":{"w":111,"h":73},"bw":{"f":{"w":78,"h":72},"b":{"w":82,"h":79}},"g":7},"dhelmise":{"n":781,"il":1500,"f":{"w":65,"h":90},"b":{"w":57,"h":91},"bw":{"f":{"w":90,"h":91},"b":{"w":89,"h":92}},"g":7},"jangmoo":{"n":782,"f":{"w":50,"h":60},"b":{"w":63,"h":59},"bw":{"f":{"w":49,"h":52},"b":{"w":49,"h":52}},"g":7},"hakamoo":{"n":783,"f":{"w":89,"h":83},"b":{"w":101,"h":84},"bw":{"f":{"w":76,"h":71},"b":{"w":75,"h":71}},"g":7},"kommoo":{"n":784,"f":{"w":89,"h":95},"b":{"w":121,"h":100},"bw":{"f":{"w":108,"h":88},"b":{"w":112,"h":86}},"g":7},"kommoototem":{"n":784,"f":{"w":115,"h":111},"b":{"w":131,"h":121},"g":7,"s":6},"tapukoko":{"n":785,"f":{"w":71,"h":95},"b":{"w":65,"h":103},"bw":{"f":{"w":89,"h":82},"b":{"w":86,"h":85}},"g":7},"tapulele":{"n":786,"f":{"w":54,"h":84},"b":{"w":61,"h":85},"bw":{"f":{"w":57,"h":68},"b":{"w":58,"h":76}},"g":7},"tapubulu":{"n":787,"f":{"w":85,"h":104},"b":{"w":72,"h":103},"bw":{"f":{"w":89,"h":92},"b":{"w":91,"h":98}},"g":7},"tapufini":{"n":788,"f":{"w":68,"h":92},"b":{"w":67,"h":87},"g":7},"cosmog":{"n":789,"f":{"w":81,"h":59},"b":{"w":63,"h":61},"bw":{"f":{"w":87,"h":57},"b":{"w":92,"h":58}},"g":7},"cosmoem":{"n":790,"f":{"w":65,"h":69},"b":{"w":61,"h":69},"bw":{"f":{"w":62,"h":52},"b":{"w":62,"h":52}},"g":7},"solgaleo":{"n":791,"f":{"w":87,"h":95},"b":{"w":114,"h":91},"bw":{"f":{"w":99,"h":91},"b":{"w":104,"h":87}},"g":7},"lunala":{"n":792,"f":{"w":128,"h":101},"b":{"w":104,"h":98},"bw":{"f":{"w":103,"h":109},"b":{"w":110,"h":109}},"g":7},"nihilego":{"n":793,"f":{"w":61,"h":85},"b":{"w":57,"h":89},"bw":{"f":{"w":87,"h":85}},"g":7},"buzzwole":{"n":794,"f":{"w":77,"h":94},"b":{"w":76,"h":94},"bw":{"f":{"w":91,"h":96}},"g":7},"pheromosa":{"n":795,"f":{"w":63,"h":100},"b":{"w":54,"h":101},"bw":{"f":{"w":83,"h":93},"b":{"w":86,"h":93}},"g":7},"xurkitree":{"n":796,"f":{"w":92,"h":84},"b":{"w":62,"h":82},"bw":{"f":{"w":102,"h":101},"b":{"w":92,"h":100}},"g":7},"celesteela":{"n":797,"f":{"w":126,"h":105},"b":{"w":103,"h":105},"bw":{"f":{"w":100,"h":117},"b":{"w":101,"h":117}},"g":7},"kartana":{"n":798,"f":{"w":113,"h":83},"b":{"w":85,"h":84},"bw":{"f":{"w":82,"h":88},"b":{"w":90,"h":88}},"g":7},"guzzlord":{"n":799,"f":{"w":137,"h":88},"b":{"w":215,"h":88},"g":7},"necrozma":{"n":800,"il":1501,"f":{"w":99,"h":100},"b":{"w":71,"h":104},"bw":{"f":{"w":96,"h":95},"b":{"w":98,"h":88}},"g":7},"necrozmaduskmane":{"n":800,"i":1193,"il":1505,"f":{"w":131,"h":108},"b":{"w":132,"h":104},"bw":{"f":{"w":106,"h":100},"b":{"w":106,"h":93}},"g":7,"s":8},"necrozmadawnwings":{"n":800,"i":1194,"il":1506,"f":{"w":138,"h":104},"b":{"w":130,"h":107},"bw":{"f":{"w":112,"h":114},"b":{"w":114,"h":113}},"g":7,"s":8},"necrozmaultra":{"n":800,"i":1195,"il":1507,"f":{"w":218,"h":115},"b":{"w":225,"h":114},"bw":{"f":{"w":115,"h":140},"b":{"w":130,"h":151}},"g":7,"s":8},"magearna":{"n":801,"f":{"w":49,"h":68},"b":{"w":46,"h":68},"bw":{"f":{"w":49,"h":68},"b":{"w":48,"h":69}},"g":7},"magearnaoriginal":{"n":801,"i":1184,"f":{"w":49,"h":68},"b":{"w":46,"h":68},"bw":{"f":{"w":49,"h":68},"b":{"w":48,"h":69}},"g":7,"s":8},"marshadow":{"n":802,"il":1502,"f":{"w":48,"h":63},"b":{"w":47,"h":66},"bw":{"f":{"w":32,"h":51}},"g":7},"poipole":{"n":803,"f":{"w":45,"h":78},"b":{"w":52,"h":80},"g":7},"naganadel":{"n":804,"f":{"w":113,"h":126},"b":{"w":111,"h":135},"bw":{"f":{"w":73,"h":94},"b":{"w":74,"h":94}},"g":7},"stakataka":{"n":805,"il":1508,"f":{"w":101,"h":101},"b":{"w":100,"h":101},"bw":{"f":{"w":96,"h":93}},"g":7},"blacephalon":{"n":806,"il":1509,"f":{"w":72,"h":78},"b":{"w":66,"h":77},"bw":{"f":{"w":100,"h":143},"b":{"w":85,"h":144}},"g":7},"zeraora":{"n":807,"f":{"w":87,"h":67},"b":{"w":110,"h":75},"bw":{"f":{"w":77,"h":68},"b":{"w":79,"h":69}},"g":7},"meltan":{"n":808,"f":{"w":32,"h":38},"b":{"w":31,"h":38},"bw":{"f":{"w":32,"h":38}},"g":7},"melmetal":{"n":809,"f":{"w":109,"h":66},"b":{"w":104,"h":66},"bw":{"f":{"w":101,"h":75}},"g":7},"melmetalgmax":{"n":809,"i":1381,"f":{"w":175,"h":127},"b":{"w":163,"h":129},"g":8,"s":8},"grookey":{"n":810,"f":{"w":51,"h":65},"b":{"w":56,"h":63},"bw":{"f":{"w":96,"h":96}},"g":8,"m":["gen5ani-shiny"]},"thwackey":{"n":811,"f":{"w":79,"h":97},"b":{"w":71,"h":96},"bw":{"f":{"w":57,"h":58},"b":{"w":50,"h":55}},"g":8},"rillaboom":{"n":812,"f":{"w":101,"h":122},"b":{"w":113,"h":112},"g":8},"rillaboomgmax":{"n":812,"i":1399,"g":8,"s":9},"scorbunny":{"n":813,"f":{"w":54,"h":94},"b":{"w":43,"h":92},"bw":{"f":{"w":96,"h":96}},"g":8,"m":["gen5ani-shiny"]},"raboot":{"n":814,"f":{"w":56,"h":83},"b":{"w":42,"h":83},"bw":{"f":{"w":45,"h":58},"b":{"w":36,"h":57}},"g":8},"cinderace":{"n":815,"f":{"w":51,"h":114},"b":{"w":50,"h":113},"g":8},"cinderacegmax":{"n":815,"i":1400,"bw":{"f":{"w":100,"h":100},"b":{"w":100,"h":100}},"g":8,"s":9},"sobble":{"n":816,"f":{"w":44,"h":69},"b":{"w":52,"h":71},"bw":{"f":{"w":96,"h":96},"b":{"w":42,"h":49}},"g":8,"m":["gen5ani-shiny"]},"drizzile":{"n":817,"f":{"w":70,"h":77},"b":{"w":76,"h":75},"bw":{"f":{"w":51,"h":53},"b":{"w":53,"h":53}},"g":8},"inteleon":{"n":818,"f":{"w":37,"h":123},"b":{"w":57,"h":126},"bw":{"f":{"w":66,"h":80},"b":{"w":64,"h":79}},"g":8},"inteleongmax":{"n":818,"i":1401,"f":{"w":118,"h":193},"g":8,"s":8},"skwovet":{"n":819,"f":{"w":77,"h":92},"b":{"w":95,"h":93},"g":8},"greedent":{"n":820,"f":{"w":99,"h":100},"b":{"w":109,"h":107},"g":8},"rookidee":{"n":821,"f":{"w":40,"h":42},"b":{"w":55,"h":43},"bw":{"f":{"w":96,"h":96}},"g":8,"m":["gen5ani-shiny"]},"corvisquire":{"n":822,"f":{"w":149,"h":132},"b":{"w":118,"h":129},"bw":{"f":{"w":83,"h":93},"b":{"w":78,"h":92}},"g":8},"corviknight":{"n":823,"f":{"w":200,"h":162},"b":{"w":170,"h":167},"bw":{"f":{"w":96,"h":96},"b":{"w":63,"h":70}},"g":8,"m":["gen5ani-shiny"]},"corviknightgmax":{"n":823,"i":1382,"f":{"w":247,"h":141},"b":{"w":221,"h":145},"g":8,"s":11},"blipbug":{"n":824,"f":{"w":47,"h":71},"b":{"w":43,"h":71},"g":8},"dottler":{"n":825,"f":{"w":62,"h":49},"b":{"w":60,"h":48},"g":8},"orbeetle":{"n":826,"f":{"w":63,"h":64},"b":{"w":63,"h":65},"g":8},"orbeetlegmax":{"n":826,"i":1383,"f":{"w":169,"h":113},"b":{"w":173,"h":117},"bw":{"f":{"w":100,"h":87}},"g":8,"s":8},"nickit":{"n":827,"f":{"w":48,"h":72},"b":{"w":68,"h":76},"g":8},"thievul":{"n":828,"f":{"w":71,"h":93},"b":{"w":137,"h":83},"g":8},"gossifleur":{"n":829,"f":{"w":75,"h":65},"b":{"w":71,"h":64},"g":8},"eldegoss":{"n":830,"f":{"w":71,"h":78},"b":{"w":73,"h":79},"bw":{"f":{"w":53,"h":59},"b":{"w":55,"h":58}},"g":8},"wooloo":{"n":831,"f":{"w":61,"h":60},"b":{"w":67,"h":59},"bw":{"f":{"w":46,"h":42},"b":{"w":48,"h":42}},"g":8,"m":["gen5ani-shiny","gen5ani-back-shiny"]},"dubwool":{"n":832,"f":{"w":74,"h":95},"b":{"w":95,"h":94},"bw":{"f":{"w":67,"h":76},"b":{"w":71,"h":73}},"g":8},"chewtle":{"n":833,"f":{"w":40,"h":60},"b":{"w":49,"h":61},"bw":{"f":{"w":39,"h":47},"b":{"w":38,"h":49}},"g":8},"drednaw":{"n":834,"f":{"w":85,"h":69},"b":{"w":121,"h":70},"bw":{"f":{"w":96,"h":96},"b":{"w":77,"h":58}},"g":8,"m":["gen5ani-shiny"]},"drednawgmax":{"n":834,"i":1384,"f":{"w":110,"h":120},"b":{"w":117,"h":121},"bw":{"f":{"w":99,"h":101}},"g":8,"s":7,"m":["gen5ani-shiny"]},"yamper":{"n":835,"f":{"w":43,"h":54},"b":{"w":61,"h":56},"bw":{"f":{"w":35,"h":44},"b":{"w":43,"h":45}},"g":8,"m":["gen5ani-shiny","gen5ani-back-shiny"]},"boltund":{"n":836,"f":{"w":43,"h":90},"b":{"w":94,"h":88},"g":8},"rolycoly":{"n":837,"f":{"w":57,"h":46},"b":{"w":60,"h":46},"bw":{"f":{"w":96,"h":96},"b":{"w":53,"h":42}},"g":8},"carkol":{"n":838,"f":{"w":73,"h":89},"b":{"w":80,"h":90},"g":8},"coalossal":{"n":839,"f":{"w":100,"h":130},"b":{"w":91,"h":130},"bw":{"f":{"w":80,"h":84},"b":{"w":76,"h":83}},"g":8},"coalossalgmax":{"n":839,"i":1385,"f":{"w":128,"h":157},"b":{"w":109,"h":158},"bw":{"f":{"w":111,"h":96},"b":{"w":106,"h":96}},"g":8,"s":9},"applin":{"n":840,"f":{"w":29,"h":44},"b":{"w":36,"h":45},"bw":{"f":{"w":41,"h":42},"b":{"w":37,"h":44}},"g":8},"flapple":{"n":841,"f":{"w":113,"h":75},"b":{"w":104,"h":74},"g":8},"flapplegmax":{"n":841,"i":1386,"f":{"w":98,"h":153},"b":{"w":102,"h":155},"bw":{"f":{"w":78,"h":95}},"g":8,"s":7},"appletun":{"n":842,"f":{"w":62,"h":76},"b":{"w":71,"h":74},"g":8},"appletungmax":{"n":842,"i":1387,"f":{"w":98,"h":153},"b":{"w":102,"h":155},"bw":{"f":{"w":78,"h":95}},"g":8,"s":8},"silicobra":{"n":843,"f":{"w":48,"h":55},"b":{"w":75,"h":58},"bw":{"f":{"w":50,"h":47},"b":{"w":59,"h":43}},"g":8},"sandaconda":{"n":844,"f":{"w":92,"h":70},"b":{"w":128,"h":70},"bw":{"f":{"w":87,"h":60},"b":{"w":84,"h":56}},"g":8},"sandacondagmax":{"n":844,"i":1388,"f":{"w":161,"h":125},"b":{"w":161,"h":149},"g":8,"s":10},"cramorant":{"n":845,"f":{"w":88,"h":102},"b":{"w":76,"h":102},"bw":{"f":{"w":72,"h":78}},"g":8},"cramorantgulping":{"n":845,"i":1212,"f":{"w":85,"h":115},"b":{"w":77,"h":113},"g":8,"s":9},"cramorantgorging":{"n":845,"i":1213,"f":{"w":114,"h":118},"b":{"w":114,"h":116},"g":8,"s":9},"arrokuda":{"n":846,"f":{"w":58,"h":42},"b":{"w":104,"h":38},"bw":{"f":{"w":104,"h":54},"b":{"w":100,"h":37}},"g":8},"barraskewda":{"n":847,"f":{"w":79,"h":61},"b":{"w":141,"h":68},"bw":{"f":{"w":87,"h":44}},"g":8},"toxel":{"n":848,"f":{"w":49,"h":57},"b":{"w":58,"h":58},"bw":{"f":{"w":40,"h":50},"b":{"w":49,"h":50}},"g":8,"m":["gen5ani-shiny"]},"toxtricity":{"n":849,"f":{"w":58,"h":124},"b":{"w":62,"h":125},"bw":{"f":{"w":54,"h":85},"b":{"w":58,"h":85}},"g":8},"toxtricitylowkey":{"n":849,"i":1214,"f":{"w":64,"h":121},"b":{"w":59,"h":121},"g":8,"s":10},"toxtricitygmax":{"n":849,"i":1389,"f":{"w":155,"h":150},"b":{"w":177,"h":163},"bw":{"f":{"w":90,"h":93}},"g":8,"s":10},"toxtricitylowkeygmax":{"n":849,"i":1389,"g":8,"s":10},"sizzlipede":{"n":850,"f":{"w":53,"h":23},"b":{"w":110,"h":32},"g":8},"centiskorch":{"n":851,"f":{"w":96,"h":119},"b":{"w":142,"h":119},"g":8},"centiskorchgmax":{"n":851,"i":1390,"f":{"w":142,"h":121},"b":{"w":368,"h":107},"g":8,"s":11},"clobbopus":{"n":852,"f":{"w":86,"h":53},"b":{"w":73,"h":55},"bw":{"f":{"w":96,"h":96},"b":{"w":50,"h":35}},"g":8},"grapploct":{"n":853,"f":{"w":88,"h":85},"b":{"w":84,"h":86},"g":8},"sinistea":{"n":854,"f":{"w":79,"h":36},"b":{"w":61,"h":35},"g":8},"sinisteaantique":{"n":854,"f":{"w":73,"h":35},"b":{"w":75,"h":35},"g":8,"s":8},"polteageist":{"n":855,"f":{"w":101,"h":83},"b":{"w":70,"h":84},"g":8},"polteageistantique":{"n":855,"f":{"w":98,"h":83},"b":{"w":95,"h":85},"g":8,"s":11},"hatenna":{"n":856,"f":{"w":78,"h":70},"b":{"w":57,"h":74},"bw":{"f":{"w":46,"h":43},"b":{"w":47,"h":42}},"g":8,"m":["gen5ani-shiny"]},"hattrem":{"n":857,"f":{"w":87,"h":70},"b":{"w":73,"h":72},"g":8},"hatterene":{"n":858,"f":{"w":55,"h":119},"b":{"w":54,"h":122},"bw":{"f":{"w":69,"h":83}},"g":8},"hatterenegmax":{"n":858,"i":1391,"f":{"w":87,"h":136},"b":{"w":95,"h":151},"bw":{"f":{"w":80,"h":96}},"g":8,"s":9},"impidimp":{"n":859,"f":{"w":67,"h":62},"b":{"w":50,"h":63},"bw":{"f":{"w":54,"h":50},"b":{"w":48,"h":53}},"g":8},"morgrem":{"n":860,"f":{"w":81,"h":80},"b":{"w":71,"h":78},"g":8},"grimmsnarl":{"n":861,"f":{"w":132,"h":103},"b":{"w":108,"h":102},"bw":{"f":{"w":93,"h":80},"b":{"w":85,"h":80}},"g":8},"grimmsnarlgmax":{"n":861,"i":1392,"f":{"w":82,"h":142},"b":{"w":88,"h":150},"g":8,"s":10},"obstagoon":{"n":862,"f":{"w":66,"h":106},"b":{"w":75,"h":105},"bw":{"f":{"w":63,"h":80},"b":{"w":57,"h":75}},"g":8},"perrserker":{"n":863,"f":{"w":65,"h":78},"b":{"w":58,"h":77},"bw":{"f":{"w":54,"h":64},"b":{"w":53,"h":68}},"g":8},"cursola":{"n":864,"f":{"w":118,"h":115},"b":{"w":113,"h":115},"bw":{"f":{"w":96,"h":98},"b":{"w":100,"h":97}},"g":8},"sirfetchd":{"n":865,"f":{"w":78,"h":141},"b":{"w":63,"h":142},"g":8},"mrrime":{"n":866,"f":{"w":92,"h":87},"b":{"w":65,"h":88},"bw":{"f":{"w":69,"h":63},"b":{"w":65,"h":58}},"g":8},"runerigus":{"n":867,"f":{"w":171,"h":87},"b":{"w":141,"h":86},"bw":{"f":{"w":114,"h":66}},"g":8},"milcery":{"n":868,"f":{"w":55,"h":57},"b":{"w":43,"h":57},"bw":{"f":{"w":43,"h":57}},"g":8,"m":["gen5ani-shiny"]},"alcremie":{"n":869,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8},"alcremierubycream":{"n":869,"i":1215,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiematchacream":{"n":869,"i":1216,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiemintcream":{"n":869,"i":1217,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremielemoncream":{"n":869,"i":1218,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiesaltedcream":{"n":869,"i":1219,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremierubyswirl":{"n":869,"i":1220,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiecaramelswirl":{"n":869,"i":1221,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremierainbowswirl":{"n":869,"i":1222,"f":{"w":57,"h":73},"b":{"w":47,"h":73},"bw":{"f":{"w":46,"h":70},"b":{"w":44,"h":69}},"g":8,"s":8},"alcremiegmax":{"n":869,"i":1393,"f":{"w":106,"h":154},"b":{"w":111,"h":159},"g":8,"s":8},"falinks":{"n":870,"f":{"w":81,"h":49},"b":{"w":151,"h":50},"bw":{"f":{"w":83,"h":56}},"g":8},"pincurchin":{"n":871,"f":{"w":59,"h":46},"b":{"w":59,"h":47},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":8},"snom":{"n":872,"f":{"w":48,"h":40},"b":{"w":58,"h":42},"bw":{"f":{"w":37,"h":26},"b":{"w":37,"h":26}},"g":8,"m":["gen5ani-shiny"]},"frosmoth":{"n":873,"f":{"w":144,"h":96},"b":{"w":126,"h":109},"bw":{"f":{"w":94,"h":85},"b":{"w":98,"h":86}},"g":8},"stonjourner":{"n":874,"f":{"w":84,"h":103},"b":{"w":81,"h":100},"bw":{"f":{"w":71,"h":83},"b":{"w":74,"h":82}},"g":8},"eiscue":{"n":875,"f":{"w":58,"h":92},"b":{"w":60,"h":90},"bw":{"f":{"w":58,"h":85},"b":{"w":58,"h":85}},"g":8},"eiscuenoice":{"n":875,"i":1223,"f":{"w":51,"h":73},"b":{"w":46,"h":71},"bw":{"f":{"w":50,"h":73},"b":{"w":50,"h":73}},"g":8,"s":6},"indeedee":{"n":876,"if":1224,"f":{"w":40,"h":74},"ff":{"w":48,"h":69},"b":{"w":39,"h":74},"bf":{"w":45,"h":69},"bw":{"f":{"w":41,"h":55},"ff":{"w":44,"h":52},"b":{"w":39,"h":55},"bf":{"w":44,"h":52}},"g":8},"indeedeef":{"n":876,"i":1224,"f":{"w":48,"h":69},"b":{"w":45,"h":69},"bw":{"f":{"w":44,"h":52},"b":{"w":44,"h":52}},"g":8,"s":8},"morpeko":{"n":877,"f":{"w":34,"h":58},"b":{"w":32,"h":56},"bw":{"f":{"w":32,"h":43},"b":{"w":32,"h":43}},"g":8},"morpekohangry":{"n":877,"i":1225,"f":{"w":34,"h":58},"b":{"w":32,"h":56},"bw":{"f":{"w":29,"h":43},"b":{"w":28,"h":42}},"g":8,"s":7},"cufant":{"n":878,"f":{"w":75,"h":66},"b":{"w":69,"h":66},"bw":{"f":{"w":78,"h":55},"b":{"w":72,"h":55}},"g":8},"copperajah":{"n":879,"f":{"w":81,"h":97},"b":{"w":89,"h":99},"g":8},"copperajahgmax":{"n":879,"i":1394,"f":{"w":132,"h":142},"b":{"w":173,"h":219},"g":8,"s":10},"dracozolt":{"n":880,"f":{"w":101,"h":78},"b":{"w":120,"h":75},"bw":{"f":{"w":85,"h":77}},"g":8},"arctozolt":{"n":881,"f":{"w":68,"h":98},"b":{"w":80,"h":93},"g":8},"dracovish":{"n":882,"f":{"w":54,"h":96},"b":{"w":54,"h":96},"bw":{"f":{"w":69,"h":84},"b":{"w":60,"h":82}},"g":8},"arctovish":{"n":883,"f":{"w":84,"h":88},"b":{"w":86,"h":97},"bw":{"f":{"w":91,"h":84},"b":{"w":101,"h":90}},"g":8},"duraludon":{"n":884,"f":{"w":96,"h":109},"b":{"w":99,"h":108},"bw":{"f":{"w":96,"h":96},"b":{"w":68,"h":76}},"g":8,"m":["gen5ani-shiny"]},"duraludongmax":{"n":884,"i":1395,"f":{"w":100,"h":139},"b":{"w":101,"h":140},"g":8,"s":9},"dreepy":{"n":885,"f":{"w":51,"h":46},"b":{"w":65,"h":46},"bw":{"f":{"w":59,"h":58},"b":{"w":64,"h":55}},"g":8},"drakloak":{"n":886,"f":{"w":73,"h":69},"b":{"w":84,"h":67},"bw":{"f":{"w":88,"h":74},"b":{"w":94,"h":73}},"g":8},"dragapult":{"n":887,"f":{"w":104,"h":102},"b":{"w":94,"h":102},"bw":{"f":{"w":92,"h":82},"b":{"w":91,"h":81}},"g":8},"zacian":{"n":888,"f":{"w":92,"h":95},"b":{"w":113,"h":78},"bw":{"f":{"w":89,"h":82},"b":{"w":91,"h":85}},"g":8},"zaciancrowned":{"n":888,"i":1226,"f":{"w":137,"h":111},"b":{"w":156,"h":120},"bw":{"f":{"w":93,"h":96},"b":{"w":97,"h":92}},"g":8,"s":6},"zamazenta":{"n":889,"f":{"w":95,"h":89},"b":{"w":123,"h":80},"bw":{"f":{"w":82,"h":96},"b":{"w":94,"h":90}},"g":8},"zamazentacrowned":{"n":889,"i":1227,"f":{"w":111,"h":112},"b":{"w":133,"h":105},"bw":{"f":{"w":93,"h":92},"b":{"w":103,"h":92}},"g":8,"s":9},"eternatus":{"n":890,"f":{"w":148,"h":126},"b":{"w":247,"h":149},"bw":{"f":{"w":111,"h":102},"b":{"w":123,"h":103}},"g":8},"eternatuseternamax":{"n":890,"i":1396,"f":{"w":183,"h":151},"b":{"w":137,"h":108},"g":8,"s":9},"kubfu":{"n":891,"f":{"w":44,"h":72},"b":{"w":51,"h":69},"g":8},"urshifu":{"n":892,"f":{"w":73,"h":122},"b":{"w":65,"h":126},"g":8},"urshifurapidstrike":{"n":892,"f":{"w":83,"h":108},"b":{"w":75,"h":104},"g":8,"s":7},"urshifugmax":{"n":892,"i":1402,"g":8,"s":7},"urshifurapidstrikegmax":{"n":892,"i":1403,"g":8,"s":7},"zarude":{"n":893,"f":{"w":131,"h":109},"b":{"w":133,"h":94},"g":8},"zarudedada":{"n":893,"i":1230,"f":{"w":131,"h":109},"b":{"w":133,"h":94},"g":8,"s":6},"regieleki":{"n":894,"f":{"w":181,"h":98},"b":{"w":177,"h":96},"g":8},"regidrago":{"n":895,"f":{"w":119,"h":120},"b":{"w":114,"h":122},"bw":{"f":{"w":82,"h":81},"b":{"w":86,"h":75}},"g":8},"glastrier":{"n":896,"f":{"w":69,"h":117},"b":{"w":84,"h":113},"bw":{"f":{"w":66,"h":84},"b":{"w":73,"h":82}},"g":8},"spectrier":{"n":897,"f":{"w":72,"h":108},"b":{"w":101,"h":97},"g":8},"calyrex":{"n":898,"f":{"w":64,"h":106},"b":{"w":69,"h":105},"bw":{"f":{"w":59,"h":109},"b":{"w":60,"h":110}},"g":8},"calyrexice":{"n":898,"i":1236,"f":{"w":76,"h":118},"b":{"w":82,"h":112},"bw":{"f":{"w":65,"h":84},"b":{"w":75,"h":82}},"g":8,"s":7},"calyrexshadow":{"n":898,"i":1237,"f":{"w":85,"h":110},"b":{"w":107,"h":113},"g":8,"s":7},"wyrdeer":{"n":899,"f":{"w":56,"h":118},"b":{"w":54,"h":115},"bw":{"f":{"w":82,"h":96}},"g":8},"kleavor":{"n":900,"f":{"w":115,"h":103},"b":{"w":103,"h":97},"g":8},"ursaluna":{"n":901,"f":{"w":105,"h":86},"b":{"w":113,"h":77},"bw":{"f":{"w":78,"h":74}},"g":8},"ursalunabloodmoon":{"n":901,"i":1272,"f":{"w":98,"h":105},"b":{"w":87,"h":97},"bw":{"f":{"w":75,"h":77}},"g":9,"s":8},"basculegion":{"n":902,"if":1254,"f":{"w":127,"h":90},"ff":{"w":121,"h":90},"b":{"w":169,"h":99},"bf":{"w":164,"h":99},"bw":{"f":{"w":110,"h":87},"ff":{"w":110,"h":85},"b":{"w":122,"h":80},"bf":{"w":122,"h":80}},"g":8},"basculegionf":{"n":902,"i":1254,"f":{"w":121,"h":90},"b":{"w":164,"h":99},"bw":{"f":{"w":110,"h":85},"b":{"w":122,"h":80}},"g":8,"s":11},"sneasler":{"n":903,"f":{"w":52,"h":87},"b":{"w":62,"h":84},"g":8},"overqwil":{"n":904,"f":{"w":112,"h":119},"b":{"w":89,"h":120},"bw":{"f":{"w":99,"h":107},"b":{"w":99,"h":110}},"g":8},"enamorus":{"n":905,"f":{"w":59,"h":110},"b":{"w":72,"h":115},"g":8},"enamorustherian":{"n":905,"i":1255,"f":{"w":74,"h":71},"b":{"w":97,"h":70},"g":8,"s":8},"sprigatito":{"n":906,"f":{"w":38,"h":55},"b":{"w":45,"h":53},"g":9},"floragato":{"n":907,"f":{"w":35,"h":78},"b":{"w":40,"h":80},"g":9},"meowscarada":{"n":908,"f":{"w":65,"h":106},"b":{"w":47,"h":106},"g":9},"fuecoco":{"n":909,"f":{"w":39,"h":56},"b":{"w":47,"h":55},"g":9},"crocalor":{"n":910,"f":{"w":55,"h":67},"b":{"w":67,"h":64},"g":9},"skeledirge":{"n":911,"f":{"w":106,"h":76},"b":{"w":143,"h":80},"g":9},"quaxly":{"n":912,"f":{"w":43,"h":60},"b":{"w":42,"h":60},"g":9},"quaxwell":{"n":913,"f":{"w":43,"h":83},"b":{"w":45,"h":81},"g":9},"quaquaval":{"n":914,"f":{"w":132,"h":129},"b":{"w":130,"h":138},"g":9},"lechonk":{"n":915,"f":{"w":48,"h":49},"b":{"w":53,"h":50},"g":9},"oinkologne":{"n":916,"if":1260,"f":{"w":55,"h":62},"ff":{"w":66,"h":81},"b":{"w":78,"h":62},"bf":{"w":74,"h":84},"g":9},"oinkolognef":{"n":916,"i":1260,"f":{"w":66,"h":81},"b":{"w":74,"h":84},"g":9,"s":10},"tarountula":{"n":917,"f":{"w":67,"h":74},"b":{"w":65,"h":74},"g":9},"spidops":{"n":918,"f":{"w":86,"h":75},"b":{"w":80,"h":66},"g":9},"nymble":{"n":919,"f":{"w":42,"h":53},"b":{"w":51,"h":53},"g":9},"lokix":{"n":920,"f":{"w":55,"h":85},"b":{"w":55,"h":87},"g":9},"pawmi":{"n":921,"g":9},"pawmo":{"n":922,"g":9},"pawmot":{"n":923,"g":9},"tandemaus":{"n":924,"f":{"w":99,"h":53},"b":{"w":89,"h":53},"bw":{"f":{"w":77,"h":42}},"g":9},"maushold":{"n":925,"f":{"w":94,"h":53},"b":{"w":87,"h":53},"bw":{"f":{"w":77,"h":42}},"g":9},"mausholdfour":{"n":925,"i":1262,"f":{"w":99,"h":53},"b":{"w":92,"h":55},"bw":{"f":{"w":78,"h":42}},"g":9,"s":8},"fidough":{"n":926,"g":9},"dachsbun":{"n":927,"g":9},"smoliv":{"n":928,"f":{"w":43,"h":48},"b":{"w":45,"h":47},"g":9},"dolliv":{"n":929,"f":{"w":37,"h":58},"b":{"w":32,"h":58},"g":9},"arboliva":{"n":930,"f":{"w":69,"h":117},"b":{"w":63,"h":117},"g":9},"squawkabilly":{"n":931,"g":9},"squawkabillyblue":{"n":931,"i":1265,"g":9,"s":12},"squawkabillyyellow":{"n":931,"i":1266,"g":9,"s":12},"squawkabillywhite":{"n":931,"i":1267,"g":9,"s":12},"nacli":{"n":932,"bw":{"f":{"w":37,"h":34}},"g":9},"naclstack":{"n":933,"g":9},"garganacl":{"n":934,"g":9},"charcadet":{"n":935,"g":9},"armarouge":{"n":936,"g":9},"ceruledge":{"n":937,"g":9},"tadbulb":{"n":938,"f":{"w":29,"h":57},"b":{"w":30,"h":57},"bw":{"f":{"w":27,"h":71}},"g":9},"bellibolt":{"n":939,"f":{"w":61,"h":66},"b":{"w":64,"h":65},"g":9},"wattrel":{"n":940,"g":9},"kilowattrel":{"n":941,"g":9},"maschiff":{"n":942,"g":9},"mabosstiff":{"n":943,"g":9},"shroodle":{"n":944,"g":9},"grafaiai":{"n":945,"g":9},"bramblin":{"n":946,"g":9},"brambleghast":{"n":947,"g":9},"toedscool":{"n":948,"g":9},"toedscruel":{"n":949,"g":9},"klawf":{"n":950,"g":9},"capsakid":{"n":951,"f":{"w":37,"h":48},"b":{"w":35,"h":47},"g":9},"scovillain":{"n":952,"f":{"w":62,"h":65},"b":{"w":71,"h":61},"g":9},"rellor":{"n":953,"f":{"w":83,"h":52},"b":{"w":81,"h":49},"g":9},"rabsca":{"n":954,"f":{"w":77,"h":116},"b":{"w":72,"h":116},"g":9},"flittle":{"n":955,"f":{"w":39,"h":44},"b":{"w":37,"h":45},"g":9},"espathra":{"n":956,"f":{"w":82,"h":106},"b":{"w":101,"h":96},"g":9},"tinkatink":{"n":957,"g":9},"tinkatuff":{"n":958,"g":9},"tinkaton":{"n":959,"g":9},"wiglett":{"n":960,"f":{"w":44,"h":80},"b":{"w":49,"h":75},"g":9},"wugtrio":{"n":961,"f":{"w":83,"h":70},"b":{"w":88,"h":73},"g":9},"bombirdier":{"n":962,"g":9},"finizen":{"n":963,"f":{"w":66,"h":55},"b":{"w":85,"h":53},"g":9},"palafin":{"n":964,"f":{"w":66,"h":55},"b":{"w":85,"h":53},"g":9},"palafinhero":{"n":964,"i":1261,"f":{"w":55,"h":102},"b":{"w":51,"h":103},"g":9,"s":7},"varoom":{"n":965,"f":{"w":53,"h":61},"b":{"w":71,"h":60},"g":9},"revavroom":{"n":966,"f":{"w":102,"h":71},"b":{"w":114,"h":73},"g":9},"cyclizar":{"n":967,"g":9},"orthworm":{"n":968,"f":{"w":60,"h":69},"b":{"w":108,"h":66},"g":9},"glimmet":{"n":969,"bw":{"f":{"w":65,"h":75}},"g":9},"glimmora":{"n":970,"g":9},"greavard":{"n":971,"f":{"w":42,"h":62},"b":{"w":59,"h":60},"g":9},"houndstone":{"n":972,"f":{"w":77,"h":79},"b":{"w":106,"h":76},"g":9},"flamigo":{"n":973,"g":9},"cetoddle":{"n":974,"f":{"w":98,"h":65},"b":{"w":89,"h":68},"g":9},"cetitan":{"n":975,"f":{"w":125,"h":73},"b":{"w":144,"h":80},"g":9},"veluza":{"n":976,"f":{"w":77,"h":93},"b":{"w":91,"h":88},"g":9},"dondozo":{"n":977,"f":{"w":152,"h":69},"b":{"w":179,"h":68},"g":9},"tatsugiri":{"n":978,"f":{"w":60,"h":44},"b":{"w":63,"h":46},"bw":{"f":{"w":34,"h":31}},"g":9},"tatsugiridroopy":{"n":978,"i":1263,"f":{"w":60,"h":44},"b":{"w":63,"h":46},"bw":{"f":{"w":34,"h":31}},"g":9,"s":9},"tatsugiristretchy":{"n":978,"i":1264,"f":{"w":60,"h":44},"b":{"w":63,"h":46},"bw":{"f":{"w":34,"h":31}},"g":9,"s":9},"annihilape":{"n":979,"g":9},"clodsire":{"n":980,"bw":{"f":{"w":74,"h":55}},"g":9},"farigiraf":{"n":981,"f":{"w":62,"h":128},"b":{"w":78,"h":118},"g":9},"dudunsparce":{"n":982,"f":{"w":78,"h":61},"b":{"w":90,"h":64},"g":9},"dudunsparcethreesegment":{"n":982,"f":{"w":88,"h":81},"b":{"w":109,"h":93},"g":9,"s":11},"kingambit":{"n":983,"g":9},"greattusk":{"n":984,"bw":{"f":{"w":98,"h":65}},"g":9},"screamtail":{"n":985,"g":9},"brutebonnet":{"n":986,"g":9},"fluttermane":{"n":987,"bw":{"f":{"w":72,"h":70}},"g":9},"slitherwing":{"n":988,"g":9},"sandyshocks":{"n":989,"g":9},"irontreads":{"n":990,"g":9},"ironbundle":{"n":991,"g":9},"ironhands":{"n":992,"bw":{"f":{"w":107,"h":74}},"g":9},"ironjugulis":{"n":993,"g":9},"ironmoth":{"n":994,"bw":{"f":{"w":100,"h":94}},"g":9},"ironthorns":{"n":995,"bw":{"f":{"w":88,"h":79}},"g":9},"frigibax":{"n":996,"bw":{"f":{"w":36,"h":37}},"g":9},"arctibax":{"n":997,"bw":{"f":{"w":57,"h":49}},"g":9},"baxcalibur":{"n":998,"g":9},"gimmighoul":{"n":999,"bw":{"f":{"w":49,"h":61}},"g":9},"gimmighoulroaming":{"n":999,"i":1268,"g":9,"s":10},"gholdengo":{"n":1000,"bw":{"f":{"w":119,"h":105}},"g":9},"wochien":{"n":1001,"bw":{"f":{"w":95,"h":93}},"g":9},"chienpao":{"n":1002,"bw":{"f":{"w":99,"h":90}},"g":9},"tinglu":{"n":1003,"bw":{"f":{"w":97,"h":82}},"g":9},"chiyu":{"n":1004,"bw":{"f":{"w":68,"h":62}},"g":9},"roaringmoon":{"n":1005,"g":9},"ironvaliant":{"n":1006,"bw":{"f":{"w":93,"h":86}},"g":9},"koraidon":{"n":1007,"g":9},"miraidon":{"n":1008,"bw":{"f":{"w":108,"h":100}},"g":9},"walkingwake":{"n":1009,"g":9},"ironleaves":{"n":1010,"g":9},"dipplin":{"n":1011,"g":9},"poltchageist":{"n":1012,"g":9},"poltchageistartisan":{"n":1012,"g":9,"s":12},"sinistcha":{"n":1013,"g":9},"sinistchamasterpiece":{"n":1013,"g":9,"s":9},"okidogi":{"n":1014,"g":9},"munkidori":{"n":1015,"g":9},"fezandipiti":{"n":1016,"g":9},"ogerpon":{"n":1017,"g":9},"ogerponwellspring":{"n":1017,"i":1273,"g":9,"s":7},"ogerponhearthflame":{"n":1017,"i":1274,"g":9,"s":7},"ogerponcornerstone":{"n":1017,"i":1275,"g":9,"s":7},"ogerpontealtera":{"n":1017,"g":9,"s":7},"ogerponwellspringtera":{"n":1017,"i":1273,"g":9,"s":7},"ogerponhearthflametera":{"n":1017,"i":1274,"g":9,"s":7},"ogerponcornerstonetera":{"n":1017,"i":1275,"g":9,"s":7},"archaludon":{"n":1018,"g":9},"hydrapple":{"n":1019,"bw":{"f":{"w":67,"h":80}},"g":9},"gougingfire":{"n":1020,"bw":{"f":{"w":90,"h":86}},"g":9},"ragingbolt":{"n":1021,"g":9},"ironboulder":{"n":1022,"g":9},"ironcrown":{"n":1023,"g":9},"terapagos":{"n":1024,"bw":{"f":{"w":51,"h":46}},"g":9},"terapagosterastal":{"n":1024,"i":1276,"bw":{"f":{"w":82,"h":78}},"g":9,"s":9},"terapagosstellar":{"n":1024,"i":1277,"bw":{"f":{"w":78,"h":96}},"g":9,"s":9},"pecharunt":{"n":1025,"g":9},"missingno":{"n":0,"g":0,"nd":true,"ns":true},"syclar":{"n":-1,"i":1548,"g":4,"nd":true},"syclant":{"n":-2,"i":1512,"g":4,"nd":true},"revenankh":{"n":-3,"i":1513,"g":4,"nd":true},"embirch":{"n":-4,"i":1549,"g":4,"nd":true},"flarelm":{"n":-5,"i":1550,"g":4,"nd":true},"pyroak":{"n":-6,"i":1514,"f":{"w":90,"h":96},"g":4,"nd":true},"breezi":{"n":-7,"i":1551,"g":4,"nd":true},"fidgit":{"n":-8,"i":1515,"f":{"w":156,"h":50},"b":{"w":156,"h":50},"g":4},"rebble":{"n":-9,"i":1563,"g":4,"nd":true},"tactite":{"n":-10,"i":1564,"g":4,"nd":true},"stratagem":{"n":-11,"i":1516,"f":{"w":86,"h":92},"b":{"w":84,"h":89},"g":4},"privatyke":{"n":-12,"i":1565,"g":4,"nd":true},"arghonaut":{"n":-13,"i":1517,"g":4,"nd":true},"kitsunoh":{"n":-14,"i":1518,"f":{"w":121,"h":66},"ff":{"w":121,"h":66},"b":{"w":139,"h":79},"bf":{"w":139,"h":79},"g":4,"nd":true},"cyclohm":{"n":-15,"i":1519,"g":4,"nd":true},"colossoil":{"n":-16,"i":1520,"f":{"w":100,"h":86},"ff":{"w":100,"h":86},"bw":{"f":{"w":100,"h":86},"ff":{"w":100,"h":86}},"g":4,"nd":true},"krilowatt":{"n":-17,"i":1521,"f":{"w":47,"h":90},"b":{"w":46,"h":93},"g":4,"nd":true},"voodoll":{"n":-18,"i":1570,"g":4,"nd":true},"voodoom":{"n":-19,"i":1522,"f":{"w":69,"h":96},"ff":{"w":69,"h":96},"b":{"w":79,"h":89},"bf":{"w":79,"h":89},"g":4,"nd":true},"scratchet":{"n":-20,"i":1552,"f":{"w":88,"h":77},"b":{"w":86,"h":72},"g":5},"tomohawk":{"n":-21,"i":1523,"f":{"w":128,"h":102},"b":{"w":116,"h":98},"bw":{"f":{"w":93,"h":59},"ff":{"w":93,"h":59},"b":{"w":91,"h":62},"bf":{"w":91,"h":62}},"g":5},"necturine":{"n":-22,"i":1553,"g":5,"nd":true},"necturna":{"n":-23,"i":1524,"f":{"w":88,"h":112},"b":{"w":74,"h":110},"bw":{"f":{"w":77,"h":87},"b":{"w":71,"h":85}},"g":5,"nd":true},"mollux":{"n":-24,"i":1525,"f":{"w":76,"h":69},"b":{"w":73,"h":72},"bw":{"f":{"w":60,"h":67},"b":{"w":59,"h":64}},"g":5},"cupra":{"n":-25,"i":1554,"g":5,"nd":true},"argalis":{"n":-26,"i":1555,"g":5,"nd":true},"aurumoth":{"n":-27,"i":1526,"f":{"w":112,"h":102},"b":{"w":113,"h":104},"bw":{"f":{"w":80,"h":72},"b":{"w":84,"h":76}},"g":5,"nd":true},"brattler":{"n":-28,"i":1556,"g":5,"nd":true},"malaconda":{"n":-29,"i":1527,"f":{"w":87,"h":76},"b":{"w":89,"h":79},"bw":{"f":{"w":87,"h":76},"b":{"w":89,"h":79}},"g":5,"nd":true},"cawdet":{"n":-30,"i":1557,"g":5,"nd":true},"cawmodore":{"n":-31,"i":1528,"f":{"w":154,"h":108},"b":{"w":144,"h":112},"bw":{"f":{"w":80,"h":69},"b":{"w":90,"h":69}},"g":5,"nd":true},"volkritter":{"n":-32,"i":1558,"g":6,"nd":true},"volkraken":{"n":-33,"i":1529,"f":{"w":92,"h":75},"b":{"w":82,"h":62},"bw":{"f":{"w":92,"h":75},"b":{"w":82,"h":62}},"g":6,"nd":true},"snugglow":{"n":-34,"i":1559,"g":6,"nd":true},"plasmanta":{"n":-35,"i":1530,"f":{"w":143,"h":105},"b":{"w":141,"h":140},"bw":{"f":{"w":104,"h":83},"b":{"w":99,"h":58}},"g":6,"nd":true},"floatoy":{"n":-36,"i":1560,"g":6,"nd":true},"caimanoe":{"n":-37,"i":1561,"g":6,"nd":true},"naviathan":{"n":-38,"i":1531,"f":{"w":142,"h":119},"b":{"w":147,"h":111},"g":6,"nd":true},"crucibelle":{"n":-39,"i":1532,"f":{"w":39,"h":92},"b":{"w":39,"h":91},"g":6},"crucibellemega":{"n":-39,"i":1533,"f":{"w":106,"h":106},"b":{"w":110,"h":105},"g":6,"s":10},"pluffle":{"n":-40,"i":1562,"f":{"w":59,"h":37},"b":{"w":56,"h":37},"g":6},"kerfluffle":{"n":-41,"i":1534,"f":{"w":69,"h":88},"ff":{"w":70,"h":88},"b":{"w":68,"h":85},"bf":{"w":68,"h":85},"g":6},"pajantom":{"n":-42,"i":1535,"f":{"w":83,"h":101},"b":{"w":87,"h":100},"bw":{"f":{"w":100,"h":96}},"g":7},"mumbao":{"n":-43,"i":1571,"f":{"w":78,"h":69},"b":{"w":81,"h":67},"g":7,"nd":true},"jumbao":{"n":-44,"i":1536,"f":{"w":111,"h":100},"b":{"w":108,"h":95},"g":7},"fawnifer":{"n":-45,"i":1572,"g":7,"nd":true},"electrelk":{"n":-46,"i":1573,"g":7,"nd":true},"caribolt":{"n":-47,"i":1537,"f":{"w":54,"h":112},"b":{"w":65,"h":105},"g":7},"smogecko":{"n":-48,"i":1574,"f":{"w":49,"h":58},"b":{"w":53,"h":56},"g":7},"smoguana":{"n":-49,"i":1575,"f":{"w":66,"h":75},"b":{"w":76,"h":76},"g":7,"nd":true},"smokomodo":{"n":-50,"i":1538,"f":{"w":106,"h":94},"b":{"w":104,"h":96},"g":7},"swirlpool":{"n":-51,"i":1576,"g":7,"nd":true},"coribalis":{"n":-52,"i":1577,"g":7,"nd":true},"snaelstrom":{"n":-53,"i":1539,"f":{"w":88,"h":111},"b":{"w":94,"h":102},"g":7},"justyke":{"n":-54,"i":1578,"f":{"w":40,"h":64},"b":{"w":59,"h":62},"g":7,"nd":true},"equilibra":{"n":-55,"i":1540,"f":{"w":129,"h":91},"b":{"w":117,"h":94},"g":7},"solotl":{"n":-56,"i":1579,"g":8,"nd":true},"astrolotl":{"n":-57,"i":1541,"f":{"w":79,"h":103},"b":{"w":95,"h":106},"g":8,"nd":true},"miasmite":{"n":-58,"i":1580,"g":8,"nd":true},"miasmaw":{"n":-59,"i":1542,"f":{"w":75,"h":93},"b":{"w":86,"h":94},"g":8,"nd":true},"chromera":{"n":-60,"i":1543,"f":{"w":103,"h":94},"b":{"w":112,"h":93},"g":8,"nd":true},"nohface":{"n":-61,"i":1566,"g":4,"nd":true},"monohm":{"n":-62,"i":1567,"g":4,"nd":true},"duohm":{"n":-63,"i":1568,"g":4,"nd":true},"dorsoil":{"n":-64,"i":1581,"g":4,"nd":true},"protowatt":{"n":-65,"i":1569,"f":{"w":28,"h":56},"ff":{"w":28,"h":56},"b":{"w":28,"h":58},"bf":{"w":28,"h":58},"g":4,"nd":true},"venomicon":{"n":-66,"i":1544,"g":8,"nd":true},"venomiconepilogue":{"n":-66,"i":1545,"g":8,"s":9,"nd":true},"saharascal":{"n":-67,"i":1582,"g":8,"nd":true},"saharaja":{"n":-68,"i":1546,"g":8,"nd":true},"ababo":{"n":-69,"i":1583,"g":9,"nd":true},"scattervein":{"n":-70,"i":1584,"g":9,"nd":true},"hemogoblin":{"n":-71,"i":1547,"g":9,"nd":true},"cresceidon":{"n":-72,"i":1585,"g":9,"nd":true},"chuggon":{"n":-73,"g":9,"nd":true},"draggalong":{"n":-74,"g":9,"nd":true},"chuggalong":{"n":-75,"i":1586,"g":9,"nd":true},"shox":{"n":-77,"i":1587,"g":9,"nd":true},"pokestarsmeargle":{"n":-5000,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"nd":true,"ns":true},"pokestarufo":{"n":-5001,"f":{"w":179,"h":119},"b":{"w":179,"h":119},"bw":{"f":{"w":179,"h":119},"b":{"w":179,"h":119}},"g":5,"ns":true},"pokestarufopropu1":{"n":-5001,"g":5,"s":11,"ns":true},"pokestarufo2":{"n":-5001,"f":{"w":179,"h":119},"g":5,"s":11,"ns":true},"pokestarbrycenman":{"n":-5002,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"ns":true},"pokestarbrycenmanprop":{"n":-5002,"g":5,"s":17,"ns":true},"pokestarmt":{"n":-5003,"f":{"w":151,"h":140},"b":{"w":151,"h":140},"bw":{"f":{"w":151,"h":140},"b":{"w":151,"h":140}},"g":5,"ns":true},"pokestarmtprop":{"n":-5003,"g":5,"s":10,"ns":true},"pokestarmt2":{"n":-5004,"f":{"w":151,"h":140},"b":{"w":151,"h":140},"bw":{"f":{"w":151,"h":140},"b":{"w":151,"h":140}},"g":5,"ns":true},"pokestarmt2prop":{"n":-5004,"g":5,"s":11,"ns":true},"pokestartransport":{"n":-5005,"f":{"w":109,"h":104},"b":{"w":109,"h":104},"bw":{"f":{"w":109,"h":104},"b":{"w":109,"h":104}},"g":5,"nd":true,"ns":true},"pokestartransportprop":{"n":-5005,"g":5,"s":17,"nd":true,"ns":true},"pokestargiant":{"n":-5006,"f":{"w":135,"h":186},"b":{"w":135,"h":186},"bw":{"f":{"w":135,"h":186},"b":{"w":135,"h":186}},"g":5,"ns":true},"pokestargiant2":{"n":-5006,"g":5,"s":13,"ns":true},"pokestargiantpropo1":{"n":-5006,"g":5,"s":13,"ns":true},"pokestargiantpropo2":{"n":-5006,"g":5,"s":13,"ns":true},"pokestarhumanoid":{"n":-5007,"f":{"w":80,"h":80},"b":{"w":80,"h":80},"bw":{"f":{"w":80,"h":80},"b":{"w":80,"h":80}},"g":5,"ns":true},"pokestarhumanoidprop":{"n":-5007,"g":5,"s":16,"ns":true},"pokestarmonster":{"n":-5008,"f":{"w":177,"h":120},"b":{"w":177,"h":120},"bw":{"f":{"w":177,"h":120},"b":{"w":177,"h":120}},"g":5,"ns":true},"pokestarmonsterprop":{"n":-5008,"g":5,"s":15,"ns":true},"pokestarf00":{"n":-5009,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"ns":true},"pokestarf00prop":{"n":-5009,"g":5,"s":11,"ns":true},"pokestarf002":{"n":-5010,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"ns":true},"pokestarf002prop":{"n":-5010,"g":5,"s":12,"ns":true},"pokestarspirit":{"n":-5011,"f":{"w":148,"h":148},"b":{"w":148,"h":148},"bw":{"f":{"w":148,"h":148},"b":{"w":148,"h":148}},"g":5,"ns":true},"pokestarspiritprop":{"n":-5011,"g":5,"s":14,"ns":true},"pokestarblackdoor":{"n":-5012,"f":{"w":128,"h":96},"b":{"w":128,"h":96},"bw":{"f":{"w":128,"h":96},"b":{"w":128,"h":96}},"g":5,"nd":true,"ns":true},"pokestarblackdoorprop":{"n":-5012,"g":5,"s":17,"nd":true,"ns":true},"pokestarwhitedoor":{"n":-5013,"f":{"w":128,"h":96},"b":{"w":128,"h":96},"bw":{"f":{"w":128,"h":96},"b":{"w":128,"h":96}},"g":5,"nd":true,"ns":true},"pokestarwhitedoorprop":{"n":-5013,"g":5,"s":17,"nd":true,"ns":true},"pokestarblackbelt":{"n":-5014,"f":{"w":96,"h":96},"b":{"w":96,"h":96},"bw":{"f":{"w":96,"h":96},"b":{"w":96,"h":96}},"g":5,"nd":true,"ns":true},"pokestarblackbeltprop":{"n":-5014,"g":5,"s":17,"nd":true,"ns":true},"pokestarufopropu2":{"n":-5001,"g":5,"s":11,"nd":true}},"items":{"abilityshield":746,"abomasite":575,"absolite":576,"absorbbulb":2,"adamantcrystal":741,"adamantorb":4,"adrenalineorb":660,"aerodactylite":577,"aggronite":578,"aguavberry":5,"airballoon":6,"alakazite":579,"aloraichiumz":655,"altarianite":615,"ampharosite":580,"apicotberry":10,"armorfossil":12,"aspearberry":13,"assaultvest":581,"audinite":617,"auspiciousarmor":753,"babiriberry":17,"banettite":582,"beastball":661,"beedrillite":628,"belueberry":21,"berryjuice":22,"berrysweet":706,"bignugget":27,"bigroot":29,"bindingband":31,"blackbelt":32,"blackglasses":35,"blacksludge":34,"blastoisinite":583,"blazikenite":584,"blueorb":41,"blukberry":44,"blunderpolicy":716,"boosterenergy":745,"bottlecap":696,"brightpowder":51,"buggem":53,"bugmemory":673,"buginiumz":642,"burndrive":54,"cameruptite":625,"cellbattery":60,"charcoal":61,"charizarditex":585,"charizarditey":586,"chartiberry":62,"cheriberry":63,"cherishball":64,"chestoberry":65,"chilanberry":66,"chilldrive":67,"chippedpot":720,"choiceband":68,"choicescarf":69,"choicespecs":70,"chopleberry":71,"clawfossil":72,"clearamulet":747,"cloversweet":707,"cobaberry":76,"colburberry":78,"cornerstonemask":758,"cornnberry":81,"coverfossil":85,"covertcloak":750,"crackedpot":719,"custapberry":86,"damprock":88,"darkgem":89,"darkmemory":683,"darkiniumz":646,"dawnstone":92,"decidiumz":650,"deepseascale":93,"deepseatooth":94,"destinyknot":95,"diancite":624,"diveball":101,"domefossil":102,"dousedrive":103,"dracoplate":105,"dragonfang":106,"dragongem":107,"dragonmemory":682,"dragonscale":108,"dragoniumz":645,"dreadplate":110,"dreamball":111,"dubiousdisc":113,"durinberry":114,"duskball":115,"duskstone":116,"earthplate":117,"eeviumz":657,"ejectbutton":118,"ejectpack":714,"electirizer":119,"electricgem":120,"electricmemory":679,"electricseed":664,"electriumz":634,"enigmaberry":124,"eviolite":130,"expertbelt":132,"fairiumz":648,"fairyfeather":754,"fairygem":611,"fairymemory":684,"fastball":137,"fightinggem":139,"fightingmemory":668,"fightiniumz":637,"figyberry":140,"firegem":141,"firememory":676,"firestone":142,"firiumz":632,"fistplate":143,"flameorb":145,"flameplate":146,"floatstone":147,"flowersweet":708,"flyinggem":149,"flyingmemory":669,"flyiniumz":640,"focusband":150,"focussash":151,"fossilizedbird":700,"fossilizeddino":703,"fossilizeddrake":702,"fossilizedfish":701,"friendball":153,"fullincense":155,"galaricacuff":739,"galaricawreath":740,"galladite":616,"ganlonberry":158,"garchompite":589,"gardevoirite":587,"gengarite":588,"ghostgem":161,"ghostmemory":674,"ghostiumz":644,"glalitite":623,"goldbottlecap":697,"grassgem":172,"grassmemory":678,"grassiumz":635,"grassyseed":667,"greatball":174,"grepaberry":178,"gripclaw":179,"griseouscore":743,"griseousorb":180,"groundgem":182,"groundmemory":671,"groundiumz":639,"gyaradosite":589,"habanberry":185,"hardstone":187,"healball":188,"hearthflamemask":760,"heatrock":193,"heavyball":194,"heavydutyboots":715,"helixfossil":195,"heracronite":590,"hondewberry":213,"houndoominite":591,"iapapaberry":217,"icegem":218,"icememory":681,"icestone":693,"icicleplate":220,"iciumz":636,"icyrock":221,"inciniumz":651,"insectplate":223,"ironball":224,"ironplate":225,"jabocaberry":230,"jawfossil":694,"kasibberry":233,"kebiaberry":234,"keeberry":593,"kelpsyberry":235,"kangaskhanite":592,"kingsrock":236,"kommoniumz":690,"laggingtail":237,"lansatberry":238,"latiasite":629,"latiosite":630,"laxincense":240,"leafstone":241,"leek":475,"leftovers":242,"leppaberry":244,"levelball":246,"liechiberry":248,"lifeorb":249,"lightball":251,"lightclay":252,"loadeddice":751,"lopunnite":626,"loveball":258,"lovesweet":705,"lucarionite":594,"luckypunch":261,"lumberry":262,"luminousmoss":595,"lunaliumz":686,"lureball":264,"lustrousglobe":742,"lustrousorb":265,"luxuryball":266,"lycaniumz":689,"machobrace":269,"magmarizer":272,"magnet":273,"magoberry":274,"magostberry":275,"mail":403,"maliciousarmor":744,"manectite":596,"marangaberry":597,"marshadiumz":654,"masterball":276,"masterpieceteacup":757,"mawilite":598,"meadowplate":282,"medichamite":599,"mentalherb":285,"metagrossite":618,"metalalloy":761,"metalcoat":286,"metalpowder":287,"metronome":289,"mewniumz":658,"mewtwonitex":600,"mewtwonitey":601,"micleberry":290,"mimikiumz":688,"mindplate":291,"miracleseed":292,"mirrorherb":748,"mistyseed":666,"moonball":294,"moonstone":295,"muscleband":297,"mysticwater":300,"nanabberry":302,"nestball":303,"netball":304,"nevermeltice":305,"nomelberry":306,"normalgem":307,"normaliumz":631,"occaberry":311,"oddincense":312,"oldamber":314,"oranberry":319,"ovalstone":321,"pamtreberry":323,"parkball":325,"passhoberry":329,"payapaberry":330,"pechaberry":333,"persimberry":334,"petayaberry":335,"pidgeotite":622,"pikaniumz":649,"pikashuniumz":659,"pinapberry":337,"pinsirite":602,"pixieplate":610,"plumefossil":339,"poisonbarb":343,"poisongem":344,"poisonmemory":670,"poisoniumz":638,"pokeball":345,"pomegberry":351,"poweranklet":354,"powerband":355,"powerbelt":356,"powerbracer":357,"powerherb":358,"powerlens":359,"powerweight":360,"premierball":363,"primariumz":652,"prismscale":365,"protectivepads":663,"protector":367,"psychicgem":369,"psychicmemory":680,"psychicseed":665,"psychiumz":641,"punchingglove":749,"qualotberry":371,"quickball":372,"quickclaw":373,"quickpowder":374,"rabutaberry":375,"rarebone":379,"rawstberry":381,"razorclaw":382,"razorfang":383,"razzberry":384,"reapercloth":385,"redcard":387,"redorb":390,"repeatball":401,"ribbonsweet":710,"rindoberry":409,"ringtarget":410,"rockgem":415,"rockincense":416,"rockmemory":672,"rockiumz":643,"rockyhelmet":417,"roomservice":717,"rootfossil":418,"roseincense":419,"roseliberry":603,"rowapberry":420,"rustedshield":699,"rustedsword":698,"sablenite":614,"sachet":691,"safariball":425,"safetygoggles":604,"sailfossil":695,"salacberry":426,"salamencite":627,"sceptilite":613,"scizorite":605,"scopelens":429,"seaincense":430,"sharpbeak":436,"sharpedonite":619,"shedshell":437,"shellbell":438,"shinystone":439,"shockdrive":442,"shucaberry":443,"silkscarf":444,"silverpowder":447,"sitrusberry":448,"skullfossil":449,"skyplate":450,"slowbronite":620,"smoothrock":453,"snorliumz":656,"snowball":606,"softsand":456,"solganiumz":685,"souldew":459,"spelltag":461,"spelonberry":462,"splashplate":463,"spookyplate":464,"sportball":465,"starfberry":472,"starsweet":709,"steelixite":621,"steelgem":473,"steelmemory":675,"steeliumz":647,"stick":475,"stickybarb":476,"stoneplate":477,"strangeball":308,"strawberrysweet":704,"sunstone":480,"swampertite":612,"sweetapple":711,"syrupyapple":755,"tamatoberry":486,"tangaberry":487,"tapuniumz":653,"tartapple":712,"terrainextender":662,"thickclub":491,"throatspray":713,"thunderstone":492,"timerball":494,"toxicorb":515,"toxicplate":516,"tr00":721,"tr01":721,"tr02":730,"tr03":731,"tr04":731,"tr05":735,"tr06":735,"tr07":722,"tr08":733,"tr09":733,"tr10":725,"tr11":734,"tr12":734,"tr13":721,"tr14":721,"tr15":730,"tr16":731,"tr17":734,"tr18":727,"tr19":721,"tr20":721,"tr21":722,"tr22":724,"tr23":725,"tr24":736,"tr25":734,"tr26":721,"tr27":721,"tr28":727,"tr29":721,"tr30":721,"tr31":729,"tr32":737,"tr33":728,"tr34":734,"tr35":721,"tr36":730,"tr37":737,"tr38":734,"tr39":722,"tr40":734,"tr41":730,"tr42":721,"tr43":730,"tr44":734,"tr45":731,"tr46":729,"tr47":736,"tr48":722,"tr49":734,"tr50":732,"tr51":736,"tr52":729,"tr53":722,"tr54":724,"tr55":730,"tr56":722,"tr57":724,"tr58":737,"tr59":732,"tr60":727,"tr61":727,"tr62":736,"tr63":726,"tr64":722,"tr65":732,"tr66":723,"tr67":725,"tr68":737,"tr69":734,"tr70":729,"tr71":732,"tr72":732,"tr73":724,"tr74":729,"tr75":726,"tr76":726,"tr77":732,"tr78":724,"tr79":729,"tr80":733,"tr81":737,"tr82":734,"tr83":734,"tr84":731,"tr85":721,"tr86":733,"tr87":725,"tr88":730,"tr89":723,"tr90":738,"tr91":724,"tr92":738,"tr93":737,"tr94":725,"tr95":737,"tr96":727,"tr97":734,"tr98":731,"tr99":722,"twistedspoon":520,"tyranitarite":607,"ultraball":521,"ultranecroziumz":687,"unremarkableteacup":756,"upgrade":523,"utilityumbrella":718,"venusaurite":608,"wacanberry":526,"watergem":528,"watermemory":677,"waterstone":529,"wateriumz":633,"watmelberry":530,"waveincense":531,"weaknesspolicy":609,"wellspringmask":759,"wepearberry":533,"whippeddream":692,"whiteherb":535,"widelens":537,"wikiberry":538,"wiseglasses":539,"yacheberry":567,"zapplate":572,"zoomlens":574,"berserkgene":388,"berry":319,"bitterberry":334,"burntberry":13,"goldberry":448,"iceberry":381,"mintberry":65,"miracleberry":262,"mysteryberry":244,"pinkbow":444,"polkadotbow":444,"przcureberry":63,"psncureberry":333,"crucibellite":577,"vilevial":752},"avatars":{"1":"lucas","2":"dawn","3":"youngster-gen4dp","4":"lass-gen4dp","5":"camper","6":"picnicker","7":"bugcatcher-gen4dp","8":"aromalady","9":"twins-gen4dp","10":"hiker-gen4","11":"battlegirl-gen4","12":"fisherman-gen4","13":"cyclist-gen4","14":"cyclistf-gen4","15":"blackbelt-gen4dp","16":"artist-gen4","17":"pokemonbreeder-gen4","18":"pokemonbreederf-gen4","19":"cowgirl","20":"jogger","21":"pokefan-gen4","22":"pokefanf-gen4","23":"pokekid","24":"youngcouple-gen4dp","25":"acetrainer-gen4dp","26":"acetrainerf-gen4dp","27":"waitress-gen4","28":"veteran-gen4","29":"ninjaboy","30":"dragontamer","31":"birdkeeper-gen4dp","32":"doubleteam","33":"richboy-gen4","34":"lady-gen4","35":"gentleman-gen4dp","36":"madame-gen4dp","37":"beauty-gen4dp","38":"collector","39":"policeman-gen4","40":"pokemonranger-gen4","41":"pokemonrangerf-gen4","42":"scientist-gen4dp","43":"swimmer-gen4dp","44":"swimmerf-gen4dp","45":"tuber","46":"tuberf","47":"sailor","48":"sisandbro","49":"ruinmaniac","50":"psychic-gen4","51":"psychicf-gen4","52":"gambler","53":"guitarist-gen4","54":"acetrainersnow","55":"acetrainersnowf","56":"skier","57":"skierf-gen4dp","58":"roughneck-gen4","59":"clown","60":"worker-gen4","61":"schoolkid-gen4dp","62":"schoolkidf-gen4","63":"roark","64":"barry","65":"byron","66":"aaron","67":"bertha","68":"flint","69":"lucian","70":"cynthia-gen4","71":"bellepa","72":"rancher","73":"mars","74":"galacticgrunt","75":"gardenia","76":"crasherwake","77":"maylene","78":"fantina","79":"candice","80":"volkner","81":"parasollady-gen4","82":"waiter-gen4dp","83":"interviewers","84":"cameraman","85":"reporter","86":"idol","87":"cyrus","88":"jupiter","89":"saturn","90":"galacticgruntf","91":"argenta","92":"palmer","93":"thorton","94":"buck","95":"darach-caitlin","96":"marley","97":"mira","98":"cheryl","99":"riley","100":"dahlia","101":"ethan","102":"lyra","103":"twins-gen4","104":"lass-gen4","105":"acetrainer-gen4","106":"acetrainerf-gen4","107":"juggler","108":"sage","109":"li","110":"gentleman-gen4","111":"teacher","112":"beauty","113":"birdkeeper","114":"swimmer-gen4","115":"swimmerf-gen4","116":"kimonogirl","117":"scientist-gen4","118":"acetrainercouple","119":"youngcouple","120":"supernerd","121":"medium","122":"schoolkid-gen4","123":"blackbelt-gen4","124":"pokemaniac","125":"firebreather","126":"burglar","127":"biker-gen4","128":"skierf","129":"boarder","130":"rocketgrunt","131":"rocketgruntf","132":"archer","133":"ariana","134":"proton","135":"petrel","136":"eusine","137":"lucas-gen4pt","138":"dawn-gen4pt","139":"madame-gen4","140":"waiter-gen4","141":"falkner","142":"bugsy","143":"whitney","144":"morty","145":"chuck","146":"jasmine","147":"pryce","148":"clair","149":"will","150":"koga","151":"bruno","152":"karen","153":"lance","154":"brock","155":"misty","156":"ltsurge","157":"erika","158":"janine","159":"sabrina","160":"blaine","161":"blue","162":"red","163":"red","164":"silver","165":"giovanni","166":"unknownf","167":"unknown","168":"unknown","169":"hilbert","170":"hilda","171":"youngster","172":"lass","173":"schoolkid","174":"schoolkidf","175":"smasher","176":"linebacker","177":"waiter","178":"waitress","179":"chili","180":"cilan","181":"cress","182":"nurseryaide","183":"preschoolerf","184":"preschooler","185":"twins","186":"pokemonbreeder","187":"pokemonbreederf","188":"lenora","189":"burgh","190":"elesa","191":"clay","192":"skyla","193":"pokemonranger","194":"pokemonrangerf","195":"worker","196":"backpacker","197":"backpackerf","198":"fisherman","199":"musician","200":"dancer","201":"harlequin","202":"artist","203":"baker","204":"psychic","205":"psychicf","206":"cheren","207":"bianca","208":"plasmagrunt-gen5bw","209":"n","210":"richboy","211":"lady","212":"pilot","213":"workerice","214":"hoopster","215":"scientistf","216":"clerkf","217":"acetrainerf","218":"acetrainer","219":"blackbelt","220":"scientist","221":"striker","222":"brycen","223":"iris","224":"drayden","225":"roughneck","226":"janitor","227":"pokefan","228":"pokefanf","229":"doctor","230":"nurse","231":"hooligans","232":"battlegirl","233":"parasollady","234":"clerk","235":"clerk-boss","236":"backers","237":"backersf","238":"veteran","239":"veteranf","240":"biker","241":"infielder","242":"hiker","243":"madame","244":"gentleman","245":"plasmagruntf-gen5bw","246":"shauntal","247":"marshal","248":"grimsley","249":"caitlin","250":"ghetsis-gen5bw","251":"depotagent","252":"swimmer","253":"swimmerf","254":"policeman","255":"maid","256":"ingo","257":"alder","258":"cyclist","259":"cyclistf","260":"cynthia","261":"emmet","262":"hilbert-wonderlauncher","263":"hilda-wonderlauncher","264":"hugh","265":"rosa","266":"nate","267":"colress","268":"beauty-gen5bw2","269":"ghetsis","270":"plasmagrunt","271":"plasmagruntf","272":"iris-gen5bw2","273":"brycenman","274":"shadowtriad","275":"rood","276":"zinzolin","277":"cheren-gen5bw2","278":"marlon","279":"roxie","280":"roxanne","281":"brawly","282":"wattson","283":"flannery","284":"norman","285":"winona","286":"tate","287":"liza","288":"juan","289":"guitarist","290":"steven","291":"wallace","292":"bellelba","293":"benga","294":"ash","1001":"#1001","1002":"#1002","1003":"#1003","1005":"#1005","1010":"#1010","#bw2elesa":"elesa-gen5bw2","#teamrocket":"teamrocket","#yellow":"yellow","#zinnia":"zinnia","#clemont":"clemont","#wally":"wally","breeder":"pokemonbreeder","breederf":"pokemonbreederf","hilbert-dueldisk":"hilbert-wonderlauncher","hilda-dueldisk":"hilda-wonderlauncher","nate-dueldisk":"nate-wonderlauncher","rosa-dueldisk":"rosa-wonderlauncher"}} \ No newline at end of file diff --git a/mods/package.json b/mods/package.json index d070080f..acdd6508 100644 --- a/mods/package.json +++ b/mods/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/mods", - "version": "0.9.29", + "version": "0.9.30", "description": "Support for non-standard mods to @pkmn/sim and @pkmn/dex", "repository": "github:pkmn/ps", "author": "Guangcong Luo (http://guangcongluo.com)", @@ -114,11 +114,11 @@ "build" ], "dependencies": { - "@pkmn/dex-types": "^0.9.29" + "@pkmn/dex-types": "^0.9.30" }, "devDependencies": { - "@pkmn/dex": "^0.9.29", - "@pkmn/sim": "^0.9.29" + "@pkmn/dex": "^0.9.30", + "@pkmn/sim": "^0.9.30" }, "scripts": { "lint": "eslint --cache src", diff --git a/protocol/package.json b/protocol/package.json index dbbdcfcd..0b9d5331 100644 --- a/protocol/package.json +++ b/protocol/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/protocol", - "version": "0.6.30", + "version": "0.6.31", "description": "Parsing logic for Pokémon Showdown's PROTOCOL and SIM-PROTOCOL", "repository": "github:pkmn/ps", "license": "MIT", @@ -40,8 +40,8 @@ "@pkmn/types": "^4.0.0" }, "devDependencies": { - "@pkmn/dex": "^0.9.29", - "@pkmn/data": "^0.9.29" + "@pkmn/dex": "^0.9.30", + "@pkmn/data": "^0.9.30" }, "scripts": { "lint": "eslint --cache src", diff --git a/protocol/src/index.ts b/protocol/src/index.ts index f35a556a..095330f1 100644 --- a/protocol/src/index.ts +++ b/protocol/src/index.ts @@ -2370,6 +2370,11 @@ function upgradeBattleArgs({args, kwArgs}: { args[0] = '-clearnegativeboost'; break; } + case '-weather': { + // @ts-ignore + if (args[1] === 'Snow') args[1] = 'Snowscape'; + break; + } // @ts-ignore case '-nothing': // OLD: |-nothing diff --git a/protocol/src/verifier/index.ts b/protocol/src/verifier/index.ts index 30609a05..d245242d 100644 --- a/protocol/src/verifier/index.ts +++ b/protocol/src/verifier/index.ts @@ -49,7 +49,7 @@ const BARE_EFFECTS = ['Dynamax', 'Recoil'] as Protocol.EffectName[]; const POKE_ITEMS = ['item', 'mail', ''] as const; const WEATHER = [ 'RainDance', 'Sandstorm', 'SunnyDay', 'Hail', - 'PrimordialSea', 'DesolateLand', 'DeltaStream', 'Snow', + 'PrimordialSea', 'DesolateLand', 'DeltaStream', 'Snowscape', ]; const FIELD_CONDITIONS = ['Misty Terrain']; const SIDE_CONDITIONS = [ diff --git a/randoms/package.json b/randoms/package.json index 7383f0c6..7beb1431 100644 --- a/randoms/package.json +++ b/randoms/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/randoms", - "version": "0.9.29", + "version": "0.9.30", "description": "Random team generation logic for Pokémon Showdown's Random Battle formats", "repository": "github:pkmn/ps", "license": "MIT", @@ -15,7 +15,7 @@ "build" ], "dependencies": { - "@pkmn/sim": "^0.9.29" + "@pkmn/sim": "^0.9.30" }, "scripts": { "lint": "eslint --cache src", diff --git a/sim/config/formats.ts b/sim/config/formats.ts index 47bebe8b..e606a431 100644 --- a/sim/config/formats.ts +++ b/sim/config/formats.ts @@ -1113,6 +1113,23 @@ export const Formats: import('../sim/dex-formats').FormatList = [ }, { name: '[Gen 1] PU', mod: 'gen1', ruleset: [ '[Gen 1] NU' ], banlist: [ 'NU', 'PUBL' ] }, { name: '[Gen 8] RU', mod: 'gen8', ruleset: [ '[Gen 8] UU' ], banlist: [ 'UU', 'RUBL' ] }, + { + name: '[Gen 3] UUBL', + mod: 'gen3', + ruleset: [ '[Gen 3] OU', '!One Boost Passer Clause' ], + banlist: [ + 'OU', + 'Smeargle + Ingrain', + 'Baton Pass + Block', + 'Baton Pass + Mean Look', + 'Baton Pass + Spider Web', + 'Flail', + 'Reversal', + 'Baton Pass + Speed Boost', + 'Baton Pass + Agility', + 'Baton Pass + Dragon Dance' + ] + }, { name: '[Gen 8] OU', mod: 'gen8', diff --git a/sim/data/abilities.ts b/sim/data/abilities.ts index 98b039e4..22b0078f 100644 --- a/sim/data/abilities.ts +++ b/sim/data/abilities.ts @@ -1426,7 +1426,7 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { if (pokemon.species.id !== 'castformrainy') forme = 'Castform-Rainy'; break; case 'hail': - case 'snow': + case 'snowscape': if (pokemon.species.id !== 'castformsnowy') forme = 'Castform-Snowy'; break; default: @@ -1895,7 +1895,7 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { }, icebody: { onWeather(target, source, effect) { - if (effect.id === 'hail' || effect.id === 'snow') { + if (effect.id === 'hail' || effect.id === 'snowscape') { this.heal(target.baseMaxhp / 16); } }, @@ -1910,7 +1910,7 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { iceface: { onSwitchInPriority: -2, onStart(pokemon) { - if (this.field.isWeather(['hail', 'snow']) && pokemon.species.id === 'eiscuenoice') { + if (this.field.isWeather(['hail', 'snowscape']) && pokemon.species.id === 'eiscuenoice') { this.add('-activate', pokemon, 'ability: Ice Face'); this.effectState.busted = false; pokemon.formeChange('Eiscue', this.effect, true); @@ -1950,7 +1950,7 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { // snow/hail resuming because Cloud Nine/Air Lock ended does not trigger Ice Face if ((sourceEffect as Ability)?.suppressWeather) return; if (!pokemon.hp) return; - if (this.field.isWeather(['hail', 'snow']) && pokemon.species.id === 'eiscuenoice') { + if (this.field.isWeather(['hail', 'snowscape']) && pokemon.species.id === 'eiscuenoice') { this.add('-activate', pokemon, 'ability: Ice Face'); this.effectState.busted = false; pokemon.formeChange('Eiscue', this.effect, true); @@ -4260,7 +4260,7 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { }, slushrush: { onModifySpe(spe, pokemon) { - if (this.field.isWeather(['hail', 'snow'])) { + if (this.field.isWeather(['hail', 'snowscape'])) { return this.chainModify(2); } }, @@ -4288,7 +4288,7 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { onModifyAccuracyPriority: -1, onModifyAccuracy(accuracy) { if (typeof accuracy !== 'number') return; - if (this.field.isWeather(['hail', 'snow'])) { + if (this.field.isWeather(['hail', 'snowscape'])) { this.debug('Snow Cloak - decreasing accuracy'); return this.chainModify([3277, 4096]); } @@ -4300,7 +4300,7 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { }, snowwarning: { onStart(source) { - this.field.setWeather('snow'); + this.field.setWeather('snowscape'); }, flags: {}, name: "Snow Warning", @@ -4860,8 +4860,12 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = { }, terashell: { // effectiveness implemented in sim/pokemon.ts:Pokemon#runEffectiveness + // needs two checks to reset between regular moves and future attacks + onAnyBeforeMove() { + delete this.effectState.resisted; + }, onAnyAfterMove() { - this.effectState.resisted = false; + delete this.effectState.resisted; }, flags: {failroleplay: 1, noreceiver: 1, noentrain: 1, notrace: 1, failskillswap: 1, breakable: 1}, name: "Tera Shell", diff --git a/sim/data/aliases.ts b/sim/data/aliases.ts index 4cc2bf0f..0e8de287 100644 --- a/sim/data/aliases.ts +++ b/sim/data/aliases.ts @@ -208,6 +208,10 @@ export const Aliases: import('../sim/dex').AliasesTable = { eiscuen: "Eiscue-Noice", eternalfloette: "Floette-Eternal", eternamax: "Eternatus-Eternamax", + genesectwater: "Genesect-Douse", + genesectelectric: "Genesect-Shock", + genesectfire: "Genesect-Burn", + genesectice: "Genesect-Chill", girao: "Giratina-Origin", giratinao: "Giratina-Origin", gourgeists: "Gourgeist-Small", diff --git a/sim/data/conditions.ts b/sim/data/conditions.ts index 57320f6f..92470f90 100644 --- a/sim/data/conditions.ts +++ b/sim/data/conditions.ts @@ -689,8 +689,8 @@ export const Conditions: import('../sim/dex-conditions').ConditionDataTable = { this.add('-weather', 'none'); }, }, - snow: { - name: 'Snow', + snowscape: { + name: 'Snowscape', effectType: 'Weather', duration: 5, durationCallback(source, effect) { @@ -701,22 +701,22 @@ export const Conditions: import('../sim/dex-conditions').ConditionDataTable = { }, onModifyDefPriority: 10, onModifyDef(def, pokemon) { - if (pokemon.hasType('Ice') && this.field.isWeather('snow')) { + if (pokemon.hasType('Ice') && this.field.isWeather('snowscape')) { return this.modify(def, 1.5); } }, onFieldStart(field, source, effect) { if (effect?.effectType === 'Ability') { if (this.gen <= 5) this.effectState.duration = 0; - this.add('-weather', 'Snow', '[from] ability: ' + effect.name, '[of] ' + source); + this.add('-weather', 'Snowscape', '[from] ability: ' + effect.name, '[of] ' + source); } else { - this.add('-weather', 'Snow'); + this.add('-weather', 'Snowscape'); } }, onFieldResidualOrder: 1, onFieldResidual() { - this.add('-weather', 'Snow', '[upkeep]'); - if (this.field.isWeather('snow')) this.eachEvent('Weather'); + this.add('-weather', 'Snowscape', '[upkeep]'); + if (this.field.isWeather('snowscape')) this.eachEvent('Weather'); }, onFieldEnd() { this.add('-weather', 'none'); diff --git a/sim/data/formats-data.ts b/sim/data/formats-data.ts index 6848aeb6..185ab76b 100644 --- a/sim/data/formats-data.ts +++ b/sim/data/formats-data.ts @@ -4878,7 +4878,7 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = tier: "LC", }, polteageist: { - tier: "UU", + tier: "UUBL", doublesTier: "(DUU)", natDexTier: "RU", }, @@ -5442,7 +5442,7 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = roaringmoon: { tier: "OU", doublesTier: "DOU", - natDexTier: "(OU)", + natDexTier: "OU", }, irontreads: { tier: "OU", @@ -5611,7 +5611,7 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = }, archaludon: { tier: "Uber", - doublesTier: "DOU", + doublesTier: "DUber", natDexTier: "UU", }, hydrapple: { @@ -5954,6 +5954,14 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = isNonstandard: "CAP", tier: "CAP", }, + chuggon: { + isNonstandard: "CAP", + tier: "CAP LC", + }, + draggalong: { + isNonstandard: "CAP", + tier: "CAP NFE", + }, chuggalong: { isNonstandard: "CAP", tier: "CAP", diff --git a/sim/data/learnsets.ts b/sim/data/learnsets.ts index 4b8f9a0a..8076d3b5 100644 --- a/sim/data/learnsets.ts +++ b/sim/data/learnsets.ts @@ -148699,7 +148699,7 @@ export const Learnsets: {[k: string]: import('../sim/dex-species').ModdedLearns spiritshackle: [ '9L45', '8L45', '7L1' ], spite: [ '9M', '7T', '7E' ], stoneedge: [ '9M', '8M', '7M' ], - substitute: [ '8M', '7M' ], + substitute: [ '9M', '8M', '7M' ], surf: [ '9M', '8M', '7M' ], swagger: [ '7M' ], takedown: [ '9M' ], @@ -150542,6 +150542,123 @@ export const Learnsets: {[k: string]: import('../sim/dex-species').ModdedLearns zenheadbutt: [ '9M' ] } }, + chuggon: { + learnset: { + acidspray: [ '9M' ], + bite: [ '9L8' ], + bodyslam: [ '9M' ], + bulldoze: [ '9M' ], + clangingscales: [ '9L48' ], + crunch: [ '9M', '9L32' ], + destinybond: [ '9E' ], + dracometeor: [ '9M' ], + dragonbreath: [ '9L12' ], + dragoncheer: [ '9M' ], + dragonclaw: [ '9M' ], + dragonpulse: [ '9M', '9L36' ], + dragonrush: [ '9E' ], + encore: [ '9M' ], + endure: [ '9M' ], + entrainment: [ '9E' ], + facade: [ '9M' ], + gunkshot: [ '9M', '9L52' ], + healbell: [ '9E' ], + helpinghand: [ '9M' ], + irondefense: [ '9M', '9L44' ], + lastresort: [ '9E' ], + metalsound: [ '9M' ], + nobleroar: [ '9E' ], + outrage: [ '9M' ], + poisongas: [ '9L1' ], + poisonjab: [ '9M' ], + poisontail: [ '9M' ], + protect: [ '9M', '9L24' ], + raindance: [ '9M' ], + rest: [ '9M' ], + roar: [ '9M', '9L28' ], + rockslide: [ '9M' ], + rocktomb: [ '9M' ], + scaleshot: [ '9M' ], + scaryface: [ '9M' ], + sleeptalk: [ '9M' ], + sludge: [ '9L20' ], + sludgebomb: [ '9M', '9L40' ], + sludgewave: [ '9M' ], + smog: [ '9L4' ], + snarl: [ '9M' ], + storedpower: [ '9M' ], + substitute: [ '9M' ], + sunnyday: [ '9M' ], + tackle: [ '9L1' ], + takedown: [ '9M' ], + taunt: [ '9M', '9L16' ], + terablast: [ '9M' ], + toxic: [ '9M' ], + trailblaze: [ '9M' ], + uproar: [ '9M' ], + venoshock: [ '9M' ] + } + }, + draggalong: { + learnset: { + acidspray: [ '9M' ], + bite: [ '9L1' ], + bodyslam: [ '9M' ], + bulldoze: [ '9M' ], + clangingscales: [ '9L51' ], + crunch: [ '9M', '9L32' ], + destinybond: [ '9E' ], + dracometeor: [ '9M' ], + dragonbreath: [ '9L12' ], + dragoncheer: [ '9M' ], + dragonclaw: [ '9M' ], + dragonpulse: [ '9M', '9L36' ], + dragonrush: [ '9E' ], + dragontail: [ '9M' ], + encore: [ '9M' ], + endure: [ '9M' ], + entrainment: [ '9E' ], + facade: [ '9M' ], + gunkshot: [ '9M', '9L56' ], + healbell: [ '9E' ], + helpinghand: [ '9M' ], + irondefense: [ '9M', '9L46' ], + ironhead: [ '9M' ], + lastresort: [ '9E' ], + metalsound: [ '9M' ], + nobleroar: [ '9E' ], + outrage: [ '9M' ], + poisongas: [ '9L1' ], + poisonjab: [ '9M' ], + poisontail: [ '9M' ], + protect: [ '9M', '9L24' ], + raindance: [ '9M' ], + rest: [ '9M' ], + roar: [ '9M', '9L28' ], + rockslide: [ '9M' ], + rocktomb: [ '9M' ], + scaleshot: [ '9M' ], + scaryface: [ '9M' ], + sleeptalk: [ '9M' ], + sludge: [ '9L20' ], + sludgebomb: [ '9M', '9L41' ], + sludgewave: [ '9M' ], + smog: [ '9L1' ], + snarl: [ '9M' ], + stompingtantrum: [ '9M' ], + storedpower: [ '9M' ], + substitute: [ '9M' ], + sunnyday: [ '9M' ], + tackle: [ '9L1' ], + takedown: [ '9M' ], + taunt: [ '9M', '9L16' ], + terablast: [ '9M' ], + toxic: [ '9M' ], + trailblaze: [ '9M' ], + uproar: [ '9M' ], + venoshock: [ '9M' ] + } + }, chuggalong: { learnset: { acidspray: [ '9M' ], @@ -150563,6 +150680,7 @@ export const Learnsets: {[k: string]: import('../sim/dex-species').ModdedLearns earthquake: [ '9M' ], encore: [ '9M' ], endure: [ '9M' ], + entrainment: [ '9E' ], facade: [ '9M' ], flashcannon: [ '9M' ], gigaimpact: [ '9M' ], @@ -150601,8 +150719,9 @@ export const Learnsets: {[k: string]: import('../sim/dex-species').ModdedLearns surf: [ '9M' ], tackle: [ '9L1' ], takedown: [ '9M' ], - taunt: [ '9M', '9L12' ], + taunt: [ '9M', '9L16' ], terablast: [ '9M' ], + toxic: [ '9M' ], trailblaze: [ '9M' ], uproar: [ '9M' ], venoshock: [ '9M' ] @@ -150610,30 +150729,76 @@ export const Learnsets: {[k: string]: import('../sim/dex-species').ModdedLearns }, shox: { learnset: { + blizzard: [ '9M' ], bodyslam: [ '9M' ], - discharge: [ '9M' ], - doubleedge: [ '9M' ], + bulldoze: [ '9M' ], + charge: [ '9M', '9L15' ], + chargebeam: [ '9M' ], + charm: [ '9M', '9L1' ], + dig: [ '9M' ], + disarmingvoice: [ '9M' ], + discharge: [ '9L44' ], + doubleedge: [ '9M', '9L58' ], + earthpower: [ '9M' ], + earthquake: [ '9M' ], + eerieimpulse: [ '9M' ], + electricterrain: [ '9M' ], + electroball: [ '9M' ], + electroweb: [ '9M' ], + endeavor: [ '9M', '9E' ], endure: [ '9M' ], facade: [ '9M' ], - glare: [ '9M' ], + gigaimpact: [ '9M' ], + glare: [ '9E' ], + growl: [ '9L1' ], + headbutt: [ '9L20' ], helpinghand: [ '9M' ], + highhorsepower: [ '9M' ], + hornattack: [ '9L1' ], + hyperbeam: [ '9M' ], hypervoice: [ '9M' ], icebeam: [ '9M' ], + icywind: [ '9M' ], + ironhead: [ '9M' ], knockoff: [ '9M' ], - milkdrink: [ '9M' ], - nuzzle: [ '9M' ], + milkdrink: [ '9L30' ], + mudshot: [ '9M' ], + mudslap: [ '9M' ], + nuzzle: [ '9E' ], + playrough: [ '9M' ], protect: [ '9M' ], + raindance: [ '9M' ], rest: [ '9M' ], + rockslide: [ '9M' ], + rocktomb: [ '9M' ], + scaryface: [ '9M', '9L51' ], + seedbomb: [ '9M' ], sleeptalk: [ '9M' ], + smartstrike: [ '9M' ], + spark: [ '9L25' ], + spitup: [ '9E' ], + stockpile: [ '9E' ], + stompingtantrum: [ '9M' ], substitute: [ '9M' ], + sunnyday: [ '9M' ], superfang: [ '9M' ], - takedown: [ '9M' ], + supercellslam: [ '9M' ], + swallow: [ '9E' ], + tackle: [ '9L1' ], + takedown: [ '9M', '9L37' ], terablast: [ '9M' ], + thief: [ '9M' ], + throatchop: [ '9M' ], thunder: [ '9M' ], - thunderwave: [ '9M' ], + thundershock: [ '9L1' ], + thunderwave: [ '9M', '9L1' ], thunderbolt: [ '9M' ], + trailblaze: [ '9M' ], + uproar: [ '9M' ], voltswitch: [ '9M' ], - wildcharge: [ '9M' ] + wildcharge: [ '9M' ], + zapcannon: [ '9L65' ], + zenheadbutt: [ '9M' ] } }, pokestarsmeargle: {}, diff --git a/sim/data/mods/gen5/abilities.ts b/sim/data/mods/gen5/abilities.ts index 06d3a2f5..032dacaf 100644 --- a/sim/data/mods/gen5/abilities.ts +++ b/sim/data/mods/gen5/abilities.ts @@ -35,20 +35,8 @@ export const Abilities: import('../../../sim/dex-abilities').ModdedAbilityDataTa }, magicbounce: { inherit: true, - onTryHit(target, source, move) { - if (target === source || move.hasBounced || !move.flags['reflectable'] || - (target.isSemiInvulnerable() && move.target !== 'foeSide')) { - return; - } - const newMove = this.dex.getActiveMove(move.id); - newMove.hasBounced = true; - newMove.pranksterBoosted = false; - this.actions.useMove(newMove, target, {target: source}); - return null; - }, onAllyTryHitSide(target, source, move) { - if (target.isAlly(source) || move.hasBounced || !move.flags['reflectable'] || - (target.isSemiInvulnerable() && move.target !== 'foeSide')) { + if (target.isAlly(source) || move.hasBounced || !move.flags['reflectable']) { return; } const newMove = this.dex.getActiveMove(move.id); diff --git a/sim/data/mods/gen5/moves.ts b/sim/data/mods/gen5/moves.ts index 03cefed4..11521fe5 100644 --- a/sim/data/mods/gen5/moves.ts +++ b/sim/data/mods/gen5/moves.ts @@ -528,8 +528,7 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = { }, onTryHitPriority: 2, onTryHit(target, source, move) { - if (target === source || move.hasBounced || !move.flags['reflectable'] || - (target.isSemiInvulnerable() && move.target !== 'foeSide')) { + if (target === source || move.hasBounced || !move.flags['reflectable'] || target.isSemiInvulnerable()) { return; } const newMove = this.dex.getActiveMove(move.id); @@ -539,8 +538,7 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = { return null; }, onAllyTryHitSide(target, source, move) { - if (target.isAlly(source) || move.hasBounced || !move.flags['reflectable'] || - (target.isSemiInvulnerable() && move.target !== 'foeSide')) { + if (target.isAlly(source) || move.hasBounced || !move.flags['reflectable']) { return; } const newMove = this.dex.getActiveMove(move.id); diff --git a/sim/data/mods/gen7/moves.ts b/sim/data/mods/gen7/moves.ts index 9bf7ade2..18d0c1e6 100644 --- a/sim/data/mods/gen7/moves.ts +++ b/sim/data/mods/gen7/moves.ts @@ -1046,8 +1046,9 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = { swallow: { inherit: true, onHit(pokemon) { + const layers = pokemon.volatiles['stockpile']?.layers || 1; const healAmount = [0.25, 0.5, 1]; - const success = !!this.heal(this.modify(pokemon.maxhp, healAmount[(pokemon.volatiles['stockpile'].layers - 1)])); + const success = !!this.heal(this.modify(pokemon.maxhp, healAmount[layers - 1])); if (!success) this.add('-fail', pokemon, 'heal'); pokemon.removeVolatile('stockpile'); return success || null; diff --git a/sim/data/moves.ts b/sim/data/moves.ts index 9c55e38b..808be59f 100644 --- a/sim/data/moves.ts +++ b/sim/data/moves.ts @@ -866,7 +866,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { flags: {snatch: 1, metronome: 1}, sideCondition: 'auroraveil', onTry() { - return this.field.isWeather(['hail', 'snow']); + return this.field.isWeather(['hail', 'snowscape']); }, condition: { duration: 5, @@ -1548,7 +1548,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { priority: 0, flags: {protect: 1, mirror: 1, metronome: 1, wind: 1}, onModifyMove(move) { - if (this.field.isWeather(['hail', 'snow'])) move.accuracy = true; + if (this.field.isWeather(['hail', 'snowscape'])) move.accuracy = true; }, secondary: { chance: 10, @@ -2486,7 +2486,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { flags: {}, // TODO show prepare message before the "POKEMON used MOVE!" message // This happens even before sleep shows its "POKEMON is fast asleep." message - weather: 'snow', + weather: 'snowscape', selfSwitch: true, secondary: null, target: "all", @@ -12699,7 +12699,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { case 'primordialsea': case 'sandstorm': case 'hail': - case 'snow': + case 'snowscape': factor = 0.25; break; } @@ -12736,7 +12736,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { case 'primordialsea': case 'sandstorm': case 'hail': - case 'snow': + case 'snowscape': factor = 0.25; break; } @@ -17839,7 +17839,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { pp: 10, priority: 0, flags: {}, - weather: 'snow', + weather: 'snowscape', secondary: null, target: "all", type: "Ice", @@ -17910,7 +17910,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { return null; }, onBasePower(basePower, pokemon, target) { - const weakWeathers = ['raindance', 'primordialsea', 'sandstorm', 'hail', 'snow']; + const weakWeathers = ['raindance', 'primordialsea', 'sandstorm', 'hail', 'snowscape']; if (weakWeathers.includes(pokemon.effectiveWeather())) { this.debug('weakened by weather'); return this.chainModify(0.5); @@ -17947,7 +17947,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { return null; }, onBasePower(basePower, pokemon, target) { - const weakWeathers = ['raindance', 'primordialsea', 'sandstorm', 'hail', 'snow']; + const weakWeathers = ['raindance', 'primordialsea', 'sandstorm', 'hail', 'snowscape']; if (weakWeathers.includes(pokemon.effectiveWeather())) { this.debug('weakened by weather'); return this.chainModify(0.5); @@ -19467,7 +19467,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { case 'primordialsea': case 'sandstorm': case 'hail': - case 'snow': + case 'snowscape': factor = 0.25; break; } @@ -21516,7 +21516,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { move.type = 'Rock'; break; case 'hail': - case 'snow': + case 'snowscape': move.type = 'Ice'; break; } @@ -21535,7 +21535,7 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { move.basePower *= 2; break; case 'hail': - case 'snow': + case 'snowscape': move.basePower *= 2; break; } diff --git a/sim/data/pokedex.ts b/sim/data/pokedex.ts index c3ff0f02..1e26d44a 100644 --- a/sim/data/pokedex.ts +++ b/sim/data/pokedex.ts @@ -19517,6 +19517,34 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { eggGroups: ["Amorphous", "Water 3"], gen: 9, }, + chuggon: { + num: -73, + name: "Chuggon", + types: ["Dragon", "Poison"], + baseStats: {hp: 30, atk: 23, def: 77, spa: 55, spd: 65, spe: 30}, + abilities: {0: "Shell Armor", 1: "White Smoke", H: "Slow Start"}, + heightm: 1, + weightkg: 50, + color: "Black", + evos: ["Draggalong"], + eggGroups: ["Dragon", "Mineral"], + gen: 9, + }, + draggalong: { + num: -74, + name: "Draggalong", + types: ["Dragon", "Poison"], + baseStats: {hp: 40, atk: 33, def: 92, spa: 95, spd: 80, spe: 85}, + abilities: {0: "Armor Tail", 1: "White Smoke", H: "Slow Start"}, + heightm: 2.5, + weightkg: 110, + color: "Black", + prevo: "Chuggon", + evoLevel: 36, + evos: ["Chuggalong"], + eggGroups: ["Dragon", "Mineral"], + gen: 9, + }, chuggalong: { num: -75, name: "Chuggalong", @@ -19526,6 +19554,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { heightm: 6.2, weightkg: 201.6, color: "Black", + prevo: "Draggalong", + evoLevel: 46, eggGroups: ["Dragon", "Mineral"], gen: 9, }, @@ -19533,8 +19563,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { num: -77, name: "Shox", types: ["Electric", "Normal"], - baseStats: {hp: 136, atk: 73, def: 81, spa: 90, spd: 98, spe: 56}, - abilities: {0: "Electromorphosis", 1: "Sticky Hold"}, + baseStats: {hp: 136, atk: 55, def: 87, spa: 108, spd: 108, spe: 56}, + abilities: {0: "Electromorphosis", 1: "Sticky Hold", H: "Cud Chew"}, heightm: 3, weightkg: 99.9, color: "Brown", diff --git a/sim/data/pokemongo.ts b/sim/data/pokemongo.ts index 508b0bc2..75f36cdb 100644 --- a/sim/data/pokemongo.ts +++ b/sim/data/pokemongo.ts @@ -8,14 +8,14 @@ * - egg: Hatches from 2, 5, or 10 km eggs * - giovanni: Shadow Pokemon rescued from Giovanni and purified * - 12kmegg: Hatches from a 12 km egg, which is obtained from Team GO Rocket Leaders which unlock at level 8 - * - raid: Caught from defeating a raid boss + * - raid: Caught from defeating a raid boss (also used for GBL encounters) * - research: Reward from field research, special research, or research breakthrough * If the Pokemon is obtainable from the wild, other sources do not need to be included due to redundancy. * For shinies that can't be obtained from the wild, all other sources should be included. * * - Shiny origin restrictions: * - noshiny: This Pokemon's shiny form is unavailable in Pokemon GO - * - nowildshiny: This Pokemon can't be obtained as shiny from the wild + * - (currently unused) nowildshiny: This Pokemon can't be obtained as shiny from the wild * * - Trade restrictions: * - notrade: This Pokemon cannot be traded at all @@ -97,9 +97,9 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { mankey: {encounters: ['wild']}, primeape: {encounters: ['wild']}, growlithe: {encounters: ['wild']}, - growlithehisui: {encounters: ['egg', 'raid', 'research', 'noshiny']}, // wild encounter available on 2023-08-26 + growlithehisui: {encounters: ['wild']}, arcanine: {encounters: ['wild']}, - arcaninehisui: {encounters: ['egg', 'raid', 'research', 'noshiny']}, // wild encounter available on 2023-08-26 + arcaninehisui: {encounters: ['wild']}, poliwag: {encounters: ['wild']}, poliwhirl: {encounters: ['wild']}, poliwrath: {encounters: ['wild']}, @@ -151,9 +151,9 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { krabby: {encounters: ['wild']}, kingler: {encounters: ['wild']}, voltorb: {encounters: ['wild']}, - voltorbhisui: {encounters: ['wild', 'noshiny']}, + voltorbhisui: {encounters: ['wild']}, electrode: {encounters: ['wild']}, - electrodehisui: {encounters: ['wild', 'noshiny']}, + electrodehisui: {encounters: ['wild']}, exeggcute: {encounters: ['wild']}, exeggutor: {encounters: ['wild']}, exeggutoralola: {encounters: ['wild']}, @@ -239,6 +239,7 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { cyndaquil: {encounters: ['wild']}, quilava: {encounters: ['wild']}, typhlosion: {encounters: ['wild']}, + typhlosionhisui: {encounters: ['raid']}, totodile: {encounters: ['wild']}, croconaw: {encounters: ['wild']}, feraligatr: {encounters: ['wild']}, @@ -276,6 +277,7 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { sunflora: {encounters: ['wild']}, yanma: {encounters: ['wild']}, wooper: {encounters: ['wild']}, + wooperpaldea: {encounters: ['wild']}, quagsire: {encounters: ['wild']}, espeon: {encounters: ['wild']}, umbreon: {encounters: ['wild']}, @@ -295,7 +297,7 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { unownj: {encounters: ['wild']}, unownk: {encounters: ['wild', 'noshiny']}, unownl: {encounters: ['wild']}, - unownm: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 + unownm: {encounters: ['wild']}, unownn: {encounters: ['wild']}, unowno: {encounters: ['wild']}, unownp: {encounters: ['wild']}, @@ -309,8 +311,8 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { unownx: {encounters: ['wild']}, unowny: {encounters: ['wild']}, unownz: {encounters: ['wild', 'noshiny']}, - unownexclamation: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - unownquestion: {encounters: ['wild', 'noshiny']}, + unownexclamation: {encounters: ['wild']}, + unownquestion: {encounters: ['wild']}, wobbuffet: {encounters: ['wild']}, girafarig: {encounters: ['wild']}, pineco: {encounters: ['wild']}, @@ -321,12 +323,12 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { snubbull: {encounters: ['wild']}, granbull: {encounters: ['wild']}, qwilfish: {encounters: ['wild']}, - qwilfishhisui: {encounters: ['wild', 'noshiny']}, + qwilfishhisui: {encounters: ['wild']}, scizor: {encounters: ['wild']}, shuckle: {encounters: ['wild']}, heracross: {encounters: ['wild']}, sneasel: {encounters: ['wild']}, - sneaselhisui: {encounters: ['wild', 'noshiny']}, + sneaselhisui: {encounters: ['wild']}, teddiursa: {encounters: ['wild']}, ursaring: {encounters: ['wild']}, slugma: {encounters: ['wild']}, @@ -334,6 +336,7 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { swinub: {encounters: ['wild']}, piloswine: {encounters: ['wild']}, corsola: {encounters: ['wild']}, + corsolagalar: {encounters: ['egg']}, remoraid: {encounters: ['wild']}, octillery: {encounters: ['wild']}, delibird: {encounters: ['wild']}, @@ -494,8 +497,8 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { registeel: {encounters: ['giovanni', 'raid', 'research', 'specialtrade']}, latias: {encounters: ['wild']}, latios: {encounters: ['wild']}, - kyogre: {encounters: ['raid', 'research', 'specialtrade']}, - groudon: {encounters: ['raid', 'research', 'specialtrade']}, + kyogre: {encounters: ['giovanni', 'raid', 'research', 'specialtrade']}, + groudon: {encounters: ['giovanni', 'raid', 'research', 'specialtrade']}, rayquaza: {encounters: ['raid', 'research', 'specialtrade']}, jirachi: {encounters: ['research', 'notrade']}, deoxys: {encounters: ['raid', 'specialtrade']}, @@ -531,14 +534,14 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { mothim: {encounters: ['wild']}, combee: {encounters: ['wild']}, vespiquen: {encounters: ['wild']}, - pachirisu: {encounters: ['wild', 'noshiny']}, + pachirisu: {encounters: ['wild']}, buizel: {encounters: ['wild']}, floatzel: {encounters: ['wild']}, cherubi: {encounters: ['wild']}, - shellos: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 - shelloseast: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 - gastrodon: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 - gastrodoneast: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 + shellos: {encounters: ['wild']}, + shelloseast: {encounters: ['wild']}, + gastrodon: {encounters: ['wild']}, + gastrodoneast: {encounters: ['wild']}, ambipom: {encounters: ['wild']}, drifloon: {encounters: ['wild']}, drifblim: {encounters: ['wild']}, @@ -548,29 +551,29 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { honchkrow: {encounters: ['wild']}, glameow: {encounters: ['wild']}, purugly: {encounters: ['wild']}, - chingling: {encounters: ['egg', 'noshiny']}, - stunky: {encounters: ['wild', 'noshiny']}, - skuntank: {encounters: ['wild', 'noshiny']}, + chingling: {encounters: ['egg']}, + stunky: {encounters: ['wild']}, + skuntank: {encounters: ['wild']}, bronzor: {encounters: ['wild']}, bronzong: {encounters: ['wild']}, bonsly: {encounters: ['egg']}, mimejr: {encounters: ['egg']}, happiny: {encounters: ['egg']}, - chatot: {encounters: ['wild', 'noshiny']}, + chatot: {encounters: ['wild']}, spiritomb: {encounters: ['research']}, gible: {encounters: ['wild']}, gabite: {encounters: ['wild']}, garchomp: {encounters: ['wild']}, munchlax: {encounters: ['egg']}, riolu: {encounters: ['egg']}, - lucario: {encounters: ['egg', 'research']}, // wild encounter available on 2023-08-18 + lucario: {encounters: ['wild']}, hippopotas: {encounters: ['wild']}, hippowdon: {encounters: ['wild']}, skorupi: {encounters: ['wild']}, drapion: {encounters: ['wild']}, croagunk: {encounters: ['wild']}, toxicroak: {encounters: ['wild']}, - carnivine: {encounters: ['wild', 'noshiny']}, + carnivine: {encounters: ['wild']}, finneon: {encounters: ['wild']}, lumineon: {encounters: ['wild']}, mantyke: {encounters: ['egg']}, @@ -594,17 +597,17 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { probopass: {encounters: ['wild']}, dusknoir: {encounters: ['wild']}, froslass: {encounters: ['wild']}, - rotom: {encounters: ['wild', 'noshiny']}, + rotom: {encounters: ['wild']}, uxie: {encounters: ['wild']}, mesprit: {encounters: ['wild']}, azelf: {encounters: ['wild']}, dialga: {encounters: ['raid', 'specialtrade']}, - palkia: {encounters: ['raid', 'specialtrade']}, - heatran: {encounters: ['raid', 'specialtrade']}, - regigigas: {encounters: ['raid', 'research', 'specialtrade']}, + palkia: {encounters: ['giovanni', 'raid', 'specialtrade']}, + heatran: {encounters: ['giovanni', 'raid', 'research', 'specialtrade']}, + regigigas: {encounters: ['giovanni', 'raid', 'research', 'specialtrade']}, giratina: {encounters: ['raid', 'specialtrade']}, - cresselia: {encounters: ['raid', 'research', 'specialtrade']}, - darkrai: {encounters: ['raid', 'notrade']}, + cresselia: {encounters: ['giovanni', 'raid', 'research', 'specialtrade']}, + darkrai: {encounters: ['raid', 'research', 'notrade']}, shaymin: {encounters: ['research', 'notrade']}, victini: {encounters: ['research', 'noshiny', 'notrade']}, snivy: {encounters: ['wild']}, @@ -616,6 +619,7 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { oshawott: {encounters: ['wild']}, dewott: {encounters: ['wild']}, samurott: {encounters: ['wild']}, + samurotthisui: {encounters: ['raid']}, patrat: {encounters: ['wild']}, watchog: {encounters: ['wild']}, lillipup: {encounters: ['wild']}, @@ -644,9 +648,9 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { drilbur: {encounters: ['wild']}, excadrill: {encounters: ['wild']}, audino: {encounters: ['wild']}, - timburr: {encounters: ['egg', 'raid']}, // wild encounter available on 2023-08-26 - gurdurr: {encounters: ['egg', 'raid']}, // wild encounter available on 2023-08-26 - conkeldurr: {encounters: ['egg', 'raid']}, // wild encounter available on 2023-08-26 + timburr: {encounters: ['wild']}, + gurdurr: {encounters: ['wild']}, + conkeldurr: {encounters: ['wild']}, tympole: {encounters: ['wild']}, palpitoad: {encounters: ['wild']}, seismitoad: {encounters: ['wild']}, @@ -660,23 +664,24 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { scolipede: {encounters: ['wild']}, cottonee: {encounters: ['wild']}, whimsicott: {encounters: ['wild']}, - petilil: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - lilligant: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - basculin: {encounters: ['wild', 'noshiny']}, - basculinbluestriped: {encounters: ['wild', 'noshiny']}, - sandile: {encounters: ['12kmegg', 'research', 'noshiny']}, - krokorok: {encounters: ['12kmegg', 'research', 'noshiny']}, - krookodile: {encounters: ['12kmegg', 'research', 'noshiny']}, + petilil: {encounters: ['wild']}, + lilligant: {encounters: ['wild']}, + basculin: {encounters: ['wild', 'noshiny']}, // Shiny available 2025-02-21 + basculinbluestriped: {encounters: ['wild', 'noshiny']}, // Shiny available 2025-02-21 + basculinwhitestriped: {encounters: ['wild']}, + sandile: {encounters: ['12kmegg', 'raid', 'research']}, + krokorok: {encounters: ['12kmegg', 'raid', 'research']}, + krookodile: {encounters: ['12kmegg', 'raid', 'research']}, darumaka: {encounters: ['wild']}, darumakagalar: {encounters: ['wild']}, darmanitan: {encounters: ['wild']}, darmanitangalar: {encounters: ['wild']}, - maractus: {encounters: ['wild', 'noshiny']}, + maractus: {encounters: ['wild', 'noshiny']}, // Shiny available 2025-02-21 dwebble: {encounters: ['wild']}, crustle: {encounters: ['wild']}, - scraggy: {encounters: ['wild', 'noshiny']}, - scrafty: {encounters: ['wild', 'noshiny']}, - sigilyph: {encounters: ['wild', 'noshiny']}, + scraggy: {encounters: ['wild']}, + scrafty: {encounters: ['wild']}, + sigilyph: {encounters: ['wild']}, yamask: {encounters: ['wild']}, yamaskgalar: {encounters: ['egg', 'raid', 'research']}, cofagrigus: {encounters: ['wild']}, @@ -686,22 +691,22 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { archeops: {encounters: ['wild']}, trubbish: {encounters: ['wild']}, garbodor: {encounters: ['wild']}, - zorua: {encounters: ['wild', 'noshiny']}, - zoroark: {encounters: ['wild', 'noshiny']}, + zorua: {encounters: ['wild']}, + zoroark: {encounters: ['wild']}, minccino: {encounters: ['wild']}, cinccino: {encounters: ['wild']}, - gothita: {encounters: ['wild', 'noshiny']}, - gothorita: {encounters: ['wild', 'noshiny']}, - gothitelle: {encounters: ['wild', 'noshiny']}, - solosis: {encounters: ['wild', 'noshiny']}, - duosion: {encounters: ['wild', 'noshiny']}, - reuniclus: {encounters: ['wild', 'noshiny']}, - ducklett: {encounters: ['wild', 'noshiny']}, - swanna: {encounters: ['wild', 'noshiny']}, - vanillite: {encounters: ['wild', 'noshiny']}, - vanillish: {encounters: ['wild', 'noshiny']}, - vanilluxe: {encounters: ['wild', 'noshiny']}, - deerling: {encounters: ['wild', 'noshiny']}, + gothita: {encounters: ['wild']}, + gothorita: {encounters: ['wild']}, + gothitelle: {encounters: ['wild']}, + solosis: {encounters: ['wild']}, + duosion: {encounters: ['wild']}, + reuniclus: {encounters: ['wild']}, + ducklett: {encounters: ['wild']}, + swanna: {encounters: ['wild']}, + vanillite: {encounters: ['wild']}, + vanillish: {encounters: ['wild']}, + vanilluxe: {encounters: ['wild']}, + deerling: {encounters: ['wild', 'noshiny']}, // Shiny available 2025-02-21 deerlingsummer: {encounters: ['wild', 'noshiny']}, deerlingautumn: {encounters: ['wild', 'noshiny']}, deerlingwinter: {encounters: ['wild', 'noshiny']}, @@ -709,7 +714,7 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { sawsbucksummer: {encounters: ['wild', 'noshiny']}, sawsbuckautumn: {encounters: ['wild', 'noshiny']}, sawsbuckwinter: {encounters: ['wild', 'noshiny']}, - emolga: {encounters: ['wild', 'noshiny']}, + emolga: {encounters: ['wild']}, karrablast: {encounters: ['wild']}, escavalier: {encounters: ['wild']}, foongus: {encounters: ['wild']}, @@ -717,16 +722,16 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { frillish: {encounters: ['wild']}, jellicent: {encounters: ['wild']}, alomomola: {encounters: ['wild']}, - joltik: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 - galvantula: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 + joltik: {encounters: ['wild']}, + galvantula: {encounters: ['wild']}, ferroseed: {encounters: ['wild']}, ferrothorn: {encounters: ['wild']}, klink: {encounters: ['wild']}, klang: {encounters: ['wild']}, klinklang: {encounters: ['wild']}, - tynamo: {encounters: ['wild', 'noshiny']}, - eelektrik: {encounters: ['wild', 'noshiny']}, - eelektross: {encounters: ['wild', 'noshiny']}, + tynamo: {encounters: ['wild']}, + eelektrik: {encounters: ['wild']}, + eelektross: {encounters: ['wild']}, elgyem: {encounters: ['wild']}, beheeyem: {encounters: ['wild']}, litwick: {encounters: ['wild']}, @@ -737,22 +742,22 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { haxorus: {encounters: ['wild']}, cubchoo: {encounters: ['wild']}, beartic: {encounters: ['wild']}, - cryogonal: {encounters: ['wild', 'noshiny']}, + cryogonal: {encounters: ['wild']}, shelmet: {encounters: ['wild']}, accelgor: {encounters: ['wild']}, stunfisk: {encounters: ['wild']}, stunfiskgalar: {encounters: ['wild']}, - mienfoo: {encounters: ['wild', 'noshiny']}, - mienshao: {encounters: ['wild', 'noshiny']}, - druddigon: {encounters: ['raid', 'research']}, - golett: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-18 - golurk: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-18 - pawniard: {encounters: ['12kmegg', 'research']}, // wild encounter available on 2023-08-18 - bisharp: {encounters: ['12kmegg', 'research']}, // wild encounter available on 2023-08-18 - bouffalant: {encounters: ['wild', 'noshiny']}, + mienfoo: {encounters: ['wild']}, + mienshao: {encounters: ['wild']}, + druddigon: {encounters: ['wild']}, + golett: {encounters: ['wild']}, + golurk: {encounters: ['wild']}, + pawniard: {encounters: ['wild']}, + bisharp: {encounters: ['wild']}, + bouffalant: {encounters: ['wild']}, rufflet: {encounters: ['wild']}, braviary: {encounters: ['wild']}, - braviaryhisui: {encounters: ['raid']}, + braviaryhisui: {encounters: ['wild']}, vullaby: {encounters: ['wild']}, mandibuzz: {encounters: ['wild']}, heatmor: {encounters: ['wild']}, @@ -760,16 +765,16 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { deino: {encounters: ['wild']}, zweilous: {encounters: ['wild']}, hydreigon: {encounters: ['wild']}, - larvesta: {encounters: ['egg', 'noshiny']}, - volcarona: {encounters: ['egg', 'noshiny']}, - cobalion: {encounters: ['raid', 'specialtrade']}, - terrakion: {encounters: ['raid', 'specialtrade']}, - virizion: {encounters: ['raid', 'specialtrade']}, - tornadus: {encounters: ['raid', 'specialtrade']}, - thundurus: {encounters: ['raid', 'specialtrade']}, + larvesta: {encounters: ['egg']}, + volcarona: {encounters: ['egg']}, + cobalion: {encounters: ['raid', 'specialtrade']}, // research available 2025-02-24 + terrakion: {encounters: ['raid', 'specialtrade']}, // research available 2025-02-24 + virizion: {encounters: ['raid', 'specialtrade']}, // research available 2025-02-24 + tornadus: {encounters: ['raid', 'research', 'specialtrade']}, // research available 2025-02-21 + thundurus: {encounters: ['raid', 'research', 'specialtrade']}, // research available 2025-02-21 reshiram: {encounters: ['raid', 'specialtrade']}, zekrom: {encounters: ['raid', 'specialtrade']}, - landorus: {encounters: ['raid', 'specialtrade']}, + landorus: {encounters: ['raid', 'research', 'specialtrade']}, // research available 2025-02-21 kyurem: {encounters: ['raid', 'specialtrade']}, // Kyurem-Black/White are not directly obtained from Pokemon GO but should be able to have legal Pokemon GO origin kyuremblack: {encounters: ['raid', 'specialtrade']}, @@ -783,9 +788,9 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { fennekin: {encounters: ['wild']}, braixen: {encounters: ['wild']}, delphox: {encounters: ['wild']}, - froakie: {encounters: ['wild', 'noshiny']}, - frogadier: {encounters: ['wild', 'noshiny']}, - greninja: {encounters: ['wild', 'noshiny']}, + froakie: {encounters: ['wild']}, + frogadier: {encounters: ['wild']}, + greninja: {encounters: ['wild']}, bunnelby: {encounters: ['wild']}, diggersby: {encounters: ['wild']}, fletchling: {encounters: ['wild']}, @@ -793,45 +798,45 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { talonflame: {encounters: ['wild']}, // Scatterbug is actually obtained in a special type of encounter, // but the level and IV floors are the same as research encounters - scatterbug: {encounters: ['research', 'noshiny']}, - spewpa: {encounters: ['research', 'noshiny']}, - vivillon: {encounters: ['research', 'noshiny']}, - vivillonarchipelago: {encounters: ['research', 'noshiny']}, - vivilloncontinent: {encounters: ['research', 'noshiny']}, - vivillonelegant: {encounters: ['research', 'noshiny']}, - vivillongarden: {encounters: ['research', 'noshiny']}, - vivillonhighplains: {encounters: ['research', 'noshiny']}, - vivillonicysnow: {encounters: ['research', 'noshiny']}, - vivillonjungle: {encounters: ['research', 'noshiny']}, - vivillonmarine: {encounters: ['research', 'noshiny']}, - vivillonmodern: {encounters: ['research', 'noshiny']}, - vivillonmonsoon: {encounters: ['research', 'noshiny']}, - vivillonocean: {encounters: ['research', 'noshiny']}, - vivillonpolar: {encounters: ['research', 'noshiny']}, - vivillonriver: {encounters: ['research', 'noshiny']}, - vivillonsandstorm: {encounters: ['research', 'noshiny']}, - vivillonsavanna: {encounters: ['research', 'noshiny']}, - vivillonsun: {encounters: ['research', 'noshiny']}, - vivillontundra: {encounters: ['research', 'noshiny']}, + scatterbug: {encounters: ['research']}, + spewpa: {encounters: ['research']}, + vivillon: {encounters: ['research']}, + vivillonarchipelago: {encounters: ['research']}, + vivilloncontinent: {encounters: ['research']}, + vivillonelegant: {encounters: ['research']}, + vivillongarden: {encounters: ['research']}, + vivillonhighplains: {encounters: ['research']}, + vivillonicysnow: {encounters: ['research']}, + vivillonjungle: {encounters: ['research']}, + vivillonmarine: {encounters: ['research']}, + vivillonmodern: {encounters: ['research']}, + vivillonmonsoon: {encounters: ['research']}, + vivillonocean: {encounters: ['research']}, + vivillonpolar: {encounters: ['research']}, + vivillonriver: {encounters: ['research']}, + vivillonsandstorm: {encounters: ['research']}, + vivillonsavanna: {encounters: ['research']}, + vivillonsun: {encounters: ['research']}, + vivillontundra: {encounters: ['research']}, litleo: {encounters: ['wild']}, pyroar: {encounters: ['wild']}, - flabebe: {encounters: ['wild', 'noshiny']}, - flabebeblue: {encounters: ['wild', 'noshiny']}, - flabebeorange: {encounters: ['wild', 'noshiny']}, - flabebewhite: {encounters: ['wild', 'noshiny']}, - flabebeyellow: {encounters: ['wild', 'noshiny']}, - floette: {encounters: ['wild', 'noshiny']}, - floetteblue: {encounters: ['wild', 'noshiny']}, - floetteorange: {encounters: ['wild', 'noshiny']}, - floettewhite: {encounters: ['wild', 'noshiny']}, - floetteyellow: {encounters: ['wild', 'noshiny']}, - florges: {encounters: ['wild', 'noshiny']}, - florgesblue: {encounters: ['wild', 'noshiny']}, - florgesorange: {encounters: ['wild', 'noshiny']}, - florgeswhite: {encounters: ['wild', 'noshiny']}, - florgesyellow: {encounters: ['wild', 'noshiny']}, - pancham: {encounters: ['wild', '12kmegg', 'raid', 'research', 'nowildshiny']}, - pangoro: {encounters: ['wild', '12kmegg', 'raid', 'research', 'nowildshiny']}, + flabebe: {encounters: ['wild']}, + flabebeblue: {encounters: ['wild']}, + flabebeorange: {encounters: ['wild']}, + flabebewhite: {encounters: ['wild']}, + flabebeyellow: {encounters: ['wild']}, + floette: {encounters: ['wild']}, + floetteblue: {encounters: ['wild']}, + floetteorange: {encounters: ['wild']}, + floettewhite: {encounters: ['wild']}, + floetteyellow: {encounters: ['wild']}, + florges: {encounters: ['wild']}, + florgesblue: {encounters: ['wild']}, + florgesorange: {encounters: ['wild']}, + florgeswhite: {encounters: ['wild']}, + florgesyellow: {encounters: ['wild']}, + pancham: {encounters: ['wild']}, + pangoro: {encounters: ['wild']}, furfrou: {encounters: ['wild']}, furfroudandy: {encounters: ['wild']}, furfroudebutante: {encounters: ['wild']}, @@ -853,97 +858,105 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { malamar: {encounters: ['wild']}, binacle: {encounters: ['wild']}, barbaracle: {encounters: ['wild']}, - skrelp: {encounters: ['wild', 'noshiny']}, - dragalge: {encounters: ['wild', 'noshiny']}, + skrelp: {encounters: ['wild']}, + dragalge: {encounters: ['wild']}, clauncher: {encounters: ['wild']}, clawitzer: {encounters: ['wild']}, helioptile: {encounters: ['wild']}, heliolisk: {encounters: ['wild']}, - tyrunt: {encounters: ['wild', 'noshiny']}, - tyrantrum: {encounters: ['wild', 'noshiny']}, - amaura: {encounters: ['wild', 'noshiny']}, - aurorus: {encounters: ['wild', 'noshiny']}, + tyrunt: {encounters: ['wild']}, + tyrantrum: {encounters: ['wild']}, + amaura: {encounters: ['wild']}, + aurorus: {encounters: ['wild']}, sylveon: {encounters: ['wild']}, hawlucha: {encounters: ['wild', 'noshiny']}, dedenne: {encounters: ['wild']}, carbink: {encounters: ['research', 'noshiny']}, - goomy: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 - sliggoo: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 - goodra: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 + goomy: {encounters: ['wild']}, + sliggoo: {encounters: ['wild']}, + goodra: {encounters: ['wild']}, klefki: {encounters: ['wild', 'noshiny']}, - phantump: {encounters: ['wild', 'noshiny']}, - trevenant: {encounters: ['wild', 'noshiny']}, - pumpkaboo: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - pumpkaboolarge: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - pumpkaboosmall: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - pumpkaboosuper: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - gourgeist: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - gourgeistlarge: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - gourgeistsmall: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - gourgeistsuper: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 + phantump: {encounters: ['wild']}, + trevenant: {encounters: ['wild']}, + pumpkaboo: {encounters: ['wild']}, + pumpkaboolarge: {encounters: ['wild']}, + pumpkaboosmall: {encounters: ['wild']}, + pumpkaboosuper: {encounters: ['wild']}, + gourgeist: {encounters: ['wild']}, + gourgeistlarge: {encounters: ['wild']}, + gourgeistsmall: {encounters: ['wild']}, + gourgeistsuper: {encounters: ['wild']}, bergmite: {encounters: ['wild']}, avalugg: {encounters: ['wild']}, - avalugghisui: {encounters: ['raid']}, + avalugghisui: {encounters: ['wild']}, noibat: {encounters: ['wild']}, noivern: {encounters: ['wild']}, xerneas: {encounters: ['raid', 'specialtrade']}, yveltal: {encounters: ['raid', 'specialtrade']}, - // zygarde: {encounters: ['research', 'noshiny']}, trading/transferring may be made available in the future - // diancie: {encounters: ['research', 'noshiny', 'notrade']}, transferring may be made available in the future + // zygarde: {encounters: ['research', 'noshiny', 'notrade']}, + diancie: {encounters: ['research', 'noshiny', 'notrade']}, hoopa: {encounters: ['raid', 'research', 'noshiny', 'notrade']}, - rowlet: {encounters: ['wild', 'noshiny']}, - dartrix: {encounters: ['wild', 'noshiny']}, - decidueye: {encounters: ['wild', 'noshiny']}, - litten: {encounters: ['wild', 'noshiny']}, - torracat: {encounters: ['wild', 'noshiny']}, - incineroar: {encounters: ['wild', 'noshiny']}, - popplio: {encounters: ['wild', 'noshiny']}, - brionne: {encounters: ['wild', 'noshiny']}, - primarina: {encounters: ['wild', 'noshiny']}, + rowlet: {encounters: ['wild']}, + dartrix: {encounters: ['wild']}, + decidueye: {encounters: ['wild']}, + decidueyehisui: {encounters: ['raid']}, + litten: {encounters: ['wild']}, + torracat: {encounters: ['wild']}, + incineroar: {encounters: ['wild']}, + popplio: {encounters: ['wild']}, + brionne: {encounters: ['wild']}, + primarina: {encounters: ['wild']}, pikipek: {encounters: ['wild', 'noshiny']}, trumbeak: {encounters: ['wild', 'noshiny']}, toucannon: {encounters: ['wild', 'noshiny']}, yungoos: {encounters: ['wild']}, gumshoos: {encounters: ['wild']}, - grubbin: {encounters: ['wild', 'noshiny']}, - charjabug: {encounters: ['wild', 'noshiny']}, - vikavolt: {encounters: ['wild', 'noshiny']}, - crabrawler: {encounters: ['wild', 'noshiny']}, - crabominable: {encounters: ['wild', 'noshiny']}, - oricorio: {encounters: ['wild', 'noshiny']}, - cutiefly: {encounters: ['wild', 'noshiny']}, - ribombee: {encounters: ['wild', 'noshiny']}, + grubbin: {encounters: ['wild']}, + charjabug: {encounters: ['wild']}, + vikavolt: {encounters: ['wild']}, + crabrawler: {encounters: ['wild']}, + crabominable: {encounters: ['wild']}, + oricorio: {encounters: ['wild']}, + cutiefly: {encounters: ['wild']}, + ribombee: {encounters: ['wild']}, rockruff: {encounters: ['wild']}, + rockruffdusk: {encounters: ['wild']}, lycanroc: {encounters: ['wild']}, lycanrocmidnight: {encounters: ['wild']}, - mareanie: {encounters: ['wild', 'noshiny']}, - toxapex: {encounters: ['wild', 'noshiny']}, - dewpider: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 - araquanid: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-04 + lycanrocdusk: {encounters: ['wild']}, + mareanie: {encounters: ['wild']}, + toxapex: {encounters: ['wild']}, + // mudbray: {encounters: ['wild']}, available 2025-03-29 + // mudsdale: {encounters: ['wild']}, + dewpider: {encounters: ['wild']}, + araquanid: {encounters: ['wild']}, fomantis: {encounters: ['wild']}, lurantis: {encounters: ['wild']}, - morelull: {encounters: ['wild', 'noshiny']}, - shiinotic: {encounters: ['wild', 'noshiny']}, - salandit: {encounters: ['12kmegg', 'noshiny']}, - salazzle: {encounters: ['12kmegg', 'noshiny']}, + morelull: {encounters: ['wild']}, + shiinotic: {encounters: ['wild']}, + salandit: {encounters: ['12kmegg', 'research', 'noshiny']}, + salazzle: {encounters: ['12kmegg', 'research', 'noshiny']}, stufful: {encounters: ['wild']}, bewear: {encounters: ['wild']}, - bounsweet: {encounters: ['wild', 'noshiny']}, - steenee: {encounters: ['wild', 'noshiny']}, - tsareena: {encounters: ['wild', 'noshiny']}, + bounsweet: {encounters: ['wild']}, + steenee: {encounters: ['wild']}, + tsareena: {encounters: ['wild']}, comfey: {encounters: ['wild', 'noshiny']}, - oranguru: {encounters: ['wild', 'noshiny']}, // shiny available on 2023-08-26 - wimpod: {encounters: ['wild', 'noshiny']}, - golisopod: {encounters: ['wild', 'noshiny']}, - sandygast: {encounters: ['raid', 'research', 'noshiny']}, - palossand: {encounters: ['raid', 'research', 'noshiny']}, - komala: {encounters: ['wild', 'noshiny']}, - turtonator: {encounters: ['raid', 'research']}, - togedemaru: {encounters: ['wild', 'noshiny']}, + oranguru: {encounters: ['wild']}, + passimian: {encounters: ['wild']}, + wimpod: {encounters: ['wild']}, + golisopod: {encounters: ['wild']}, + sandygast: {encounters: ['wild']}, + palossand: {encounters: ['wild']}, + komala: {encounters: ['wild']}, + turtonator: {encounters: ['egg', 'raid', 'research']}, + togedemaru: {encounters: ['wild']}, bruxish: {encounters: ['wild', 'noshiny']}, - jangmoo: {encounters: ['wild', 'noshiny']}, - hakamoo: {encounters: ['wild', 'noshiny']}, - kommoo: {encounters: ['wild', 'noshiny']}, + drampa: {encounters: ['egg', 'raid', 'research']}, + dhelmise: {encounters: ['raid', 'noshiny']}, + jangmoo: {encounters: ['wild']}, + hakamoo: {encounters: ['wild']}, + kommoo: {encounters: ['wild']}, tapukoko: {encounters: ['raid']}, tapulele: {encounters: ['raid']}, tapubulu: {encounters: ['raid']}, @@ -953,31 +966,111 @@ export const PokemonGoData: import('../sim/dex-species').PokemonGoDataTable = { solgaleo: {encounters: ['research', 'noshiny', 'specialtrade']}, lunala: {encounters: ['research', 'noshiny', 'specialtrade']}, nihilego: {encounters: ['raid', 'research', 'specialtrade']}, - buzzwole: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, - pheromosa: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, - xurkitree: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, - celesteela: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, - kartana: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, - guzzlord: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, + buzzwole: {encounters: ['raid', 'research', 'specialtrade']}, + pheromosa: {encounters: ['raid', 'research', 'specialtrade']}, + xurkitree: {encounters: ['raid', 'research', 'specialtrade']}, + celesteela: {encounters: ['raid', 'research', 'specialtrade']}, + kartana: {encounters: ['raid', 'research', 'specialtrade']}, + guzzlord: {encounters: ['raid', 'research', 'specialtrade']}, + poipole: {encounters: ['research', 'noshiny', 'specialtrade']}, + naganadel: {encounters: ['research', 'noshiny', 'specialtrade']}, + stakataka: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, + blacephalon: {encounters: ['raid', 'research', 'noshiny', 'specialtrade']}, + necrozma: {encounters: ['raid', 'specialtrade']}, meltan: {encounters: ['wild']}, melmetal: {encounters: ['wild']}, - skwovet: {encounters: ['wild', 'noshiny']}, - greedent: {encounters: ['wild', 'noshiny']}, + grookey: {encounters: ['wild', 'noshiny']}, + thwackey: {encounters: ['wild', 'noshiny']}, + rillaboom: {encounters: ['wild', 'noshiny']}, + scorbunny: {encounters: ['wild', 'noshiny']}, + raboot: {encounters: ['wild', 'noshiny']}, + cinderace: {encounters: ['wild', 'noshiny']}, + sobble: {encounters: ['wild', 'noshiny']}, + drizzile: {encounters: ['wild', 'noshiny']}, + inteleon: {encounters: ['wild', 'noshiny']}, + skwovet: {encounters: ['wild']}, + greedent: {encounters: ['wild']}, + rookidee: {encounters: ['wild', 'noshiny']}, + corvisquire: {encounters: ['wild', 'noshiny']}, + corviknight: {encounters: ['wild', 'noshiny']}, + toxel: {encounters: ['egg']}, + toxtricity: {encounters: ['egg', 'raid', 'research']}, + toxtricitylowkey: {encounters: ['egg', 'raid', 'research']}, + sinistea: {encounters: ['raid', 'research', 'noshiny']}, + sinisteaantique: {encounters: ['raid', 'research', 'noshiny']}, + polteageist: {encounters: ['raid', 'research', 'noshiny']}, + polteageistantique: {encounters: ['raid', 'research', 'noshiny']}, + hatenna: {encounters: ['wild', 'noshiny']}, + hattrem: {encounters: ['wild', 'noshiny']}, + hatterene: {encounters: ['wild', 'noshiny']}, obstagoon: {encounters: ['wild']}, perrserker: {encounters: ['wild']}, + cursola: {encounters: ['egg']}, sirfetchd: {encounters: ['wild']}, mrrime: {encounters: ['wild']}, runerigus: {encounters: ['egg', 'raid', 'research']}, - falinks: {encounters: ['wild', 'noshiny']}, - zacian: {encounters: ['raid', 'noshiny', 'specialtrade']}, - zamazenta: {encounters: ['raid', 'noshiny', 'specialtrade']}, + falinks: {encounters: ['wild']}, + stonjourner: {encounters: ['wild', 'noshiny']}, + morpeko: {encounters: ['wild', 'noshiny']}, + dreepy: {encounters: ['wild', 'noshiny']}, + drakloak: {encounters: ['wild', 'noshiny']}, + dragapult: {encounters: ['wild', 'noshiny']}, + zacian: {encounters: ['raid', 'specialtrade']}, + zamazenta: {encounters: ['raid', 'specialtrade']}, zarude: {encounters: ['research', 'noshiny', 'notrade']}, - regieleki: {encounters: ['raid', 'noshiny', 'specialtrade']}, - regidrago: {encounters: ['raid', 'noshiny', 'specialtrade']}, + regieleki: {encounters: ['raid', 'specialtrade']}, + regidrago: {encounters: ['raid', 'specialtrade']}, + wyrdeer: {encounters: ['wild']}, kleavor: {encounters: ['wild']}, ursaluna: {encounters: ['wild']}, - sneasler: {encounters: ['wild', 'noshiny']}, - overqwil: {encounters: ['wild', 'noshiny']}, + sneasler: {encounters: ['wild']}, + overqwil: {encounters: ['wild']}, + enamorus: {encounters: ['raid', 'noshiny', 'specialtrade']}, + sprigatito: {encounters: ['wild']}, + floragato: {encounters: ['wild']}, + meowscarada: {encounters: ['wild']}, + fuecoco: {encounters: ['wild', 'noshiny']}, // Shiny available 2025-03-08 + crocalor: {encounters: ['wild', 'noshiny']}, + skeledirge: {encounters: ['wild', 'noshiny']}, + quaxly: {encounters: ['wild', 'noshiny']}, + quaxwell: {encounters: ['wild', 'noshiny']}, + quaquaval: {encounters: ['wild', 'noshiny']}, + lechonk: {encounters: ['wild']}, + oinkologne: {encounters: ['wild']}, + oinkolognef: {encounters: ['wild']}, + nymble: {encounters: ['wild']}, + lokix: {encounters: ['wild']}, + tandemaus: {encounters: ['research', 'noshiny']}, + maushold: {encounters: ['research', 'noshiny']}, + mausholdfour: {encounters: ['research', 'noshiny']}, + fidough: {encounters: ['wild', 'noshiny']}, + dachsbun: {encounters: ['wild', 'noshiny']}, + pawmi: {encounters: ['wild', 'noshiny']}, + pawmo: {encounters: ['wild', 'noshiny']}, + pawmot: {encounters: ['wild', 'noshiny']}, + smoliv: {encounters: ['wild']}, + dolliv: {encounters: ['wild']}, + arboliva: {encounters: ['wild']}, + charcadet: {encounters: ['egg', 'research', 'noshiny']}, + armarouge: {encounters: ['egg', 'research', 'noshiny']}, + ceruledge: {encounters: ['egg', 'research', 'noshiny']}, + tadbulb: {encounters: ['wild', 'noshiny']}, + bellibolt: {encounters: ['wild', 'noshiny']}, + shroodle: {encounters: ['12kmegg', 'noshiny']}, + grafaiai: {encounters: ['12kmegg', 'noshiny']}, + wiglett: {encounters: ['wild', 'noshiny']}, + wugtrio: {encounters: ['wild', 'noshiny']}, + varoom: {encounters: ['12kmegg', 'noshiny']}, + revavroom: {encounters: ['12kmegg', 'noshiny']}, + greavard: {encounters: ['wild', 'noshiny']}, + houndstone: {encounters: ['wild', 'noshiny']}, + cetoddle: {encounters: ['wild']}, + cetitan: {encounters: ['wild']}, + annihilape: {encounters: ['wild']}, + clodsire: {encounters: ['wild', 'noshiny']}, + frigibax: {encounters: ['wild', 'noshiny']}, + arctibax: {encounters: ['wild', 'noshiny']}, + baxcalibur: {encounters: ['wild', 'noshiny']}, gimmighoulroaming: {encounters: ['wild', 'noshiny']}, gholdengo: {encounters: ['wild', 'noshiny']}, }; diff --git a/sim/data/text/default.ts b/sim/data/text/default.ts index d71689cd..2da4a122 100644 --- a/sim/data/text/default.ts +++ b/sim/data/text/default.ts @@ -290,7 +290,7 @@ export const DefaultText: {[id: IDEntry]: DefaultText} = { upkeep: " (The hail is crashing down.)", damage: " [POKEMON] is buffeted by the hail!", }, - snow: { + snowscape: { weatherName: "Snow", start: " It started to snow!", end: " The snow stopped.", diff --git a/sim/package.json b/sim/package.json index f39d6b2c..ef7ae19c 100644 --- a/sim/package.json +++ b/sim/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/sim", - "version": "0.9.29", + "version": "0.9.30", "description": "An automatically generated extraction of just the simulator portion of Pokémon Showdown", "repository": "github:pkmn/ps", "homepage": "https://psim.us", diff --git a/sim/sim/team-validator.ts b/sim/sim/team-validator.ts index 9fef4128..93fa2d71 100644 --- a/sim/sim/team-validator.ts +++ b/sim/sim/team-validator.ts @@ -2348,7 +2348,7 @@ export class TeamValidator { if (set.shiny && pokemonGoSources.includes('noshiny')) { problems.push(`${name} is not obtainable from Pokemon GO.`); } else { - if (pokemonGoSources.includes('wild') && !((set.shiny && pokemonGoSources.includes('nowildshiny')))) { + if (pokemonGoSources.includes('wild')) { minLevel = 1; minIVs = 0; } @@ -2376,7 +2376,12 @@ export class TeamValidator { minIVs = Math.min(minIVs, 0); } if (pokemonGoSources.includes('research')) { - minLevel = Math.min(minLevel, 15); + if (species.id === 'cresselia') { + // For some reason, Cresselia from research has a possible level 10 source + minLevel = Math.min(minLevel, 10); + } else { + minLevel = Math.min(minLevel, 15); + } minIVs = Math.min(minIVs, 10); } if (pokemonGoSources.includes('giovanni') && !set.shiny) { @@ -2551,7 +2556,7 @@ export class TeamValidator { const learnedGen = parseInt(learned.charAt(0)); if (formeCantInherit && (learned.charAt(1) !== 'E' || learnedGen < 9)) continue; - if (setSources.learnsetDomain && !setSources.learnsetDomain.includes(learnedGen + species.id) && + if (setSources.learnsetDomain && !setSources.learnsetDomain.includes(learnedGen + toID(species.baseSpecies)) && (learned.charAt(1) !== 'E' || learnedGen < 8) ) { if (!cantLearnReason) { @@ -2714,10 +2719,10 @@ export class TeamValidator { } moveSources.add(learned); } - if (learned.charAt(1) === 'E' && learnedGen >= 8 && !canLearnSpecies.includes(baseSpecies.id)) { - canLearnSpecies.push(baseSpecies.id); + if (learned.charAt(1) === 'E' && learnedGen >= 8 && !canLearnSpecies.includes(toID(baseSpecies.baseSpecies))) { + canLearnSpecies.push(toID(baseSpecies.baseSpecies)); } - if (!canLearnSpecies.includes(species.id)) canLearnSpecies.push(species.id); + if (!canLearnSpecies.includes(toID(species.baseSpecies))) canLearnSpecies.push(toID(species.baseSpecies)); minLearnGen = Math.min(minLearnGen, learnedGen); } if (ruleTable.has('mimicglitch') && species.gen < 5) { @@ -2819,13 +2824,14 @@ export class TeamValidator { * Case 3: Prevo-only move - allow moves of the species from the min gen and later * Case 4: Evo-only move - allow moves of the species from the max gen and before */ - if (canLearnSpecies.includes(nextSpecies.id) || + const baseSpeciesID = toID(nextSpecies.baseSpecies); + if (canLearnSpecies.includes(baseSpeciesID) || (0 < speciesCount && speciesCount < canLearnSpecies.length) || (speciesCount === 0 && gen >= minLearnGen) || (speciesCount === canLearnSpecies.length && gen <= moveSources.sourcesBefore) ) { if (!moveSources.learnsetDomain) moveSources.learnsetDomain = []; - moveSources.learnsetDomain.push(gen + nextSpecies.id); + moveSources.learnsetDomain.push(gen + baseSpeciesID); } } if (canLearnSpecies.includes(nextSpecies.id)) speciesCount++; diff --git a/sim/test/sim/abilities/emergencyexit.js b/sim/test/sim/abilities/emergencyexit.js index ed698c14..c7c8da0a 100644 --- a/sim/test/sim/abilities/emergencyexit.js +++ b/sim/test/sim/abilities/emergencyexit.js @@ -337,7 +337,7 @@ describe(`Emergency Exit`, function () { }); it.skip(`should request switchout between residual damage`, function () { - battle = common.createBattle({gameType: 'doubles'}, [[ + battle = common.gen(8).createBattle({gameType: 'doubles'}, [[ {species: 'Coalossal', level: 1, item: 'Eject Button', moves: ['rockthrow', 'sleeptalk'], gigantamax: true}, {species: 'Wynaut', level: 1, moves: ['sleeptalk', 'grasspledge']}, {species: 'Wynaut', level: 1, moves: ['sleeptalk', 'firepledge']}, diff --git a/sim/test/sim/abilities/hungerswitch.js b/sim/test/sim/abilities/hungerswitch.js index e28cb207..c37c38a7 100644 --- a/sim/test/sim/abilities/hungerswitch.js +++ b/sim/test/sim/abilities/hungerswitch.js @@ -41,7 +41,7 @@ describe("Hunger Switch", function () { }); it("should stop activating when Morpeko Terastallizes", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Morpeko', ability: 'hungerswitch', moves: ['rest']}, ], [ {species: 'Magikarp', ability: 'Swift Swim', moves: ['splash']}, @@ -54,7 +54,7 @@ describe("Hunger Switch", function () { }); it("should maintain its form when Terastallized, even when switched out", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Morpeko', ability: 'hungerswitch', moves: ['rest']}, {species: 'Furret', ability: 'Run Away', moves: ['sleeptalk']}, ], [ diff --git a/sim/test/sim/abilities/magicbounce.js b/sim/test/sim/abilities/magicbounce.js index dd3fb1d9..ff1e2b20 100644 --- a/sim/test/sim/abilities/magicbounce.js +++ b/sim/test/sim/abilities/magicbounce.js @@ -67,4 +67,21 @@ describe('Magic Bounce', function () { assert.false(battle.p1.sideConditions['stealthrock']); assert(battle.p2.sideConditions['stealthrock']); }); + + it(`[Gen 5] should bounce moves that target the foe's side while semi-invulnerable`, function () { + battle = common.gen(5).createBattle({gameType: 'doubles'}); + battle.setPlayer('p1', {team: [ + {species: "Bulbasaur", ability: 'overgrow', moves: ['growl']}, + {species: "Geodude", ability: 'rockhead', moves: ['stealthrock']}, + ]}); + battle.setPlayer('p2', {team: [ + {species: "Xatu", ability: 'magicbounce', moves: ['fly']}, + {species: "Charmander", ability: 'blaze', moves: ['sleeptalk']}, + ]}); + battle.makeChoices('auto', 'auto'); + assert.statStage(battle.p1.active[0], 'atk', 0); + assert.statStage(battle.p2.active[0], 'atk', 0); + assert(battle.p1.sideConditions['stealthrock']); + assert.false(battle.p2.sideConditions['stealthrock']); + }); }); diff --git a/sim/test/sim/abilities/neutralizinggas.js b/sim/test/sim/abilities/neutralizinggas.js index eef19f43..66a99c56 100644 --- a/sim/test/sim/abilities/neutralizinggas.js +++ b/sim/test/sim/abilities/neutralizinggas.js @@ -302,7 +302,7 @@ describe('Neutralizing Gas', function () { }); it(`should not reactivate instances of Embody Aspect that had previously activated`, function () { - battle = common.createBattle({gameType: 'freeforall'}, [[ + battle = common.gen(9).createBattle({gameType: 'freeforall'}, [[ {species: 'Ogerpon-Hearthflame', ability: 'moldbreaker', item: 'hearthflamemask', moves: ['bellydrum']}, ], [ {species: 'Ogerpon-Wellspring', ability: 'waterabsorb', item: 'wellspringmask', moves: ['sleeptalk']}, diff --git a/sim/test/sim/abilities/soulheart.js b/sim/test/sim/abilities/soulheart.js index 8e49bced..28ca2302 100644 --- a/sim/test/sim/abilities/soulheart.js +++ b/sim/test/sim/abilities/soulheart.js @@ -38,6 +38,7 @@ describe('Soul-Heart', function () { {species: 'Wynaut', ability: 'soulheart', level: 1, moves: ['sleeptalk']}, {species: 'Roggenrola', moves: ['sleeptalk']}, ]]); + battle.makeChoices(); const log = battle.getDebugLog(); const soulHeartIndex = log.indexOf('|Soul-Heart'); @@ -52,6 +53,7 @@ describe('Soul-Heart', function () { {species: 'Magearna', ability: 'soulheart', level: 1, moves: ['sleeptalk']}, {species: 'Lugia', moves: ['sleeptalk']}, ]]); + battle.makeChoices(); const log = battle.getDebugLog(); const soulHeartIndex = log.indexOf('|Soul-Heart'); diff --git a/sim/test/sim/abilities/terashell.js b/sim/test/sim/abilities/terashell.js index 0ac7bae0..a3d2c87f 100644 --- a/sim/test/sim/abilities/terashell.js +++ b/sim/test/sim/abilities/terashell.js @@ -122,7 +122,7 @@ describe('Tera Shell', function () { assert.bounded(damage, [27, 32], `Tera Shell should not have reduced the damage Struggle dealt`); }); - it.skip(`should not continue to weaken attacks after taking damage from a Future attack`, function () { + it(`should not continue to weaken attacks after taking damage from a Future attack`, function () { battle = common.createBattle([[ {species: 'Terapagos', ability: 'terashift', moves: ['sleeptalk']}, {species: 'Espeon', moves: ['sleeptalk']}, diff --git a/sim/test/sim/dex.js b/sim/test/sim/dex.js index 9c6e4ba0..3824e424 100644 --- a/sim/test/sim/dex.js +++ b/sim/test/sim/dex.js @@ -49,7 +49,7 @@ describe('Dex#getSpecies', function () { assert(!Dex.forGen(7).species.get('Minior-Meteor').isNonstandard); }); - it.skip('should handle Rockruff-Dusk', function () { + it('should handle Rockruff-Dusk', function () { assert.equal(Dex.species.get('rockruffdusk').name, 'Rockruff-Dusk'); }); diff --git a/sim/test/sim/items/abilityshield.js b/sim/test/sim/items/abilityshield.js index bb0082ff..13ba5090 100644 --- a/sim/test/sim/items/abilityshield.js +++ b/sim/test/sim/items/abilityshield.js @@ -212,7 +212,7 @@ describe('Ability Shield', function () { }); it(`should not prevent forme changes from changing the holder's ability`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'ogerpon', ability: 'defiant', item: 'abilityshield', moves: ['sleeptalk']}, ], [ {species: 'scorbunny', ability: 'libero', moves: ['agility']}, diff --git a/sim/test/sim/items/ejectpack.js b/sim/test/sim/items/ejectpack.js index 704c3969..0b052ad8 100644 --- a/sim/test/sim/items/ejectpack.js +++ b/sim/test/sim/items/ejectpack.js @@ -68,7 +68,7 @@ describe(`Eject Pack`, function () { assert.equal(battle.p1.requestState, 'switch'); }); - it.skip(`should not switch out the user if the user acquired the Eject Pack after the stat drop occurred`, function () { + it(`should not switch out the user if the user acquired the Eject Pack after the stat drop occurred`, function () { battle = common.createBattle([[ {species: 'Klefki', ability: 'magician', moves: ['lowsweep']}, {species: 'Wynaut', moves: ['sleeptalk']}, diff --git a/sim/test/sim/misc/fainted-forme-regression.js b/sim/test/sim/misc/fainted-forme-regression.js index 1fa2c196..6ffb2a1f 100644 --- a/sim/test/sim/misc/fainted-forme-regression.js +++ b/sim/test/sim/misc/fainted-forme-regression.js @@ -76,7 +76,7 @@ describe(`Fainted forme regression`, function () { }); it("should revert Terastallized Morpeko-Hangry to base Morpeko", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Morpeko', ability: 'hungerswitch', moves: ['memento', 'sleeptalk']}, {species: 'darkrai', moves: ['darkpulse']}, ], [ @@ -107,7 +107,7 @@ describe(`Fainted forme regression`, function () { }); it(`should revert Ogerpon-Tera to base Ogerpon`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ { species: 'ogerponwellspring', ability: 'waterabsorb', item: 'wellspring mask', moves: ['memento'], teraType: 'Water', @@ -136,7 +136,7 @@ describe(`Fainted forme regression`, function () { }); it(`should revert Terapagos-Stellar to base Terapagos`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'terapagos', ability: 'terashift', moves: ['memento'], teraType: 'Stellar'}, {species: 'darkrai', moves: ['darkpulse']}, ], [ diff --git a/sim/test/sim/misc/terapagos.js b/sim/test/sim/misc/terapagos.js index a1276f21..6e6274c6 100644 --- a/sim/test/sim/misc/terapagos.js +++ b/sim/test/sim/misc/terapagos.js @@ -11,7 +11,7 @@ describe(`Terapagos`, function () { }); it.skip(`should accept the Terastallization choice, but not Terastallize while Transformed into Terapagos-Terastal`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'ditto', ability: 'imposter', moves: ['sleeptalk']}, ], [ {species: 'terapagos', ability: 'terashift', moves: ['sleeptalk'], teraType: 'Stellar'}, @@ -25,7 +25,7 @@ describe(`Terapagos`, function () { }); it(`[Hackmons] should not cause Terapagos-Terastal to become Terapagos-Stellar if the user is Transformed`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'terapagos', ability: 'terashift', moves: ['transform'], teraType: 'Stellar'}, {species: 'pikachu', moves: ['sleeptalk']}, ], [ diff --git a/sim/test/sim/misc/terastal.js b/sim/test/sim/misc/terastal.js index 143907bb..34c17bf1 100644 --- a/sim/test/sim/misc/terastal.js +++ b/sim/test/sim/misc/terastal.js @@ -11,7 +11,7 @@ describe("Terastallization", function () { }); it('should change the user\'s type to its Tera type after terastallizing', function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Ampharos', ability: 'static', moves: ['voltswitch', 'dragonpulse'], teraType: 'Dragon'}, ], [ {species: 'Ampharos', ability: 'static', moves: ['voltswitch'], teraType: 'Dragon'}, @@ -21,7 +21,7 @@ describe("Terastallization", function () { }); it('should persist the user\'s changed type after switching', function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Ampharos', ability: 'static', moves: ['voltswitch', 'dragonpulse'], teraType: 'Dragon'}, {species: 'Flaaffy', ability: 'static', moves: ['voltswitch', 'dragonpulse'], teraType: 'Electric'}, ], [ @@ -34,7 +34,7 @@ describe("Terastallization", function () { }); it('should give STAB correctly to the user\'s old types', function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Ampharos', ability: 'shellarmor', moves: ['shockwave', 'swift'], teraType: 'Electric'}, ], [ {species: 'Ampharos', ability: 'shellarmor', moves: ['shockwave', 'swift'], teraType: 'Normal'}, @@ -49,7 +49,7 @@ describe("Terastallization", function () { assert.bounded(nonTeraDamage, [40, 48], "Terastallizing did not keep old type's STAB; actual damage: " + nonTeraDamage); - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Mimikyu', ability: 'disguise', item: 'laggingtail', moves: ['shadowclaw', 'waterfall', 'sleeptalk'], teraType: 'Water'}, ], [ {species: 'Alomomola', ability: 'battlearmor', moves: ['soak'], teraType: 'Normal'}, @@ -73,7 +73,7 @@ describe("Terastallization", function () { }); it('should give STAB correctly to the user\'s underlying types after changing forme', function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Mimikyu', ability: 'disguise', item: 'laggingtail', moves: ['shadowclaw', 'waterfall', 'sleeptalk'], teraType: 'Water'}, ], [ {species: 'Alomomola', ability: 'battlearmor', moves: ['watergun', 'soak'], teraType: 'Normal'}, @@ -99,7 +99,7 @@ describe("Terastallization", function () { describe('Buffing low BP move behavior', function () { it(`should boost the base power of weaker moves with the same Tera Type to 60 BP`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'magnemite', moves: ['nuzzle']}, ], [ {species: 'mew', ability: 'shellarmor', moves: ['sleeptalk']}, @@ -112,7 +112,7 @@ describe("Terastallization", function () { }); it(`should only boost base power 60 BP after all other base power modifiers are applied`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'cufant', ability: 'technician', moves: ['bulletpunch']}, ], [ {species: 'mew', ability: 'shellarmor', moves: ['sleeptalk']}, @@ -125,7 +125,7 @@ describe("Terastallization", function () { }); it(`should not boost the base power of moves with variable base power under 60 BP`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'wiglett', ivs: {hp: 0}, moves: ['waterspout']}, ], [ {species: 'mew', ability: 'shellarmor', moves: ['seismictoss']}, @@ -138,7 +138,7 @@ describe("Terastallization", function () { }); it(`should boost STAB moves that weren't STAB moves prior to terastallizing`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'espathra', evs: {atk: 252}, moves: ['peck', 'aerialace'], teraType: 'Flying'}, ], [ {species: 'arceus', ability: 'shellarmor', moves: ['haze']}, @@ -153,7 +153,7 @@ describe("Terastallization", function () { }); it(`shouldn't boost non-STAB moves with <60 Base Power`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'palafinhero', moves: ['leafage'], teraType: 'Electric'}, ], [ {species: 'arceus', ability: 'shellarmor', moves: ['haze']}, @@ -168,7 +168,7 @@ describe("Terastallization", function () { }); it(`shouldn't boost <60 Base Power priority moves forced via Encore`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'hariyama', moves: ['bulletpunch', 'sleeptalk'], teraType: 'Steel'}, ], [ {species: 'salazzle ', moves: ['encore', 'sleeptalk']}, @@ -184,7 +184,7 @@ describe("Terastallization", function () { }); it("should combine with Adaptability for an overall STAB of x2.25", () => { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Dragalge", ability: 'adaptability', moves: ['venoshock'], teraType: "Poison"}, ], [ {species: "Mareep", ability: 'static', moves: ['sleeptalk']}, @@ -195,7 +195,7 @@ describe("Terastallization", function () { }); it("should not give the Adaptability boost on the user's old types", () => { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Dragalge", ability: 'adaptability', moves: ['venoshock'], teraType: "Dragon"}, ], [ {species: "Mareep", ability: 'static', moves: ['sleeptalk']}, @@ -206,7 +206,7 @@ describe("Terastallization", function () { }); it(`should allow hacked Megas to Terastallize in Hackmons play`, function () { - battle = common.createBattle({formatid: 'gen9purehackmons@@@!teampreview'}, [[ + battle = common.gen(9).createBattle({formatid: 'gen9purehackmons@@@!teampreview'}, [[ {species: 'Mewtwo-Mega-X', moves: ['sleeptalk'], teraType: 'Fairy'}, ], [ {species: 'Necrozma-Ultra', moves: ['sleeptalk'], teraType: 'Normal'}, diff --git a/sim/test/sim/misc/terastellar.js b/sim/test/sim/misc/terastellar.js index b6e51e4f..c9985631 100644 --- a/sim/test/sim/misc/terastellar.js +++ b/sim/test/sim/misc/terastellar.js @@ -11,7 +11,7 @@ describe("Tera Stellar", function () { }); it(`should increase the damage of non-STAB moves by 1.2x on the first use of that move type`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Wynaut', ability: 'noguard', moves: ['surf', 'hydropump', 'extrasensory', 'hyperspacehole'], teraType: 'Stellar'}, ], [ {species: 'Happiny', ability: 'shellarmor', moves: ['softboiled']}, @@ -45,7 +45,7 @@ describe("Tera Stellar", function () { }); it(`should not have the once-per-type restriction when used by Terapagos`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Terapagos', ability: 'terashift', moves: ['surf', 'hypervoice'], item: 'laggingtail', teraType: 'Stellar'}, ], [ {species: 'Chansey', ability: 'shellarmor', moves: ['softboiled']}, @@ -71,7 +71,7 @@ describe("Tera Stellar", function () { }); it(`should not modify the Pokemon's base type for defensive purposes`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Krookodile', moves: ['sleeptalk'], teraType: 'Stellar'}, ], [ {species: 'Tornadus', ability: 'prankster', moves: ['psychic', 'thunderwave', 'leer']}, @@ -92,7 +92,7 @@ describe("Tera Stellar", function () { }); it(`should only be super-effective against opposing Terastallized targets`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Krookodile', moves: ['terablast'], teraType: 'Stellar'}, ], [ {species: 'Steelix', item: 'weaknesspolicy', moves: ['sleeptalk'], teraType: 'Stellar'}, @@ -104,7 +104,7 @@ describe("Tera Stellar", function () { }); it(`should increase the user's stats with Tera Blast if the user has Contrary`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'inkay', ability: 'contrary', moves: ['terablast'], teraType: 'Stellar'}, ], [ {species: 'chansey', moves: ['sleeptalk']}, @@ -118,7 +118,7 @@ describe("Tera Stellar", function () { }); it(`should not work with Adapatability`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Wynaut', ability: 'adaptability', moves: ['hyperspacehole', 'terablast'], teraType: 'Stellar'}, ], [ {species: 'Happiny', ability: 'shellarmor', moves: ['softboiled']}, @@ -144,7 +144,7 @@ describe("Tera Stellar", function () { }); it(`should increase the damage of all hits of a multi-hit move`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Wynaut', moves: ['surgingstrikes', 'flipturn'], teraType: 'Stellar'}, ], [ {species: 'Blissey', moves: ['softboiled']}, diff --git a/sim/test/sim/moves/dragoncheer.js b/sim/test/sim/moves/dragoncheer.js index 358b04fa..f37b8657 100644 --- a/sim/test/sim/moves/dragoncheer.js +++ b/sim/test/sim/moves/dragoncheer.js @@ -67,7 +67,7 @@ describe('Dragon Cheer', function () { }); it('should not increase ratio if affected Pokemon turns into a Dragon Type after Dragon Cheer', function () { - battle = common.createBattle({gameType: 'doubles'}, [[ + battle = common.gen(9).createBattle({gameType: 'doubles'}, [[ {species: 'dragapult', moves: ['dragoncheer', 'splash']}, {species: 'horsea', moves: ['bubble'], teraType: 'Dragon'}, ], [ diff --git a/sim/test/sim/moves/roost.js b/sim/test/sim/moves/roost.js index cbca162a..3d3db325 100644 --- a/sim/test/sim/moves/roost.js +++ b/sim/test/sim/moves/roost.js @@ -86,7 +86,7 @@ describe('Roost', function () { }); it('should not remove Flying type during Terastallization', function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Dudunsparce", ability: "runaway", moves: ['sleeptalk', 'roost'], teraType: "Flying"}, ], [ {species: "Chansey", ability: "naturalcure", moves: ['earthquake']}, diff --git a/sim/test/sim/moves/tarshot.js b/sim/test/sim/moves/tarshot.js index b69d1c61..77c9164e 100644 --- a/sim/test/sim/moves/tarshot.js +++ b/sim/test/sim/moves/tarshot.js @@ -64,7 +64,7 @@ describe('Tar Shot', function () { }); it(`should not remove the Tar Shot status when a Pokemon Terastallizes`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'wynaut', moves: ['tarshot', 'flamecharge']}, ], [ {species: 'snorlax', item: 'weaknesspolicy', moves: ['sleeptalk']}, @@ -76,7 +76,7 @@ describe('Tar Shot', function () { }); it(`should prevent a Terastallized Pokemon from being afflicted with the Tar Shot status`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'wynaut', moves: ['tarshot', 'flamecharge']}, ], [ {species: 'snorlax', item: 'weaknesspolicy', moves: ['sleeptalk']}, diff --git a/sim/test/sim/moves/terablast.js b/sim/test/sim/moves/terablast.js index 9bb48d73..631e6309 100644 --- a/sim/test/sim/moves/terablast.js +++ b/sim/test/sim/moves/terablast.js @@ -5,7 +5,7 @@ const common = require('./../../common'); describe('Tera Blast', function () { it(`should be a special attack when base stats are tied`, function () { - const battle = common.createBattle([[ + const battle = common.gen(9).createBattle([[ // Regidrago has equal base attack and special attack stats. {species: 'regidrago', ability: 'dragonsmaw', moves: ['terablast']}, ], [ @@ -17,7 +17,7 @@ describe('Tera Blast', function () { }); it(`should be a physical attack when terastallized with higher attack stat`, function () { - const battle = common.createBattle([[ + const battle = common.gen(9).createBattle([[ // Regidrago has equal base attack and special attack stats. {species: 'regidrago', ability: 'dragonsmaw', moves: ['terablast', 'dragondance']}, ], [ @@ -47,7 +47,7 @@ describe('Tera Blast', function () { // Skipped until https://github.com/smogon/pokemon-showdown/issues/9381 is fixed. it.skip(`should be a special attack when terastallized even if target ignores stat changes`, function () { - const battle = common.createBattle([[ + const battle = common.gen(9).createBattle([[ // Regidrago has equal base attack and special attack stats. {species: 'regidrago', ability: 'dragonsmaw', moves: ['terablast', 'dragondance']}, ], [ diff --git a/sim/test/sim/moves/terastarstorm.js b/sim/test/sim/moves/terastarstorm.js index b281337c..9f5546c6 100644 --- a/sim/test/sim/moves/terastarstorm.js +++ b/sim/test/sim/moves/terastarstorm.js @@ -11,7 +11,7 @@ describe(`Tera Starstorm`, function () { }); it(`should be a physical attack when terastallized with higher attack stat and the user is Terapagos-Stellar`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'terapagos', evs: {atk: 252}, ability: 'terashift', moves: ['terastarstorm'], teraType: 'Stellar'}, ], [ {species: 'regirock', moves: ['sleeptalk']}, @@ -22,7 +22,7 @@ describe(`Tera Starstorm`, function () { }); it(`should be a spread move when the user is Terapagos-Stellar`, function () { - battle = common.createBattle({gameType: 'doubles'}, [[ + battle = common.gen(9).createBattle({gameType: 'doubles'}, [[ {species: 'terapagos', ability: 'terashift', moves: ['terastarstorm'], teraType: 'Stellar'}, {species: 'pichu', moves: ['sleeptalk']}, ], [ @@ -38,7 +38,7 @@ describe(`Tera Starstorm`, function () { }); it(`should only get its unique properties while the user is Terapagos-Stellar`, function () { - battle = common.createBattle({gameType: 'doubles'}, [[ + battle = common.gen(9).createBattle({gameType: 'doubles'}, [[ {species: 'incineroar', moves: ['terastarstorm'], teraType: 'Stellar'}, {species: 'pichu', moves: ['sleeptalk']}, ], [ diff --git a/sim/test/sim/moves/transform.js b/sim/test/sim/moves/transform.js index dc1fa9a4..04771f11 100644 --- a/sim/test/sim/moves/transform.js +++ b/sim/test/sim/moves/transform.js @@ -163,9 +163,15 @@ describe('Transform', function () { const abilityAnnounceIndex = log.indexOf('|-endability|'); assert.equal(abilityAnnounceIndex, -1, `It should not announce the user's ability was suppressed.`); }); +}); + +describe('Transform [Gen 9]', function () { + afterEach(function () { + battle.destroy(); + }); it("should copy the target's old types, not the Tera Type", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Ditto", ability: "limber", moves: ['transform'], teraType: "Fire"}, ], [ {species: "Ampharos", ability: "static", moves: ['sleeptalk'], teraType: "Dragon"}, @@ -177,7 +183,7 @@ describe('Transform', function () { }); it("should keep the user's Tera Type when Terastallized", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Ditto", ability: "limber", moves: ['transform'], teraType: "Fire"}, ], [ {species: "Ampharos", ability: "static", moves: ['sleeptalk'], teraType: "Dragon"}, @@ -187,7 +193,7 @@ describe('Transform', function () { }); it("should fail against Ogerpon when the user is Terastallized", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Ditto", ability: "limber", moves: ['transform'], teraType: "Fire"}, ], [ {species: "Ogerpon", ability: "defiant", moves: ['sleeptalk'], teraType: "Grass"}, @@ -197,7 +203,7 @@ describe('Transform', function () { }); it("should fail against Ogerpon when Ogerpon is Terastallized", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Ditto", ability: "limber", moves: ['transform'], teraType: "Fire"}, ], [ {species: "Ogerpon", ability: "defiant", moves: ['sleeptalk'], teraType: "Grass"}, @@ -207,7 +213,7 @@ describe('Transform', function () { }); it("should prevent Pokemon transformed into Ogerpon from Terastallizing", function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: "Ditto", ability: "limber", moves: ['transform'], teraType: "Fire"}, ], [ {species: "Ogerpon", ability: "defiant", moves: ['sleeptalk'], teraType: "Grass"}, @@ -217,7 +223,7 @@ describe('Transform', function () { }); it("should not allow Pokemon transformed into Ogerpon to Terastallize later if they couldn't before transforming", function () { - battle = common.createBattle({formatid: 'gen9customgame@@@!teampreview,terastalclause'}, [[ + battle = common.gen(9).createBattle({formatid: 'gen9customgame@@@!teampreview,terastalclause'}, [[ {species: "Ditto", ability: "limber", moves: ['transform'], teraType: "Fire"}, {species: "Shedinja", ability: "wonderguard", moves: ['transform'], teraType: "Fire"}, ], [ @@ -231,7 +237,7 @@ describe('Transform', function () { }); it(`should not work if the user is Tera Stellar`, function () { - battle = common.createBattle([[ + battle = common.gen(9).createBattle([[ {species: 'Ditto', ability: 'limber', moves: ['transform'], teraType: 'Stellar'}, ], [ {species: 'Wynaut', moves: ['sleeptalk']}, diff --git a/vendor/pokemon-showdown b/vendor/pokemon-showdown index 8ecd61e5..44a9e287 160000 --- a/vendor/pokemon-showdown +++ b/vendor/pokemon-showdown @@ -1 +1 @@ -Subproject commit 8ecd61e535628c056c15361419e98de3922a83b1 +Subproject commit 44a9e287fc9e81935b2c1d05d66e57da10a4972b diff --git a/vendor/pokemon-showdown-client b/vendor/pokemon-showdown-client index dd3dc08a..3d4de887 160000 --- a/vendor/pokemon-showdown-client +++ b/vendor/pokemon-showdown-client @@ -1 +1 @@ -Subproject commit dd3dc08a6d5b292fbaebc723748a7570d3bda69a +Subproject commit 3d4de8870685b972f4d757dfe98f48c9dfb1e553 diff --git a/view/package.json b/view/package.json index 155e4422..a43235ef 100644 --- a/view/package.json +++ b/view/package.json @@ -1,6 +1,6 @@ { "name": "@pkmn/view", - "version": "0.6.30", + "version": "0.6.31", "description": "Library for building Pokémon Showdown client UIs", "repository": "github:pkmn/ps", "license": "MIT", @@ -18,7 +18,7 @@ "build" ], "dependencies": { - "@pkmn/protocol": "^0.6.30", + "@pkmn/protocol": "^0.6.31", "@pkmn/types": "^4.0.0" }, "scripts": { diff --git a/view/src/data/text.json b/view/src/data/text.json index f7295344..0d985a30 100644 --- a/view/src/data/text.json +++ b/view/src/data/text.json @@ -220,7 +220,7 @@ "upkeep": " (The hail is crashing down.)", "damage": " [POKEMON] is buffeted by the hail!" }, - "snow": { + "snowscape": { "weatherName": "Snow", "start": " It started to snow!", "end": " The snow stopped.", diff --git a/view/src/formatter.ts b/view/src/formatter.ts index 06628c78..9bc712f6 100644 --- a/view/src/formatter.ts +++ b/view/src/formatter.ts @@ -69,7 +69,7 @@ const WEATHERS: {[id: string]: ID} = { harshsunshine: 'desolateland' as ID, heavyrain: 'primordialsea' as ID, strongwinds: 'deltastream' as ID, - snow: 'snow' as ID, + snow: 'snowscape' as ID, }; const NOOP = () => undefined;