Created
June 24, 2022 07:22
-
-
Save favna/1bd4eda6196641abca119a1c97482be1 to your computer and use it in GitHub Desktop.
GraphqlPokemon Teaser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fragment statsData on Stats { | |
hp | |
attack | |
defense | |
specialattack | |
specialdefense | |
speed | |
} | |
fragment evData on EvYields { | |
hp | |
attack | |
defense | |
specialattack | |
specialdefense | |
speed | |
} | |
fragment pokemonData on Pokemon { | |
species | |
key | |
backSprite | |
sprite | |
shinyBackSprite | |
shinySprite | |
baseForme | |
baseSpecies | |
baseStats { | |
...statsData | |
} | |
baseStatsTotal | |
bulbapediaPage | |
catchRate { | |
base | |
percentageWithOrdinaryPokeballAtFullHealth | |
} | |
color | |
cosmeticFormes | |
eggGroups | |
evolutionLevel | |
evYields { | |
...evData | |
} | |
flavorTexts { | |
flavor | |
game | |
} | |
forme | |
formeLetter | |
gender { | |
male | |
female | |
} | |
height | |
isEggObtainable | |
levellingRate | |
maximumHatchTime | |
minimumHatchTime | |
num | |
otherFormes | |
serebiiPage | |
smogonPage | |
smogonTier | |
weight | |
} | |
fragment abilitySubset on Ability { | |
key | |
desc | |
isFieldAbility | |
name | |
serebiiPage | |
shortDesc | |
smogonPage | |
} | |
fragment abilityData on Ability { | |
...abilitySubset | |
pokemonThatHaveThisAbility { | |
...pokemonData | |
abilities { | |
first { | |
name | |
} | |
} | |
} | |
} | |
query GetAbility($ability: AbilitiesEnum!) { | |
getAbility(ability: $ability) { | |
...abilityData | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"getAbility": { | |
"key": "blaze", | |
"desc": "When this Pokémon has 1/3 or less of its maximum HP, rounded down, its attacking stat is multiplied by 1.5 while using a Fire-type attack.", | |
"isFieldAbility": null, | |
"name": "Blaze", | |
"serebiiPage": "https://www.serebii.net/abilitydex/blaze.shtml", | |
"shortDesc": "At 1/3 or less of its max HP, this Pokémon's attacking stat is 1.5x with Fire attacks.", | |
"smogonPage": "https://www.smogon.com/dex/ss/abilities/blaze", | |
"pokemonThatHaveThisAbility": [ | |
{ | |
"species": "smogecko", | |
"key": "smogecko", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/gen5-back/smogecko.png", | |
"sprite": "https://play.pokemonshowdown.com/sprites/gen5/smogecko.png", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/gen5-back-shiny/smogecko.png", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/gen5-shiny/smogecko.png", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 48, | |
"attack": 66, | |
"defense": 43, | |
"specialattack": 58, | |
"specialdefense": 48, | |
"speed": 56 | |
}, | |
"baseStatsTotal": 319, | |
"bulbapediaPage": "", | |
"catchRate": { | |
"base": 0, | |
"percentageWithOrdinaryPokeballAtFullHealth": "0%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Monster" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.5, | |
"isEggObtainable": false, | |
"levellingRate": null, | |
"maximumHatchTime": null, | |
"minimumHatchTime": null, | |
"num": -48, | |
"otherFormes": null, | |
"serebiiPage": "", | |
"smogonPage": "", | |
"smogonTier": "CAP", | |
"weight": 8.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "smoguana", | |
"key": "smoguana", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/gen5-back/smoguana.png", | |
"sprite": "https://play.pokemonshowdown.com/sprites/gen5/smoguana.png", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/gen5-back-shiny/smoguana.png", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/gen5-shiny/smoguana.png", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 68, | |
"attack": 86, | |
"defense": 53, | |
"specialattack": 68, | |
"specialdefense": 68, | |
"speed": 76 | |
}, | |
"baseStatsTotal": 419, | |
"bulbapediaPage": "", | |
"catchRate": { | |
"base": 0, | |
"percentageWithOrdinaryPokeballAtFullHealth": "0%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Monster" | |
], | |
"evolutionLevel": "15", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.5, | |
"isEggObtainable": false, | |
"levellingRate": null, | |
"maximumHatchTime": null, | |
"minimumHatchTime": null, | |
"num": -49, | |
"otherFormes": null, | |
"serebiiPage": "", | |
"smogonPage": "", | |
"smogonTier": "CAP", | |
"weight": 22.2, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "smokomodo", | |
"key": "smokomodo", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/gen5-back/smokomodo.png", | |
"sprite": "https://play.pokemonshowdown.com/sprites/gen5/smokomodo.png", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/gen5-back-shiny/smokomodo.png", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/gen5-shiny/smokomodo.png", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 88, | |
"attack": 116, | |
"defense": 67, | |
"specialattack": 88, | |
"specialdefense": 78, | |
"speed": 97 | |
}, | |
"baseStatsTotal": 534, | |
"bulbapediaPage": "", | |
"catchRate": { | |
"base": 0, | |
"percentageWithOrdinaryPokeballAtFullHealth": "0%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Monster" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 2.2, | |
"isEggObtainable": false, | |
"levellingRate": null, | |
"maximumHatchTime": null, | |
"minimumHatchTime": null, | |
"num": -50, | |
"otherFormes": null, | |
"serebiiPage": "", | |
"smogonPage": "", | |
"smogonTier": "CAP", | |
"weight": 205, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "charmander", | |
"key": "charmander", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/charmander.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/charmander.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/charmander.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/charmander.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 39, | |
"attack": 52, | |
"defense": 43, | |
"specialattack": 60, | |
"specialdefense": 50, | |
"speed": 65 | |
}, | |
"baseStatsTotal": 309, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/charmander_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Monster", | |
"Dragon" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "The fire on the tip of its tail is a measure of its life. If healthy, its tail burns intensely.", | |
"game": "Shining Pearl" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.6, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 4, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/charmander", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/charmander", | |
"smogonTier": "LC", | |
"weight": 8.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "charmeleon", | |
"key": "charmeleon", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/charmeleon.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/charmeleon.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/charmeleon.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/charmeleon.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 58, | |
"attack": 64, | |
"defense": 58, | |
"specialattack": 80, | |
"specialdefense": 65, | |
"speed": 80 | |
}, | |
"baseStatsTotal": 405, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/charmeleon_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Monster", | |
"Dragon" | |
], | |
"evolutionLevel": "16", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 1, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "In the rocky mountains where Charmeleon live, their fiery tails shine at night like stars.", | |
"game": "Shining Pearl" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.1, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 5, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/charmeleon", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/charmeleon", | |
"smogonTier": "NFE", | |
"weight": 19, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "charizard", | |
"key": "charizard", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/charizard.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/charizard.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/charizard.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/charizard.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 78, | |
"attack": 84, | |
"defense": 78, | |
"specialattack": 109, | |
"specialdefense": 85, | |
"speed": 100 | |
}, | |
"baseStatsTotal": 534, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/charizard_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Monster", | |
"Dragon" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 3, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "It is said that Charizard's fire burns hotter if it has experienced harsh battles.", | |
"game": "Shining Pearl" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.7, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 6, | |
"otherFormes": [ | |
"charizardmegax", | |
"charizardmegay", | |
"charizardgmax" | |
], | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/charizard", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/charizard", | |
"smogonTier": "PU", | |
"weight": 90.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "charizard-gmax", | |
"key": "charizardgmax", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/charizard-gmax.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/charizard-gmax.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/charizard-gmax.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/charizard-gmax.gif", | |
"baseForme": null, | |
"baseSpecies": "Charizard", | |
"baseStats": { | |
"hp": 78, | |
"attack": 84, | |
"defense": 78, | |
"specialattack": 109, | |
"specialdefense": 85, | |
"speed": 100 | |
}, | |
"baseStatsTotal": 534, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Charizard_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Monster", | |
"Dragon" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 3, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "The flame inside its body burns hotter than 3,600 degrees Fahrenheit. When Charizard roars, that temperature climbs even higher.", | |
"game": "Shield" | |
} | |
], | |
"forme": "Gmax", | |
"formeLetter": "G", | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 28, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 6, | |
"otherFormes": [ | |
"charizard", | |
"charizardmegax", | |
"charizardmegay" | |
], | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/charizard", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/charizard-gmax", | |
"smogonTier": "Gigantamax", | |
"weight": 100.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "cyndaquil", | |
"key": "cyndaquil", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/cyndaquil.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/cyndaquil.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/cyndaquil.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/cyndaquil.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 39, | |
"attack": 52, | |
"defense": 43, | |
"specialattack": 60, | |
"specialdefense": 50, | |
"speed": 65 | |
}, | |
"baseStatsTotal": 309, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/cyndaquil_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Yellow", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Hails from the Johto region. Though usually curled into a ball due to its timid disposition, it harbors tremendous firepower.", | |
"game": "Legends Arceus" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.5, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 155, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/155.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/cyndaquil", | |
"smogonTier": "Past", | |
"weight": 7.9, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "quilava", | |
"key": "quilava", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/quilava.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/quilava.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/quilava.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/quilava.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 58, | |
"attack": 64, | |
"defense": 58, | |
"specialattack": 80, | |
"specialdefense": 65, | |
"speed": 80 | |
}, | |
"baseStatsTotal": 405, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/quilava_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Yellow", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "14", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 1, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "This creature's fur is most mysterious—it is wholly impervious to the burning touch of flame. Should Quilava turn its back to you, take heed! Such a posture indicates a forthcoming attack.", | |
"game": "Legends Arceus" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.9, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 156, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/156.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/quilava", | |
"smogonTier": "Past", | |
"weight": 19, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "typhlosion", | |
"key": "typhlosion", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/typhlosion.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/typhlosion.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/typhlosion.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/typhlosion.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 78, | |
"attack": 84, | |
"defense": 78, | |
"specialattack": 109, | |
"specialdefense": 85, | |
"speed": 100 | |
}, | |
"baseStatsTotal": 534, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/typhlosion_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Yellow", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 3, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Said to purify lost, forsaken souls with its flames and guide them to the afterlife. I believe its form has been influenced by the energy of the [[Mount Coron", | |
"game": "Legends Arceus" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.7, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 157, | |
"otherFormes": [ | |
"typhlosionhisui" | |
], | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/157.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/typhlosion", | |
"smogonTier": "Past", | |
"weight": 79.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "typhlosion-hisui", | |
"key": "typhlosionhisui", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/gen5-back/typhlosion-hisui.png", | |
"sprite": "https://play.pokemonshowdown.com/sprites/gen5/typhlosion-hisui.png", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/gen5-back-shiny/typhlosion-hisui.png", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/gen5-shiny/typhlosion-hisui.png", | |
"baseForme": null, | |
"baseSpecies": "Typhlosion", | |
"baseStats": { | |
"hp": 73, | |
"attack": 84, | |
"defense": 78, | |
"specialattack": 119, | |
"specialdefense": 85, | |
"speed": 95 | |
}, | |
"baseStatsTotal": 534, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Typhlosion_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Yellow", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 3, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Said to purify lost, forsaken souls with its flames and guide them to the afterlife. I believe its form has been influenced by the energy of the [[Mount Coron", | |
"game": "Legends Arceus" | |
} | |
], | |
"forme": "Hisui", | |
"formeLetter": "H", | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.6, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 157, | |
"otherFormes": [ | |
"typhlosion" | |
], | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/typhlosion", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/typhlosion-hisui", | |
"smogonTier": "Future", | |
"weight": 69.8, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "torchic", | |
"key": "torchic", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/torchic.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/torchic.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/torchic.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/torchic.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 45, | |
"attack": 60, | |
"defense": 40, | |
"specialattack": 70, | |
"specialdefense": 50, | |
"speed": 45 | |
}, | |
"baseStatsTotal": 310, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/torchic_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 1, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Torchic has a place inside its body where it keeps its flame. Give it a hug—it will be glowing with warmth. This Pokémon is covered all over by a fluffy coat of down.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.4, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 255, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/torchic", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/torchic", | |
"smogonTier": "LC", | |
"weight": 2.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "combusken", | |
"key": "combusken", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/combusken.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/combusken.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/combusken.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/combusken.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 60, | |
"attack": 85, | |
"defense": 60, | |
"specialattack": 85, | |
"specialdefense": 60, | |
"speed": 55 | |
}, | |
"baseStatsTotal": 405, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/combusken_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "16", | |
"evYields": { | |
"hp": 0, | |
"attack": 1, | |
"defense": 0, | |
"specialattack": 1, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Combusken battles with the intensely hot flames it spews from its beak and with outstandingly destructive kicks. This Pokémon's cry is very loud and distracting.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.9, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 256, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/combusken", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/combusken", | |
"smogonTier": "NFE", | |
"weight": 19.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "blaziken", | |
"key": "blaziken", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/blaziken.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/blaziken.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/blaziken.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/blaziken.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 80, | |
"attack": 120, | |
"defense": 70, | |
"specialattack": 110, | |
"specialdefense": 70, | |
"speed": 80 | |
}, | |
"baseStatsTotal": 530, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/blaziken_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 3, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Blaziken has incredibly strong legs—it can easily clear a 30-story building in one leap. This Pokémon's blazing punches leave its foes scorched and blackened.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.9, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 257, | |
"otherFormes": [ | |
"blazikenmega" | |
], | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/blaziken", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/blaziken", | |
"smogonTier": "UUBL", | |
"weight": 52, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "chimchar", | |
"key": "chimchar", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/chimchar.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/chimchar.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/chimchar.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/chimchar.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 44, | |
"attack": 58, | |
"defense": 44, | |
"specialattack": 58, | |
"specialdefense": 44, | |
"speed": 61 | |
}, | |
"baseStatsTotal": 309, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/chimchar_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Brown", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Human-Like" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Full of vigor and always in high spirits. It was once known by the name \"Lantern-Tail\" and feared as some kind of apparition.", | |
"game": "Legends Arceus" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.5, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 390, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/390.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/chimchar", | |
"smogonTier": "Past", | |
"weight": 6.2, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "monferno", | |
"key": "monferno", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/monferno.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/monferno.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/monferno.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/monferno.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 64, | |
"attack": 78, | |
"defense": 52, | |
"specialattack": 78, | |
"specialdefense": 52, | |
"speed": 81 | |
}, | |
"baseStatsTotal": 405, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/monferno_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Brown", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Human-Like" | |
], | |
"evolutionLevel": "14", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 1, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "The deeper the blue on its face, the more powerful it will grow to become. It leaps about every which way and lands powerful blows against its opponents with the flame on its tail.", | |
"game": "Legends Arceus" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.9, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 391, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/391.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/monferno", | |
"smogonTier": "Past", | |
"weight": 22, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "infernape", | |
"key": "infernape", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/infernape.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/infernape.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/infernape.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/infernape.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 76, | |
"attack": 104, | |
"defense": 71, | |
"specialattack": 104, | |
"specialdefense": 71, | |
"speed": 108 | |
}, | |
"baseStatsTotal": 534, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/infernape_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Brown", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Human-Like" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 1, | |
"defense": 0, | |
"specialattack": 1, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "A tall, hardy Pokémon with a dazzling appearance. It shrouds itself in flame and battles as if engaged in dance—truly a sight to behold.", | |
"game": "Legends Arceus" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.2, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 392, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/392.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/infernape", | |
"smogonTier": "Past", | |
"weight": 55, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "tepig", | |
"key": "tepig", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/tepig.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/tepig.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/tepig.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/tepig.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 65, | |
"attack": 63, | |
"defense": 45, | |
"specialattack": 45, | |
"specialdefense": 45, | |
"speed": 45 | |
}, | |
"baseStatsTotal": 308, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/tepig_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 1, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "It loves to eat roasted berries, but sometimes it gets too excited and burns them to a crisp.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.5, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 498, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/498.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/tepig", | |
"smogonTier": "Past", | |
"weight": 9.9, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "pignite", | |
"key": "pignite", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/pignite.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/pignite.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/pignite.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/pignite.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 90, | |
"attack": 93, | |
"defense": 55, | |
"specialattack": 70, | |
"specialdefense": 55, | |
"speed": 55 | |
}, | |
"baseStatsTotal": 418, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/pignite_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "17", | |
"evYields": { | |
"hp": 0, | |
"attack": 2, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "When its internal fire flares up, its movements grow sharper and faster. When in trouble, it emits smoke.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 499, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/499.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/pignite", | |
"smogonTier": "Past", | |
"weight": 55.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "emboar", | |
"key": "emboar", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/emboar.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/emboar.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/emboar.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/emboar.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 110, | |
"attack": 123, | |
"defense": 65, | |
"specialattack": 100, | |
"specialdefense": 65, | |
"speed": 65 | |
}, | |
"baseStatsTotal": 528, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/emboar_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 3, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "It has mastered fast and powerful fighting moves. It grows a beard of fire.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.6, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 500, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/500.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/emboar", | |
"smogonTier": "Past", | |
"weight": 150, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "pansear", | |
"key": "pansear", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/pansear.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/pansear.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/pansear.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/pansear.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 50, | |
"attack": 53, | |
"defense": 48, | |
"specialattack": 53, | |
"specialdefense": 48, | |
"speed": 64 | |
}, | |
"baseStatsTotal": 316, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/pansear_(Pokémon)", | |
"catchRate": { | |
"base": 190, | |
"percentageWithOrdinaryPokeballAtFullHealth": "35.2%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600 degrees Fahrenheit.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.6, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Fast", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 513, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/513.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/pansear", | |
"smogonTier": "Past", | |
"weight": 11, | |
"abilities": { | |
"first": { | |
"name": "gluttony" | |
} | |
} | |
}, | |
{ | |
"species": "simisear", | |
"key": "simisear", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/simisear.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/simisear.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/simisear.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/simisear.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 75, | |
"attack": 98, | |
"defense": 63, | |
"specialattack": 98, | |
"specialdefense": 63, | |
"speed": 101 | |
}, | |
"baseStatsTotal": 498, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/simisear_(Pokémon)", | |
"catchRate": { | |
"base": 75, | |
"percentageWithOrdinaryPokeballAtFullHealth": "17.5%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "use Fire Stone", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 2 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "When it gets excited, embers rise from its head and tail and it gets hot. For some reason, it loves sweets.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Fast", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 514, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/514.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/simisear", | |
"smogonTier": "Past", | |
"weight": 28, | |
"abilities": { | |
"first": { | |
"name": "gluttony" | |
} | |
} | |
}, | |
{ | |
"species": "fennekin", | |
"key": "fennekin", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/fennekin.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/fennekin.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/fennekin.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/fennekin.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 40, | |
"attack": 45, | |
"defense": 40, | |
"specialattack": 62, | |
"specialdefense": 60, | |
"speed": 60 | |
}, | |
"baseStatsTotal": 307, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/fennekin_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 1, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "As it walks, it munches on a twig in place of a snack. It intimidates opponents by puffing hot air out of its ears.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.4, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 653, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/653.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/fennekin", | |
"smogonTier": "Past", | |
"weight": 9.4, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "braixen", | |
"key": "braixen", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/braixen.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/braixen.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/braixen.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/braixen.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 59, | |
"attack": 59, | |
"defense": 58, | |
"specialattack": 90, | |
"specialdefense": 70, | |
"speed": 73 | |
}, | |
"baseStatsTotal": 409, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/braixen_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "16", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 2, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 654, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/654.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/braixen", | |
"smogonTier": "Past", | |
"weight": 14.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "delphox", | |
"key": "delphox", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/delphox.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/delphox.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/delphox.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/delphox.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 75, | |
"attack": 69, | |
"defense": 72, | |
"specialattack": 114, | |
"specialdefense": 100, | |
"speed": 104 | |
}, | |
"baseStatsTotal": 534, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/delphox_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "36", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 3, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Using psychic power, it generates a fiery vortex of 5,400 degrees Fahrenheit, incinerating foes swept into this whirl of flame.", | |
"game": "Alpha Sapphire" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.5, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 655, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-sm/655.shtml", | |
"smogonPage": "https://www.smogon.com/dex/sm/pokemon/delphox", | |
"smogonTier": "Past", | |
"weight": 39, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "litten", | |
"key": "litten", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/litten.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/litten.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/litten.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/litten.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 45, | |
"attack": 65, | |
"defense": 40, | |
"specialattack": 60, | |
"specialdefense": 40, | |
"speed": 70 | |
}, | |
"baseStatsTotal": 320, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/litten_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "Its coat regrows twice a year. When the time comes, Litten sets its own body on fire and burns away the old fur.", | |
"game": "Ultra Moon" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.4, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 4111, | |
"minimumHatchTime": 3855, | |
"num": 725, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/litten", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/litten", | |
"smogonTier": "LC", | |
"weight": 4.3, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "torracat", | |
"key": "torracat", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/torracat.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/torracat.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/torracat.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/torracat.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 65, | |
"attack": 85, | |
"defense": 50, | |
"specialattack": 80, | |
"specialdefense": 50, | |
"speed": 90 | |
}, | |
"baseStatsTotal": 420, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/torracat_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "17", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 2 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "When its mane is standing on end, you can tell it's feeling good. When it isn't feeling well, its fur will lie down flat.", | |
"game": "Ultra Moon" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.7, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 4111, | |
"minimumHatchTime": 3855, | |
"num": 726, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/torracat", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/torracat", | |
"smogonTier": "NFE", | |
"weight": 25, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "incineroar", | |
"key": "incineroar", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/incineroar.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/incineroar.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/incineroar.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/incineroar.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 95, | |
"attack": 115, | |
"defense": 90, | |
"specialattack": 80, | |
"specialdefense": 90, | |
"speed": 60 | |
}, | |
"baseStatsTotal": 530, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/incineroar_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Red", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field" | |
], | |
"evolutionLevel": "34", | |
"evYields": { | |
"hp": 0, | |
"attack": 3, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "When its fighting spirit is set alight, the flames around its waist become especially intense. ", | |
"game": "Ultra Moon" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.8, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 4111, | |
"minimumHatchTime": 3855, | |
"num": 727, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/incineroar", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/incineroar", | |
"smogonTier": "RU", | |
"weight": 83, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "scorbunny", | |
"key": "scorbunny", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/scorbunny.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/scorbunny.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/scorbunny.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/scorbunny.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 50, | |
"attack": 71, | |
"defense": 40, | |
"specialattack": 40, | |
"specialdefense": 40, | |
"speed": 69 | |
}, | |
"baseStatsTotal": 310, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/scorbunny_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "White", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Human-Like" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 1 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "It has special pads on the backs of its feet, and one on its nose. Once it's raring to fight, these pads radiate tremendous heat.", | |
"game": "Shield" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.3, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 813, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/scorbunny", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/scorbunny", | |
"smogonTier": "LC", | |
"weight": 4.5, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "raboot", | |
"key": "raboot", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/raboot.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/raboot.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/raboot.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/raboot.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 65, | |
"attack": 86, | |
"defense": 60, | |
"specialattack": 55, | |
"specialdefense": 60, | |
"speed": 94 | |
}, | |
"baseStatsTotal": 420, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/raboot_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "Gray", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Human-Like" | |
], | |
"evolutionLevel": "16", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 2 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "It kicks berries right off the branches of trees and then juggles them with its feet, practicing its footwork.", | |
"game": "Shield" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 0.6, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 814, | |
"otherFormes": null, | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/raboot", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/raboot", | |
"smogonTier": "NFE", | |
"weight": 9, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "cinderace", | |
"key": "cinderace", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/cinderace.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/cinderace.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/cinderace.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/cinderace.gif", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 80, | |
"attack": 116, | |
"defense": 75, | |
"specialattack": 65, | |
"specialdefense": 75, | |
"speed": 119 | |
}, | |
"baseStatsTotal": 530, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/cinderace_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "White", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Human-Like" | |
], | |
"evolutionLevel": "35", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 3 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "It's skilled at both offense and defense, and it gets pumped up when cheered on. But if it starts showboating, it could put itself in a tough spot.", | |
"game": "Shield" | |
} | |
], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 1.4, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 815, | |
"otherFormes": [ | |
"cinderacegmax" | |
], | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/cinderace", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/cinderace", | |
"smogonTier": "Uber", | |
"weight": 33, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "cinderace-gmax", | |
"key": "cinderacegmax", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/ani-back/cinderace-gmax.gif", | |
"sprite": "https://play.pokemonshowdown.com/sprites/ani/cinderace-gmax.gif", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/ani-back-shiny/cinderace-gmax.gif", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/ani-shiny/cinderace-gmax.gif", | |
"baseForme": null, | |
"baseSpecies": "Cinderace", | |
"baseStats": { | |
"hp": 80, | |
"attack": 116, | |
"defense": 75, | |
"specialattack": 65, | |
"specialdefense": 75, | |
"speed": 119 | |
}, | |
"baseStatsTotal": 530, | |
"bulbapediaPage": "https://bulbapedia.bulbagarden.net/wiki/Cinderace_(Pokémon)", | |
"catchRate": { | |
"base": 45, | |
"percentageWithOrdinaryPokeballAtFullHealth": "11.9%" | |
}, | |
"color": "White", | |
"cosmeticFormes": null, | |
"eggGroups": [ | |
"Field", | |
"Human-Like" | |
], | |
"evolutionLevel": "35", | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 3 | |
}, | |
"flavorTexts": [ | |
{ | |
"flavor": "It's skilled at both offense and defense, and it gets pumped up when cheered on. But if it starts showboating, it could put itself in a tough spot.", | |
"game": "Shield" | |
} | |
], | |
"forme": "Gmax", | |
"formeLetter": "G", | |
"gender": { | |
"male": "87.5%", | |
"female": "12.5%" | |
}, | |
"height": 3, | |
"isEggObtainable": true, | |
"levellingRate": "Medium Slow", | |
"maximumHatchTime": 5396, | |
"minimumHatchTime": 5140, | |
"num": 815, | |
"otherFormes": [ | |
"cinderace" | |
], | |
"serebiiPage": "https://www.serebii.net/pokedex-swsh/cinderace", | |
"smogonPage": "https://www.smogon.com/dex/ss/pokemon/cinderace-gmax", | |
"smogonTier": "Gigantamax", | |
"weight": 33, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
}, | |
{ | |
"species": "Pokestar White Door", | |
"key": "pokestarwhitedoor", | |
"backSprite": "https://play.pokemonshowdown.com/sprites/gen5-back/pokestarwhitedoor.png", | |
"sprite": "https://play.pokemonshowdown.com/sprites/gen5/pokestarwhitedoor.png", | |
"shinyBackSprite": "https://play.pokemonshowdown.com/sprites/gen5-back-shiny/pokestarwhitedoor.png", | |
"shinySprite": "https://play.pokemonshowdown.com/sprites/gen5-shiny/pokestarwhitedoor.png", | |
"baseForme": null, | |
"baseSpecies": null, | |
"baseStats": { | |
"hp": 100, | |
"attack": 100, | |
"defense": 100, | |
"specialattack": 100, | |
"specialdefense": 100, | |
"speed": 100 | |
}, | |
"baseStatsTotal": 600, | |
"bulbapediaPage": "", | |
"catchRate": { | |
"base": 0, | |
"percentageWithOrdinaryPokeballAtFullHealth": "0%" | |
}, | |
"color": "White", | |
"cosmeticFormes": [ | |
"Pokestar White Door-Prop" | |
], | |
"eggGroups": [ | |
"Undiscovered" | |
], | |
"evolutionLevel": null, | |
"evYields": { | |
"hp": 0, | |
"attack": 0, | |
"defense": 0, | |
"specialattack": 0, | |
"specialdefense": 0, | |
"speed": 0 | |
}, | |
"flavorTexts": [], | |
"forme": null, | |
"formeLetter": null, | |
"gender": { | |
"male": "100%", | |
"female": "0%" | |
}, | |
"height": 1.5, | |
"isEggObtainable": false, | |
"levellingRate": null, | |
"maximumHatchTime": null, | |
"minimumHatchTime": null, | |
"num": -5013, | |
"otherFormes": null, | |
"serebiiPage": "", | |
"smogonPage": "", | |
"smogonTier": "Custom", | |
"weight": 61, | |
"abilities": { | |
"first": { | |
"name": "blaze" | |
} | |
} | |
} | |
] | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ability": "blaze" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment