Switch to PokeAPI #1
22
PKGBUILD
22
PKGBUILD
|
@ -1,30 +1,30 @@
|
||||||
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
||||||
pkgname=fuzzy-pokedex
|
pkgname=fuzzy-pokedex-dev
|
||||||
pkgver=r38.ba9e1a3
|
pkgver=r49.aeb1671
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A Pokedex for your terminal"
|
pkgdesc="A Pokedex for your terminal -DEV VERSION"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
url="https://github.com/ericlay/fuzzy-pokedex"
|
url="https://github.com/ericlay/fuzzy-pokedex"
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=('python-beautifulsoup4'
|
depends=('fzf'
|
||||||
'fzf'
|
|
||||||
'parallel'
|
'parallel'
|
||||||
|
'jq'
|
||||||
'espeak-ng'
|
'espeak-ng'
|
||||||
'pokemon-colorscripts-git'
|
'pokemon-colorscripts-git'
|
||||||
'ttf-font-nerd')
|
'ttf-font-nerd')
|
||||||
makedepends=('git')
|
makedepends=('git')
|
||||||
source=("git+https://github.com/ericlay/fuzzy-pokedex.git")
|
source=("git+https://github.com/ericlay/fuzzy-pokedex.git#branch=dev")
|
||||||
md5sums=('SKIP')
|
md5sums=('SKIP')
|
||||||
|
|
||||||
pkgver(){
|
pkgver(){
|
||||||
cd "$pkgname"
|
cd "${pkgname:0:-4}"
|
||||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$srcdir/$pkgname"
|
cd "$srcdir/${pkgname:0:-4}"
|
||||||
install -Dm666 pokeData/* -t "$pkgdir/usr/share/$pkgname/pokeData"
|
install -Dm666 pokeData/* -t "$pkgdir/usr/share/$pkgname/pokeData"
|
||||||
install -Dm666 keybindings-preview -t "$pkgdir/usr/share/$pkgname/"
|
install -Dm666 keybindings-preview -t "$pkgdir/usr/share/$pkgname"
|
||||||
install -Dm755 pokedex -t "$pkgdir/usr/bin"
|
install -Dm755 pokeParse -t "$pkgdir/usr/bin"
|
||||||
install -Dm755 pokeInfo -t "$pkgdir/usr/bin"
|
install -Dm755 pokedex-dev -t "$pkgdir/usr/bin"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ Very simple fzf based pokedex I built for my son to enjoy
|
||||||
|
|
||||||
![Screenshot](https://github.com/ericlay/fuzzy-pokedex/blob/main/screenshot.png?raw=true)
|
![Screenshot](https://github.com/ericlay/fuzzy-pokedex/blob/main/screenshot.png?raw=true)
|
||||||
|
|
||||||
Requires BeautifulSoup4, fzf, parallel, espeak-ng, pokemon-colorscipts and, any nerd font; all else should be there
|
Requires fzf, parallel, jq, espeak-ng, pokemon-colorscipts and, any nerd font; all else should be there
|
||||||
|
|
||||||
```
|
```
|
||||||
Use fzf to search Pokemon stats
|
Use fzf to search Pokemon stats
|
||||||
|
@ -38,8 +38,8 @@ https://github.com/rmccorm4/Pokefetch
|
||||||
|
|
||||||
## To-do
|
## To-do
|
||||||
* [ ] Better arg parsing
|
* [ ] Better arg parsing
|
||||||
* [ ] Rewrite to use `PokeAPI` as data source
|
* [ ] Rewrite to use `PokeAPI` as data source {Dev Branch 60%}
|
||||||
* [ ] Refactor to allow user to choose local data source or from web
|
* [ ] Refactor to allow user to choose local data source or from web
|
||||||
* [ ] Get sprites from `PokeAPI` if possible
|
* [ ] Get sprites from `PokeAPI` if possible {PR WELCOME!}
|
||||||
* [ ] Work on TTS to read entries
|
* [ ] Work on TTS to read entries
|
||||||
* [ ] Add ability to filter on various attributes
|
* [ ] Add ability to filter on various attributes
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Abomasnow
|
Abomasnow A grass type Pokémon
|
||||||
Pokedex Number: 460
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Snow Warning - Soundproof (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It whips up blizzards in mountains
|
||||||
----------------------
|
that are always buried in snow.
|
||||||
Total: 494
|
It is the abominable snowman.
|
||||||
Hp: 90
|
|
||||||
Attack: 132
|
Evolution Chain
|
||||||
Defence: 105
|
Snover ► Abomasnow
|
||||||
Special Attack: 132
|
|
||||||
Special Defence: 105
|
↞--------| STATS |--------↠
|
||||||
Speed: 30
|
hp: 90
|
||||||
|
attack: 92
|
||||||
|
defense: 75
|
||||||
|
special-attack: 92
|
||||||
|
special-defense: 85
|
||||||
|
speed: 60
|
||||||
|
|
||||||
|
Pokedex ID: 460 Capture Rate: 60
|
||||||
|
Base Exp: 173 Happiness: 50
|
||||||
|
Height: 22 Weight: 1355
|
||||||
|
|
||||||
|
Genus: Frost Tree Pokémon
|
||||||
|
Location Areas:
|
||||||
|
mt-coronet-exterior-snowfall
|
||||||
|
mt-coronet-exterior-blizzard
|
||||||
|
kalos-route-17-area
|
||||||
|
|
|
@ -1,15 +1,41 @@
|
||||||
|
|
||||||
Name: Abra
|
Abra A psychic type Pokémon
|
||||||
Pokedex Number: 063
|
|
||||||
Gender Ratio: ♂:75% ♀:25%
|
|
||||||
Abilities: Synchronize - Inner Focus - Magic Guard (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Using its ability to read minds,
|
||||||
----------------------
|
it will identify impending danger
|
||||||
Total: 310
|
and TELEPORT to safety.
|
||||||
Hp: 25
|
|
||||||
Attack: 20
|
Evolution Chain
|
||||||
Defence: 15
|
Abra ► Kadabra ► Alakazam
|
||||||
Special Attack: 105
|
|
||||||
Special Defence: 55
|
↞--------| STATS |--------↠
|
||||||
Speed: 90
|
hp: 25
|
||||||
|
attack: 20
|
||||||
|
defense: 15
|
||||||
|
special-attack: 105
|
||||||
|
special-defense: 55
|
||||||
|
speed: 90
|
||||||
|
|
||||||
|
Pokedex ID: 63 Capture Rate: 200
|
||||||
|
Base Exp: 62 Happiness: 50
|
||||||
|
Height: 9 Weight: 195
|
||||||
|
|
||||||
|
Genus: Psi Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-203-area
|
||||||
|
sinnoh-route-215-area
|
||||||
|
johto-route-34-area
|
||||||
|
johto-route-35-area
|
||||||
|
kanto-route-5-area
|
||||||
|
kanto-route-6-area
|
||||||
|
kanto-route-7-area
|
||||||
|
kanto-route-8-area
|
||||||
|
kanto-route-24-area
|
||||||
|
kanto-route-25-area
|
||||||
|
granite-cave-1f
|
||||||
|
granite-cave-b1f
|
||||||
|
granite-cave-b2f
|
||||||
|
granite-cave-1fsmall-room
|
||||||
|
hoenn-route-116-area
|
||||||
|
kalos-route-5-area
|
||||||
|
johto-safari-zone-zone-plains
|
||||||
|
|
|
@ -1,15 +1,77 @@
|
||||||
|
|
||||||
Name: Absol
|
Absol A dark type Pokémon
|
||||||
Pokedex Number: 359
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Pressure - Super Luck - Justified (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Every time ABSOL appears before
|
||||||
----------------------
|
people, it is followed by a disaster
|
||||||
Total: 465
|
such as an earthquake or a tidal
|
||||||
Hp: 65
|
wave. As a result, it came to
|
||||||
Attack: 150
|
be known as the disaster Pokémon.
|
||||||
Defence: 60
|
|
||||||
Special Attack: 115
|
Single Stage Evolution Pokémon
|
||||||
Special Defence: 60
|
|
||||||
Speed: 115
|
↞--------| STATS |--------↠
|
||||||
|
hp: 65
|
||||||
|
attack: 130
|
||||||
|
defense: 60
|
||||||
|
special-attack: 75
|
||||||
|
special-defense: 60
|
||||||
|
speed: 75
|
||||||
|
|
||||||
|
Pokedex ID: 359 Capture Rate: 30
|
||||||
|
Base Exp: 163 Happiness: 35
|
||||||
|
Height: 12 Weight: 470
|
||||||
|
|
||||||
|
Genus: Disaster Pokémon
|
||||||
|
Location Areas:
|
||||||
|
mt-coronet-exterior-snowfall
|
||||||
|
mt-coronet-exterior-blizzard
|
||||||
|
sinnoh-route-213-area
|
||||||
|
union-cave-1f
|
||||||
|
union-cave-b1f
|
||||||
|
union-cave-b2f
|
||||||
|
slowpoke-well-1f
|
||||||
|
slowpoke-well-b1f
|
||||||
|
whirl-islands-1f
|
||||||
|
whirl-islands-b1f
|
||||||
|
whirl-islands-b2f
|
||||||
|
whirl-islands-b3f
|
||||||
|
mt-mortar-1f
|
||||||
|
mt-mortar-lower-cave
|
||||||
|
mt-mortar-upper-cave
|
||||||
|
mt-mortar-b1f
|
||||||
|
ice-path-1f
|
||||||
|
ice-path-b1f
|
||||||
|
ice-path-b2f
|
||||||
|
ice-path-b3f
|
||||||
|
dark-cave-violet-city-entrance
|
||||||
|
dark-cave-blackthorn-city-entrance
|
||||||
|
seafoam-islands-1f
|
||||||
|
seafoam-islands-b1f
|
||||||
|
seafoam-islands-b2f
|
||||||
|
seafoam-islands-b3f
|
||||||
|
seafoam-islands-b4f
|
||||||
|
mt-silver-2f
|
||||||
|
mt-silver-1f-top
|
||||||
|
mt-silver-4f
|
||||||
|
johto-route-47-inside-cave
|
||||||
|
mt-silver-1f
|
||||||
|
mt-silver-mountainside
|
||||||
|
mt-silver-3f
|
||||||
|
mt-silver-top
|
||||||
|
mt-moon-1f
|
||||||
|
mt-moon-2f
|
||||||
|
rock-tunnel-1f
|
||||||
|
rock-tunnel-b1f
|
||||||
|
kanto-victory-road-1-1f
|
||||||
|
tohjo-falls-area
|
||||||
|
digletts-cave-area
|
||||||
|
kanto-victory-road-1-2f
|
||||||
|
kanto-victory-road-1-3f
|
||||||
|
cerulean-cave-1f
|
||||||
|
cerulean-cave-2f
|
||||||
|
cerulean-cave-b1f
|
||||||
|
hoenn-route-120-area
|
||||||
|
giant-chasm-outside
|
||||||
|
unova-route-13-area
|
||||||
|
unova-route-14-area
|
||||||
|
kalos-route-8-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Accelgor
|
Accelgor A bug type Pokémon
|
||||||
Pokedex Number: 617
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
When its body dries out, it
|
||||||
Abilities: Hydration - Sticky Hold - Unburden (Hidden Ability)
|
weakens. So, to prevent dehydration,
|
||||||
|
it wraps itself in many layers
|
||||||
|
of thin membrane.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Shelmet ► Accelgor
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 80
|
||||||
|
attack: 70
|
||||||
|
defense: 40
|
||||||
|
special-attack: 100
|
||||||
|
special-defense: 60
|
||||||
|
speed: 145
|
||||||
|
|
||||||
|
Pokedex ID: 617 Capture Rate: 75
|
||||||
|
Base Exp: 173 Happiness: 50
|
||||||
|
Height: 8 Weight: 253
|
||||||
|
|
||||||
|
Genus: Shell Out Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 495
|
|
||||||
Hp: 80
|
|
||||||
Attack: 70
|
|
||||||
Defence: 40
|
|
||||||
Special Attack: 100
|
|
||||||
Special Defence: 60
|
|
||||||
Speed: 145
|
|
||||||
|
|
|
@ -1,15 +1,20 @@
|
||||||
|
|
||||||
Name: Aegislash
|
A type Pokémon
|
||||||
Pokedex Number: 681
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
Generations of kings were attended
|
||||||
Abilities: Stance Change
|
by these Pokémon, which used
|
||||||
|
their spectral power to manipulate
|
||||||
|
and control people and Pokémon.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Honedge ► Doublade ► Aegislash
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
|
||||||
|
Pokedex ID: Capture Rate: 45
|
||||||
|
Base Exp: Happiness: 50
|
||||||
|
Height: Weight:
|
||||||
|
|
||||||
|
Genus: Royal Sword Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 520
|
|
||||||
Hp: 60
|
|
||||||
Attack: 150
|
|
||||||
Defence: 50
|
|
||||||
Special Attack: 150
|
|
||||||
Special Defence: 50
|
|
||||||
Speed: 60
|
|
||||||
|
|
|
@ -1,15 +1,24 @@
|
||||||
|
|
||||||
Name: Aerodactyl
|
Aerodactyl A rock type Pokémon
|
||||||
Pokedex Number: 142
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
|
||||||
Abilities: Rock Head - Pressure - Unnerve (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
A Pokémon that roamed the skies
|
||||||
----------------------
|
in the dinosaur era. Its teeth
|
||||||
Total: 515
|
are like saw blades.
|
||||||
Hp: 80
|
|
||||||
Attack: 135
|
Single Stage Evolution Pokémon
|
||||||
Defence: 85
|
|
||||||
Special Attack: 70
|
↞--------| STATS |--------↠
|
||||||
Special Defence: 95
|
hp: 80
|
||||||
Speed: 150
|
attack: 105
|
||||||
|
defense: 65
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 75
|
||||||
|
speed: 130
|
||||||
|
|
||||||
|
Pokedex ID: 142 Capture Rate: 45
|
||||||
|
Base Exp: 180 Happiness: 50
|
||||||
|
Height: 18 Weight: 590
|
||||||
|
|
||||||
|
Genus: Fossil Pokémon
|
||||||
|
Location Areas:
|
||||||
|
cinnabar-island-cinnabar-lab
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Aggron
|
Aggron A steel type Pokémon
|
||||||
Pokedex Number: 306
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
AGGRON claims an entire mountain
|
||||||
Abilities: Sturdy - Rock Head - Heavy Metal (Hidden Ability)
|
as its own territory. It mercilessly
|
||||||
|
beats up anything that violates
|
||||||
|
its environment. Aggron
|
||||||
|
vigilantly patrols its territory
|
||||||
|
at all times.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Aron ► Lairon ► Aggron
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 70
|
||||||
|
attack: 110
|
||||||
|
defense: 180
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 60
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 306 Capture Rate: 45
|
||||||
|
Base Exp: 265 Happiness: 35
|
||||||
|
Height: 21 Weight: 3600
|
||||||
|
|
||||||
|
Genus: Iron Armor Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 530
|
|
||||||
Hp: 70
|
|
||||||
Attack: 140
|
|
||||||
Defence: 230
|
|
||||||
Special Attack: 60
|
|
||||||
Special Defence: 80
|
|
||||||
Speed: 50
|
|
||||||
|
|
|
@ -1,15 +1,40 @@
|
||||||
|
|
||||||
Name: Aipom
|
Aipom A normal type Pokémon
|
||||||
Pokedex Number: 190
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Run Away - Pickup - Skill Link (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Its tail is so powerful that
|
||||||
----------------------
|
it can use it to grab a tree
|
||||||
Total: 360
|
branch and hold itself up in
|
||||||
Hp: 55
|
the air.
|
||||||
Attack: 70
|
|
||||||
Defence: 55
|
Evolution Chain
|
||||||
Special Attack: 40
|
Aipom ► Ambipom
|
||||||
Special Defence: 55
|
|
||||||
Speed: 85
|
↞--------| STATS |--------↠
|
||||||
|
hp: 55
|
||||||
|
attack: 70
|
||||||
|
defense: 55
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 55
|
||||||
|
speed: 85
|
||||||
|
|
||||||
|
Pokedex ID: 190 Capture Rate: 45
|
||||||
|
Base Exp: 72 Happiness: 70
|
||||||
|
Height: 8 Weight: 115
|
||||||
|
|
||||||
|
Genus: Long Tail Pokémon
|
||||||
|
Location Areas:
|
||||||
|
johto-route-29-area
|
||||||
|
johto-route-30-area
|
||||||
|
johto-route-31-area
|
||||||
|
johto-route-32-area
|
||||||
|
johto-route-33-area
|
||||||
|
johto-route-42-area
|
||||||
|
johto-route-43-area
|
||||||
|
johto-route-44-area
|
||||||
|
johto-route-45-area
|
||||||
|
johto-route-46-area
|
||||||
|
hoenn-safari-zone-expansion-south
|
||||||
|
hoenn-safari-zone-expansion-north
|
||||||
|
hoenn-altering-cave-f
|
||||||
|
kanto-altering-cave-f
|
||||||
|
azalea-town-area
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Alakazam
|
Alakazam A psychic type Pokémon
|
||||||
Pokedex Number: 065
|
|
||||||
Gender Ratio: ♂:75% ♀:25%
|
Its brain can out perform a
|
||||||
Abilities: Synchronize - Inner Focus - Magic Guard (Hidden Ability)
|
super computer. Its intelligence
|
||||||
|
quotient is said to be 5,000.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Abra ► Kadabra ► Alakazam
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 55
|
||||||
|
attack: 50
|
||||||
|
defense: 45
|
||||||
|
special-attack: 135
|
||||||
|
special-defense: 95
|
||||||
|
speed: 120
|
||||||
|
|
||||||
|
Pokedex ID: 65 Capture Rate: 50
|
||||||
|
Base Exp: 250 Happiness: 50
|
||||||
|
Height: 15 Weight: 480
|
||||||
|
|
||||||
|
Genus: Psi Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 500
|
|
||||||
Hp: 55
|
|
||||||
Attack: 50
|
|
||||||
Defence: 65
|
|
||||||
Special Attack: 175
|
|
||||||
Special Defence: 95
|
|
||||||
Speed: 150
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Alcremie
|
Alcremie A fairy type Pokémon
|
||||||
Pokedex Number: 869
|
|
||||||
Gender Ratio: ♂:0% ♀:100%
|
When it trusts a Trainer, it
|
||||||
Abilities: Sweet Veil - Aroma Veil (Hidden Ability)
|
will treat them to berries it’s
|
||||||
|
decorated with cream.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Milcery ► Alcremie
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 65
|
||||||
|
attack: 60
|
||||||
|
defense: 75
|
||||||
|
special-attack: 110
|
||||||
|
special-defense: 121
|
||||||
|
speed: 64
|
||||||
|
|
||||||
|
Pokedex ID: 869 Capture Rate: 100
|
||||||
|
Base Exp: 173 Happiness: 50
|
||||||
|
Height: 3 Weight: 5
|
||||||
|
|
||||||
|
Genus: Cream Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 495
|
|
||||||
Hp: 110
|
|
||||||
Attack: 121
|
|
||||||
Defence: 64
|
|
||||||
Special Attack: Max Stats<b
|
|
||||||
Special Defence: Lv. 50
|
|
||||||
Speed: 125 - 172
|
|
||||||
|
|
|
@ -1,15 +1,33 @@
|
||||||
|
|
||||||
Name: Alomomola
|
Alomomola A water type Pokémon
|
||||||
Pokedex Number: 594
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Healer - Hydration - Regenerator (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
The special membrane enveloping
|
||||||
----------------------
|
Alomomola has the ability to
|
||||||
Total: 470
|
heal wounds.
|
||||||
Hp: 165
|
|
||||||
Attack: 75
|
Single Stage Evolution Pokémon
|
||||||
Defence: 80
|
|
||||||
Special Attack: 40
|
↞--------| STATS |--------↠
|
||||||
Special Defence: 45
|
hp: 165
|
||||||
Speed: 65
|
attack: 75
|
||||||
|
defense: 80
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 45
|
||||||
|
speed: 65
|
||||||
|
|
||||||
|
Pokedex ID: 594 Capture Rate: 75
|
||||||
|
Base Exp: 165 Happiness: 70
|
||||||
|
Height: 12 Weight: 316
|
||||||
|
|
||||||
|
Genus: Caring Pokémon
|
||||||
|
Location Areas:
|
||||||
|
driftveil-city-area
|
||||||
|
p2-laboratory-area
|
||||||
|
unova-route-4-area
|
||||||
|
unova-route-18-area
|
||||||
|
unova-route-17-area
|
||||||
|
virbank-city-area
|
||||||
|
virbank-complex-outer
|
||||||
|
unova-route-21-area
|
||||||
|
shalour-city-area
|
||||||
|
azure-bay-area
|
||||||
|
|
|
@ -1,15 +1,34 @@
|
||||||
|
|
||||||
Name: Altaria
|
Altaria A dragon type Pokémon
|
||||||
Pokedex Number: 334
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Natural Cure - Cloud Nine (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
ALTARIA dances and wheels through
|
||||||
----------------------
|
the sky among billowing, cotton-like
|
||||||
Total: 490
|
clouds. By singing melodies
|
||||||
Hp: 75
|
in its crystal-clear voice, this
|
||||||
Attack: 110
|
Pokémon makes its listeners experience
|
||||||
Defence: 110
|
dreamy wonderment.
|
||||||
Special Attack: 110
|
|
||||||
Special Defence: 105
|
Evolution Chain
|
||||||
Speed: 80
|
Swablu ► Altaria
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 75
|
||||||
|
attack: 70
|
||||||
|
defense: 90
|
||||||
|
special-attack: 70
|
||||||
|
special-defense: 105
|
||||||
|
speed: 80
|
||||||
|
|
||||||
|
Pokedex ID: 334 Capture Rate: 45
|
||||||
|
Base Exp: 172 Happiness: 50
|
||||||
|
Height: 11 Weight: 206
|
||||||
|
|
||||||
|
Genus: Humming Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sky-pillar-5f
|
||||||
|
unova-route-14-area
|
||||||
|
abundant-shrine-area
|
||||||
|
unova-victory-road-2-unknown-area-73
|
||||||
|
unova-victory-road-2-unknown-area-79
|
||||||
|
nature-sanctuary-area
|
||||||
|
kalos-route-21-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Amaura
|
Amaura A rock type Pokémon
|
||||||
Pokedex Number: 698
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
|
||||||
Abilities: Refrigerate - Snow Warning (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
This ancient Pokémon was restored
|
||||||
----------------------
|
from part of its body that had
|
||||||
Total: 362
|
been frozen in ice for over 100
|
||||||
Hp: 77
|
million years.
|
||||||
Attack: 59
|
|
||||||
Defence: 50
|
Evolution Chain
|
||||||
Special Attack: 67
|
Amaura ► Aurorus
|
||||||
Special Defence: 63
|
|
||||||
Speed: 46
|
↞--------| STATS |--------↠
|
||||||
|
hp: 77
|
||||||
|
attack: 59
|
||||||
|
defense: 50
|
||||||
|
special-attack: 67
|
||||||
|
special-defense: 63
|
||||||
|
speed: 46
|
||||||
|
|
||||||
|
Pokedex ID: 698 Capture Rate: 45
|
||||||
|
Base Exp: 72 Happiness: 50
|
||||||
|
Height: 13 Weight: 252
|
||||||
|
|
||||||
|
Genus: Tundra Pokémon
|
||||||
|
Location Areas:
|
||||||
|
glittering-cave-unknown-area-303
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Ambipom
|
Ambipom A normal type Pokémon
|
||||||
Pokedex Number: 424
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
To eat, it deftly shucks nuts
|
||||||
Abilities: Technician - Pickup - Skill Link (Hidden Ability)
|
with its two tails. It rarely
|
||||||
|
uses its arms now.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Aipom ► Ambipom
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 75
|
||||||
|
attack: 100
|
||||||
|
defense: 66
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 66
|
||||||
|
speed: 115
|
||||||
|
|
||||||
|
Pokedex ID: 424 Capture Rate: 45
|
||||||
|
Base Exp: 169 Happiness: 100
|
||||||
|
Height: 12 Weight: 203
|
||||||
|
|
||||||
|
Genus: Long Tail Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 482
|
|
||||||
Hp: 75
|
|
||||||
Attack: 100
|
|
||||||
Defence: 66
|
|
||||||
Special Attack: 60
|
|
||||||
Special Defence: 66
|
|
||||||
Speed: 115
|
|
||||||
|
|
|
@ -1,15 +1,32 @@
|
||||||
|
|
||||||
Name: Amoonguss
|
Amoonguss A grass type Pokémon
|
||||||
Pokedex Number: 591
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Effect Spore - Regenerator (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It lures prey close by dancing
|
||||||
----------------------
|
and waving its arm caps, which
|
||||||
Total: 464
|
resemble Poké Balls, in a swaying
|
||||||
Hp: 114
|
motion.
|
||||||
Attack: 85
|
|
||||||
Defence: 70
|
Evolution Chain
|
||||||
Special Attack: 85
|
Foongus ► Amoonguss
|
||||||
Special Defence: 80
|
|
||||||
Speed: 30
|
↞--------| STATS |--------↠
|
||||||
|
hp: 114
|
||||||
|
attack: 85
|
||||||
|
defense: 70
|
||||||
|
special-attack: 85
|
||||||
|
special-defense: 80
|
||||||
|
speed: 30
|
||||||
|
|
||||||
|
Pokedex ID: 591 Capture Rate: 75
|
||||||
|
Base Exp: 162 Happiness: 50
|
||||||
|
Height: 6 Weight: 105
|
||||||
|
|
||||||
|
Genus: Mushroom Pokémon
|
||||||
|
Location Areas:
|
||||||
|
unova-route-10-area
|
||||||
|
unova-route-10-victory-road-gate
|
||||||
|
unova-route-11-area
|
||||||
|
unova-route-22-area
|
||||||
|
unova-route-23-area
|
||||||
|
kalos-route-20-area
|
||||||
|
pokemon-village-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Ampharos
|
Ampharos A electric type Pokémon
|
||||||
Pokedex Number: 181
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
The tail's tip shines brightly
|
||||||
Abilities: Static - Plus (Hidden Ability)
|
and can be seen from far away.
|
||||||
|
It acts as a beacon for lost
|
||||||
|
people.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Mareep ► Flaaffy ► Ampharos
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 90
|
||||||
|
attack: 75
|
||||||
|
defense: 85
|
||||||
|
special-attack: 115
|
||||||
|
special-defense: 90
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 181 Capture Rate: 45
|
||||||
|
Base Exp: 230 Happiness: 70
|
||||||
|
Height: 14 Weight: 615
|
||||||
|
|
||||||
|
Genus: Light Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 510
|
|
||||||
Hp: 90
|
|
||||||
Attack: 95
|
|
||||||
Defence: 105
|
|
||||||
Special Attack: 165
|
|
||||||
Special Defence: 110
|
|
||||||
Speed: 45
|
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Anorith
|
Anorith A rock type Pokémon
|
||||||
Pokedex Number: 347
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
|
||||||
Abilities: Battle Armor - Swift Swim (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
ANORITH was regenerated from
|
||||||
----------------------
|
a prehistoric fossil. This primitive
|
||||||
Total: 355
|
Pokémon once lived in warm seas.
|
||||||
Hp: 45
|
It grips its prey firmly between
|
||||||
Attack: 95
|
its two large claws.
|
||||||
Defence: 50
|
|
||||||
Special Attack: 40
|
Evolution Chain
|
||||||
Special Defence: 50
|
Anorith ► Armaldo
|
||||||
Speed: 75
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 45
|
||||||
|
attack: 95
|
||||||
|
defense: 50
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 50
|
||||||
|
speed: 75
|
||||||
|
|
||||||
|
Pokedex ID: 347 Capture Rate: 45
|
||||||
|
Base Exp: 71 Happiness: 50
|
||||||
|
Height: 7 Weight: 125
|
||||||
|
|
||||||
|
Genus: Old Shrimp Pokémon
|
||||||
|
Location Areas:
|
||||||
|
rustboro-city-area
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Appletun
|
Appletun A grass type Pokémon
|
||||||
Pokedex Number: 842
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
Eating a sweet apple caused
|
||||||
Abilities: Ripen - Gluttony - Thick Fat (Hidden Ability)
|
its evolution. A nectarous scent
|
||||||
|
wafts from its body, luring in
|
||||||
|
the bug Pokémon it preys on.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Applin ► Flapple
|
||||||
|
appletun
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 110
|
||||||
|
attack: 85
|
||||||
|
defense: 80
|
||||||
|
special-attack: 100
|
||||||
|
special-defense: 80
|
||||||
|
speed: 30
|
||||||
|
|
||||||
|
Pokedex ID: 842 Capture Rate: 45
|
||||||
|
Base Exp: 170 Happiness: 50
|
||||||
|
Height: 4 Weight: 130
|
||||||
|
|
||||||
|
Genus: Apple Nectar Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 485
|
|
||||||
Hp: 110
|
|
||||||
Attack: 85
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 100
|
|
||||||
Special Defence: 80
|
|
||||||
Speed: 30
|
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Applin
|
Applin A grass type Pokémon
|
||||||
Pokedex Number: 840
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
It spends its entire life inside
|
||||||
Abilities: Ripen - Gluttony - Bulletproof (Hidden Ability)
|
an apple. It hides from its
|
||||||
|
natural enemies, bird Pokémon,
|
||||||
|
by pretending it’s just an apple
|
||||||
|
and nothing more.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Applin ► Flapple
|
||||||
|
appletun
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 40
|
||||||
|
attack: 40
|
||||||
|
defense: 80
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 40
|
||||||
|
speed: 20
|
||||||
|
|
||||||
|
Pokedex ID: 840 Capture Rate: 255
|
||||||
|
Base Exp: 52 Happiness: 50
|
||||||
|
Height: 2 Weight: 5
|
||||||
|
|
||||||
|
Genus: Apple Core Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 260
|
|
||||||
Hp: 40
|
|
||||||
Attack: 40
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 40
|
|
||||||
Special Defence: 40
|
|
||||||
Speed: 20
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Araquanid
|
Araquanid A water type Pokémon
|
||||||
Pokedex Number: 752
|
|
||||||
Gender Ratio: ♂:50.2% ♀:49.8%
|
It delivers headbutts with the
|
||||||
Abilities: Water Bubble - Water Absorb (Hidden Ability)
|
water bubble on its head. Small
|
||||||
|
Pokémon get sucked into the bubble,
|
||||||
|
where they drown.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Dewpider ► Araquanid
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 68
|
||||||
|
attack: 70
|
||||||
|
defense: 92
|
||||||
|
special-attack: 50
|
||||||
|
special-defense: 132
|
||||||
|
speed: 42
|
||||||
|
|
||||||
|
Pokedex ID: 752 Capture Rate: 100
|
||||||
|
Base Exp: 159 Happiness: 50
|
||||||
|
Height: 18 Weight: 820
|
||||||
|
|
||||||
|
Genus: Water Bubble Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 454
|
|
||||||
Hp: 68
|
|
||||||
Attack: 70
|
|
||||||
Defence: 92
|
|
||||||
Special Attack: 50
|
|
||||||
Special Defence: 132
|
|
||||||
Speed: 42
|
|
||||||
|
|
|
@ -1,15 +1,44 @@
|
||||||
|
|
||||||
Name: Arbok
|
Arbok A poison type Pokémon
|
||||||
Pokedex Number: 024
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Intimidate - Shed Skin - Unnerve (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It is rumored that the ferocious
|
||||||
----------------------
|
warning markings on its belly
|
||||||
Total: 438
|
differ from area to area.
|
||||||
Hp: 60
|
|
||||||
Attack: 85
|
Evolution Chain
|
||||||
Defence: 69
|
Ekans ► Arbok
|
||||||
Special Attack: 65
|
|
||||||
Special Defence: 79
|
↞--------| STATS |--------↠
|
||||||
Speed: 80
|
hp: 60
|
||||||
|
attack: 95
|
||||||
|
defense: 69
|
||||||
|
special-attack: 65
|
||||||
|
special-defense: 79
|
||||||
|
speed: 80
|
||||||
|
|
||||||
|
Pokedex ID: 24 Capture Rate: 90
|
||||||
|
Base Exp: 157 Happiness: 70
|
||||||
|
Height: 35 Weight: 650
|
||||||
|
|
||||||
|
Genus: Cobra Pokémon
|
||||||
|
Location Areas:
|
||||||
|
great-marsh-area-1
|
||||||
|
great-marsh-area-2
|
||||||
|
great-marsh-area-3
|
||||||
|
great-marsh-area-4
|
||||||
|
great-marsh-area-5
|
||||||
|
great-marsh-area-6
|
||||||
|
johto-route-42-area
|
||||||
|
mt-silver-outside
|
||||||
|
kanto-route-26-area
|
||||||
|
kanto-route-27-area
|
||||||
|
kanto-route-28-area
|
||||||
|
kanto-route-3-area
|
||||||
|
kanto-route-4-area
|
||||||
|
cerulean-cave-1f
|
||||||
|
cerulean-cave-b1f
|
||||||
|
kanto-route-23-area
|
||||||
|
kanto-victory-road-2-1f
|
||||||
|
kanto-victory-road-2-2f
|
||||||
|
kanto-victory-road-2-3f
|
||||||
|
johto-safari-zone-zone-marshland
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Arcanine
|
Arcanine A fire type Pokémon
|
||||||
Pokedex Number: 059
|
|
||||||
Gender Ratio: ♂:75% ♀:25%
|
A Pokémon that has been admired
|
||||||
Abilities: Intimidate - Flash Fire - Justified (Hidden Ability)
|
since the past for its beauty.
|
||||||
|
It runs agilely as if on wings.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Growlithe ► Arcanine
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 90
|
||||||
|
attack: 110
|
||||||
|
defense: 80
|
||||||
|
special-attack: 100
|
||||||
|
special-defense: 80
|
||||||
|
speed: 95
|
||||||
|
|
||||||
|
Pokedex ID: 59 Capture Rate: 75
|
||||||
|
Base Exp: 194 Happiness: 50
|
||||||
|
Height: 19 Weight: 1550
|
||||||
|
|
||||||
|
Genus: Legendary Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 555
|
|
||||||
Hp: 90
|
|
||||||
Attack: 110
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 100
|
|
||||||
Special Defence: 80
|
|
||||||
Speed: 95
|
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
|
||||||
|
Arceus A normal type Pokémon
|
||||||
|
|
||||||
|
It is described in mythology
|
||||||
|
as the Pokémon that shaped the
|
||||||
|
universe with its 1,000 arms.
|
||||||
|
|
||||||
|
Single Stage Evolution Pokémon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 120
|
||||||
|
attack: 120
|
||||||
|
defense: 120
|
||||||
|
special-attack: 120
|
||||||
|
special-defense: 120
|
||||||
|
speed: 120
|
||||||
|
|
||||||
|
Pokedex ID: 493 Capture Rate: 3
|
||||||
|
Base Exp: 324 Happiness: 0
|
||||||
|
Height: 32 Weight: 3200
|
||||||
|
|
||||||
|
Genus: Alpha Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-hall-of-origin-1-area
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Archen
|
Archen A rock type Pokémon
|
||||||
Pokedex Number: 566
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
Said to be an ancestor of bird
|
||||||
Abilities: Defeatist
|
Pokémon, they were unable to
|
||||||
|
fly and moved about by hopping
|
||||||
|
from one branch to another.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Archen ► Archeops
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 55
|
||||||
|
attack: 112
|
||||||
|
defense: 45
|
||||||
|
special-attack: 74
|
||||||
|
special-defense: 45
|
||||||
|
speed: 70
|
||||||
|
|
||||||
|
Pokedex ID: 566 Capture Rate: 45
|
||||||
|
Base Exp: 71 Happiness: 50
|
||||||
|
Height: 5 Weight: 95
|
||||||
|
|
||||||
|
Genus: First Bird Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 401
|
|
||||||
Hp: 55
|
|
||||||
Attack: 112
|
|
||||||
Defence: 45
|
|
||||||
Special Attack: 74
|
|
||||||
Special Defence: 45
|
|
||||||
Speed: 70
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Archeops
|
Archeops A rock type Pokémon
|
||||||
Pokedex Number: 567
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
They are intelligent and will
|
||||||
Abilities: Defeatist
|
cooperate to catch prey. From
|
||||||
|
the ground, they use a running
|
||||||
|
start to take flight.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Archen ► Archeops
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 75
|
||||||
|
attack: 140
|
||||||
|
defense: 65
|
||||||
|
special-attack: 112
|
||||||
|
special-defense: 65
|
||||||
|
speed: 110
|
||||||
|
|
||||||
|
Pokedex ID: 567 Capture Rate: 45
|
||||||
|
Base Exp: 177 Happiness: 50
|
||||||
|
Height: 14 Weight: 320
|
||||||
|
|
||||||
|
Genus: First Bird Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 567
|
|
||||||
Hp: 75
|
|
||||||
Attack: 140
|
|
||||||
Defence: 65
|
|
||||||
Special Attack: 112
|
|
||||||
Special Defence: 65
|
|
||||||
Speed: 110
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Arctovish
|
Arctovish A water type Pokémon
|
||||||
Pokedex Number: 883
|
|
||||||
Gender Ratio: Genderless
|
Though it’s able to capture
|
||||||
Abilities: Water Absorb - Ice Body - Slush Rush (Hidden Ability)
|
prey by freezing its surroundings,
|
||||||
|
it has trouble eating the prey
|
||||||
|
afterward because its mouth is
|
||||||
|
on top of its head.
|
||||||
|
|
||||||
|
Single Stage Evolution Pokémon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 90
|
||||||
|
attack: 90
|
||||||
|
defense: 100
|
||||||
|
special-attack: 80
|
||||||
|
special-defense: 90
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 883 Capture Rate: 45
|
||||||
|
Base Exp: 177 Happiness: 50
|
||||||
|
Height: 20 Weight: 1750
|
||||||
|
|
||||||
|
Genus: Fossil Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 505
|
|
||||||
Hp: 90
|
|
||||||
Attack: 90
|
|
||||||
Defence: 100
|
|
||||||
Special Attack: 80
|
|
||||||
Special Defence: 90
|
|
||||||
Speed: 55
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Arctozolt
|
Arctozolt A electric type Pokémon
|
||||||
Pokedex Number: 881
|
|
||||||
Gender Ratio: Genderless
|
The shaking of its freezing
|
||||||
Abilities: Volt Absorb - Static - Slush Rush (Hidden Ability)
|
upper half is what generates
|
||||||
|
its electricity. It has a hard
|
||||||
|
time walking around.
|
||||||
|
|
||||||
|
Single Stage Evolution Pokémon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 90
|
||||||
|
attack: 100
|
||||||
|
defense: 90
|
||||||
|
special-attack: 90
|
||||||
|
special-defense: 80
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 881 Capture Rate: 45
|
||||||
|
Base Exp: 177 Happiness: 50
|
||||||
|
Height: 23 Weight: 1500
|
||||||
|
|
||||||
|
Genus: Fossil Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 505
|
|
||||||
Hp: 90
|
|
||||||
Attack: 100
|
|
||||||
Defence: 90
|
|
||||||
Special Attack: 90
|
|
||||||
Special Defence: 80
|
|
||||||
Speed: 55
|
|
||||||
|
|
|
@ -1,15 +1,31 @@
|
||||||
|
|
||||||
Name: Ariados
|
Ariados A bug type Pokémon
|
||||||
Pokedex Number: 168
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Swarm - Insomnia - Sniper (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It spins string not only from
|
||||||
----------------------
|
its rear but also from its mouth.
|
||||||
Total: 390
|
It is hard to tell which end
|
||||||
Hp: 70
|
is which.
|
||||||
Attack: 90
|
|
||||||
Defence: 70
|
Evolution Chain
|
||||||
Special Attack: 60
|
Spinarak ► Ariados
|
||||||
Special Defence: 60
|
|
||||||
Speed: 40
|
↞--------| STATS |--------↠
|
||||||
|
hp: 70
|
||||||
|
attack: 90
|
||||||
|
defense: 70
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 70
|
||||||
|
speed: 40
|
||||||
|
|
||||||
|
Pokedex ID: 168 Capture Rate: 90
|
||||||
|
Base Exp: 140 Happiness: 70
|
||||||
|
Height: 11 Weight: 335
|
||||||
|
|
||||||
|
Genus: Long Leg Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-229-area
|
||||||
|
johto-route-37-area
|
||||||
|
kanto-route-2-south-towards-viridian-city
|
||||||
|
kanto-route-2-north-towards-pewter-city
|
||||||
|
dreamyard-area
|
||||||
|
dreamyard-b1f
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Armaldo
|
Armaldo A rock type Pokémon
|
||||||
Pokedex Number: 348
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
ARMALDO’s tough armor makes
|
||||||
Abilities: Battle Armor - Swift Swim (Hidden Ability)
|
all attacks bounce off. This
|
||||||
|
Pokémon’s two enormous claws
|
||||||
|
can be freely extended or contracted.
|
||||||
|
They have the power to punch
|
||||||
|
right through a steel slab.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Anorith ► Armaldo
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 75
|
||||||
|
attack: 125
|
||||||
|
defense: 100
|
||||||
|
special-attack: 70
|
||||||
|
special-defense: 80
|
||||||
|
speed: 45
|
||||||
|
|
||||||
|
Pokedex ID: 348 Capture Rate: 45
|
||||||
|
Base Exp: 173 Happiness: 50
|
||||||
|
Height: 15 Weight: 682
|
||||||
|
|
||||||
|
Genus: Plate Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 495
|
|
||||||
Hp: 75
|
|
||||||
Attack: 125
|
|
||||||
Defence: 100
|
|
||||||
Special Attack: 70
|
|
||||||
Special Defence: 80
|
|
||||||
Speed: 45
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Aromatisse
|
Aromatisse A fairy type Pokémon
|
||||||
Pokedex Number: 683
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
It devises various scents, pleasant
|
||||||
Abilities: Healer - Aroma Veil (Hidden Ability)
|
and unpleasant, and emits scents
|
||||||
|
that its enemies dislike in order
|
||||||
|
to gain an edge in battle.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Spritzee ► Aromatisse
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 101
|
||||||
|
attack: 72
|
||||||
|
defense: 72
|
||||||
|
special-attack: 99
|
||||||
|
special-defense: 89
|
||||||
|
speed: 29
|
||||||
|
|
||||||
|
Pokedex ID: 683 Capture Rate: 140
|
||||||
|
Base Exp: 162 Happiness: 50
|
||||||
|
Height: 8 Weight: 155
|
||||||
|
|
||||||
|
Genus: Fragrance Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 462
|
|
||||||
Hp: 101
|
|
||||||
Attack: 72
|
|
||||||
Defence: 72
|
|
||||||
Special Attack: 99
|
|
||||||
Special Defence: 89
|
|
||||||
Speed: 29
|
|
||||||
|
|
|
@ -1,15 +1,34 @@
|
||||||
|
|
||||||
Name: Aron
|
Aron A steel type Pokémon
|
||||||
Pokedex Number: 304
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Sturdy - Rock Head - Heavy Metal (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Aron has a body of steel.
|
||||||
----------------------
|
To make its body, ARON feeds
|
||||||
Total: 330
|
on iron ore that it digs from
|
||||||
Hp: 50
|
mountains. Occasionally, it
|
||||||
Attack: 70
|
causes major trouble by eating
|
||||||
Defence: 100
|
bridges and rails.
|
||||||
Special Attack: 40
|
|
||||||
Special Defence: 40
|
Evolution Chain
|
||||||
Speed: 30
|
Aron ► Lairon ► Aggron
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 50
|
||||||
|
attack: 70
|
||||||
|
defense: 100
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 40
|
||||||
|
speed: 30
|
||||||
|
|
||||||
|
Pokedex ID: 304 Capture Rate: 180
|
||||||
|
Base Exp: 66 Happiness: 35
|
||||||
|
Height: 4 Weight: 600
|
||||||
|
|
||||||
|
Genus: Iron Armor Pokémon
|
||||||
|
Location Areas:
|
||||||
|
fuego-ironworks-area
|
||||||
|
granite-cave-b1f
|
||||||
|
granite-cave-b2f
|
||||||
|
granite-cave-1fsmall-room
|
||||||
|
hoenn-victory-road-1f
|
||||||
|
mistralton-cave-area
|
||||||
|
guidance-chamber-area
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Arrokuda
|
Arrokuda A water type Pokémon
|
||||||
Pokedex Number: 846
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
If it sees any movement around
|
||||||
Abilities: Swift Swim - Propeller Tail (Hidden Ability)
|
it, this Pokémon charges for
|
||||||
|
it straightaway, leading with
|
||||||
|
its sharply pointed jaw. It’s
|
||||||
|
very proud of that jaw.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Arrokuda ► Barraskewda
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 41
|
||||||
|
attack: 63
|
||||||
|
defense: 40
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 30
|
||||||
|
speed: 66
|
||||||
|
|
||||||
|
Pokedex ID: 846 Capture Rate: 255
|
||||||
|
Base Exp: 56 Happiness: 50
|
||||||
|
Height: 5 Weight: 10
|
||||||
|
|
||||||
|
Genus: Rush Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 280
|
|
||||||
Hp: 41
|
|
||||||
Attack: 63
|
|
||||||
Defence: 40
|
|
||||||
Special Attack: 40
|
|
||||||
Special Defence: 30
|
|
||||||
Speed: 66
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Articuno
|
Articuno A ice type Pokémon
|
||||||
Pokedex Number: 144
|
|
||||||
Gender Ratio: Genderless
|
|
||||||
Abilities: Pressure - Snow Cloak (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
A legendary bird Pokémon that
|
||||||
----------------------
|
is said to appear to doomed people
|
||||||
Total: 580
|
who are lost in icy mountains.
|
||||||
Hp: 90
|
|
||||||
Attack: 85
|
Single Stage Evolution Pokémon
|
||||||
Defence: 100
|
|
||||||
Special Attack: 95
|
↞--------| STATS |--------↠
|
||||||
Special Defence: 125
|
hp: 90
|
||||||
Speed: 85
|
attack: 85
|
||||||
|
defense: 100
|
||||||
|
special-attack: 95
|
||||||
|
special-defense: 125
|
||||||
|
speed: 85
|
||||||
|
|
||||||
|
Pokedex ID: 144 Capture Rate: 3
|
||||||
|
Base Exp: 290 Happiness: 35
|
||||||
|
Height: 17 Weight: 554
|
||||||
|
|
||||||
|
Genus: Freeze Pokémon
|
||||||
|
Location Areas:
|
||||||
|
seafoam-islands-b4f
|
||||||
|
roaming-sinnoh-area
|
||||||
|
|
|
@ -1,15 +1,66 @@
|
||||||
|
|
||||||
Name: Audino
|
Audino A normal type Pokémon
|
||||||
Pokedex Number: 531
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Healer - Regenerator - Klutz (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It touches others with the feelers
|
||||||
----------------------
|
on its ears, using the sound
|
||||||
Total: 445
|
of their heartbeats to tell how
|
||||||
Hp: 103
|
they are feeling.
|
||||||
Attack: 60
|
|
||||||
Defence: 126
|
Single Stage Evolution Pokémon
|
||||||
Special Attack: 80
|
|
||||||
Special Defence: 126
|
↞--------| STATS |--------↠
|
||||||
Speed: 50
|
hp: 103
|
||||||
|
attack: 60
|
||||||
|
defense: 86
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 86
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 531 Capture Rate: 255
|
||||||
|
Base Exp: 390 Happiness: 50
|
||||||
|
Height: 11 Weight: 310
|
||||||
|
|
||||||
|
Genus: Hearing Pokémon
|
||||||
|
Location Areas:
|
||||||
|
dreamyard-area
|
||||||
|
pinwheel-forest-outside
|
||||||
|
pinwheel-forest-inside
|
||||||
|
cold-storage-area
|
||||||
|
dragonspiral-tower-entrance
|
||||||
|
dragonspiral-tower-outside
|
||||||
|
giant-chasm-outside
|
||||||
|
giant-chasm-forest
|
||||||
|
giant-chasm-forest-cave
|
||||||
|
p2-laboratory-area
|
||||||
|
village-bridge-area
|
||||||
|
unova-route-1-area
|
||||||
|
unova-route-2-area
|
||||||
|
unova-route-3-area
|
||||||
|
unova-route-5-area
|
||||||
|
unova-route-6-area
|
||||||
|
unova-route-7-area
|
||||||
|
unova-route-9-area
|
||||||
|
unova-route-10-area
|
||||||
|
unova-route-10-victory-road-gate
|
||||||
|
unova-route-11-area
|
||||||
|
unova-route-12-area
|
||||||
|
unova-route-13-area
|
||||||
|
unova-route-14-area
|
||||||
|
abundant-shrine-area
|
||||||
|
unova-route-15-area
|
||||||
|
unova-route-16-area
|
||||||
|
lostlorn-forest-area
|
||||||
|
unova-route-18-area
|
||||||
|
castelia-city-area
|
||||||
|
unova-victory-road-2-unknown-area-72
|
||||||
|
unova-victory-road-2-unknown-area-73
|
||||||
|
unova-victory-road-2-unknown-area-76
|
||||||
|
unova-victory-road-2-unknown-area-79
|
||||||
|
floccesy-ranch-inner
|
||||||
|
virbank-complex-outer
|
||||||
|
virbank-complex-inner
|
||||||
|
reversal-mountain-unknown-area-48
|
||||||
|
nature-sanctuary-area
|
||||||
|
unova-route-20-area
|
||||||
|
unova-route-22-area
|
||||||
|
unova-route-23-area
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Aurorus
|
Aurorus A rock type Pokémon
|
||||||
Pokedex Number: 699
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
The diamond-shaped crystals
|
||||||
Abilities: Refrigerate - Snow Warning (Hidden Ability)
|
on its body expel air as cold
|
||||||
|
as -240 degrees Fahrenheit, surrounding
|
||||||
|
its enemies and encasing them
|
||||||
|
in ice.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Amaura ► Aurorus
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 123
|
||||||
|
attack: 77
|
||||||
|
defense: 72
|
||||||
|
special-attack: 99
|
||||||
|
special-defense: 92
|
||||||
|
speed: 58
|
||||||
|
|
||||||
|
Pokedex ID: 699 Capture Rate: 45
|
||||||
|
Base Exp: 104 Happiness: 50
|
||||||
|
Height: 27 Weight: 2250
|
||||||
|
|
||||||
|
Genus: Tundra Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 521
|
|
||||||
Hp: 123
|
|
||||||
Attack: 77
|
|
||||||
Defence: 72
|
|
||||||
Special Attack: 99
|
|
||||||
Special Defence: 92
|
|
||||||
Speed: 58
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Avalugg
|
Avalugg A ice type Pokémon
|
||||||
Pokedex Number: 713
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
Its ice-covered body is as hard
|
||||||
Abilities: Own Tempo - Ice Body - Sturdy (Hidden Ability)
|
as steel. Its cumbersome frame
|
||||||
|
crushes anything that stands
|
||||||
|
in its way.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Bergmite ► Avalugg
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 95
|
||||||
|
attack: 117
|
||||||
|
defense: 184
|
||||||
|
special-attack: 44
|
||||||
|
special-defense: 46
|
||||||
|
speed: 28
|
||||||
|
|
||||||
|
Pokedex ID: 713 Capture Rate: 55
|
||||||
|
Base Exp: 180 Happiness: 50
|
||||||
|
Height: 20 Weight: 5050
|
||||||
|
|
||||||
|
Genus: Iceberg Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 514
|
|
||||||
Hp: 95
|
|
||||||
Attack: 117
|
|
||||||
Defence: 184
|
|
||||||
Special Attack: 44
|
|
||||||
Special Defence: 46
|
|
||||||
Speed: 28
|
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Axew
|
Axew A dragon type Pokémon
|
||||||
Pokedex Number: 610
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Rivalry - Mold Breaker - Unnerve (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
They use their tusks to crush
|
||||||
----------------------
|
the berries they eat. Repeated
|
||||||
Total: 320
|
regrowth makes their tusks strong
|
||||||
Hp: 46
|
and sharp.
|
||||||
Attack: 87
|
|
||||||
Defence: 60
|
Evolution Chain
|
||||||
Special Attack: 30
|
Axew ► Fraxure ► Haxorus
|
||||||
Special Defence: 40
|
|
||||||
Speed: 57
|
↞--------| STATS |--------↠
|
||||||
|
hp: 46
|
||||||
|
attack: 87
|
||||||
|
defense: 60
|
||||||
|
special-attack: 30
|
||||||
|
special-defense: 40
|
||||||
|
speed: 57
|
||||||
|
|
||||||
|
Pokedex ID: 610 Capture Rate: 75
|
||||||
|
Base Exp: 64 Happiness: 35
|
||||||
|
Height: 6 Weight: 180
|
||||||
|
|
||||||
|
Genus: Tusk Pokémon
|
||||||
|
Location Areas:
|
||||||
|
mistralton-cave-area
|
||||||
|
guidance-chamber-area
|
||||||
|
connecting-cave-area
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Azelf
|
Azelf A psychic type Pokémon
|
||||||
Pokedex Number: 482
|
|
||||||
Gender Ratio: Genderless
|
|
||||||
Abilities: Levitate
|
|
||||||
|
|
||||||
Base Stats
|
Known as “The Being of Willpower.
|
||||||
----------------------
|
” It sleeps at the bottom of
|
||||||
Total: 580
|
a lake to keep the world in balance.
|
||||||
Hp: 75
|
|
||||||
Attack: 125
|
Single Stage Evolution Pokémon
|
||||||
Defence: 70
|
|
||||||
Special Attack: 125
|
↞--------| STATS |--------↠
|
||||||
Special Defence: 70
|
hp: 75
|
||||||
Speed: 115
|
attack: 125
|
||||||
|
defense: 70
|
||||||
|
special-attack: 125
|
||||||
|
special-defense: 70
|
||||||
|
speed: 115
|
||||||
|
|
||||||
|
Pokedex ID: 482 Capture Rate: 3
|
||||||
|
Base Exp: 290 Happiness: 140
|
||||||
|
Height: 3 Weight: 3
|
||||||
|
|
||||||
|
Genus: Willpower Pokémon
|
||||||
|
Location Areas:
|
||||||
|
lake-valor-cavern
|
||||||
|
sinjoh-ruins-area
|
||||||
|
|
|
@ -1,15 +1,42 @@
|
||||||
|
|
||||||
Name: Azumarill
|
Azumarill A water type Pokémon
|
||||||
Pokedex Number: 184
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Thick Fat - Huge Power - Sap Sipper (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It lives in water virtually
|
||||||
----------------------
|
all day long. Its body color
|
||||||
Total: 420
|
and pattern act as camouflage
|
||||||
Hp: 100
|
that makes it tough for enemies
|
||||||
Attack: 50
|
to spot in water.
|
||||||
Defence: 80
|
|
||||||
Special Attack: 60
|
Evolution Chain
|
||||||
Special Defence: 80
|
Azurill ► Marill ► Azumarill
|
||||||
Speed: 50
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 100
|
||||||
|
attack: 50
|
||||||
|
defense: 80
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 80
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 184 Capture Rate: 75
|
||||||
|
Base Exp: 210 Happiness: 50
|
||||||
|
Height: 8 Weight: 285
|
||||||
|
|
||||||
|
Genus: Aqua Rabbit Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-victory-road-b1f
|
||||||
|
sinnoh-victory-road-inside-b1f
|
||||||
|
pinwheel-forest-inside
|
||||||
|
village-bridge-area
|
||||||
|
unova-route-6-area
|
||||||
|
unova-route-11-area
|
||||||
|
abundant-shrine-area
|
||||||
|
unova-victory-road-2-unknown-area-71
|
||||||
|
unova-victory-road-2-unknown-area-75
|
||||||
|
unova-victory-road-2-unknown-area-78
|
||||||
|
floccesy-ranch-outer
|
||||||
|
floccesy-ranch-inner
|
||||||
|
relic-passage-relic-castle-entrance
|
||||||
|
unova-route-20-area
|
||||||
|
unova-route-22-area
|
||||||
|
kalos-route-22-area
|
||||||
|
|
|
@ -1,15 +1,35 @@
|
||||||
|
|
||||||
Name: Azurill
|
Azurill A normal type Pokémon
|
||||||
Pokedex Number: 298
|
|
||||||
Gender Ratio: ♂:25% ♀:75%
|
|
||||||
Abilities: Thick Fat - Huge Power - Sap Sipper (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
A Pokémon that lives by water.
|
||||||
----------------------
|
It moves quickly on land by
|
||||||
Total: 190
|
bouncing on its big tail.
|
||||||
Hp: 50
|
|
||||||
Attack: 20
|
Evolution Chain
|
||||||
Defence: 40
|
Azurill ► Marill ► Azumarill
|
||||||
Special Attack: 20
|
|
||||||
Special Defence: 40
|
↞--------| STATS |--------↠
|
||||||
Speed: 20
|
hp: 50
|
||||||
|
attack: 20
|
||||||
|
defense: 40
|
||||||
|
special-attack: 20
|
||||||
|
special-defense: 40
|
||||||
|
speed: 20
|
||||||
|
|
||||||
|
Pokedex ID: 298 Capture Rate: 150
|
||||||
|
Base Exp: 38 Happiness: 50
|
||||||
|
Height: 2 Weight: 20
|
||||||
|
|
||||||
|
Genus: Polka Dot Pokémon
|
||||||
|
Location Areas:
|
||||||
|
great-marsh-area-1
|
||||||
|
great-marsh-area-2
|
||||||
|
great-marsh-area-3
|
||||||
|
great-marsh-area-4
|
||||||
|
great-marsh-area-5
|
||||||
|
great-marsh-area-6
|
||||||
|
floccesy-ranch-outer
|
||||||
|
floccesy-ranch-inner
|
||||||
|
unova-route-20-area
|
||||||
|
kalos-route-3-area
|
||||||
|
kalos-route-22-area
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Bagon
|
Bagon A dragon type Pokémon
|
||||||
Pokedex Number: 371
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Rock Head - Sheer Force (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Dreaming of one day flying,
|
||||||
----------------------
|
it practices by leaping off cliffs
|
||||||
Total: 300
|
every day.
|
||||||
Hp: 45
|
|
||||||
Attack: 75
|
Evolution Chain
|
||||||
Defence: 60
|
Bagon ► Shelgon ► Salamence
|
||||||
Special Attack: 40
|
|
||||||
Special Defence: 30
|
↞--------| STATS |--------↠
|
||||||
Speed: 50
|
hp: 45
|
||||||
|
attack: 75
|
||||||
|
defense: 60
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 30
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 371 Capture Rate: 45
|
||||||
|
Base Exp: 60 Happiness: 35
|
||||||
|
Height: 6 Weight: 421
|
||||||
|
|
||||||
|
Genus: Rock Head Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-210-west-towards-celestic-town
|
||||||
|
meteor-falls-backsmall-room
|
||||||
|
kalos-route-8-area
|
||||||
|
|
|
@ -1,15 +1,30 @@
|
||||||
|
|
||||||
Name: Baltoy
|
Baltoy A ground type Pokémon
|
||||||
Pokedex Number: 343
|
|
||||||
Gender Ratio: Genderless
|
|
||||||
Abilities: Levitate
|
|
||||||
|
|
||||||
Base Stats
|
BALTOY moves while spinning
|
||||||
----------------------
|
around on its one foot. Primitive
|
||||||
Total: 300
|
wall paintings depicting this
|
||||||
Hp: 40
|
Pokémon living among people were
|
||||||
Attack: 40
|
discovered in some ancient ruins.
|
||||||
Defence: 55
|
|
||||||
Special Attack: 40
|
Evolution Chain
|
||||||
Special Defence: 70
|
Baltoy ► Claydol
|
||||||
Speed: 55
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 40
|
||||||
|
attack: 40
|
||||||
|
defense: 55
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 70
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 343 Capture Rate: 255
|
||||||
|
Base Exp: 60 Happiness: 50
|
||||||
|
Height: 5 Weight: 215
|
||||||
|
|
||||||
|
Genus: Clay Doll Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-206-area
|
||||||
|
kanto-route-3-area
|
||||||
|
hoenn-route-111-area
|
||||||
|
relic-castle-d
|
||||||
|
|
|
@ -1,15 +1,37 @@
|
||||||
|
|
||||||
Name: Banette
|
Banette A ghost type Pokémon
|
||||||
Pokedex Number: 354
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Insomnia - Frisk - Cursed Body (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
BANETTE generates energy for
|
||||||
----------------------
|
laying strong curses by sticking
|
||||||
Total: 455
|
pins into its own body. This
|
||||||
Hp: 64
|
Pokémon was originally a pitiful
|
||||||
Attack: 165
|
plush doll that was thrown away.
|
||||||
Defence: 75
|
|
||||||
Special Attack: 93
|
Evolution Chain
|
||||||
Special Defence: 83
|
Shuppet ► Banette
|
||||||
Speed: 75
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 64
|
||||||
|
attack: 115
|
||||||
|
defense: 65
|
||||||
|
special-attack: 83
|
||||||
|
special-defense: 63
|
||||||
|
speed: 65
|
||||||
|
|
||||||
|
Pokedex ID: 354 Capture Rate: 45
|
||||||
|
Base Exp: 159 Happiness: 35
|
||||||
|
Height: 11 Weight: 125
|
||||||
|
|
||||||
|
Genus: Marionette Pokémon
|
||||||
|
Location Areas:
|
||||||
|
stark-mountain-area
|
||||||
|
sinnoh-route-225-area
|
||||||
|
sinnoh-route-227-area
|
||||||
|
sinnoh-sea-route-226-area
|
||||||
|
sky-pillar-1f
|
||||||
|
sky-pillar-3f
|
||||||
|
sky-pillar-5f
|
||||||
|
unova-victory-road-2-unknown-area-71
|
||||||
|
unova-victory-road-2-unknown-area-78
|
||||||
|
strange-house-1f
|
||||||
|
strange-house-b1f
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Barbaracle
|
Barbaracle A rock type Pokémon
|
||||||
Pokedex Number: 689
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
When they evolve, two Binacle
|
||||||
Abilities: Tough Claws - Sniper - Pickpocket (Hidden Ability)
|
multiply into seven. They fight
|
||||||
|
with the power of seven Binacle.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Binacle ► Barbaracle
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 72
|
||||||
|
attack: 105
|
||||||
|
defense: 115
|
||||||
|
special-attack: 54
|
||||||
|
special-defense: 86
|
||||||
|
speed: 68
|
||||||
|
|
||||||
|
Pokedex ID: 689 Capture Rate: 45
|
||||||
|
Base Exp: 175 Happiness: 50
|
||||||
|
Height: 13 Weight: 960
|
||||||
|
|
||||||
|
Genus: Collective Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 500
|
|
||||||
Hp: 72
|
|
||||||
Attack: 105
|
|
||||||
Defence: 115
|
|
||||||
Special Attack: 54
|
|
||||||
Special Defence: 86
|
|
||||||
Speed: 68
|
|
||||||
|
|
|
@ -1,15 +1,60 @@
|
||||||
|
|
||||||
Name: Barboach
|
Barboach A water type Pokémon
|
||||||
Pokedex Number: 339
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Oblivious - Anticipation - Hydration (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
BARBOACH’s sensitive whiskers
|
||||||
----------------------
|
serve as a superb radar system.
|
||||||
Total: 288
|
Barboach hides in mud, leaving
|
||||||
Hp: 50
|
only its two whiskers exposed
|
||||||
Attack: 48
|
while it waits for prey to come
|
||||||
Defence: 43
|
along.
|
||||||
Special Attack: 46
|
|
||||||
Special Defence: 41
|
Evolution Chain
|
||||||
Speed: 60
|
Barboach ► Whiscash
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 50
|
||||||
|
attack: 48
|
||||||
|
defense: 43
|
||||||
|
special-attack: 46
|
||||||
|
special-defense: 41
|
||||||
|
speed: 60
|
||||||
|
|
||||||
|
Pokedex ID: 339 Capture Rate: 190
|
||||||
|
Base Exp: 58 Happiness: 50
|
||||||
|
Height: 4 Weight: 19
|
||||||
|
|
||||||
|
Genus: Whiskers Pokémon
|
||||||
|
Location Areas:
|
||||||
|
eterna-city-area
|
||||||
|
mt-coronet-1f-route-207
|
||||||
|
mt-coronet-4f
|
||||||
|
mt-coronet-b1f
|
||||||
|
great-marsh-area-1
|
||||||
|
great-marsh-area-2
|
||||||
|
great-marsh-area-3
|
||||||
|
great-marsh-area-4
|
||||||
|
great-marsh-area-5
|
||||||
|
great-marsh-area-6
|
||||||
|
ravaged-path-area
|
||||||
|
oreburgh-gate-b1f
|
||||||
|
sinnoh-route-205-east-towards-eterna-city
|
||||||
|
sinnoh-route-208-area
|
||||||
|
sinnoh-route-210-west-towards-celestic-town
|
||||||
|
sinnoh-route-212-east-towards-pastoria-city
|
||||||
|
sinnoh-route-225-area
|
||||||
|
sinnoh-route-227-area
|
||||||
|
sinnoh-route-228-area
|
||||||
|
celestic-town-area
|
||||||
|
meteor-falls-area
|
||||||
|
meteor-falls-back
|
||||||
|
meteor-falls-b1f
|
||||||
|
meteor-falls-backsmall-room
|
||||||
|
hoenn-victory-road-b2f
|
||||||
|
hoenn-route-111-area
|
||||||
|
hoenn-route-114-area
|
||||||
|
hoenn-route-120-area
|
||||||
|
icirrus-city-area
|
||||||
|
unova-route-8-area
|
||||||
|
moor-of-icirrus-area
|
||||||
|
kalos-route-14-area
|
||||||
|
kalos-route-19-area
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Barraskewda
|
Barraskewda A water type Pokémon
|
||||||
Pokedex Number: 847
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
This Pokémon has a jaw that’s
|
||||||
Abilities: Swift Swim - Propeller Tail (Hidden Ability)
|
as sharp as a spear and as strong
|
||||||
|
as steel. Apparently Barraskewda’s
|
||||||
|
flesh is surprisingly tasty,
|
||||||
|
too.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Arrokuda ► Barraskewda
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 61
|
||||||
|
attack: 123
|
||||||
|
defense: 60
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 50
|
||||||
|
speed: 136
|
||||||
|
|
||||||
|
Pokedex ID: 847 Capture Rate: 60
|
||||||
|
Base Exp: 172 Happiness: 50
|
||||||
|
Height: 13 Weight: 300
|
||||||
|
|
||||||
|
Genus: Skewer Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 490
|
|
||||||
Hp: 61
|
|
||||||
Attack: 123
|
|
||||||
Defence: 60
|
|
||||||
Special Attack: 60
|
|
||||||
Special Defence: 50
|
|
||||||
Speed: 136
|
|
||||||
|
|
|
@ -1,15 +1,22 @@
|
||||||
|
|
||||||
Name: Basculegion
|
A type Pokémon
|
||||||
Pokedex Number: 902
|
|
||||||
Gender Ratio: ♂:100% ♀:0%
|
Clads itself in the souls of
|
||||||
Abilities: Swift Swim - Adaptability - Mold Breaker (Hidden Ability)
|
comrades that perished before
|
||||||
|
fulfilling their goals of journeying
|
||||||
|
upstream. No other species throughout
|
||||||
|
all Hisui's rivers is Basculegion's
|
||||||
|
equal.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Basculin ► Basculegion
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
|
||||||
|
Pokedex ID: Capture Rate:
|
||||||
|
Base Exp: Happiness: 135
|
||||||
|
Height: Weight:
|
||||||
|
|
||||||
|
Genus: Null
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 530
|
|
||||||
Hp: 120
|
|
||||||
Attack: 92
|
|
||||||
Defence: 65
|
|
||||||
Special Attack: 100
|
|
||||||
Special Defence: 75
|
|
||||||
Speed: 78
|
|
||||||
|
|
|
@ -1,15 +1,20 @@
|
||||||
|
|
||||||
Name: Basculin
|
A type Pokémon
|
||||||
Pokedex Number: 550
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
Red and blue Basculin get along
|
||||||
Abilities: Reckless (Red-Striped Form BWB2W2 & Blue-Striped Form BW) - Rock Head (Blue-Striped Form - B2W2) - Adaptability - Mold Breaker (Dream World)
|
so poorly, they’ll start fighting
|
||||||
|
instantly. These Pokémon are
|
||||||
|
very hostile.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Basculin ► Basculegion
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
|
||||||
|
Pokedex ID: Capture Rate: 25
|
||||||
|
Base Exp: Happiness: 50
|
||||||
|
Height: Weight:
|
||||||
|
|
||||||
|
Genus: Hostile Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 460
|
|
||||||
Hp: 70
|
|
||||||
Attack: 92
|
|
||||||
Defence: 65
|
|
||||||
Special Attack: 80
|
|
||||||
Special Defence: 55
|
|
||||||
Speed: 98
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Bastiodon
|
Bastiodon A rock type Pokémon
|
||||||
Pokedex Number: 411
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
Any frontal attack is repulsed.
|
||||||
Abilities: Sturdy - Soundproof (Hidden Ability)
|
It is a docile Pokémon that
|
||||||
|
feeds on grass and berries.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Shieldon ► Bastiodon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 60
|
||||||
|
attack: 52
|
||||||
|
defense: 168
|
||||||
|
special-attack: 47
|
||||||
|
special-defense: 138
|
||||||
|
speed: 30
|
||||||
|
|
||||||
|
Pokedex ID: 411 Capture Rate: 45
|
||||||
|
Base Exp: 173 Happiness: 70
|
||||||
|
Height: 13 Weight: 1495
|
||||||
|
|
||||||
|
Genus: Shield Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 495
|
|
||||||
Hp: 60
|
|
||||||
Attack: 52
|
|
||||||
Defence: 168
|
|
||||||
Special Attack: 47
|
|
||||||
Special Defence: 138
|
|
||||||
Speed: 30
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Bayleef
|
Bayleef A grass type Pokémon
|
||||||
Pokedex Number: 153
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
The scent of spices comes from
|
||||||
Abilities: Overgrow - Leaf Guard (Hidden Ability)
|
around its neck. Somehow, sniffing
|
||||||
|
it makes you want to fight.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Chikorita ► Bayleef ► Meganium
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 60
|
||||||
|
attack: 62
|
||||||
|
defense: 80
|
||||||
|
special-attack: 63
|
||||||
|
special-defense: 80
|
||||||
|
speed: 60
|
||||||
|
|
||||||
|
Pokedex ID: 153 Capture Rate: 45
|
||||||
|
Base Exp: 142 Happiness: 70
|
||||||
|
Height: 12 Weight: 158
|
||||||
|
|
||||||
|
Genus: Leaf Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 405
|
|
||||||
Hp: 60
|
|
||||||
Attack: 62
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 63
|
|
||||||
Special Defence: 80
|
|
||||||
Speed: 60
|
|
||||||
|
|
|
@ -1,15 +1,32 @@
|
||||||
|
|
||||||
Name: Beartic
|
Beartic A ice type Pokémon
|
||||||
Pokedex Number: 614
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Snow Cloak - Swift Swim (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It can make its breath freeze
|
||||||
----------------------
|
at will. Very able in the water,
|
||||||
Total: 485
|
it swims around in northern seas
|
||||||
Hp: 95
|
and catches prey.
|
||||||
Attack: 110
|
|
||||||
Defence: 80
|
Evolution Chain
|
||||||
Special Attack: 70
|
Cubchoo ► Beartic
|
||||||
Special Defence: 80
|
|
||||||
Speed: 50
|
↞--------| STATS |--------↠
|
||||||
|
hp: 95
|
||||||
|
attack: 130
|
||||||
|
defense: 80
|
||||||
|
special-attack: 70
|
||||||
|
special-defense: 80
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 614 Capture Rate: 60
|
||||||
|
Base Exp: 177 Happiness: 50
|
||||||
|
Height: 26 Weight: 2600
|
||||||
|
|
||||||
|
Genus: Freezing Pokémon
|
||||||
|
Location Areas:
|
||||||
|
twist-mountain-area
|
||||||
|
dragonspiral-tower-entrance
|
||||||
|
dragonspiral-tower-outside
|
||||||
|
frost-cavern-unknown-area-314
|
||||||
|
frost-cavern-unknown-area-315
|
||||||
|
frost-cavern-unknown-area-316
|
||||||
|
frost-cavern-unknown-area-317
|
||||||
|
|
|
@ -1,15 +1,34 @@
|
||||||
|
|
||||||
Name: Beautifly
|
Beautifly A bug type Pokémon
|
||||||
Pokedex Number: 267
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Swarm - Rivalry (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
BEAUTIFLY’s favorite food is
|
||||||
----------------------
|
the sweet pollen of flowers.
|
||||||
Total: 395
|
If you want to see Beautifly,
|
||||||
Hp: 60
|
just leave a potted flower by
|
||||||
Attack: 70
|
an open window. BEAUTIFLY is
|
||||||
Defence: 50
|
sure to come looking for pollen.
|
||||||
Special Attack: 100
|
|
||||||
Special Defence: 50
|
Evolution Chain
|
||||||
Speed: 65
|
Wurmple ► Silcoon
|
||||||
|
cascoon ► Beautifly
|
||||||
|
dustox
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 60
|
||||||
|
attack: 70
|
||||||
|
defense: 50
|
||||||
|
special-attack: 100
|
||||||
|
special-defense: 50
|
||||||
|
speed: 65
|
||||||
|
|
||||||
|
Pokedex ID: 267 Capture Rate: 45
|
||||||
|
Base Exp: 178 Happiness: 70
|
||||||
|
Height: 10 Weight: 284
|
||||||
|
|
||||||
|
Genus: Butterfly Pokémon
|
||||||
|
Location Areas:
|
||||||
|
eterna-forest-area
|
||||||
|
sinnoh-route-205-east-towards-eterna-city
|
||||||
|
sinnoh-route-224-area
|
||||||
|
sinnoh-route-229-area
|
||||||
|
sinnoh-sea-route-230-area
|
||||||
|
|
|
@ -1,15 +1,40 @@
|
||||||
|
|
||||||
Name: Beedrill
|
Beedrill A bug type Pokémon
|
||||||
Pokedex Number: 015
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Swarm - Sniper (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It has three poisonous stingers
|
||||||
----------------------
|
on its forelegs and its tail.
|
||||||
Total: 395
|
They are used to jab its enemy
|
||||||
Hp: 65
|
repeatedly.
|
||||||
Attack: 150
|
|
||||||
Defence: 40
|
Evolution Chain
|
||||||
Special Attack: 15
|
Weedle ► Kakuna ► Beedrill
|
||||||
Special Defence: 80
|
|
||||||
Speed: 145
|
↞--------| STATS |--------↠
|
||||||
|
hp: 65
|
||||||
|
attack: 90
|
||||||
|
defense: 40
|
||||||
|
special-attack: 45
|
||||||
|
special-defense: 80
|
||||||
|
speed: 75
|
||||||
|
|
||||||
|
Pokedex ID: 15 Capture Rate: 45
|
||||||
|
Base Exp: 178 Happiness: 70
|
||||||
|
Height: 10 Weight: 295
|
||||||
|
|
||||||
|
Genus: Poison Bee Pokémon
|
||||||
|
Location Areas:
|
||||||
|
ilex-forest-area
|
||||||
|
johto-route-34-area
|
||||||
|
johto-route-35-area
|
||||||
|
johto-route-36-area
|
||||||
|
johto-route-37-area
|
||||||
|
johto-route-38-area
|
||||||
|
johto-route-39-area
|
||||||
|
lake-of-rage-area
|
||||||
|
kanto-route-26-area
|
||||||
|
kanto-route-27-area
|
||||||
|
kanto-route-2-south-towards-viridian-city
|
||||||
|
kanto-route-2-north-towards-pewter-city
|
||||||
|
viridian-forest-area
|
||||||
|
unova-route-12-area
|
||||||
|
azalea-town-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Beheeyem
|
Beheeyem A psychic type Pokémon
|
||||||
Pokedex Number: 606
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Telepathy - Synchronize - Analytic (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It can manipulate an opponent’s
|
||||||
----------------------
|
memory. Apparently, it communicates
|
||||||
Total: 485
|
by flashing its three different-colored
|
||||||
Hp: 75
|
fingers.
|
||||||
Attack: 75
|
|
||||||
Defence: 75
|
Evolution Chain
|
||||||
Special Attack: 125
|
Elgyem ► Beheeyem
|
||||||
Special Defence: 95
|
|
||||||
Speed: 40
|
↞--------| STATS |--------↠
|
||||||
|
hp: 75
|
||||||
|
attack: 75
|
||||||
|
defense: 75
|
||||||
|
special-attack: 125
|
||||||
|
special-defense: 95
|
||||||
|
speed: 40
|
||||||
|
|
||||||
|
Pokedex ID: 606 Capture Rate: 90
|
||||||
|
Base Exp: 170 Happiness: 50
|
||||||
|
Height: 10 Weight: 345
|
||||||
|
|
||||||
|
Genus: Cerebral Pokémon
|
||||||
|
Location Areas:
|
||||||
|
unova-route-14-area
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Beldum
|
Beldum A steel type Pokémon
|
||||||
Pokedex Number: 374
|
|
||||||
Gender Ratio: Genderless
|
|
||||||
Abilities: Clear Body - Light Metal (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Instead of blood, a powerful
|
||||||
----------------------
|
magnetic force courses throughout
|
||||||
Total: 300
|
BELDUM’s body. Beldum
|
||||||
Hp: 40
|
communicates with others by sending
|
||||||
Attack: 55
|
controlled pulses of magnetism.
|
||||||
Defence: 80
|
|
||||||
Special Attack: 35
|
Evolution Chain
|
||||||
Special Defence: 60
|
Beldum ► Metang ► Metagross
|
||||||
Speed: 30
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 40
|
||||||
|
attack: 55
|
||||||
|
defense: 80
|
||||||
|
special-attack: 35
|
||||||
|
special-defense: 60
|
||||||
|
speed: 30
|
||||||
|
|
||||||
|
Pokedex ID: 374 Capture Rate: 3
|
||||||
|
Base Exp: 60 Happiness: 35
|
||||||
|
Height: 6 Weight: 952
|
||||||
|
|
||||||
|
Genus: Iron Ball Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-228-area
|
||||||
|
mossdeep-city-stevens-house
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Bellossom
|
Bellossom A grass type Pokémon
|
||||||
Pokedex Number: 182
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
Plentiful in the tropics. When
|
||||||
Abilities: Chlorophyll - Healer (Hidden Ability)
|
it dances, its petals rub together
|
||||||
|
and make a pleasant ringing sound.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Oddish ► Gloom ► Vileplume
|
||||||
|
bellossom
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 75
|
||||||
|
attack: 80
|
||||||
|
defense: 95
|
||||||
|
special-attack: 90
|
||||||
|
special-defense: 100
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 182 Capture Rate: 45
|
||||||
|
Base Exp: 245 Happiness: 50
|
||||||
|
Height: 4 Weight: 58
|
||||||
|
|
||||||
|
Genus: Flower Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 490
|
|
||||||
Hp: 75
|
|
||||||
Attack: 80
|
|
||||||
Defence: 95
|
|
||||||
Special Attack: 90
|
|
||||||
Special Defence: 100
|
|
||||||
Speed: 50
|
|
||||||
|
|
|
@ -1,15 +1,45 @@
|
||||||
|
|
||||||
Name: Bellsprout
|
Bellsprout A grass type Pokémon
|
||||||
Pokedex Number: 069
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Chlorophyll - Gluttony (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
A carnivorous Pokémon that traps
|
||||||
----------------------
|
and eats bugs. It uses its root
|
||||||
Total: 300
|
feet to soak up needed moisture.
|
||||||
Hp: 50
|
|
||||||
Attack: 75
|
Evolution Chain
|
||||||
Defence: 35
|
Bellsprout ► Weepinbell ► Victreebel
|
||||||
Special Attack: 70
|
|
||||||
Special Defence: 30
|
↞--------| STATS |--------↠
|
||||||
Speed: 40
|
hp: 50
|
||||||
|
attack: 75
|
||||||
|
defense: 35
|
||||||
|
special-attack: 70
|
||||||
|
special-defense: 30
|
||||||
|
speed: 40
|
||||||
|
|
||||||
|
Pokedex ID: 69 Capture Rate: 255
|
||||||
|
Base Exp: 60 Happiness: 70
|
||||||
|
Height: 7 Weight: 40
|
||||||
|
|
||||||
|
Genus: Flower Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-224-area
|
||||||
|
sinnoh-route-229-area
|
||||||
|
sinnoh-sea-route-230-area
|
||||||
|
johto-route-31-area
|
||||||
|
johto-route-32-area
|
||||||
|
johto-route-36-area
|
||||||
|
johto-route-44-area
|
||||||
|
kanto-route-12-area
|
||||||
|
kanto-route-5-area
|
||||||
|
kanto-route-6-area
|
||||||
|
kanto-route-7-area
|
||||||
|
kanto-route-13-area
|
||||||
|
kanto-route-14-area
|
||||||
|
kanto-route-15-area
|
||||||
|
kanto-route-24-area
|
||||||
|
kanto-route-25-area
|
||||||
|
berry-forest-area
|
||||||
|
cape-brink-area
|
||||||
|
bond-bridge-area
|
||||||
|
water-path-area
|
||||||
|
johto-safari-zone-zone-forest
|
||||||
|
|
|
@ -1,15 +1,29 @@
|
||||||
|
|
||||||
Name: Bergmite
|
Bergmite A ice type Pokémon
|
||||||
Pokedex Number: 712
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Own Tempo - Ice Body - Sturdy (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It blocks opponents’ attacks
|
||||||
----------------------
|
with the ice that shields its
|
||||||
Total: 304
|
body. It uses cold air to repair
|
||||||
Hp: 55
|
any cracks with new ice.
|
||||||
Attack: 69
|
|
||||||
Defence: 85
|
Evolution Chain
|
||||||
Special Attack: 32
|
Bergmite ► Avalugg
|
||||||
Special Defence: 35
|
|
||||||
Speed: 28
|
↞--------| STATS |--------↠
|
||||||
|
hp: 55
|
||||||
|
attack: 69
|
||||||
|
defense: 85
|
||||||
|
special-attack: 32
|
||||||
|
special-defense: 35
|
||||||
|
speed: 28
|
||||||
|
|
||||||
|
Pokedex ID: 712 Capture Rate: 190
|
||||||
|
Base Exp: 61 Happiness: 50
|
||||||
|
Height: 10 Weight: 995
|
||||||
|
|
||||||
|
Genus: Ice Chunk Pokémon
|
||||||
|
Location Areas:
|
||||||
|
frost-cavern-unknown-area-314
|
||||||
|
frost-cavern-unknown-area-315
|
||||||
|
frost-cavern-unknown-area-316
|
||||||
|
frost-cavern-unknown-area-317
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Bewear
|
Bewear A normal type Pokémon
|
||||||
Pokedex Number: 760
|
|
||||||
Gender Ratio: ♂:50.2% ♀:49.8%
|
This immensely dangerous Pokémon
|
||||||
Abilities: Fluffy - Klutz - Unnerve (Hidden Ability)
|
possesses overwhelming physical
|
||||||
|
strength. Its habitat is generally
|
||||||
|
off-limits.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Stufful ► Bewear
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 120
|
||||||
|
attack: 125
|
||||||
|
defense: 80
|
||||||
|
special-attack: 55
|
||||||
|
special-defense: 60
|
||||||
|
speed: 60
|
||||||
|
|
||||||
|
Pokedex ID: 760 Capture Rate: 70
|
||||||
|
Base Exp: 175 Happiness: 50
|
||||||
|
Height: 21 Weight: 1350
|
||||||
|
|
||||||
|
Genus: Strong Arm Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 500
|
|
||||||
Hp: 120
|
|
||||||
Attack: 125
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 55
|
|
||||||
Special Defence: 60
|
|
||||||
Speed: 60
|
|
||||||
|
|
|
@ -1,15 +1,42 @@
|
||||||
|
|
||||||
Name: Bibarel
|
Bibarel A normal type Pokémon
|
||||||
Pokedex Number: 400
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Simple - Unaware - Moody (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It makes its nest by damming
|
||||||
----------------------
|
streams with bark and mud. It
|
||||||
Total: 410
|
is known as an industrious worker.
|
||||||
Hp: 79
|
|
||||||
Attack: 85
|
Evolution Chain
|
||||||
Defence: 60
|
Bidoof ► Bibarel
|
||||||
Special Attack: 55
|
|
||||||
Special Defence: 60
|
↞--------| STATS |--------↠
|
||||||
Speed: 71
|
hp: 79
|
||||||
|
attack: 85
|
||||||
|
defense: 60
|
||||||
|
special-attack: 55
|
||||||
|
special-defense: 60
|
||||||
|
speed: 71
|
||||||
|
|
||||||
|
Pokedex ID: 400 Capture Rate: 127
|
||||||
|
Base Exp: 144 Happiness: 70
|
||||||
|
Height: 10 Weight: 315
|
||||||
|
|
||||||
|
Genus: Beaver Pokémon
|
||||||
|
Location Areas:
|
||||||
|
great-marsh-area-1
|
||||||
|
great-marsh-area-2
|
||||||
|
great-marsh-area-3
|
||||||
|
great-marsh-area-4
|
||||||
|
great-marsh-area-5
|
||||||
|
great-marsh-area-6
|
||||||
|
sendoff-spring-area
|
||||||
|
lake-verity-before-galactic-intervention
|
||||||
|
lake-verity-after-galactic-intervention
|
||||||
|
lake-valor-area
|
||||||
|
lake-acuity-area
|
||||||
|
valor-lakefront-area
|
||||||
|
sinnoh-route-208-area
|
||||||
|
sinnoh-route-209-area
|
||||||
|
sinnoh-route-210-west-towards-celestic-town
|
||||||
|
sinnoh-route-212-east-towards-pastoria-city
|
||||||
|
village-bridge-area
|
||||||
|
kalos-route-22-area
|
||||||
|
|
|
@ -1,15 +1,70 @@
|
||||||
|
|
||||||
Name: Bidoof
|
Bidoof A normal type Pokémon
|
||||||
Pokedex Number: 399
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Simple - Unaware - Moody (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
With nerves of steel, nothing
|
||||||
----------------------
|
can perturb it. It is more agile
|
||||||
Total: 250
|
and active than it appears.
|
||||||
Hp: 59
|
|
||||||
Attack: 45
|
Evolution Chain
|
||||||
Defence: 40
|
Bidoof ► Bibarel
|
||||||
Special Attack: 35
|
|
||||||
Special Defence: 40
|
↞--------| STATS |--------↠
|
||||||
Speed: 31
|
hp: 59
|
||||||
|
attack: 45
|
||||||
|
defense: 40
|
||||||
|
special-attack: 35
|
||||||
|
special-defense: 40
|
||||||
|
speed: 31
|
||||||
|
|
||||||
|
Pokedex ID: 399 Capture Rate: 255
|
||||||
|
Base Exp: 50 Happiness: 70
|
||||||
|
Height: 5 Weight: 200
|
||||||
|
|
||||||
|
Genus: Plump Mouse Pokémon
|
||||||
|
Location Areas:
|
||||||
|
valley-windworks-area
|
||||||
|
eterna-forest-area
|
||||||
|
great-marsh-area-1
|
||||||
|
great-marsh-area-2
|
||||||
|
great-marsh-area-3
|
||||||
|
great-marsh-area-4
|
||||||
|
great-marsh-area-5
|
||||||
|
great-marsh-area-6
|
||||||
|
lake-verity-before-galactic-intervention
|
||||||
|
lake-verity-after-galactic-intervention
|
||||||
|
sinnoh-route-201-area
|
||||||
|
sinnoh-route-202-area
|
||||||
|
sinnoh-route-203-area
|
||||||
|
sinnoh-route-204-south-towards-jubilife-city
|
||||||
|
sinnoh-route-204-north-towards-floaroma-town
|
||||||
|
sinnoh-route-205-south-towards-floaroma-town
|
||||||
|
sinnoh-route-205-east-towards-eterna-city
|
||||||
|
sinnoh-route-208-area
|
||||||
|
sinnoh-route-211-west-towards-eterna-city
|
||||||
|
johto-route-30-area
|
||||||
|
johto-route-31-area
|
||||||
|
johto-route-32-area
|
||||||
|
ruins-of-alph-outside
|
||||||
|
johto-route-34-area
|
||||||
|
johto-route-35-area
|
||||||
|
johto-route-42-area
|
||||||
|
johto-route-43-area
|
||||||
|
johto-route-44-area
|
||||||
|
johto-route-45-area
|
||||||
|
johto-route-47-area
|
||||||
|
mt-silver-outside
|
||||||
|
unknown-all-rattata-area
|
||||||
|
kanto-route-26-area
|
||||||
|
kanto-route-27-area
|
||||||
|
kanto-route-28-area
|
||||||
|
kanto-route-4-area
|
||||||
|
kanto-route-6-area
|
||||||
|
kanto-route-9-area
|
||||||
|
kanto-route-10-area
|
||||||
|
kanto-route-13-area
|
||||||
|
kanto-sea-route-21-area
|
||||||
|
kanto-route-22-area
|
||||||
|
kanto-route-24-area
|
||||||
|
kanto-route-25-area
|
||||||
|
kalos-route-3-area
|
||||||
|
kalos-route-22-area
|
||||||
|
|
|
@ -1,15 +1,30 @@
|
||||||
|
|
||||||
Name: Binacle
|
Binacle A rock type Pokémon
|
||||||
Pokedex Number: 688
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Tough Claws - Sniper - Pickpocket (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Two Binacle live together on
|
||||||
----------------------
|
one rock. When they fight, one
|
||||||
Total: 306
|
of them will move to a different
|
||||||
Hp: 42
|
rock.
|
||||||
Attack: 52
|
|
||||||
Defence: 67
|
Evolution Chain
|
||||||
Special Attack: 39
|
Binacle ► Barbaracle
|
||||||
Special Defence: 56
|
|
||||||
Speed: 50
|
↞--------| STATS |--------↠
|
||||||
|
hp: 42
|
||||||
|
attack: 52
|
||||||
|
defense: 67
|
||||||
|
special-attack: 39
|
||||||
|
special-defense: 56
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 688 Capture Rate: 120
|
||||||
|
Base Exp: 61 Happiness: 50
|
||||||
|
Height: 5 Weight: 310
|
||||||
|
|
||||||
|
Genus: Two-Handed Pokémon
|
||||||
|
Location Areas:
|
||||||
|
ambrette-town-area
|
||||||
|
cyllage-city-area
|
||||||
|
kalos-route-8-area
|
||||||
|
kalos-route-12-area
|
||||||
|
azure-bay-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Bisharp
|
Bisharp A dark type Pokémon
|
||||||
Pokedex Number: 625
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Defiant - Inner Focus - Pressure (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It leads a group of Pawniard.
|
||||||
----------------------
|
It battles to become the boss,
|
||||||
Total: 490
|
but will be driven from the group
|
||||||
Hp: 65
|
if it loses.
|
||||||
Attack: 125
|
|
||||||
Defence: 100
|
Evolution Chain
|
||||||
Special Attack: 60
|
Pawniard ► Bisharp ► Kingambit
|
||||||
Special Defence: 70
|
|
||||||
Speed: 70
|
↞--------| STATS |--------↠
|
||||||
|
hp: 65
|
||||||
|
attack: 125
|
||||||
|
defense: 100
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 70
|
||||||
|
speed: 70
|
||||||
|
|
||||||
|
Pokedex ID: 625 Capture Rate: 45
|
||||||
|
Base Exp: 172 Happiness: 35
|
||||||
|
Height: 16 Weight: 700
|
||||||
|
|
||||||
|
Genus: Sword Blade Pokémon
|
||||||
|
Location Areas:
|
||||||
|
unova-route-11-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Blacephalon
|
Blacephalon A fire type Pokémon
|
||||||
Pokedex Number: 806
|
|
||||||
Gender Ratio: Genderless
|
It slithers toward people.
|
||||||
Abilities: Beast Boost
|
Then, without warning, it triggers
|
||||||
|
the explosion of its own head.
|
||||||
|
It’s apparently one kind of
|
||||||
|
Ultra Beast.
|
||||||
|
|
||||||
|
Single Stage Evolution Pokémon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 53
|
||||||
|
attack: 127
|
||||||
|
defense: 53
|
||||||
|
special-attack: 151
|
||||||
|
special-defense: 79
|
||||||
|
speed: 107
|
||||||
|
|
||||||
|
Pokedex ID: 806 Capture Rate: 30
|
||||||
|
Base Exp: 285 Happiness: 0
|
||||||
|
Height: 18 Weight: 130
|
||||||
|
|
||||||
|
Genus: Fireworks Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 570
|
|
||||||
Hp: 53
|
|
||||||
Attack: 127
|
|
||||||
Defence: 53
|
|
||||||
Special Attack: 151
|
|
||||||
Special Defence: 79
|
|
||||||
Speed: 107
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Blastoise
|
Blastoise A water type Pokémon
|
||||||
Pokedex Number: 009
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
A brutal Pokémon with pressurized
|
||||||
Abilities: Torrent - Rain Dish (Hidden Ability)
|
water jets on its shell. They
|
||||||
|
are used for high speed tackles.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Squirtle ► Wartortle ► Blastoise
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 79
|
||||||
|
attack: 83
|
||||||
|
defense: 100
|
||||||
|
special-attack: 85
|
||||||
|
special-defense: 105
|
||||||
|
speed: 78
|
||||||
|
|
||||||
|
Pokedex ID: 9 Capture Rate: 45
|
||||||
|
Base Exp: 265 Happiness: 50
|
||||||
|
Height: 16 Weight: 855
|
||||||
|
|
||||||
|
Genus: Shellfish Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 530
|
|
||||||
Hp: 79
|
|
||||||
Attack: 103
|
|
||||||
Defence: 120
|
|
||||||
Special Attack: 135
|
|
||||||
Special Defence: 115
|
|
||||||
Speed: 78
|
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Blaziken
|
Blaziken A fire type Pokémon
|
||||||
Pokedex Number: 257
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
In battle, BLAZIKEN blows out
|
||||||
Abilities: Blaze - Speed Boost (Hidden Ability)
|
intense flames from its wrists
|
||||||
|
and attacks foes courageously.
|
||||||
|
The stronger the foe, the more
|
||||||
|
intensely Blaziken’s wrists
|
||||||
|
burn.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Torchic ► Combusken ► Blaziken
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 80
|
||||||
|
attack: 120
|
||||||
|
defense: 70
|
||||||
|
special-attack: 110
|
||||||
|
special-defense: 70
|
||||||
|
speed: 80
|
||||||
|
|
||||||
|
Pokedex ID: 257 Capture Rate: 45
|
||||||
|
Base Exp: 265 Happiness: 50
|
||||||
|
Height: 19 Weight: 520
|
||||||
|
|
||||||
|
Genus: Blaze Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 530
|
|
||||||
Hp: 80
|
|
||||||
Attack: 160
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 130
|
|
||||||
Special Defence: 80
|
|
||||||
Speed: 100
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Blipbug
|
Blipbug A bug type Pokémon
|
||||||
Pokedex Number: 824
|
|
||||||
Gender Ratio: ♂:50.2% ♀:49.8%
|
A constant collector of information,
|
||||||
Abilities: Swarm - Compoundeyes - Telepathy (Hidden Ability)
|
this Pokémon is very smart.
|
||||||
|
Very strong is what it isn’t.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Blipbug ► Dottler ► Orbeetle
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 25
|
||||||
|
attack: 20
|
||||||
|
defense: 20
|
||||||
|
special-attack: 25
|
||||||
|
special-defense: 45
|
||||||
|
speed: 45
|
||||||
|
|
||||||
|
Pokedex ID: 824 Capture Rate: 255
|
||||||
|
Base Exp: 36 Happiness: 50
|
||||||
|
Height: 4 Weight: 80
|
||||||
|
|
||||||
|
Genus: Larva Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 180
|
|
||||||
Hp: 25
|
|
||||||
Attack: 20
|
|
||||||
Defence: 20
|
|
||||||
Special Attack: 25
|
|
||||||
Special Defence: 45
|
|
||||||
Speed: 45
|
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Blissey
|
Blissey A normal type Pokémon
|
||||||
Pokedex Number: 242
|
|
||||||
Gender Ratio: ♂:0% ♀:100%
|
Anyone who takes even one bite
|
||||||
Abilities: Natural Cure - Serene Grace - Healer (Hidden Ability)
|
of BLISSEY's egg be comes unfailingly
|
||||||
|
caring and pleas ant to everyone.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Happiny ► Chansey ► Blissey
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 255
|
||||||
|
attack: 10
|
||||||
|
defense: 10
|
||||||
|
special-attack: 75
|
||||||
|
special-defense: 135
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 242 Capture Rate: 30
|
||||||
|
Base Exp: 635 Happiness: 140
|
||||||
|
Height: 15 Weight: 468
|
||||||
|
|
||||||
|
Genus: Happiness Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 540
|
|
||||||
Hp: 255
|
|
||||||
Attack: 10
|
|
||||||
Defence: 10
|
|
||||||
Special Attack: 75
|
|
||||||
Special Defence: 135
|
|
||||||
Speed: 55
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Blitzle
|
Blitzle A electric type Pokémon
|
||||||
Pokedex Number: 522
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Lightningrod - Motor Drive - Sap Sipper (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
When thunderclouds cover the
|
||||||
----------------------
|
sky, it will appear. It can
|
||||||
Total: 295
|
catch lightning with its mane
|
||||||
Hp: 45
|
and store the electricity.
|
||||||
Attack: 60
|
|
||||||
Defence: 32
|
Evolution Chain
|
||||||
Special Attack: 50
|
Blitzle ► Zebstrika
|
||||||
Special Defence: 32
|
|
||||||
Speed: 76
|
↞--------| STATS |--------↠
|
||||||
|
hp: 45
|
||||||
|
attack: 60
|
||||||
|
defense: 32
|
||||||
|
special-attack: 50
|
||||||
|
special-defense: 32
|
||||||
|
speed: 76
|
||||||
|
|
||||||
|
Pokedex ID: 522 Capture Rate: 190
|
||||||
|
Base Exp: 59 Happiness: 70
|
||||||
|
Height: 8 Weight: 298
|
||||||
|
|
||||||
|
Genus: Electrified Pokémon
|
||||||
|
Location Areas:
|
||||||
|
unova-route-3-area
|
||||||
|
|
|
@ -1,15 +1,76 @@
|
||||||
|
|
||||||
Name: Boldore
|
Boldore A rock type Pokémon
|
||||||
Pokedex Number: 525
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Sturdy - Sand Force (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
When it overflows with power,
|
||||||
----------------------
|
the orange crystal on its body
|
||||||
Total: 390
|
glows. It looks for underground
|
||||||
Hp: 70
|
water in caves.
|
||||||
Attack: 105
|
|
||||||
Defence: 105
|
Evolution Chain
|
||||||
Special Attack: 50
|
Roggenrola ► Boldore ► Gigalith
|
||||||
Special Defence: 40
|
|
||||||
Speed: 20
|
↞--------| STATS |--------↠
|
||||||
|
hp: 70
|
||||||
|
attack: 105
|
||||||
|
defense: 105
|
||||||
|
special-attack: 50
|
||||||
|
special-defense: 40
|
||||||
|
speed: 20
|
||||||
|
|
||||||
|
Pokedex ID: 525 Capture Rate: 120
|
||||||
|
Base Exp: 137 Happiness: 50
|
||||||
|
Height: 9 Weight: 1020
|
||||||
|
|
||||||
|
Genus: Ore Pokémon
|
||||||
|
Location Areas:
|
||||||
|
chargestone-cave-1f
|
||||||
|
chargestone-cave-b1f
|
||||||
|
chargestone-cave-b2f
|
||||||
|
twist-mountain-area
|
||||||
|
unova-victory-road-unknown-area-53
|
||||||
|
unova-victory-road-unknown-area-54
|
||||||
|
unova-victory-road-unknown-area-55
|
||||||
|
unova-victory-road-unknown-area-56
|
||||||
|
unova-victory-road-unknown-area-57
|
||||||
|
unova-victory-road-unknown-area-58
|
||||||
|
unova-victory-road-unknown-area-59
|
||||||
|
unova-victory-road-unknown-area-60
|
||||||
|
unova-victory-road-unknown-area-61
|
||||||
|
unova-victory-road-unknown-area-62
|
||||||
|
unova-victory-road-unknown-area-63
|
||||||
|
unova-victory-road-unknown-area-64
|
||||||
|
unova-victory-road-unknown-area-65
|
||||||
|
unova-victory-road-unknown-area-66
|
||||||
|
trial-chamber-area
|
||||||
|
giant-chasm-area
|
||||||
|
giant-chasm-forest-cave
|
||||||
|
wellspring-cave-area
|
||||||
|
mistralton-cave-area
|
||||||
|
guidance-chamber-area
|
||||||
|
challengers-cave-1f
|
||||||
|
challengers-cave-b1f
|
||||||
|
challengers-cave-b2f
|
||||||
|
unova-victory-road-7f
|
||||||
|
unova-victory-road-2-unknown-area-74
|
||||||
|
unova-victory-road-2-unknown-area-75
|
||||||
|
reversal-mountain-unknown-area-49
|
||||||
|
reversal-mountain-unknown-area-50
|
||||||
|
reversal-mountain-unknown-area-51
|
||||||
|
reversal-mountain-unknown-area-52
|
||||||
|
reversal-mountain-unknown-area-53
|
||||||
|
reversal-mountain-unknown-area-54
|
||||||
|
reversal-mountain-unknown-area-55
|
||||||
|
reversal-mountain-unknown-area-56
|
||||||
|
reversal-mountain-unknown-area-57
|
||||||
|
reversal-mountain-unknown-area-58
|
||||||
|
reversal-mountain-unknown-area-59
|
||||||
|
reversal-mountain-unknown-area-60
|
||||||
|
relic-passage-relic-castle-entrance
|
||||||
|
relic-passage-pwt-entrance
|
||||||
|
clay-tunnel-area
|
||||||
|
underground-ruins-area
|
||||||
|
rocky-mountain-room-area
|
||||||
|
glacier-room-area
|
||||||
|
iron-room-area
|
||||||
|
seaside-cave-1f
|
||||||
|
seaside-cave-b1f
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Boltund
|
Boltund A electric type Pokémon
|
||||||
Pokedex Number: 836
|
|
||||||
Gender Ratio: ♂:50.2% ♀:49.8%
|
This Pokémon generates electricity
|
||||||
Abilities: Strong Jaw - Competitive (Hidden Ability)
|
and channels it into its legs
|
||||||
|
to keep them going strong. Boltund
|
||||||
|
can run nonstop for three full
|
||||||
|
days.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Yamper ► Boltund
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 69
|
||||||
|
attack: 90
|
||||||
|
defense: 60
|
||||||
|
special-attack: 90
|
||||||
|
special-defense: 60
|
||||||
|
speed: 121
|
||||||
|
|
||||||
|
Pokedex ID: 836 Capture Rate: 45
|
||||||
|
Base Exp: 172 Happiness: 50
|
||||||
|
Height: 10 Weight: 340
|
||||||
|
|
||||||
|
Genus: Dog Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 490
|
|
||||||
Hp: 69
|
|
||||||
Attack: 90
|
|
||||||
Defence: 60
|
|
||||||
Special Attack: 90
|
|
||||||
Special Defence: 60
|
|
||||||
Speed: 121
|
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Bonsly
|
Bonsly A rock type Pokémon
|
||||||
Pokedex Number: 438
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Sturdy - Rock Head - Rattled (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It looks as if it is always
|
||||||
----------------------
|
crying. It is actually adjusting
|
||||||
Total: 290
|
its body’s fluid levels by eliminating
|
||||||
Hp: 50
|
excess.
|
||||||
Attack: 80
|
|
||||||
Defence: 95
|
Evolution Chain
|
||||||
Special Attack: 10
|
Bonsly ► Sudowoodo
|
||||||
Special Defence: 45
|
|
||||||
Speed: 10
|
↞--------| STATS |--------↠
|
||||||
|
hp: 50
|
||||||
|
attack: 80
|
||||||
|
defense: 95
|
||||||
|
special-attack: 10
|
||||||
|
special-defense: 45
|
||||||
|
speed: 10
|
||||||
|
|
||||||
|
Pokedex ID: 438 Capture Rate: 255
|
||||||
|
Base Exp: 58 Happiness: 50
|
||||||
|
Height: 5 Weight: 150
|
||||||
|
|
||||||
|
Genus: Bonsai Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-209-area
|
||||||
|
sinnoh-route-210-south-towards-solaceon-town
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Bouffalant
|
Bouffalant A normal type Pokémon
|
||||||
Pokedex Number: 626
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Reckless - Sap Sipper - Soundproof (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Their fluffy fur absorbs damage,
|
||||||
----------------------
|
even if they strike foes with
|
||||||
Total: 490
|
a fierce headbutt.
|
||||||
Hp: 95
|
|
||||||
Attack: 110
|
Single Stage Evolution Pokémon
|
||||||
Defence: 95
|
|
||||||
Special Attack: 40
|
↞--------| STATS |--------↠
|
||||||
Special Defence: 95
|
hp: 95
|
||||||
Speed: 55
|
attack: 110
|
||||||
|
defense: 95
|
||||||
|
special-attack: 40
|
||||||
|
special-defense: 95
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 626 Capture Rate: 45
|
||||||
|
Base Exp: 172 Happiness: 50
|
||||||
|
Height: 16 Weight: 946
|
||||||
|
|
||||||
|
Genus: Bash Buffalo Pokémon
|
||||||
|
Location Areas:
|
||||||
|
unova-route-10-area
|
||||||
|
unova-route-10-victory-road-gate
|
||||||
|
unova-route-23-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Bounsweet
|
Bounsweet A grass type Pokémon
|
||||||
Pokedex Number: 761
|
|
||||||
Gender Ratio: ♂:0% ♀:100%
|
A delectable aroma pours from
|
||||||
Abilities: Leaf Guard - Oblivious - Sweet Veil (Hidden Ability)
|
its body. They are often swallowed
|
||||||
|
whole by Toucannon lured by that
|
||||||
|
wafting deliciousness.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Bounsweet ► Steenee ► Tsareena
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 42
|
||||||
|
attack: 30
|
||||||
|
defense: 38
|
||||||
|
special-attack: 30
|
||||||
|
special-defense: 38
|
||||||
|
speed: 32
|
||||||
|
|
||||||
|
Pokedex ID: 761 Capture Rate: 235
|
||||||
|
Base Exp: 42 Happiness: 50
|
||||||
|
Height: 3 Weight: 32
|
||||||
|
|
||||||
|
Genus: Fruit Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 210
|
|
||||||
Hp: 42
|
|
||||||
Attack: 30
|
|
||||||
Defence: 38
|
|
||||||
Special Attack: 30
|
|
||||||
Special Defence: 38
|
|
||||||
Speed: 32
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Braixen
|
Braixen A fire type Pokémon
|
||||||
Pokedex Number: 654
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
It has a twig stuck in its tail.
|
||||||
Abilities: Blaze - Magician (Hidden Ability)
|
With friction from its tail
|
||||||
|
fur, it sets the twig on fire
|
||||||
|
and launches into battle.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Fennekin ► Braixen ► Delphox
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 59
|
||||||
|
attack: 59
|
||||||
|
defense: 58
|
||||||
|
special-attack: 90
|
||||||
|
special-defense: 70
|
||||||
|
speed: 73
|
||||||
|
|
||||||
|
Pokedex ID: 654 Capture Rate: 45
|
||||||
|
Base Exp: 143 Happiness: 70
|
||||||
|
Height: 10 Weight: 145
|
||||||
|
|
||||||
|
Genus: Fox Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 409
|
|
||||||
Hp: 59
|
|
||||||
Attack: 59
|
|
||||||
Defence: 58
|
|
||||||
Special Attack: 90
|
|
||||||
Special Defence: 70
|
|
||||||
Speed: 73
|
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Braviary
|
Braviary A normal type Pokémon
|
||||||
Pokedex Number: 628
|
|
||||||
Gender Ratio: ♂:100% ♀:0%
|
|
||||||
Abilities: Keen Eye - Sheer Force - Defiant (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
They fight for their friends
|
||||||
----------------------
|
without any thought about danger
|
||||||
Total: 510
|
to themselves. One can carry
|
||||||
Hp: 100
|
a car while flying.
|
||||||
Attack: 123
|
|
||||||
Defence: 75
|
Evolution Chain
|
||||||
Special Attack: 57
|
Rufflet ► Braviary
|
||||||
Special Defence: 75
|
|
||||||
Speed: 80
|
↞--------| STATS |--------↠
|
||||||
|
hp: 100
|
||||||
|
attack: 123
|
||||||
|
defense: 75
|
||||||
|
special-attack: 57
|
||||||
|
special-defense: 75
|
||||||
|
speed: 80
|
||||||
|
|
||||||
|
Pokedex ID: 628 Capture Rate: 60
|
||||||
|
Base Exp: 179 Happiness: 50
|
||||||
|
Height: 15 Weight: 410
|
||||||
|
|
||||||
|
Genus: Valiant Pokémon
|
||||||
|
Location Areas:
|
||||||
|
village-bridge-area
|
||||||
|
unova-route-11-area
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Breloom
|
Breloom A grass type Pokémon
|
||||||
Pokedex Number: 286
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
BRELOOM closes in on its foe
|
||||||
Abilities: Effect Spore - Poison Heal - Technician (Hidden Ability)
|
with light and sprightly footwork,
|
||||||
|
then throws punches with its
|
||||||
|
stretchy arms. Breloom’s
|
||||||
|
fighting technique puts boxers
|
||||||
|
to shame.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Shroomish ► Breloom
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 60
|
||||||
|
attack: 130
|
||||||
|
defense: 80
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 60
|
||||||
|
speed: 70
|
||||||
|
|
||||||
|
Pokedex ID: 286 Capture Rate: 90
|
||||||
|
Base Exp: 161 Happiness: 70
|
||||||
|
Height: 12 Weight: 392
|
||||||
|
|
||||||
|
Genus: Mushroom Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 460
|
|
||||||
Hp: 60
|
|
||||||
Attack: 130
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 60
|
|
||||||
Special Defence: 60
|
|
||||||
Speed: 70
|
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Brionne
|
Brionne A water type Pokémon
|
||||||
Pokedex Number: 729
|
|
||||||
Gender Ratio: ♂:88.14% ♀:11.86%
|
A skillful dancer, it creates
|
||||||
Abilities: Torrent - Liquid Voice (Hidden Ability)
|
a sequence of water balloons
|
||||||
|
as it dances, and briskly bombards
|
||||||
|
its enemies.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Popplio ► Brionne ► Primarina
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 60
|
||||||
|
attack: 69
|
||||||
|
defense: 69
|
||||||
|
special-attack: 91
|
||||||
|
special-defense: 81
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 729 Capture Rate: 45
|
||||||
|
Base Exp: 147 Happiness: 50
|
||||||
|
Height: 6 Weight: 175
|
||||||
|
|
||||||
|
Genus: Pop Star Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 420
|
|
||||||
Hp: 60
|
|
||||||
Attack: 69
|
|
||||||
Defence: 69
|
|
||||||
Special Attack: 91
|
|
||||||
Special Defence: 81
|
|
||||||
Speed: 50
|
|
||||||
|
|
|
@ -1,15 +1,41 @@
|
||||||
|
|
||||||
Name: Bronzong
|
Bronzong A steel type Pokémon
|
||||||
Pokedex Number: 437
|
|
||||||
Gender Ratio: Genderless
|
|
||||||
Abilities: Levitate - Heatproof - Heavy Metal (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
One caused a news sensation
|
||||||
----------------------
|
when it was dug up at a construction
|
||||||
Total: 500
|
site after a 2,000-year sleep.
|
||||||
Hp: 67
|
|
||||||
Attack: 89
|
Evolution Chain
|
||||||
Defence: 116
|
Bronzor ► Bronzong
|
||||||
Special Attack: 79
|
|
||||||
Special Defence: 116
|
↞--------| STATS |--------↠
|
||||||
Speed: 33
|
hp: 67
|
||||||
|
attack: 89
|
||||||
|
defense: 116
|
||||||
|
special-attack: 79
|
||||||
|
special-defense: 116
|
||||||
|
speed: 33
|
||||||
|
|
||||||
|
Pokedex ID: 437 Capture Rate: 90
|
||||||
|
Base Exp: 175 Happiness: 50
|
||||||
|
Height: 13 Weight: 1870
|
||||||
|
|
||||||
|
Genus: Bronze Bell Pokémon
|
||||||
|
Location Areas:
|
||||||
|
mt-coronet-2f
|
||||||
|
mt-coronet-3f
|
||||||
|
mt-coronet-exterior-snowfall
|
||||||
|
mt-coronet-exterior-blizzard
|
||||||
|
mt-coronet-4f
|
||||||
|
mt-coronet-4f-small-room
|
||||||
|
mt-coronet-5f
|
||||||
|
mt-coronet-6f
|
||||||
|
mt-coronet-1f-from-exterior
|
||||||
|
turnback-cave-pillar-1
|
||||||
|
turnback-cave-pillar-2
|
||||||
|
turnback-cave-pillar-3
|
||||||
|
turnback-cave-before-pillar-1
|
||||||
|
turnback-cave-between-pillars-1-and-2
|
||||||
|
turnback-cave-between-pillars-2-and-3
|
||||||
|
turnback-cave-after-pillar-3
|
||||||
|
abundant-shrine-area
|
||||||
|
|
|
@ -1,15 +1,87 @@
|
||||||
|
|
||||||
Name: Bronzor
|
Bronzor A steel type Pokémon
|
||||||
Pokedex Number: 436
|
|
||||||
Gender Ratio: Genderless
|
|
||||||
Abilities: Levitate - Heatproof - Heavy Metal (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Implements shaped like it were
|
||||||
----------------------
|
discovered in ancient tombs.
|
||||||
Total: 300
|
It is unknown if they are related.
|
||||||
Hp: 57
|
|
||||||
Attack: 24
|
Evolution Chain
|
||||||
Defence: 86
|
Bronzor ► Bronzong
|
||||||
Special Attack: 24
|
|
||||||
Special Defence: 86
|
↞--------| STATS |--------↠
|
||||||
Speed: 23
|
hp: 57
|
||||||
|
attack: 24
|
||||||
|
defense: 86
|
||||||
|
special-attack: 24
|
||||||
|
special-defense: 86
|
||||||
|
speed: 23
|
||||||
|
|
||||||
|
Pokedex ID: 436 Capture Rate: 255
|
||||||
|
Base Exp: 60 Happiness: 50
|
||||||
|
Height: 5 Weight: 605
|
||||||
|
|
||||||
|
Genus: Bronze Pokémon
|
||||||
|
Location Areas:
|
||||||
|
mt-coronet-1f-route-207
|
||||||
|
mt-coronet-2f
|
||||||
|
mt-coronet-3f
|
||||||
|
mt-coronet-1f-route-216
|
||||||
|
mt-coronet-1f-route-211
|
||||||
|
mt-coronet-b1f
|
||||||
|
turnback-cave-pillar-1
|
||||||
|
turnback-cave-pillar-2
|
||||||
|
turnback-cave-pillar-3
|
||||||
|
turnback-cave-before-pillar-1
|
||||||
|
turnback-cave-between-pillars-1-and-2
|
||||||
|
turnback-cave-between-pillars-2-and-3
|
||||||
|
turnback-cave-after-pillar-3
|
||||||
|
wayward-cave-1f
|
||||||
|
wayward-cave-b1f
|
||||||
|
sinnoh-route-206-area
|
||||||
|
sinnoh-route-211-west-towards-eterna-city
|
||||||
|
sinnoh-route-211-east-towards-celestic-town
|
||||||
|
union-cave-1f
|
||||||
|
union-cave-b1f
|
||||||
|
union-cave-b2f
|
||||||
|
slowpoke-well-1f
|
||||||
|
slowpoke-well-b1f
|
||||||
|
whirl-islands-1f
|
||||||
|
whirl-islands-b1f
|
||||||
|
whirl-islands-b2f
|
||||||
|
whirl-islands-b3f
|
||||||
|
mt-mortar-1f
|
||||||
|
mt-mortar-lower-cave
|
||||||
|
mt-mortar-upper-cave
|
||||||
|
mt-mortar-b1f
|
||||||
|
ice-path-1f
|
||||||
|
ice-path-b1f
|
||||||
|
ice-path-b2f
|
||||||
|
ice-path-b3f
|
||||||
|
dark-cave-violet-city-entrance
|
||||||
|
dark-cave-blackthorn-city-entrance
|
||||||
|
seafoam-islands-1f
|
||||||
|
seafoam-islands-b1f
|
||||||
|
seafoam-islands-b2f
|
||||||
|
seafoam-islands-b3f
|
||||||
|
seafoam-islands-b4f
|
||||||
|
mt-silver-2f
|
||||||
|
mt-silver-1f-top
|
||||||
|
mt-silver-4f
|
||||||
|
johto-route-47-inside-cave
|
||||||
|
mt-silver-1f
|
||||||
|
mt-silver-mountainside
|
||||||
|
mt-silver-3f
|
||||||
|
mt-silver-top
|
||||||
|
mt-moon-1f
|
||||||
|
mt-moon-2f
|
||||||
|
rock-tunnel-1f
|
||||||
|
rock-tunnel-b1f
|
||||||
|
kanto-victory-road-1-1f
|
||||||
|
tohjo-falls-area
|
||||||
|
digletts-cave-area
|
||||||
|
kanto-victory-road-1-2f
|
||||||
|
kanto-victory-road-1-3f
|
||||||
|
cerulean-cave-1f
|
||||||
|
cerulean-cave-2f
|
||||||
|
cerulean-cave-b1f
|
||||||
|
abundant-shrine-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Bruxish
|
Bruxish A water type Pokémon
|
||||||
Pokedex Number: 779
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
When it unleashes its psychic
|
||||||
Abilities: Dazzling - Strong Jaw - Wonder Skin (Hidden Ability)
|
power from the protuberance on
|
||||||
|
its head, the grating sound of
|
||||||
|
grinding teeth echoes through
|
||||||
|
the area.
|
||||||
|
|
||||||
|
Single Stage Evolution Pokémon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 68
|
||||||
|
attack: 105
|
||||||
|
defense: 70
|
||||||
|
special-attack: 70
|
||||||
|
special-defense: 70
|
||||||
|
speed: 92
|
||||||
|
|
||||||
|
Pokedex ID: 779 Capture Rate: 80
|
||||||
|
Base Exp: 166 Happiness: 70
|
||||||
|
Height: 9 Weight: 190
|
||||||
|
|
||||||
|
Genus: Gnash Teeth Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 475
|
|
||||||
Hp: 68
|
|
||||||
Attack: 105
|
|
||||||
Defence: 70
|
|
||||||
Special Attack: 70
|
|
||||||
Special Defence: 70
|
|
||||||
Speed: 92
|
|
||||||
|
|
|
@ -1,15 +1,40 @@
|
||||||
|
|
||||||
Name: Budew
|
Budew A grass type Pokémon
|
||||||
Pokedex Number: 406
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Natural Cure - Poison Point - Leaf Guard (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Over the winter, it closes its
|
||||||
----------------------
|
bud and endures the cold. In
|
||||||
Total: 280
|
spring, the bud opens and releases
|
||||||
Hp: 40
|
pollen.
|
||||||
Attack: 30
|
|
||||||
Defence: 35
|
Evolution Chain
|
||||||
Special Attack: 50
|
Budew ► Roselia ► Roserade
|
||||||
Special Defence: 70
|
|
||||||
Speed: 55
|
↞--------| STATS |--------↠
|
||||||
|
hp: 40
|
||||||
|
attack: 30
|
||||||
|
defense: 35
|
||||||
|
special-attack: 50
|
||||||
|
special-defense: 70
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 406 Capture Rate: 255
|
||||||
|
Base Exp: 56 Happiness: 50
|
||||||
|
Height: 2 Weight: 12
|
||||||
|
|
||||||
|
Genus: Bud Pokémon
|
||||||
|
Location Areas:
|
||||||
|
eterna-forest-area
|
||||||
|
great-marsh-area-1
|
||||||
|
great-marsh-area-2
|
||||||
|
great-marsh-area-3
|
||||||
|
great-marsh-area-4
|
||||||
|
great-marsh-area-5
|
||||||
|
great-marsh-area-6
|
||||||
|
sinnoh-route-204-south-towards-jubilife-city
|
||||||
|
sinnoh-route-204-north-towards-floaroma-town
|
||||||
|
sinnoh-route-205-east-towards-eterna-city
|
||||||
|
sinnoh-route-208-area
|
||||||
|
sinnoh-route-212-north-towards-hearthome-city
|
||||||
|
ilex-forest-area
|
||||||
|
viridian-forest-area
|
||||||
|
kalos-route-4-area
|
||||||
|
|
|
@ -1,15 +1,62 @@
|
||||||
|
|
||||||
Name: Buizel
|
Buizel A water type Pokémon
|
||||||
Pokedex Number: 418
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Swift Swim - Water Veil (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It has a flotation sac that
|
||||||
----------------------
|
is like an inflatable collar.
|
||||||
Total: 330
|
It floats on water with its
|
||||||
Hp: 55
|
head out.
|
||||||
Attack: 65
|
|
||||||
Defence: 35
|
Evolution Chain
|
||||||
Special Attack: 60
|
Buizel ► Floatzel
|
||||||
Special Defence: 30
|
|
||||||
Speed: 85
|
↞--------| STATS |--------↠
|
||||||
|
hp: 55
|
||||||
|
attack: 65
|
||||||
|
defense: 35
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 30
|
||||||
|
speed: 85
|
||||||
|
|
||||||
|
Pokedex ID: 418 Capture Rate: 190
|
||||||
|
Base Exp: 66 Happiness: 70
|
||||||
|
Height: 7 Weight: 295
|
||||||
|
|
||||||
|
Genus: Sea Weasel Pokémon
|
||||||
|
Location Areas:
|
||||||
|
valley-windworks-area
|
||||||
|
sinnoh-route-205-south-towards-floaroma-town
|
||||||
|
sinnoh-route-205-east-towards-eterna-city
|
||||||
|
sinnoh-route-212-east-towards-pastoria-city
|
||||||
|
sinnoh-route-213-area
|
||||||
|
sinnoh-route-224-area
|
||||||
|
johto-route-30-area
|
||||||
|
johto-route-31-area
|
||||||
|
johto-route-32-area
|
||||||
|
ruins-of-alph-outside
|
||||||
|
johto-route-34-area
|
||||||
|
johto-route-35-area
|
||||||
|
johto-route-42-area
|
||||||
|
johto-route-43-area
|
||||||
|
johto-route-44-area
|
||||||
|
johto-route-45-area
|
||||||
|
johto-route-47-area
|
||||||
|
mt-silver-outside
|
||||||
|
kanto-route-26-area
|
||||||
|
kanto-route-27-area
|
||||||
|
kanto-route-28-area
|
||||||
|
kanto-route-4-area
|
||||||
|
kanto-route-6-area
|
||||||
|
kanto-route-9-area
|
||||||
|
kanto-route-10-area
|
||||||
|
kanto-route-13-area
|
||||||
|
kanto-sea-route-21-area
|
||||||
|
kanto-route-22-area
|
||||||
|
kanto-route-24-area
|
||||||
|
kanto-route-25-area
|
||||||
|
unova-route-11-area
|
||||||
|
unova-route-14-area
|
||||||
|
lostlorn-forest-area
|
||||||
|
unova-victory-road-2-unknown-area-73
|
||||||
|
unova-victory-road-2-unknown-area-79
|
||||||
|
nature-sanctuary-area
|
||||||
|
unova-route-23-area
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Bulbasaur
|
Bulbasaur A grass type Pokémon
|
||||||
Pokedex Number: 001
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
|
||||||
Abilities: Overgrow - Chlorophyll (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
A strange seed was planted on
|
||||||
----------------------
|
its back at birth. The plant
|
||||||
Total: 318
|
sprouts and grows with Bulbasaur.
|
||||||
Hp: 45
|
|
||||||
Attack: 49
|
Evolution Chain
|
||||||
Defence: 49
|
Bulbasaur ► Ivysaur ► Venusaur
|
||||||
Special Attack: 65
|
|
||||||
Special Defence: 65
|
↞--------| STATS |--------↠
|
||||||
Speed: 45
|
hp: 45
|
||||||
|
attack: 49
|
||||||
|
defense: 49
|
||||||
|
special-attack: 65
|
||||||
|
special-defense: 65
|
||||||
|
speed: 45
|
||||||
|
|
||||||
|
Pokedex ID: 1 Capture Rate: 45
|
||||||
|
Base Exp: 64 Happiness: 50
|
||||||
|
Height: 7 Weight: 69
|
||||||
|
|
||||||
|
Genus: Seed Pokémon
|
||||||
|
Location Areas:
|
||||||
|
cerulean-city-area
|
||||||
|
pallet-town-area
|
||||||
|
lumiose-city-area
|
||||||
|
|
|
@ -1,15 +1,27 @@
|
||||||
|
|
||||||
Name: Buneary
|
Buneary A normal type Pokémon
|
||||||
Pokedex Number: 427
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Run Away - Klutz - Limber (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
It slams foes by sharply uncoiling
|
||||||
----------------------
|
its rolled ears. It stings enough
|
||||||
Total: 350
|
to make a grown-up cry in pain.
|
||||||
Hp: 55
|
|
||||||
Attack: 66
|
Evolution Chain
|
||||||
Defence: 44
|
Buneary ► Lopunny
|
||||||
Special Attack: 44
|
|
||||||
Special Defence: 56
|
↞--------| STATS |--------↠
|
||||||
Speed: 85
|
hp: 55
|
||||||
|
attack: 66
|
||||||
|
defense: 44
|
||||||
|
special-attack: 44
|
||||||
|
special-defense: 56
|
||||||
|
speed: 85
|
||||||
|
|
||||||
|
Pokedex ID: 427 Capture Rate: 190
|
||||||
|
Base Exp: 70 Happiness: 0
|
||||||
|
Height: 4 Weight: 55
|
||||||
|
|
||||||
|
Genus: Rabbit Pokémon
|
||||||
|
Location Areas:
|
||||||
|
eterna-forest-area
|
||||||
|
kanto-route-25-area
|
||||||
|
castelia-city-area
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Bunnelby
|
Bunnelby A normal type Pokémon
|
||||||
Pokedex Number: 659
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Pickup - Cheek Pouch - Huge Power (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
They use their large ears to
|
||||||
----------------------
|
dig burrows. They will dig the
|
||||||
Total: 237
|
whole night through.
|
||||||
Hp: 38
|
|
||||||
Attack: 36
|
Evolution Chain
|
||||||
Defence: 38
|
Bunnelby ► Diggersby
|
||||||
Special Attack: 32
|
|
||||||
Special Defence: 36
|
↞--------| STATS |--------↠
|
||||||
Speed: 57
|
hp: 38
|
||||||
|
attack: 36
|
||||||
|
defense: 38
|
||||||
|
special-attack: 32
|
||||||
|
special-defense: 36
|
||||||
|
speed: 57
|
||||||
|
|
||||||
|
Pokedex ID: 659 Capture Rate: 255
|
||||||
|
Base Exp: 47 Happiness: 50
|
||||||
|
Height: 4 Weight: 50
|
||||||
|
|
||||||
|
Genus: Digging Pokémon
|
||||||
|
Location Areas:
|
||||||
|
kalos-route-2-area
|
||||||
|
kalos-route-3-area
|
||||||
|
kalos-route-5-area
|
||||||
|
kalos-route-22-area
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
|
|
||||||
Name: Burmy
|
Burmy A bug type Pokémon
|
||||||
Pokedex Number: 412
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Shed Skin - Overcoat (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
To shelter itself from cold,
|
||||||
----------------------
|
wintry winds, it covers itself
|
||||||
Total: 224
|
with a cloak made of twigs and
|
||||||
Hp: 40
|
leaves.
|
||||||
Attack: 29
|
|
||||||
Defence: 45
|
Single Stage Evolution Pokémon
|
||||||
Special Attack: 29
|
|
||||||
Special Defence: 45
|
↞--------| STATS |--------↠
|
||||||
Speed: 36
|
hp: 40
|
||||||
|
attack: 29
|
||||||
|
defense: 45
|
||||||
|
special-attack: 29
|
||||||
|
special-defense: 45
|
||||||
|
speed: 36
|
||||||
|
|
||||||
|
Pokedex ID: 412 Capture Rate: 120
|
||||||
|
Base Exp: 45 Happiness: 70
|
||||||
|
Height: 2 Weight: 34
|
||||||
|
|
||||||
|
Genus: Bagworm Pokémon
|
||||||
|
Location Areas:
|
||||||
|
kalos-route-3-area
|
||||||
|
|
|
@ -1,15 +1,41 @@
|
||||||
|
|
||||||
Name: Butterfree
|
Butterfree A bug type Pokémon
|
||||||
Pokedex Number: 012
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Compoundeyes - Tinted Lens (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
In battle, it flaps its wings
|
||||||
----------------------
|
at high speed to release highly
|
||||||
Total: 395
|
toxic dust into the air.
|
||||||
Hp: 60
|
|
||||||
Attack: 45
|
Evolution Chain
|
||||||
Defence: 50
|
Caterpie ► Metapod ► Butterfree
|
||||||
Special Attack: 90
|
|
||||||
Special Defence: 80
|
↞--------| STATS |--------↠
|
||||||
Speed: 70
|
hp: 60
|
||||||
|
attack: 45
|
||||||
|
defense: 50
|
||||||
|
special-attack: 90
|
||||||
|
special-defense: 80
|
||||||
|
speed: 70
|
||||||
|
|
||||||
|
Pokedex ID: 12 Capture Rate: 45
|
||||||
|
Base Exp: 198 Happiness: 50
|
||||||
|
Height: 11 Weight: 320
|
||||||
|
|
||||||
|
Genus: Butterfly Pokémon
|
||||||
|
Location Areas:
|
||||||
|
ilex-forest-area
|
||||||
|
johto-route-34-area
|
||||||
|
johto-route-35-area
|
||||||
|
johto-route-36-area
|
||||||
|
johto-route-37-area
|
||||||
|
johto-route-38-area
|
||||||
|
johto-route-39-area
|
||||||
|
lake-of-rage-area
|
||||||
|
kanto-route-26-area
|
||||||
|
kanto-route-27-area
|
||||||
|
kanto-route-2-south-towards-viridian-city
|
||||||
|
kanto-route-24-area
|
||||||
|
kanto-route-25-area
|
||||||
|
kanto-route-2-north-towards-pewter-city
|
||||||
|
viridian-forest-area
|
||||||
|
unova-route-12-area
|
||||||
|
azalea-town-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Buzzwole
|
Buzzwole A bug type Pokémon
|
||||||
Pokedex Number: 794
|
|
||||||
Gender Ratio: Genderless
|
This Ultra Beast appeared from
|
||||||
Abilities: Beast Boost
|
another world. It shows off
|
||||||
|
its body, but whether that display
|
||||||
|
is a boast or a threat remains
|
||||||
|
unclear.
|
||||||
|
|
||||||
|
Single Stage Evolution Pokémon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 107
|
||||||
|
attack: 139
|
||||||
|
defense: 139
|
||||||
|
special-attack: 53
|
||||||
|
special-defense: 53
|
||||||
|
speed: 79
|
||||||
|
|
||||||
|
Pokedex ID: 794 Capture Rate: 45
|
||||||
|
Base Exp: 285 Happiness: 0
|
||||||
|
Height: 24 Weight: 3336
|
||||||
|
|
||||||
|
Genus: Swollen Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 570
|
|
||||||
Hp: 107
|
|
||||||
Attack: 139
|
|
||||||
Defence: 139
|
|
||||||
Special Attack: 53
|
|
||||||
Special Defence: 53
|
|
||||||
Speed: 79
|
|
||||||
|
|
|
@ -1,15 +1,30 @@
|
||||||
|
|
||||||
Name: Cacnea
|
Cacnea A grass type Pokémon
|
||||||
Pokedex Number: 331
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Sand Veil - Water Absorb (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
CACNEA lives in arid locations
|
||||||
----------------------
|
such as deserts. It releases
|
||||||
Total: 335
|
a strong aroma from its flower
|
||||||
Hp: 50
|
to attract prey. When prey comes
|
||||||
Attack: 85
|
near, Cacnea shoots sharp
|
||||||
Defence: 40
|
thorns from its body to bring
|
||||||
Special Attack: 85
|
the victim down.
|
||||||
Special Defence: 40
|
|
||||||
Speed: 35
|
Evolution Chain
|
||||||
|
Cacnea ► Cacturne
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 50
|
||||||
|
attack: 85
|
||||||
|
defense: 40
|
||||||
|
special-attack: 85
|
||||||
|
special-defense: 40
|
||||||
|
speed: 35
|
||||||
|
|
||||||
|
Pokedex ID: 331 Capture Rate: 190
|
||||||
|
Base Exp: 67 Happiness: 35
|
||||||
|
Height: 4 Weight: 513
|
||||||
|
|
||||||
|
Genus: Cactus Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-228-area
|
||||||
|
hoenn-route-111-area
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Cacturne
|
Cacturne A grass type Pokémon
|
||||||
Pokedex Number: 332
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Sand Veil - Water Absorb (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
During the daytime, CACTURNE
|
||||||
----------------------
|
remains unmoving so that it does
|
||||||
Total: 475
|
not lose any moisture to the
|
||||||
Hp: 70
|
harsh desert sun. Cacturne
|
||||||
Attack: 115
|
becomes active at night when
|
||||||
Defence: 60
|
the temperature drops.
|
||||||
Special Attack: 115
|
|
||||||
Special Defence: 60
|
Evolution Chain
|
||||||
Speed: 55
|
Cacnea ► Cacturne
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 70
|
||||||
|
attack: 115
|
||||||
|
defense: 60
|
||||||
|
special-attack: 115
|
||||||
|
special-defense: 60
|
||||||
|
speed: 55
|
||||||
|
|
||||||
|
Pokedex ID: 332 Capture Rate: 60
|
||||||
|
Base Exp: 166 Happiness: 35
|
||||||
|
Height: 13 Weight: 774
|
||||||
|
|
||||||
|
Genus: Scarecrow Pokémon
|
||||||
|
Location Areas:
|
||||||
|
sinnoh-route-228-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Calyrex
|
Calyrex A psychic type Pokémon
|
||||||
Pokedex Number: 898
|
|
||||||
Gender Ratio: Genderless
|
Calyrex is a merciful Pokémon,
|
||||||
Abilities: Unnerve (Standard) - As One - Unnerve Chilling Neigh (Ice Rider) - As One - Unnerve Grim Neigh (Shadow Rider
|
capable of providing healing
|
||||||
|
and blessings. It reigned over
|
||||||
|
the Galar region in times of
|
||||||
|
yore.
|
||||||
|
|
||||||
|
Single Stage Evolution Pokémon
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 100
|
||||||
|
attack: 80
|
||||||
|
defense: 80
|
||||||
|
special-attack: 80
|
||||||
|
special-defense: 80
|
||||||
|
speed: 80
|
||||||
|
|
||||||
|
Pokedex ID: 898 Capture Rate: 3
|
||||||
|
Base Exp: 250 Happiness: 100
|
||||||
|
Height: 11 Weight: 77
|
||||||
|
|
||||||
|
Genus: King Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 500
|
|
||||||
Hp: 100
|
|
||||||
Attack: 85
|
|
||||||
Defence: 80
|
|
||||||
Special Attack: 165
|
|
||||||
Special Defence: 100
|
|
||||||
Speed: 150
|
|
||||||
|
|
|
@ -1,15 +1,45 @@
|
||||||
|
|
||||||
Name: Camerupt
|
Camerupt A fire type Pokémon
|
||||||
Pokedex Number: 323
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Magma Armor - Solid Rock - Anger Point (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
CAMERUPT has a volcano inside
|
||||||
----------------------
|
its body. Magma of 18,000 degrees
|
||||||
Total: 460
|
F courses through its body.
|
||||||
Hp: 70
|
Occasionally, the humps on this
|
||||||
Attack: 120
|
Pokémon’s back erupt, spewing
|
||||||
Defence: 100
|
the superheated magma.
|
||||||
Special Attack: 145
|
|
||||||
Special Defence: 105
|
Evolution Chain
|
||||||
Speed: 20
|
Numel ► Camerupt
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 70
|
||||||
|
attack: 100
|
||||||
|
defense: 70
|
||||||
|
special-attack: 105
|
||||||
|
special-defense: 75
|
||||||
|
speed: 40
|
||||||
|
|
||||||
|
Pokedex ID: 323 Capture Rate: 150
|
||||||
|
Base Exp: 161 Happiness: 70
|
||||||
|
Height: 19 Weight: 2200
|
||||||
|
|
||||||
|
Genus: Eruption Pokémon
|
||||||
|
Location Areas:
|
||||||
|
stark-mountain-area
|
||||||
|
stark-mountain-entrance
|
||||||
|
stark-mountain-inside
|
||||||
|
sinnoh-route-227-area
|
||||||
|
reversal-mountain-unknown-area-48
|
||||||
|
reversal-mountain-unknown-area-49
|
||||||
|
reversal-mountain-unknown-area-50
|
||||||
|
reversal-mountain-unknown-area-51
|
||||||
|
reversal-mountain-unknown-area-52
|
||||||
|
reversal-mountain-unknown-area-53
|
||||||
|
reversal-mountain-unknown-area-54
|
||||||
|
reversal-mountain-unknown-area-55
|
||||||
|
reversal-mountain-unknown-area-56
|
||||||
|
reversal-mountain-unknown-area-57
|
||||||
|
reversal-mountain-unknown-area-58
|
||||||
|
reversal-mountain-unknown-area-59
|
||||||
|
reversal-mountain-unknown-area-60
|
||||||
|
battle-resort-area
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
|
|
||||||
Name: Carbink
|
Carbink A rock type Pokémon
|
||||||
Pokedex Number: 703
|
|
||||||
Gender Ratio: Genderless
|
|
||||||
Abilities: Clear Body - Sturdy (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
Born from the temperatures and
|
||||||
----------------------
|
pressures deep underground, it
|
||||||
Total: 500
|
fires beams from the stone in
|
||||||
Hp: 50
|
its head.
|
||||||
Attack: 50
|
|
||||||
Defence: 150
|
Single Stage Evolution Pokémon
|
||||||
Special Attack: 50
|
|
||||||
Special Defence: 150
|
↞--------| STATS |--------↠
|
||||||
Speed: 50
|
hp: 50
|
||||||
|
attack: 50
|
||||||
|
defense: 150
|
||||||
|
special-attack: 50
|
||||||
|
special-defense: 150
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 703 Capture Rate: 60
|
||||||
|
Base Exp: 100 Happiness: 50
|
||||||
|
Height: 3 Weight: 57
|
||||||
|
|
||||||
|
Genus: Jewel Pokémon
|
||||||
|
Location Areas:
|
||||||
|
reflection-cave-unknown-area-305
|
||||||
|
reflection-cave-unknown-area-306
|
||||||
|
reflection-cave-unknown-area-307
|
||||||
|
reflection-cave-unknown-area-308
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Carkol
|
Carkol A rock type Pokémon
|
||||||
Pokedex Number: 838
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
It forms coal inside its body.
|
||||||
Abilities: Steam Engine - Flame Body - Flash Fire (Hidden Ability)
|
Coal dropped by this Pokémon
|
||||||
|
once helped fuel the lives of
|
||||||
|
people in the Galar region.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Rolycoly ► Carkol ► Coalossal
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 80
|
||||||
|
attack: 60
|
||||||
|
defense: 90
|
||||||
|
special-attack: 60
|
||||||
|
special-defense: 70
|
||||||
|
speed: 50
|
||||||
|
|
||||||
|
Pokedex ID: 838 Capture Rate: 120
|
||||||
|
Base Exp: 144 Happiness: 50
|
||||||
|
Height: 11 Weight: 780
|
||||||
|
|
||||||
|
Genus: Coal Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 410
|
|
||||||
Hp: 80
|
|
||||||
Attack: 60
|
|
||||||
Defence: 90
|
|
||||||
Special Attack: 60
|
|
||||||
Special Defence: 70
|
|
||||||
Speed: 50
|
|
||||||
|
|
|
@ -1,15 +1,29 @@
|
||||||
|
|
||||||
Name: Carnivine
|
Carnivine A grass type Pokémon
|
||||||
Pokedex Number: 455
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Levitate
|
|
||||||
|
|
||||||
Base Stats
|
It attracts prey with its sweet-
|
||||||
----------------------
|
smelling saliva, then chomps
|
||||||
Total: 454
|
down. It takes a whole day to
|
||||||
Hp: 74
|
eat prey.
|
||||||
Attack: 100
|
|
||||||
Defence: 72
|
Single Stage Evolution Pokémon
|
||||||
Special Attack: 90
|
|
||||||
Special Defence: 72
|
↞--------| STATS |--------↠
|
||||||
Speed: 46
|
hp: 74
|
||||||
|
attack: 100
|
||||||
|
defense: 72
|
||||||
|
special-attack: 90
|
||||||
|
special-defense: 72
|
||||||
|
speed: 46
|
||||||
|
|
||||||
|
Pokedex ID: 455 Capture Rate: 200
|
||||||
|
Base Exp: 159 Happiness: 70
|
||||||
|
Height: 14 Weight: 270
|
||||||
|
|
||||||
|
Genus: Bug Catcher Pokémon
|
||||||
|
Location Areas:
|
||||||
|
ilex-forest-area
|
||||||
|
viridian-forest-area
|
||||||
|
unova-route-18-area
|
||||||
|
kalos-route-14-area
|
||||||
|
kalos-route-19-area
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
|
|
||||||
Name: Carracosta
|
Carracosta A water type Pokémon
|
||||||
Pokedex Number: 565
|
|
||||||
Gender Ratio: ♂:87.5% ♀:12.5%
|
They can live both in the ocean
|
||||||
Abilities: Solid Rock - Sturdy - Swift Swim (Hidden Ability)
|
and on land. A slap from one
|
||||||
|
of them is enough to open a hole
|
||||||
|
in the bottom of a tanker.
|
||||||
|
|
||||||
|
Evolution Chain
|
||||||
|
Tirtouga ► Carracosta
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 74
|
||||||
|
attack: 108
|
||||||
|
defense: 133
|
||||||
|
special-attack: 83
|
||||||
|
special-defense: 65
|
||||||
|
speed: 32
|
||||||
|
|
||||||
|
Pokedex ID: 565 Capture Rate: 45
|
||||||
|
Base Exp: 173 Happiness: 50
|
||||||
|
Height: 12 Weight: 810
|
||||||
|
|
||||||
|
Genus: Prototurtle Pokémon
|
||||||
|
Location Areas:
|
||||||
|
|
||||||
Base Stats
|
|
||||||
----------------------
|
|
||||||
Total: 495
|
|
||||||
Hp: 74
|
|
||||||
Attack: 108
|
|
||||||
Defence: 133
|
|
||||||
Special Attack: 83
|
|
||||||
Special Defence: 65
|
|
||||||
Speed: 32
|
|
||||||
|
|
|
@ -1,15 +1,37 @@
|
||||||
|
|
||||||
Name: Carvanha
|
Carvanha A water type Pokémon
|
||||||
Pokedex Number: 318
|
|
||||||
Gender Ratio: ♂:50% ♀:50%
|
|
||||||
Abilities: Rough Skin - Speed Boost (Hidden Ability)
|
|
||||||
|
|
||||||
Base Stats
|
CARVANHA’s strongly developed
|
||||||
----------------------
|
jaws and its sharply pointed
|
||||||
Total: 305
|
fangs pack the destructive power
|
||||||
Hp: 45
|
to rip out boat hulls. Many
|
||||||
Attack: 90
|
boats have been attacked and
|
||||||
Defence: 20
|
sunk by Carvanha.
|
||||||
Special Attack: 65
|
|
||||||
Special Defence: 20
|
Evolution Chain
|
||||||
Speed: 65
|
Carvanha ► Sharpedo
|
||||||
|
|
||||||
|
↞--------| STATS |--------↠
|
||||||
|
hp: 45
|
||||||
|
attack: 90
|
||||||
|
defense: 20
|
||||||
|
special-attack: 65
|
||||||
|
special-defense: 20
|
||||||
|
speed: 65
|
||||||
|
|
||||||
|
Pokedex ID: 318 Capture Rate: 225
|
||||||
|
Base Exp: 61 Happiness: 35
|
||||||
|
Height: 8 Weight: 208
|
||||||
|
|
||||||
|
Genus: Savage Pokémon
|
||||||
|
Location Areas:
|
||||||
|
great-marsh-area-1
|
||||||
|
great-marsh-area-2
|
||||||
|
great-marsh-area-3
|
||||||
|
great-marsh-area-4
|
||||||
|
great-marsh-area-5
|
||||||
|
great-marsh-area-6
|
||||||
|
hoenn-route-118-area
|
||||||
|
hoenn-route-119-area
|
||||||
|
village-bridge-area
|
||||||
|
kalos-route-22-area
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue