diff --git a/fuzzy-pokedex b/fuzzy-pokedex index a48c43a..dc0886a 100755 --- a/fuzzy-pokedex +++ b/fuzzy-pokedex @@ -1,7 +1,8 @@ #!/bin/bash -POKEMON="$(pokemon-colorscripts -l | - fzf +m +s -i \ +pokedex() { + pokemon-colorscripts -l | + fzf +m -s -i \ --cycle \ --reverse \ --prompt=' ' \ @@ -14,14 +15,36 @@ POKEMON="$(pokemon-colorscripts -l | --info=inline:' 󰨉 ' \ --color='fg+:15,fg:42,preview-fg:15,label:9,preview-label:15,hl+:134,hl:123,query:134,gutter:0,border:9,prompt:15,pointer:15,marker:15' \ --tiebreak=begin,chunk,length \ - --preview="pokemon-colorscripts -n {1} --no-title; cat /home/ez/Git/pokedex/pokeData/{1}" \ - --preview-window=65%:wrap:border-rounded \ + --preview="echo; pokemon-colorscripts -n {1} --no-title; cat /home/ez/Git/fuzzy-pokedex/pokeData/{1}" \ + --preview-window=68%:wrap:border-rounded \ --bind=focus:transform-preview-label:'echo [ {1} ] ' \ - --bind=ctrl-b:preview:'pokemon-colorscripts -b -n {1} --no-title; cat /home/ez/Git/pokedex/pokeData/{1};' \ - --bind=ctrl-s:preview:'pokemon-colorscripts -s -n {1} --no-title; cat /home/ez/Git/pokedex/pokeData/{1};' \ - --bind=ctrl-n:preview:'pokemon-colorscripts -n {1} --no-title; cat /home/ez/Git/pokedex/pokeData/{1};'| - awk '{ printf "%s", $1 }')" - -pokemon-colorscripts --no-title -n "$POKEMON" -cat "/home/ez/Git/pokedex/pokeData/$POKEMON" -exit 0 + --bind=ctrl-b:preview:'echo; pokemon-colorscripts -b -n {1} --no-title; cat /home/ez/Git/fuzzy-pokedex/pokeData/{1};' \ + --bind=ctrl-s:preview:'echo; pokemon-colorscripts -s -n {1} --no-title; cat /home/ez/Git/fuzzy-pokedex/pokeData/{1};' \ + --bind=ctrl-n:preview:'echo; pokemon-colorscripts -n {1} --no-title; cat /home/ez/Git/fuzzy-pokedex/pokeData/{1};'| + awk '{ printf "%s", $1}' | + parallel pokemon-colorscripts --no-title -n {} "&&" cat /home/ez/Git/fuzzy-pokedex/pokeData/{} +} + +update_pokeData() { + echo -e "\n\t\tWARNING!!!\n\tThis WILL take a long time\n" + pokemon-colorscripts -l | sort | parallel --bar --color -j 200% /home/ez/Git/fuzzy-pokedex/pokeinfo {} ">" /home/ez/Git/pokedex/pokeData/{} +} + +if [[ ! "$1" =~ ^- ]]; then + pokedex +else + for opt in "$@"; do + case $opt in + -u|--aur) + update_pokeData + ;; + -h|--help) + Help + ;; + -*) + echo "Invalid Usage" + Help + ;; + esac + done +fi diff --git a/pokeData/abomasnow b/pokeData/abomasnow index b239ca1..e58dfdc 100644 --- a/pokeData/abomasnow +++ b/pokeData/abomasnow @@ -1,8 +1,11 @@ + Name: Abomasnow Pokedex Number: 460 Gender Ratio:  ♂:50% ♀:50% Abilities: Snow Warning - Soundproof (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 494 Hp: 90 Attack: 132 diff --git a/pokeData/abra b/pokeData/abra index a4d61b8..84d29a6 100644 --- a/pokeData/abra +++ b/pokeData/abra @@ -1,8 +1,11 @@ + Name: Abra Pokedex Number: 063 Gender Ratio:  ♂:75% ♀:25% Abilities: Synchronize - Inner Focus - Magic Guard (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 310 Hp: 25 Attack: 20 diff --git a/pokeData/absol b/pokeData/absol index 2cb2b8f..352621a 100644 --- a/pokeData/absol +++ b/pokeData/absol @@ -1,8 +1,11 @@ + Name: Absol Pokedex Number: 359 Gender Ratio:  ♂:50% ♀:50% Abilities: Pressure - Super Luck - Justified (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 465 Hp: 65 Attack: 150 diff --git a/pokeData/accelgor b/pokeData/accelgor index 627be86..8126259 100644 --- a/pokeData/accelgor +++ b/pokeData/accelgor @@ -1,8 +1,11 @@ + Name: Accelgor Pokedex Number: 617 Gender Ratio:  ♂:50% ♀:50% Abilities: Hydration - Sticky Hold - Unburden (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 495 Hp: 80 Attack: 70 diff --git a/pokeData/aegislash b/pokeData/aegislash index 55b0440..c4e2319 100644 --- a/pokeData/aegislash +++ b/pokeData/aegislash @@ -1,8 +1,11 @@ + Name: Aegislash Pokedex Number: 681 Gender Ratio:  ♂:50% ♀:50% Abilities: Stance Change ----Base Stats--- + +Base Stats +---------------------- Total: 520 Hp: 60 Attack: 150 diff --git a/pokeData/aerodactyl b/pokeData/aerodactyl index 695723d..c6fba83 100644 --- a/pokeData/aerodactyl +++ b/pokeData/aerodactyl @@ -1,8 +1,11 @@ + Name: Aerodactyl Pokedex Number: 142 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Rock Head - Pressure - Unnerve (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 515 Hp: 80 Attack: 135 diff --git a/pokeData/aggron b/pokeData/aggron index 6492f08..1e509f1 100644 --- a/pokeData/aggron +++ b/pokeData/aggron @@ -1,8 +1,11 @@ + Name: Aggron Pokedex Number: 306 Gender Ratio:  ♂:50% ♀:50% Abilities: Sturdy - Rock Head - Heavy Metal (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 530 Hp: 70 Attack: 140 diff --git a/pokeData/aipom b/pokeData/aipom index 43f5e47..faad8f4 100644 --- a/pokeData/aipom +++ b/pokeData/aipom @@ -1,8 +1,11 @@ + Name: Aipom Pokedex Number: 190 Gender Ratio:  ♂:50% ♀:50% Abilities: Run Away - Pickup - Skill Link (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 360 Hp: 55 Attack: 70 diff --git a/pokeData/alakazam b/pokeData/alakazam index 4f1d569..849eb0b 100644 --- a/pokeData/alakazam +++ b/pokeData/alakazam @@ -1,8 +1,11 @@ + Name: Alakazam Pokedex Number: 065 Gender Ratio:  ♂:75% ♀:25% Abilities: Synchronize - Inner Focus - Magic Guard (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 55 Attack: 50 diff --git a/pokeData/alcremie b/pokeData/alcremie index 7c1f1a7..2f33d9c 100644 --- a/pokeData/alcremie +++ b/pokeData/alcremie @@ -1,8 +1,11 @@ + Name: Alcremie Pokedex Number: 869 Gender Ratio:  ♂:0% ♀:100% Abilities: Sweet Veil - Aroma Veil (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 495 Hp: 110 Attack: 121 diff --git a/pokeData/alomomola b/pokeData/alomomola index 198a19b..60a90c9 100644 --- a/pokeData/alomomola +++ b/pokeData/alomomola @@ -1,8 +1,11 @@ + Name: Alomomola Pokedex Number: 594 Gender Ratio:  ♂:50% ♀:50% Abilities: Healer - Hydration - Regenerator (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 470 Hp: 165 Attack: 75 diff --git a/pokeData/altaria b/pokeData/altaria index 309dc34..ef89acb 100644 --- a/pokeData/altaria +++ b/pokeData/altaria @@ -1,8 +1,11 @@ + Name: Altaria Pokedex Number: 334 Gender Ratio:  ♂:50% ♀:50% Abilities: Natural Cure - Cloud Nine (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 490 Hp: 75 Attack: 110 diff --git a/pokeData/amaura b/pokeData/amaura index 88f08b7..95b3a7b 100644 --- a/pokeData/amaura +++ b/pokeData/amaura @@ -1,8 +1,11 @@ + Name: Amaura Pokedex Number: 698 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Refrigerate - Snow Warning (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 362 Hp: 77 Attack: 59 diff --git a/pokeData/ambipom b/pokeData/ambipom index 718cd58..64d5d66 100644 --- a/pokeData/ambipom +++ b/pokeData/ambipom @@ -1,8 +1,11 @@ + Name: Ambipom Pokedex Number: 424 Gender Ratio:  ♂:50% ♀:50% Abilities: Technician - Pickup - Skill Link (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 482 Hp: 75 Attack: 100 diff --git a/pokeData/amoonguss b/pokeData/amoonguss index f34720c..8d8a17f 100644 --- a/pokeData/amoonguss +++ b/pokeData/amoonguss @@ -1,8 +1,11 @@ + Name: Amoonguss Pokedex Number: 591 Gender Ratio:  ♂:50% ♀:50% Abilities: Effect Spore - Regenerator (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 464 Hp: 114 Attack: 85 diff --git a/pokeData/ampharos b/pokeData/ampharos index 64f4c38..d31589c 100644 --- a/pokeData/ampharos +++ b/pokeData/ampharos @@ -1,8 +1,11 @@ + Name: Ampharos Pokedex Number: 181 Gender Ratio:  ♂:50% ♀:50% Abilities: Static - Plus (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 510 Hp: 90 Attack: 95 diff --git a/pokeData/anorith b/pokeData/anorith index a37134e..748cac7 100644 --- a/pokeData/anorith +++ b/pokeData/anorith @@ -1,8 +1,11 @@ + Name: Anorith Pokedex Number: 347 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Battle Armor - Swift Swim (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 355 Hp: 45 Attack: 95 diff --git a/pokeData/appletun b/pokeData/appletun index faac475..5b860a0 100644 --- a/pokeData/appletun +++ b/pokeData/appletun @@ -1,8 +1,11 @@ + Name: Appletun Pokedex Number: 842 Gender Ratio:  ♂:50% ♀:50% Abilities: Ripen - Gluttony - Thick Fat (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 485 Hp: 110 Attack: 85 diff --git a/pokeData/applin b/pokeData/applin index 91152b3..2ae7b85 100644 --- a/pokeData/applin +++ b/pokeData/applin @@ -1,8 +1,11 @@ + Name: Applin Pokedex Number: 840 Gender Ratio:  ♂:50% ♀:50% Abilities: Ripen - Gluttony - Bulletproof (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 260 Hp: 40 Attack: 40 diff --git a/pokeData/araquanid b/pokeData/araquanid index 4e0f03b..9964d33 100644 --- a/pokeData/araquanid +++ b/pokeData/araquanid @@ -1,8 +1,11 @@ + Name: Araquanid Pokedex Number: 752 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Water Bubble - Water Absorb (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 454 Hp: 68 Attack: 70 diff --git a/pokeData/arbok b/pokeData/arbok index 2767fb5..f72d849 100644 --- a/pokeData/arbok +++ b/pokeData/arbok @@ -1,8 +1,11 @@ + Name: Arbok Pokedex Number: 024 Gender Ratio:  ♂:50% ♀:50% Abilities: Intimidate - Shed Skin - Unnerve (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 438 Hp: 60 Attack: 85 diff --git a/pokeData/arcanine b/pokeData/arcanine index ad4a42a..f7bd231 100644 --- a/pokeData/arcanine +++ b/pokeData/arcanine @@ -1,8 +1,11 @@ + Name: Arcanine Pokedex Number: 059 Gender Ratio:  ♂:75% ♀:25% Abilities: Intimidate - Flash Fire - Justified (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 555 Hp: 90 Attack: 110 diff --git a/pokeData/arceus b/pokeData/arceus index e759b2f..9c2334b 100644 --- a/pokeData/arceus +++ b/pokeData/arceus @@ -1,8 +1,11 @@ + Name: Arceus Pokedex Number: 493 Gender Ratio: Genderless Abilities: Multitype ----Base Stats--- + +Base Stats +---------------------- Total: 720 Hp: 120 Attack: 120 diff --git a/pokeData/archen b/pokeData/archen index 2133675..4bf8015 100644 --- a/pokeData/archen +++ b/pokeData/archen @@ -1,8 +1,11 @@ + Name: Archen Pokedex Number: 566 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Defeatist ----Base Stats--- + +Base Stats +---------------------- Total: 401 Hp: 55 Attack: 112 diff --git a/pokeData/archeops b/pokeData/archeops index 0b3ae62..1ffeb11 100644 --- a/pokeData/archeops +++ b/pokeData/archeops @@ -1,8 +1,11 @@ + Name: Archeops Pokedex Number: 567 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Defeatist ----Base Stats--- + +Base Stats +---------------------- Total: 567 Hp: 75 Attack: 140 diff --git a/pokeData/arctovish b/pokeData/arctovish index 9a3fd70..1a7ac39 100644 --- a/pokeData/arctovish +++ b/pokeData/arctovish @@ -1,8 +1,11 @@ + Name: Arctovish Pokedex Number: 883 Gender Ratio: Genderless Abilities: Water Absorb - Ice Body - Slush Rush (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 505 Hp: 90 Attack: 90 diff --git a/pokeData/arctozolt b/pokeData/arctozolt index 0f1d94e..b8061f7 100644 --- a/pokeData/arctozolt +++ b/pokeData/arctozolt @@ -1,8 +1,11 @@ + Name: Arctozolt Pokedex Number: 881 Gender Ratio: Genderless Abilities: Volt Absorb - Static - Slush Rush (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 505 Hp: 90 Attack: 100 diff --git a/pokeData/ariados b/pokeData/ariados index c3d13ba..205166d 100644 --- a/pokeData/ariados +++ b/pokeData/ariados @@ -1,8 +1,11 @@ + Name: Ariados Pokedex Number: 168 Gender Ratio:  ♂:50% ♀:50% Abilities: Swarm - Insomnia - Sniper (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 390 Hp: 70 Attack: 90 diff --git a/pokeData/armaldo b/pokeData/armaldo index 6edab35..117bccf 100644 --- a/pokeData/armaldo +++ b/pokeData/armaldo @@ -1,8 +1,11 @@ + Name: Armaldo Pokedex Number: 348 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Battle Armor - Swift Swim (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 495 Hp: 75 Attack: 125 diff --git a/pokeData/aromatisse b/pokeData/aromatisse index 52aa1bc..4433f26 100644 --- a/pokeData/aromatisse +++ b/pokeData/aromatisse @@ -1,8 +1,11 @@ + Name: Aromatisse Pokedex Number: 683 Gender Ratio:  ♂:50% ♀:50% Abilities: Healer - Aroma Veil (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 462 Hp: 101 Attack: 72 diff --git a/pokeData/aron b/pokeData/aron index 1031164..0b80ab4 100644 --- a/pokeData/aron +++ b/pokeData/aron @@ -1,8 +1,11 @@ + Name: Aron Pokedex Number: 304 Gender Ratio:  ♂:50% ♀:50% Abilities: Sturdy - Rock Head - Heavy Metal (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 330 Hp: 50 Attack: 70 diff --git a/pokeData/arrokuda b/pokeData/arrokuda index 50d5b18..12da1a3 100644 --- a/pokeData/arrokuda +++ b/pokeData/arrokuda @@ -1,8 +1,11 @@ + Name: Arrokuda Pokedex Number: 846 Gender Ratio:  ♂:50% ♀:50% Abilities: Swift Swim - Propeller Tail (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 280 Hp: 41 Attack: 63 diff --git a/pokeData/articuno b/pokeData/articuno index 8148db4..0e0a004 100644 --- a/pokeData/articuno +++ b/pokeData/articuno @@ -1,8 +1,11 @@ + Name: Articuno Pokedex Number: 144 Gender Ratio: Genderless Abilities: Pressure - Snow Cloak (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 580 Hp: 90 Attack: 85 diff --git a/pokeData/audino b/pokeData/audino index e71accb..0b69559 100644 --- a/pokeData/audino +++ b/pokeData/audino @@ -1,8 +1,11 @@ + Name: Audino Pokedex Number: 531 Gender Ratio:  ♂:50% ♀:50% Abilities: Healer - Regenerator - Klutz (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 445 Hp: 103 Attack: 60 diff --git a/pokeData/aurorus b/pokeData/aurorus index d61848c..99f5485 100644 --- a/pokeData/aurorus +++ b/pokeData/aurorus @@ -1,8 +1,11 @@ + Name: Aurorus Pokedex Number: 699 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Refrigerate - Snow Warning (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 521 Hp: 123 Attack: 77 diff --git a/pokeData/avalugg b/pokeData/avalugg index 19af8c1..e3a5b6b 100644 --- a/pokeData/avalugg +++ b/pokeData/avalugg @@ -1,8 +1,11 @@ + Name: Avalugg Pokedex Number: 713 Gender Ratio:  ♂:50% ♀:50% Abilities: Own Tempo - Ice Body - Sturdy (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 514 Hp: 95 Attack: 117 diff --git a/pokeData/axew b/pokeData/axew index 90744d7..b26f65b 100644 --- a/pokeData/axew +++ b/pokeData/axew @@ -1,8 +1,11 @@ + Name: Axew Pokedex Number: 610 Gender Ratio:  ♂:50% ♀:50% Abilities: Rivalry - Mold Breaker - Unnerve (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 320 Hp: 46 Attack: 87 diff --git a/pokeData/azelf b/pokeData/azelf index 2ac9a5e..b539c4b 100644 --- a/pokeData/azelf +++ b/pokeData/azelf @@ -1,8 +1,11 @@ + Name: Azelf Pokedex Number: 482 Gender Ratio: Genderless Abilities: Levitate ----Base Stats--- + +Base Stats +---------------------- Total: 580 Hp: 75 Attack: 125 diff --git a/pokeData/azumarill b/pokeData/azumarill index 12f50fb..5daae2b 100644 --- a/pokeData/azumarill +++ b/pokeData/azumarill @@ -1,8 +1,11 @@ + Name: Azumarill Pokedex Number: 184 Gender Ratio:  ♂:50% ♀:50% Abilities: Thick Fat - Huge Power - Sap Sipper (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 420 Hp: 100 Attack: 50 diff --git a/pokeData/azurill b/pokeData/azurill index 6a37004..4853d07 100644 --- a/pokeData/azurill +++ b/pokeData/azurill @@ -1,8 +1,11 @@ + Name: Azurill Pokedex Number: 298 Gender Ratio:  ♂:25% ♀:75% Abilities: Thick Fat - Huge Power - Sap Sipper (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 190 Hp: 50 Attack: 20 diff --git a/pokeData/bagon b/pokeData/bagon index b4cb575..9d2473a 100644 --- a/pokeData/bagon +++ b/pokeData/bagon @@ -1,8 +1,11 @@ + Name: Bagon Pokedex Number: 371 Gender Ratio:  ♂:50% ♀:50% Abilities: Rock Head - Sheer Force (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 300 Hp: 45 Attack: 75 diff --git a/pokeData/baltoy b/pokeData/baltoy index e7e8987..752a0b0 100644 --- a/pokeData/baltoy +++ b/pokeData/baltoy @@ -1,8 +1,11 @@ + Name: Baltoy Pokedex Number: 343 Gender Ratio: Genderless Abilities: Levitate ----Base Stats--- + +Base Stats +---------------------- Total: 300 Hp: 40 Attack: 40 diff --git a/pokeData/banette b/pokeData/banette index f51f49c..ccadec8 100644 --- a/pokeData/banette +++ b/pokeData/banette @@ -1,8 +1,11 @@ + Name: Banette Pokedex Number: 354 Gender Ratio:  ♂:50% ♀:50% Abilities: Insomnia - Frisk - Cursed Body (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 455 Hp: 64 Attack: 165 diff --git a/pokeData/barbaracle b/pokeData/barbaracle index f2a9490..60e6f8d 100644 --- a/pokeData/barbaracle +++ b/pokeData/barbaracle @@ -1,8 +1,11 @@ + Name: Barbaracle Pokedex Number: 689 Gender Ratio:  ♂:50% ♀:50% Abilities: Tough Claws - Sniper - Pickpocket (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 72 Attack: 105 diff --git a/pokeData/barboach b/pokeData/barboach index a30f40f..f5595ae 100644 --- a/pokeData/barboach +++ b/pokeData/barboach @@ -1,8 +1,11 @@ + Name: Barboach Pokedex Number: 339 Gender Ratio:  ♂:50% ♀:50% Abilities: Oblivious - Anticipation - Hydration (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 288 Hp: 50 Attack: 48 diff --git a/pokeData/barraskewda b/pokeData/barraskewda index 77c5cfd..abfa183 100644 --- a/pokeData/barraskewda +++ b/pokeData/barraskewda @@ -1,8 +1,11 @@ + Name: Barraskewda Pokedex Number: 847 Gender Ratio:  ♂:50% ♀:50% Abilities: Swift Swim - Propeller Tail (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 490 Hp: 61 Attack: 123 diff --git a/pokeData/basculegion b/pokeData/basculegion index ebea468..2a9cd06 100644 --- a/pokeData/basculegion +++ b/pokeData/basculegion @@ -1,8 +1,11 @@ + Name: Basculegion Pokedex Number: 902 Gender Ratio:  ♂:100% ♀:0% Abilities: Swift Swim - Adaptability - Mold Breaker (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 530 Hp: 120 Attack: 92 diff --git a/pokeData/basculin b/pokeData/basculin index 3e2112f..005468a 100644 --- a/pokeData/basculin +++ b/pokeData/basculin @@ -1,8 +1,11 @@ + Name: Basculin Pokedex Number: 550 Gender Ratio:  ♂:50% ♀:50% Abilities: Reckless (Red-Striped Form BWB2W2 & Blue-Striped Form BW) - Rock Head (Blue-Striped Form - B2W2) - Adaptability - Mold Breaker (Dream World) ----Base Stats--- + +Base Stats +---------------------- Total: 460 Hp: 70 Attack: 92 diff --git a/pokeData/bastiodon b/pokeData/bastiodon index cd0580b..9c56944 100644 --- a/pokeData/bastiodon +++ b/pokeData/bastiodon @@ -1,8 +1,11 @@ + Name: Bastiodon Pokedex Number: 411 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Sturdy - Soundproof (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 495 Hp: 60 Attack: 52 diff --git a/pokeData/bayleef b/pokeData/bayleef index fe98f2d..3830474 100644 --- a/pokeData/bayleef +++ b/pokeData/bayleef @@ -1,8 +1,11 @@ + Name: Bayleef Pokedex Number: 153 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Overgrow - Leaf Guard (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 405 Hp: 60 Attack: 62 diff --git a/pokeData/beartic b/pokeData/beartic index 0556673..35d497b 100644 --- a/pokeData/beartic +++ b/pokeData/beartic @@ -1,8 +1,11 @@ + Name: Beartic Pokedex Number: 614 Gender Ratio:  ♂:50% ♀:50% Abilities: Snow Cloak - Swift Swim (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 485 Hp: 95 Attack: 110 diff --git a/pokeData/beautifly b/pokeData/beautifly index 6e04ff7..d8846a0 100644 --- a/pokeData/beautifly +++ b/pokeData/beautifly @@ -1,8 +1,11 @@ + Name: Beautifly Pokedex Number: 267 Gender Ratio:  ♂:50% ♀:50% Abilities: Swarm - Rivalry (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 395 Hp: 60 Attack: 70 diff --git a/pokeData/beedrill b/pokeData/beedrill index 0c708c6..e3cfbb5 100644 --- a/pokeData/beedrill +++ b/pokeData/beedrill @@ -1,8 +1,11 @@ + Name: Beedrill Pokedex Number: 015 Gender Ratio:  ♂:50% ♀:50% Abilities: Swarm - Sniper (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 395 Hp: 65 Attack: 150 diff --git a/pokeData/beheeyem b/pokeData/beheeyem index 70a4214..15376e9 100644 --- a/pokeData/beheeyem +++ b/pokeData/beheeyem @@ -1,8 +1,11 @@ + Name: Beheeyem Pokedex Number: 606 Gender Ratio:  ♂:50% ♀:50% Abilities: Telepathy - Synchronize - Analytic (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 485 Hp: 75 Attack: 75 diff --git a/pokeData/beldum b/pokeData/beldum index f2cb3dc..255609e 100644 --- a/pokeData/beldum +++ b/pokeData/beldum @@ -1,8 +1,11 @@ + Name: Beldum Pokedex Number: 374 Gender Ratio: Genderless Abilities: Clear Body - Light Metal (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 300 Hp: 40 Attack: 55 diff --git a/pokeData/bellossom b/pokeData/bellossom index caf1cc3..5d59a06 100644 --- a/pokeData/bellossom +++ b/pokeData/bellossom @@ -1,8 +1,11 @@ + Name: Bellossom Pokedex Number: 182 Gender Ratio:  ♂:50% ♀:50% Abilities: Chlorophyll - Healer (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 490 Hp: 75 Attack: 80 diff --git a/pokeData/bellsprout b/pokeData/bellsprout index 34f5bc4..23bca12 100644 --- a/pokeData/bellsprout +++ b/pokeData/bellsprout @@ -1,8 +1,11 @@ + Name: Bellsprout Pokedex Number: 069 Gender Ratio:  ♂:50% ♀:50% Abilities: Chlorophyll - Gluttony (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 300 Hp: 50 Attack: 75 diff --git a/pokeData/bergmite b/pokeData/bergmite index 408a243..bd2817c 100644 --- a/pokeData/bergmite +++ b/pokeData/bergmite @@ -1,8 +1,11 @@ + Name: Bergmite Pokedex Number: 712 Gender Ratio:  ♂:50% ♀:50% Abilities: Own Tempo - Ice Body - Sturdy (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 304 Hp: 55 Attack: 69 diff --git a/pokeData/bewear b/pokeData/bewear index 33e3490..91488da 100644 --- a/pokeData/bewear +++ b/pokeData/bewear @@ -1,8 +1,11 @@ + Name: Bewear Pokedex Number: 760 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Fluffy - Klutz - Unnerve (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 120 Attack: 125 diff --git a/pokeData/bibarel b/pokeData/bibarel index aeefbf6..af735e5 100644 --- a/pokeData/bibarel +++ b/pokeData/bibarel @@ -1,8 +1,11 @@ + Name: Bibarel Pokedex Number: 400 Gender Ratio:  ♂:50% ♀:50% Abilities: Simple - Unaware - Moody (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 410 Hp: 79 Attack: 85 diff --git a/pokeData/bidoof b/pokeData/bidoof index 2513bfd..f5206ba 100644 --- a/pokeData/bidoof +++ b/pokeData/bidoof @@ -1,8 +1,11 @@ + Name: Bidoof Pokedex Number: 399 Gender Ratio:  ♂:50% ♀:50% Abilities: Simple - Unaware - Moody (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 250 Hp: 59 Attack: 45 diff --git a/pokeData/binacle b/pokeData/binacle index 0b6be20..8c5e2d0 100644 --- a/pokeData/binacle +++ b/pokeData/binacle @@ -1,8 +1,11 @@ + Name: Binacle Pokedex Number: 688 Gender Ratio:  ♂:50% ♀:50% Abilities: Tough Claws - Sniper - Pickpocket (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 306 Hp: 42 Attack: 52 diff --git a/pokeData/bisharp b/pokeData/bisharp index e5453fb..8216200 100644 --- a/pokeData/bisharp +++ b/pokeData/bisharp @@ -1,8 +1,11 @@ + Name: Bisharp Pokedex Number: 625 Gender Ratio:  ♂:50% ♀:50% Abilities: Defiant - Inner Focus - Pressure (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 490 Hp: 65 Attack: 125 diff --git a/pokeData/blacephalon b/pokeData/blacephalon index 102e1d0..3afcd2c 100644 --- a/pokeData/blacephalon +++ b/pokeData/blacephalon @@ -1,8 +1,11 @@ + Name: Blacephalon Pokedex Number: 806 Gender Ratio: Genderless Abilities: Beast Boost ----Base Stats--- + +Base Stats +---------------------- Total: 570 Hp: 53 Attack: 127 diff --git a/pokeData/blastoise b/pokeData/blastoise index 1f660ae..463f3e2 100644 --- a/pokeData/blastoise +++ b/pokeData/blastoise @@ -1,8 +1,11 @@ + Name: Blastoise Pokedex Number: 009 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Torrent - Rain Dish (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 530 Hp: 79 Attack: 103 diff --git a/pokeData/blaziken b/pokeData/blaziken index 648c507..e228602 100644 --- a/pokeData/blaziken +++ b/pokeData/blaziken @@ -1,8 +1,11 @@ + Name: Blaziken Pokedex Number: 257 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Speed Boost (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 530 Hp: 80 Attack: 160 diff --git a/pokeData/blipbug b/pokeData/blipbug index b64aed8..b683a6c 100644 --- a/pokeData/blipbug +++ b/pokeData/blipbug @@ -1,8 +1,11 @@ + Name: Blipbug Pokedex Number: 824 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Swarm - Compoundeyes - Telepathy (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 180 Hp: 25 Attack: 20 diff --git a/pokeData/blissey b/pokeData/blissey index 67ed2da..f62e641 100644 --- a/pokeData/blissey +++ b/pokeData/blissey @@ -1,8 +1,11 @@ + Name: Blissey Pokedex Number: 242 Gender Ratio:  ♂:0% ♀:100% Abilities: Natural Cure - Serene Grace - Healer (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 540 Hp: 255 Attack: 10 diff --git a/pokeData/blitzle b/pokeData/blitzle index e5d2591..3163540 100644 --- a/pokeData/blitzle +++ b/pokeData/blitzle @@ -1,8 +1,11 @@ + Name: Blitzle Pokedex Number: 522 Gender Ratio:  ♂:50% ♀:50% Abilities: Lightningrod - Motor Drive - Sap Sipper (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 295 Hp: 45 Attack: 60 diff --git a/pokeData/boldore b/pokeData/boldore index 279344f..393f533 100644 --- a/pokeData/boldore +++ b/pokeData/boldore @@ -1,8 +1,11 @@ + Name: Boldore Pokedex Number: 525 Gender Ratio:  ♂:50% ♀:50% Abilities: Sturdy - Sand Force (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 390 Hp: 70 Attack: 105 diff --git a/pokeData/boltund b/pokeData/boltund index ef67189..3b7ee28 100644 --- a/pokeData/boltund +++ b/pokeData/boltund @@ -1,8 +1,11 @@ + Name: Boltund Pokedex Number: 836 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Strong Jaw - Competitive (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 490 Hp: 69 Attack: 90 diff --git a/pokeData/bonsly b/pokeData/bonsly index 4ea743a..07f5dcc 100644 --- a/pokeData/bonsly +++ b/pokeData/bonsly @@ -1,8 +1,11 @@ + Name: Bonsly Pokedex Number: 438 Gender Ratio:  ♂:50% ♀:50% Abilities: Sturdy - Rock Head - Rattled (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 290 Hp: 50 Attack: 80 diff --git a/pokeData/bouffalant b/pokeData/bouffalant index 9cb80ac..8d17347 100644 --- a/pokeData/bouffalant +++ b/pokeData/bouffalant @@ -1,8 +1,11 @@ + Name: Bouffalant Pokedex Number: 626 Gender Ratio:  ♂:50% ♀:50% Abilities: Reckless - Sap Sipper - Soundproof (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 490 Hp: 95 Attack: 110 diff --git a/pokeData/bounsweet b/pokeData/bounsweet index 8d1820f..5086f45 100644 --- a/pokeData/bounsweet +++ b/pokeData/bounsweet @@ -1,8 +1,11 @@ + Name: Bounsweet Pokedex Number: 761 Gender Ratio:  ♂:0% ♀:100% Abilities: Leaf Guard - Oblivious - Sweet Veil (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 210 Hp: 42 Attack: 30 diff --git a/pokeData/braixen b/pokeData/braixen index 5c65de3..7931a89 100644 --- a/pokeData/braixen +++ b/pokeData/braixen @@ -1,8 +1,11 @@ + Name: Braixen Pokedex Number: 654 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Magician (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 409 Hp: 59 Attack: 59 diff --git a/pokeData/braviary b/pokeData/braviary index 9f64a9d..ff16994 100644 --- a/pokeData/braviary +++ b/pokeData/braviary @@ -1,8 +1,11 @@ + Name: Braviary Pokedex Number: 628 Gender Ratio:  ♂:100% ♀:0% Abilities: Keen Eye - Sheer Force - Defiant (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 510 Hp: 100 Attack: 123 diff --git a/pokeData/breloom b/pokeData/breloom index 2561416..a16fa2a 100644 --- a/pokeData/breloom +++ b/pokeData/breloom @@ -1,8 +1,11 @@ + Name: Breloom Pokedex Number: 286 Gender Ratio:  ♂:50% ♀:50% Abilities: Effect Spore - Poison Heal - Technician (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 460 Hp: 60 Attack: 130 diff --git a/pokeData/brionne b/pokeData/brionne index 5e8036f..9a024de 100644 --- a/pokeData/brionne +++ b/pokeData/brionne @@ -1,8 +1,11 @@ + Name: Brionne Pokedex Number: 729 Gender Ratio:  ♂:88.14% ♀:11.86% Abilities: Torrent - Liquid Voice (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 420 Hp: 60 Attack: 69 diff --git a/pokeData/bronzong b/pokeData/bronzong index 9442e5f..14c2f1e 100644 --- a/pokeData/bronzong +++ b/pokeData/bronzong @@ -1,8 +1,11 @@ + Name: Bronzong Pokedex Number: 437 Gender Ratio: Genderless Abilities: Levitate - Heatproof - Heavy Metal (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 67 Attack: 89 diff --git a/pokeData/bronzor b/pokeData/bronzor index 4f17cdc..2f3ecc5 100644 --- a/pokeData/bronzor +++ b/pokeData/bronzor @@ -1,8 +1,11 @@ + Name: Bronzor Pokedex Number: 436 Gender Ratio: Genderless Abilities: Levitate - Heatproof - Heavy Metal (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 300 Hp: 57 Attack: 24 diff --git a/pokeData/bruxish b/pokeData/bruxish index 8eb4b8f..14f12c2 100644 --- a/pokeData/bruxish +++ b/pokeData/bruxish @@ -1,8 +1,11 @@ + Name: Bruxish Pokedex Number: 779 Gender Ratio:  ♂:50% ♀:50% Abilities: Dazzling - Strong Jaw - Wonder Skin (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 475 Hp: 68 Attack: 105 diff --git a/pokeData/budew b/pokeData/budew index bc98ad7..78e6280 100644 --- a/pokeData/budew +++ b/pokeData/budew @@ -1,8 +1,11 @@ + Name: Budew Pokedex Number: 406 Gender Ratio:  ♂:50% ♀:50% Abilities: Natural Cure - Poison Point - Leaf Guard (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 280 Hp: 40 Attack: 30 diff --git a/pokeData/buizel b/pokeData/buizel index 617ab10..fafa1b6 100644 --- a/pokeData/buizel +++ b/pokeData/buizel @@ -1,8 +1,11 @@ + Name: Buizel Pokedex Number: 418 Gender Ratio:  ♂:50% ♀:50% Abilities: Swift Swim - Water Veil (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 330 Hp: 55 Attack: 65 diff --git a/pokeData/bulbasaur b/pokeData/bulbasaur index 004655d..a28dbd2 100644 --- a/pokeData/bulbasaur +++ b/pokeData/bulbasaur @@ -1,8 +1,11 @@ + Name: Bulbasaur Pokedex Number: 001 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Overgrow - Chlorophyll (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 318 Hp: 45 Attack: 49 diff --git a/pokeData/buneary b/pokeData/buneary index e28fc75..663d895 100644 --- a/pokeData/buneary +++ b/pokeData/buneary @@ -1,8 +1,11 @@ + Name: Buneary Pokedex Number: 427 Gender Ratio:  ♂:50% ♀:50% Abilities: Run Away - Klutz - Limber (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 350 Hp: 55 Attack: 66 diff --git a/pokeData/bunnelby b/pokeData/bunnelby index 6084898..3dfe1c2 100644 --- a/pokeData/bunnelby +++ b/pokeData/bunnelby @@ -1,8 +1,11 @@ + Name: Bunnelby Pokedex Number: 659 Gender Ratio:  ♂:50% ♀:50% Abilities: Pickup - Cheek Pouch - Huge Power (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 237 Hp: 38 Attack: 36 diff --git a/pokeData/burmy b/pokeData/burmy index 9f6ed70..ff0650d 100644 --- a/pokeData/burmy +++ b/pokeData/burmy @@ -1,8 +1,11 @@ + Name: Burmy Pokedex Number: 412 Gender Ratio:  ♂:50% ♀:50% Abilities: Shed Skin - Overcoat (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 224 Hp: 40 Attack: 29 diff --git a/pokeData/butterfree b/pokeData/butterfree index f995191..f92d8c1 100644 --- a/pokeData/butterfree +++ b/pokeData/butterfree @@ -1,8 +1,11 @@ + Name: Butterfree Pokedex Number: 012 Gender Ratio:  ♂:50% ♀:50% Abilities: Compoundeyes - Tinted Lens (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 395 Hp: 60 Attack: 45 diff --git a/pokeData/buzzwole b/pokeData/buzzwole index baa9cfb..1c71383 100644 --- a/pokeData/buzzwole +++ b/pokeData/buzzwole @@ -1,8 +1,11 @@ + Name: Buzzwole Pokedex Number: 794 Gender Ratio: Genderless Abilities: Beast Boost ----Base Stats--- + +Base Stats +---------------------- Total: 570 Hp: 107 Attack: 139 diff --git a/pokeData/cacnea b/pokeData/cacnea index 68adefa..d273ce8 100644 --- a/pokeData/cacnea +++ b/pokeData/cacnea @@ -1,8 +1,11 @@ + Name: Cacnea Pokedex Number: 331 Gender Ratio:  ♂:50% ♀:50% Abilities: Sand Veil - Water Absorb (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 335 Hp: 50 Attack: 85 diff --git a/pokeData/cacturne b/pokeData/cacturne index 32c06e2..6cd5bbb 100644 --- a/pokeData/cacturne +++ b/pokeData/cacturne @@ -1,8 +1,11 @@ + Name: Cacturne Pokedex Number: 332 Gender Ratio:  ♂:50% ♀:50% Abilities: Sand Veil - Water Absorb (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 475 Hp: 70 Attack: 115 diff --git a/pokeData/calyrex b/pokeData/calyrex index 4a4dc0f..ffdbc23 100644 --- a/pokeData/calyrex +++ b/pokeData/calyrex @@ -1,8 +1,11 @@ + Name: Calyrex Pokedex Number: 898 Gender Ratio: Genderless Abilities: Unnerve (Standard) - As One - Unnerve Chilling Neigh (Ice Rider) - As One - Unnerve Grim Neigh (Shadow Rider ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 100 Attack: 85 diff --git a/pokeData/camerupt b/pokeData/camerupt index d7c8c8f..050e845 100644 --- a/pokeData/camerupt +++ b/pokeData/camerupt @@ -1,8 +1,11 @@ + Name: Camerupt Pokedex Number: 323 Gender Ratio:  ♂:50% ♀:50% Abilities: Magma Armor - Solid Rock - Anger Point (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 460 Hp: 70 Attack: 120 diff --git a/pokeData/carbink b/pokeData/carbink index dcfa3c3..b9fd37e 100644 --- a/pokeData/carbink +++ b/pokeData/carbink @@ -1,8 +1,11 @@ + Name: Carbink Pokedex Number: 703 Gender Ratio: Genderless Abilities: Clear Body - Sturdy (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 50 Attack: 50 diff --git a/pokeData/carkol b/pokeData/carkol index 2cec00a..c9e1845 100644 --- a/pokeData/carkol +++ b/pokeData/carkol @@ -1,8 +1,11 @@ + Name: Carkol Pokedex Number: 838 Gender Ratio:  ♂:50% ♀:50% Abilities: Steam Engine - Flame Body - Flash Fire (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 410 Hp: 80 Attack: 60 diff --git a/pokeData/carnivine b/pokeData/carnivine index a858f0e..d772aaa 100644 --- a/pokeData/carnivine +++ b/pokeData/carnivine @@ -1,8 +1,11 @@ + Name: Carnivine Pokedex Number: 455 Gender Ratio:  ♂:50% ♀:50% Abilities: Levitate ----Base Stats--- + +Base Stats +---------------------- Total: 454 Hp: 74 Attack: 100 diff --git a/pokeData/carracosta b/pokeData/carracosta index bae6c70..7bf8936 100644 --- a/pokeData/carracosta +++ b/pokeData/carracosta @@ -1,8 +1,11 @@ + Name: Carracosta Pokedex Number: 565 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Solid Rock - Sturdy - Swift Swim (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 495 Hp: 74 Attack: 108 diff --git a/pokeData/carvanha b/pokeData/carvanha index 400f17e..8b63cfb 100644 --- a/pokeData/carvanha +++ b/pokeData/carvanha @@ -1,8 +1,11 @@ + Name: Carvanha Pokedex Number: 318 Gender Ratio:  ♂:50% ♀:50% Abilities: Rough Skin - Speed Boost (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 305 Hp: 45 Attack: 90 diff --git a/pokeData/cascoon b/pokeData/cascoon index f9190e9..5dcb728 100644 --- a/pokeData/cascoon +++ b/pokeData/cascoon @@ -1,8 +1,11 @@ + Name: Cascoon Pokedex Number: 268 Gender Ratio:  ♂:50% ♀:50% Abilities: Shed Skin ----Base Stats--- + +Base Stats +---------------------- Total: 205 Hp: 50 Attack: 35 diff --git a/pokeData/castform b/pokeData/castform index b9e243a..5a94493 100644 --- a/pokeData/castform +++ b/pokeData/castform @@ -1,8 +1,11 @@ + Name: Castform Pokedex Number: 351 Gender Ratio:  ♂:50% ♀:50% Abilities: Forecast ----Base Stats--- + +Base Stats +---------------------- Total: 420 Hp: 70 Attack: 70 diff --git a/pokeData/caterpie b/pokeData/caterpie index 3491a2c..85ce796 100644 --- a/pokeData/caterpie +++ b/pokeData/caterpie @@ -1,8 +1,11 @@ + Name: Caterpie Pokedex Number: 010 Gender Ratio:  ♂:50% ♀:50% Abilities: Shield Dust - Run Away (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 195 Hp: 45 Attack: 30 diff --git a/pokeData/celebi b/pokeData/celebi index f54f030..f3c90b7 100644 --- a/pokeData/celebi +++ b/pokeData/celebi @@ -1,8 +1,11 @@ + Name: Celebi Pokedex Number: 251 Gender Ratio: Genderless Abilities: Natural Cure ----Base Stats--- + +Base Stats +---------------------- Total: 600 Hp: 100 Attack: 100 diff --git a/pokeData/celesteela b/pokeData/celesteela index b8087d5..ca0ecb3 100644 --- a/pokeData/celesteela +++ b/pokeData/celesteela @@ -1,8 +1,11 @@ + Name: Celesteela Pokedex Number: 797 Gender Ratio: Genderless Abilities: Beast Boost ----Base Stats--- + +Base Stats +---------------------- Total: 570 Hp: 97 Attack: 101 diff --git a/pokeData/centiskorch b/pokeData/centiskorch index 46c956c..0d31879 100644 --- a/pokeData/centiskorch +++ b/pokeData/centiskorch @@ -1,8 +1,11 @@ + Name: Centiskorch Pokedex Number: 851 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Flash Fire - White Smoke - Flame Body (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 525 Hp: 90 Attack: 90 diff --git a/pokeData/chandelure b/pokeData/chandelure index 29918be..bda5577 100644 --- a/pokeData/chandelure +++ b/pokeData/chandelure @@ -1,8 +1,11 @@ + Name: Chandelure Pokedex Number: 609 Gender Ratio:  ♂:50% ♀:50% Abilities: Flash Fire - Flame Body - Infiltrator (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 520 Hp: 60 Attack: 55 diff --git a/pokeData/chansey b/pokeData/chansey index fb3d350..3b9dfd1 100644 --- a/pokeData/chansey +++ b/pokeData/chansey @@ -1,8 +1,11 @@ + Name: Chansey Pokedex Number: 113 Gender Ratio:  ♂:0% ♀:100% Abilities: Natural Cure - Serene Grace - Healer (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 450 Hp: 250 Attack: 5 diff --git a/pokeData/charizard b/pokeData/charizard index b4000a1..4e2794d 100644 --- a/pokeData/charizard +++ b/pokeData/charizard @@ -1,8 +1,11 @@ + Name: Charizard Pokedex Number: 006 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Solar Power (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 534 Hp: 78 Attack: 104 diff --git a/pokeData/charjabug b/pokeData/charjabug index ed64fcd..723b1a3 100644 --- a/pokeData/charjabug +++ b/pokeData/charjabug @@ -1,8 +1,11 @@ + Name: Charjabug Pokedex Number: 737 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Battery ----Base Stats--- + +Base Stats +---------------------- Total: 400 Hp: 57 Attack: 82 diff --git a/pokeData/charmander b/pokeData/charmander index be53404..581af9b 100644 --- a/pokeData/charmander +++ b/pokeData/charmander @@ -1,8 +1,11 @@ + Name: Charmander Pokedex Number: 004 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Solar Power (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 309 Hp: 39 Attack: 52 diff --git a/pokeData/charmeleon b/pokeData/charmeleon index 029e6f6..fec28d2 100644 --- a/pokeData/charmeleon +++ b/pokeData/charmeleon @@ -1,8 +1,11 @@ + Name: Charmeleon Pokedex Number: 005 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Solar Power (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 405 Hp: 58 Attack: 64 diff --git a/pokeData/chatot b/pokeData/chatot index 857d578..9c1add0 100644 --- a/pokeData/chatot +++ b/pokeData/chatot @@ -1,8 +1,11 @@ + Name: Chatot Pokedex Number: 441 Gender Ratio:  ♂:50% ♀:50% Abilities: Keen Eye - Tangled Feet - Big Pecks (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 411 Hp: 76 Attack: 65 diff --git a/pokeData/cherrim b/pokeData/cherrim index 1b8d2f9..cb14d5a 100644 --- a/pokeData/cherrim +++ b/pokeData/cherrim @@ -1,8 +1,11 @@ + Name: Cherrim Pokedex Number: 421 Gender Ratio:  ♂:50% ♀:50% Abilities: Flower Gift ----Base Stats--- + +Base Stats +---------------------- Total: 450 Hp: 70 Attack: 60 diff --git a/pokeData/cherubi b/pokeData/cherubi index 040476e..65230c1 100644 --- a/pokeData/cherubi +++ b/pokeData/cherubi @@ -1,8 +1,11 @@ + Name: Cherubi Pokedex Number: 420 Gender Ratio:  ♂:50% ♀:50% Abilities: Chlorophyll ----Base Stats--- + +Base Stats +---------------------- Total: 275 Hp: 45 Attack: 35 diff --git a/pokeData/chesnaught b/pokeData/chesnaught index 7f87f4d..2ca7904 100644 --- a/pokeData/chesnaught +++ b/pokeData/chesnaught @@ -1,8 +1,11 @@ + Name: Chesnaught Pokedex Number: 652 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Overgrow - Bulletproof (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 530 Hp: 88 Attack: 107 diff --git a/pokeData/chespin b/pokeData/chespin index 1c3abb6..7c8c24c 100644 --- a/pokeData/chespin +++ b/pokeData/chespin @@ -1,8 +1,11 @@ + Name: Chespin Pokedex Number: 650 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Overgrow - Bulletproof (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 313 Hp: 56 Attack: 61 diff --git a/pokeData/chewtle b/pokeData/chewtle index d6ccc06..43f147e 100644 --- a/pokeData/chewtle +++ b/pokeData/chewtle @@ -1,8 +1,11 @@ + Name: Chewtle Pokedex Number: 833 Gender Ratio:  ♂:50% ♀:50% Abilities: Strong Jaw - Shell Armor - Swift Swim (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 284 Hp: 50 Attack: 64 diff --git a/pokeData/chikorita b/pokeData/chikorita index 6a5bc90..1651fc9 100644 --- a/pokeData/chikorita +++ b/pokeData/chikorita @@ -1,8 +1,11 @@ + Name: Chikorita Pokedex Number: 152 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Overgrow - Leaf Guard (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 318 Hp: 45 Attack: 49 diff --git a/pokeData/chimchar b/pokeData/chimchar index 80667b9..375abe6 100644 --- a/pokeData/chimchar +++ b/pokeData/chimchar @@ -1,8 +1,11 @@ + Name: Chimchar Pokedex Number: 390 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Iron Fist (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 309 Hp: 44 Attack: 58 diff --git a/pokeData/chimecho b/pokeData/chimecho index 0dfaab7..60ffd7f 100644 --- a/pokeData/chimecho +++ b/pokeData/chimecho @@ -1,8 +1,11 @@ + Name: Chimecho Pokedex Number: 358 Gender Ratio:  ♂:50% ♀:50% Abilities: Levitate ----Base Stats--- + +Base Stats +---------------------- Total: 425 Hp: 65 Attack: 50 diff --git a/pokeData/chinchou b/pokeData/chinchou index df15f16..55d8ba3 100644 --- a/pokeData/chinchou +++ b/pokeData/chinchou @@ -1,8 +1,11 @@ + Name: Chinchou Pokedex Number: 170 Gender Ratio:  ♂:50% ♀:50% Abilities: Volt Absorb - Illuminate - Water Absorb (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 330 Hp: 75 Attack: 38 diff --git a/pokeData/chingling b/pokeData/chingling index 102634d..0918a48 100644 --- a/pokeData/chingling +++ b/pokeData/chingling @@ -1,8 +1,11 @@ + Name: Chingling Pokedex Number: 433 Gender Ratio:  ♂:50% ♀:50% Abilities: Levitate ----Base Stats--- + +Base Stats +---------------------- Total: 285 Hp: 45 Attack: 30 diff --git a/pokeData/cinccino b/pokeData/cinccino index 84ccdd3..d8de9ec 100644 --- a/pokeData/cinccino +++ b/pokeData/cinccino @@ -1,8 +1,11 @@ + Name: Cinccino Pokedex Number: 573 Gender Ratio:  ♂:25% ♀:75% Abilities: Cute Charm - Technician - Skill Link (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 470 Hp: 75 Attack: 95 diff --git a/pokeData/cinderace b/pokeData/cinderace index 412a5bf..0ad18db 100644 --- a/pokeData/cinderace +++ b/pokeData/cinderace @@ -1,8 +1,11 @@ + Name: Cinderace Pokedex Number: 815 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Libero (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 530 Hp: 80 Attack: 116 diff --git a/pokeData/clamperl b/pokeData/clamperl index 69e7224..05a9b71 100644 --- a/pokeData/clamperl +++ b/pokeData/clamperl @@ -1,8 +1,11 @@ + Name: Clamperl Pokedex Number: 366 Gender Ratio:  ♂:50% ♀:50% Abilities: Shell Armor - Rattled (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 345 Hp: 35 Attack: 64 diff --git a/pokeData/clauncher b/pokeData/clauncher index 76b6ec9..b30a8e5 100644 --- a/pokeData/clauncher +++ b/pokeData/clauncher @@ -1,8 +1,11 @@ + Name: Clauncher Pokedex Number: 692 Gender Ratio:  ♂:50% ♀:50% Abilities: Mega Launcher ----Base Stats--- + +Base Stats +---------------------- Total: 330 Hp: 50 Attack: 53 diff --git a/pokeData/clawitzer b/pokeData/clawitzer index 7f1cb58..425ae9b 100644 --- a/pokeData/clawitzer +++ b/pokeData/clawitzer @@ -1,8 +1,11 @@ + Name: Clawitzer Pokedex Number: 693 Gender Ratio:  ♂:50% ♀:50% Abilities: Mega Launcher ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 71 Attack: 73 diff --git a/pokeData/claydol b/pokeData/claydol index 74f3453..6bbc459 100644 --- a/pokeData/claydol +++ b/pokeData/claydol @@ -1,8 +1,11 @@ + Name: Claydol Pokedex Number: 344 Gender Ratio: Genderless Abilities: Levitate ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 60 Attack: 70 diff --git a/pokeData/clefable b/pokeData/clefable index a025031..c5642e4 100644 --- a/pokeData/clefable +++ b/pokeData/clefable @@ -1,8 +1,11 @@ + Name: Clefable Pokedex Number: 036 Gender Ratio:  ♂:25% ♀:75% Abilities: Cute Charm - Magic Guard - Unaware (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 483 Hp: 95 Attack: 70 diff --git a/pokeData/clefairy b/pokeData/clefairy index 5da8bb6..22b3d53 100644 --- a/pokeData/clefairy +++ b/pokeData/clefairy @@ -1,8 +1,11 @@ + Name: Clefairy Pokedex Number: 035 Gender Ratio:  ♂:25% ♀:75% Abilities: Cute Charm - Magic Guard - Friend Guard (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 323 Hp: 70 Attack: 45 diff --git a/pokeData/cleffa b/pokeData/cleffa index 1c93469..f0c67cc 100644 --- a/pokeData/cleffa +++ b/pokeData/cleffa @@ -1,8 +1,11 @@ + Name: Cleffa Pokedex Number: 173 Gender Ratio:  ♂:25% ♀:75% Abilities: Cute Charm - Magic Guard - Friend Guard (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 218 Hp: 50 Attack: 25 diff --git a/pokeData/clobbopus b/pokeData/clobbopus index 3ab6a48..3ce03e4 100644 --- a/pokeData/clobbopus +++ b/pokeData/clobbopus @@ -1,8 +1,11 @@ + Name: Clobbopus Pokedex Number: 852 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Limber - Technician (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 310 Hp: 50 Attack: 68 diff --git a/pokeData/cloyster b/pokeData/cloyster index d067c87..58806dd 100644 --- a/pokeData/cloyster +++ b/pokeData/cloyster @@ -1,8 +1,11 @@ + Name: Cloyster Pokedex Number: 091 Gender Ratio:  ♂:50% ♀:50% Abilities: Shell Armor - Skill Link - Overcoat (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 525 Hp: 50 Attack: 95 diff --git a/pokeData/coalossal b/pokeData/coalossal index 2447f70..1b3db3f 100644 --- a/pokeData/coalossal +++ b/pokeData/coalossal @@ -1,8 +1,11 @@ + Name: Coalossal Pokedex Number: 839 Gender Ratio:  ♂:50% ♀:50% Abilities: Steam Engine - Flame Body - Flash Fire (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 510 Hp: 110 Attack: 80 diff --git a/pokeData/cobalion b/pokeData/cobalion index cb98139..ed990fa 100644 --- a/pokeData/cobalion +++ b/pokeData/cobalion @@ -1,8 +1,11 @@ + Name: Cobalion Pokedex Number: 638 Gender Ratio: Genderless Abilities: Justified ----Base Stats--- + +Base Stats +---------------------- Total: 580 Hp: 91 Attack: 90 diff --git a/pokeData/cofagrigus b/pokeData/cofagrigus index 8c6ee0c..c199ff7 100644 --- a/pokeData/cofagrigus +++ b/pokeData/cofagrigus @@ -1,8 +1,11 @@ + Name: Cofagrigus Pokedex Number: 563 Gender Ratio:  ♂:50% ♀:50% Abilities: Mummy ----Base Stats--- + +Base Stats +---------------------- Total: 483 Hp: 58 Attack: 50 diff --git a/pokeData/combee b/pokeData/combee index a91348b..78d71dd 100644 --- a/pokeData/combee +++ b/pokeData/combee @@ -1,8 +1,11 @@ + Name: Combee Pokedex Number: 415 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Honey Gather - Hustle (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 244 Hp: 30 Attack: 30 diff --git a/pokeData/combusken b/pokeData/combusken index 18ab7de..aaa5902 100644 --- a/pokeData/combusken +++ b/pokeData/combusken @@ -1,8 +1,11 @@ + Name: Combusken Pokedex Number: 256 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Blaze - Speed Boost (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 405 Hp: 60 Attack: 85 diff --git a/pokeData/comfey b/pokeData/comfey index c1f80ea..e68b0cc 100644 --- a/pokeData/comfey +++ b/pokeData/comfey @@ -1,8 +1,11 @@ + Name: Comfey Pokedex Number: 764 Gender Ratio:  ♂:24.9% ♀:75.1% Abilities: Flower Veil - Triage - Natural Cure (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 485 Hp: 51 Attack: 52 diff --git a/pokeData/conkeldurr b/pokeData/conkeldurr index 1c2af64..1c4ea4b 100644 --- a/pokeData/conkeldurr +++ b/pokeData/conkeldurr @@ -1,8 +1,11 @@ + Name: Conkeldurr Pokedex Number: 534 Gender Ratio:  ♂:75% ♀:25% Abilities: Guts - Sheer Force - Iron Fist (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 505 Hp: 105 Attack: 140 diff --git a/pokeData/copperajah b/pokeData/copperajah index dbc5c3b..ef1e1c0 100644 --- a/pokeData/copperajah +++ b/pokeData/copperajah @@ -1,8 +1,11 @@ + Name: Copperajah Pokedex Number: 879 Gender Ratio:  ♂:50% ♀:50% Abilities: Sheer Force - Heavy Metal (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 500 Hp: 122 Attack: 130 diff --git a/pokeData/corphish b/pokeData/corphish index 300a02c..3ad6928 100644 --- a/pokeData/corphish +++ b/pokeData/corphish @@ -1,8 +1,11 @@ + Name: Corphish Pokedex Number: 341 Gender Ratio:  ♂:50% ♀:50% Abilities: Hyper Cutter - Shell Armor - Adaptability (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 308 Hp: 43 Attack: 80 diff --git a/pokeData/corsola b/pokeData/corsola index 227f71d..5fbca68 100644 --- a/pokeData/corsola +++ b/pokeData/corsola @@ -1,8 +1,11 @@ + Name: Corsola Pokedex Number: 222 Gender Ratio:  ♂:25% ♀:75% Abilities: Hustle - Natural Cure - Regenerator (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 380 Hp: 55 Attack: 55 diff --git a/pokeData/corviknight b/pokeData/corviknight index 38bfbea..dbb63ac 100644 --- a/pokeData/corviknight +++ b/pokeData/corviknight @@ -1,8 +1,11 @@ + Name: Corviknight Pokedex Number: 823 Gender Ratio:  ♂:50% ♀:50% Abilities: Pressure - Unnerve - Mirror Armor (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 495 Hp: 98 Attack: 87 diff --git a/pokeData/corvisquire b/pokeData/corvisquire index 4dc9e4f..5eab91b 100644 --- a/pokeData/corvisquire +++ b/pokeData/corvisquire @@ -1,8 +1,11 @@ + Name: Corvisquire Pokedex Number: 822 Gender Ratio:  ♂:50% ♀:50% Abilities: Keen Eye - Unnerve - Big Pecks (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 365 Hp: 68 Attack: 67 diff --git a/pokeData/cosmoem b/pokeData/cosmoem index 91f9884..eafea5f 100644 --- a/pokeData/cosmoem +++ b/pokeData/cosmoem @@ -1,8 +1,11 @@ + Name: Cosmoem Pokedex Number: 790 Gender Ratio: Genderless Abilities: Sturdy ----Base Stats--- + +Base Stats +---------------------- Total: 400 Hp: 43 Attack: 29 diff --git a/pokeData/cosmog b/pokeData/cosmog index 6b61ec4..f165dbd 100644 --- a/pokeData/cosmog +++ b/pokeData/cosmog @@ -1,8 +1,11 @@ + Name: Cosmog Pokedex Number: 789 Gender Ratio: Genderless Abilities: Unaware ----Base Stats--- + +Base Stats +---------------------- Total: 200 Hp: 43 Attack: 29 diff --git a/pokeData/cottonee b/pokeData/cottonee index 33d04a2..c951b1e 100644 --- a/pokeData/cottonee +++ b/pokeData/cottonee @@ -1,8 +1,11 @@ + Name: Cottonee Pokedex Number: 546 Gender Ratio:  ♂:50% ♀:50% Abilities: Prankster - Infiltrator - Chlorophyll (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 280 Hp: 40 Attack: 27 diff --git a/pokeData/crabominable b/pokeData/crabominable index 686b7f9..f226867 100644 --- a/pokeData/crabominable +++ b/pokeData/crabominable @@ -1,8 +1,11 @@ + Name: Crabominable Pokedex Number: 740 Gender Ratio:  ♂:50% ♀:50% Abilities: Hyper Cutter - Iron Fist - Anger Point (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 478 Hp: 97 Attack: 132 diff --git a/pokeData/crabrawler b/pokeData/crabrawler index 1440c89..a7a1758 100644 --- a/pokeData/crabrawler +++ b/pokeData/crabrawler @@ -1,8 +1,11 @@ + Name: Crabrawler Pokedex Number: 739 Gender Ratio:  ♂:50% ♀:50% Abilities: Hyper Cutter - Iron Fist - Anger Point (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 338 Hp: 47 Attack: 82 diff --git a/pokeData/cradily b/pokeData/cradily index 1c38ce4..15d0f9b 100644 --- a/pokeData/cradily +++ b/pokeData/cradily @@ -1,8 +1,11 @@ + Name: Cradily Pokedex Number: 346 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Suction Cups - Storm Drain (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 495 Hp: 86 Attack: 81 diff --git a/pokeData/cramorant b/pokeData/cramorant index 2fc5dae..00f0317 100644 --- a/pokeData/cramorant +++ b/pokeData/cramorant @@ -1,8 +1,11 @@ + Name: Cramorant Pokedex Number: 845 Gender Ratio:  ♂:50.2% ♀:49.8% Abilities: Gulp Missile ----Base Stats--- + +Base Stats +---------------------- Total: 475 Hp: 70 Attack: 85 diff --git a/pokeData/cranidos b/pokeData/cranidos index c022250..a3224ce 100644 --- a/pokeData/cranidos +++ b/pokeData/cranidos @@ -1,8 +1,11 @@ + Name: Cranidos Pokedex Number: 408 Gender Ratio:  ♂:87.5% ♀:12.5% Abilities: Mold Breaker - Sheer Force (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 350 Hp: 67 Attack: 125 diff --git a/pokeData/crawdaunt b/pokeData/crawdaunt index 2993027..2412a16 100644 --- a/pokeData/crawdaunt +++ b/pokeData/crawdaunt @@ -1,8 +1,11 @@ + Name: Crawdaunt Pokedex Number: 342 Gender Ratio:  ♂:50% ♀:50% Abilities: Hyper Cutter - Shell Armor - Adaptability (Hidden Ability) ----Base Stats--- + +Base Stats +---------------------- Total: 468 Hp: 63 Attack: 120 diff --git a/pokeData/cresselia b/pokeData/cresselia index 331f8fc..443c071 100644 --- a/pokeData/cresselia +++ b/pokeData/cresselia @@ -1,8 +1,11 @@ + Name: Cresselia Pokedex Number: 488 Gender Ratio:  ♂:0% ♀:100% Abilities: Levitate ----Base Stats--- + +Base Stats +---------------------- Total: 600 Hp: 120 Attack: 70 diff --git a/pokeData/croagunk b/pokeData/croagunk index e69de29..c24bd3d 100644 --- a/pokeData/croagunk +++ b/pokeData/croagunk @@ -0,0 +1,15 @@ + +Name: Croagunk +Pokedex Number: 453 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Anticipation - Dry Skin - Poison Touch (Hidden Ability) + +Base Stats +---------------------- +Total: 300 +Hp: 48 +Attack: 61 +Defence: 40 +Special Attack: 61 +Special Defence: 40 +Speed: 50 diff --git a/pokeData/crobat b/pokeData/crobat index e69de29..6fc4f79 100644 --- a/pokeData/crobat +++ b/pokeData/crobat @@ -0,0 +1,15 @@ + +Name: Crobat +Pokedex Number: 169 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Inner Focus - Infiltrator (Hidden Ability) + +Base Stats +---------------------- +Total: 535 +Hp: 85 +Attack: 90 +Defence: 80 +Special Attack: 70 +Special Defence: 80 +Speed: 130 diff --git a/pokeData/croconaw b/pokeData/croconaw index e69de29..b27701f 100644 --- a/pokeData/croconaw +++ b/pokeData/croconaw @@ -0,0 +1,15 @@ + +Name: Croconaw +Pokedex Number: 159 +Gender Ratio:  ♂:87.5% ♀:12.5% +Abilities: Torrent - Sheer Force (Hidden Ability) + +Base Stats +---------------------- +Total: 405 +Hp: 65 +Attack: 80 +Defence: 80 +Special Attack: 59 +Special Defence: 63 +Speed: 58 diff --git a/pokeData/crustle b/pokeData/crustle index e69de29..da5157d 100644 --- a/pokeData/crustle +++ b/pokeData/crustle @@ -0,0 +1,15 @@ + +Name: Crustle +Pokedex Number: 558 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Sturdy - Shell Armor - Weak Armor (Hidden Ability) + +Base Stats +---------------------- +Total: 475 +Hp: 70 +Attack: 95 +Defence: 125 +Special Attack: 65 +Special Defence: 75 +Speed: 45 diff --git a/pokeData/cryogonal b/pokeData/cryogonal index e69de29..848ecda 100644 --- a/pokeData/cryogonal +++ b/pokeData/cryogonal @@ -0,0 +1,15 @@ + +Name: Cryogonal +Pokedex Number: 615 +Gender Ratio: Genderless +Abilities: Levitate + +Base Stats +---------------------- +Total: 485 +Hp: 70 +Attack: 50 +Defence: 30 +Special Attack: 95 +Special Defence: 135 +Speed: 105 diff --git a/pokeData/cubchoo b/pokeData/cubchoo index e69de29..2ecc54a 100644 --- a/pokeData/cubchoo +++ b/pokeData/cubchoo @@ -0,0 +1,15 @@ + +Name: Cubchoo +Pokedex Number: 613 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Snow Cloak - Rattled (Hidden Ability) + +Base Stats +---------------------- +Total: 305 +Hp: 55 +Attack: 70 +Defence: 40 +Special Attack: 60 +Special Defence: 40 +Speed: 40 diff --git a/pokeData/cubone b/pokeData/cubone index e69de29..7123fe0 100644 --- a/pokeData/cubone +++ b/pokeData/cubone @@ -0,0 +1,15 @@ + +Name: Cubone +Pokedex Number: 104 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Rock Head - Lightningrod - Battle Armor (Hidden Ability) + +Base Stats +---------------------- +Total: 320 +Hp: 50 +Attack: 50 +Defence: 95 +Special Attack: 40 +Special Defence: 50 +Speed: 35 diff --git a/pokeData/cufant b/pokeData/cufant index e69de29..e3cbbf8 100644 --- a/pokeData/cufant +++ b/pokeData/cufant @@ -0,0 +1,15 @@ + +Name: Cufant +Pokedex Number: 878 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Sheer Force - Heavy Metal (Hidden Ability) + +Base Stats +---------------------- +Total: 330 +Hp: 72 +Attack: 80 +Defence: 49 +Special Attack: 40 +Special Defence: 49 +Speed: 40 diff --git a/pokeData/cursola b/pokeData/cursola index e69de29..c91c181 100644 --- a/pokeData/cursola +++ b/pokeData/cursola @@ -0,0 +1,15 @@ + +Name: Cursola +Pokedex Number: 864 +Gender Ratio:  ♂:24.9% ♀:75.1% +Abilities: Weak Armor - Perish Body (Hidden Ability) + +Base Stats +---------------------- +Total: 510 +Hp: 60 +Attack: 95 +Defence: 50 +Special Attack: 145 +Special Defence: 130 +Speed: 30 diff --git a/pokeData/cutiefly b/pokeData/cutiefly index e69de29..edee165 100644 --- a/pokeData/cutiefly +++ b/pokeData/cutiefly @@ -0,0 +1,15 @@ + +Name: Cutiefly +Pokedex Number: 742 +Gender Ratio:  ♂:50.2% ♀:49.8% +Abilities: Honey Gather - Shield Dust - Sweet Veil (Hidden Ability) + +Base Stats +---------------------- +Total: 304 +Hp: 40 +Attack: 45 +Defence: 40 +Special Attack: 55 +Special Defence: 40 +Speed: 84 diff --git a/pokeData/cyndaquil b/pokeData/cyndaquil index e69de29..a6a8a33 100644 --- a/pokeData/cyndaquil +++ b/pokeData/cyndaquil @@ -0,0 +1,15 @@ + +Name: Cyndaquil +Pokedex Number: 155 +Gender Ratio:  ♂:87.5% ♀:12.5% +Abilities: Blaze - Flash Fire (Hidden Ability) + +Base Stats +---------------------- +Total: 309 +Hp: 39 +Attack: 52 +Defence: 43 +Special Attack: 60 +Special Defence: 50 +Speed: 65 diff --git a/pokeData/darkrai b/pokeData/darkrai index e69de29..aed56da 100644 --- a/pokeData/darkrai +++ b/pokeData/darkrai @@ -0,0 +1,15 @@ + +Name: Darkrai +Pokedex Number: 491 +Gender Ratio: Genderless +Abilities: Bad Dreams + +Base Stats +---------------------- +Total: 600 +Hp: 70 +Attack: 90 +Defence: 90 +Special Attack: 135 +Special Defence: 90 +Speed: 125 diff --git a/pokeData/darmanitan b/pokeData/darmanitan index e69de29..08a957b 100644 --- a/pokeData/darmanitan +++ b/pokeData/darmanitan @@ -0,0 +1,15 @@ + +Name: Darmanitan +Pokedex Number: 555 +Gender Ratio: +Abilities: Sheer Force - Zen Mode (Hidden Ability) + +Base Stats +---------------------- +Total: 480 +Hp: 105 +Attack: 30 +Defence: 105 +Special Attack: 140 +Special Defence: 105 +Speed: 55 diff --git a/pokeData/dartrix b/pokeData/dartrix index e69de29..0fbfaa8 100644 --- a/pokeData/dartrix +++ b/pokeData/dartrix @@ -0,0 +1,15 @@ + +Name: Dartrix +Pokedex Number: 723 +Gender Ratio:  ♂:87.5% ♀:12.5% +Abilities: Overgrow - Long Reach (Hidden Ability) + +Base Stats +---------------------- +Total: 420 +Hp: 78 +Attack: 75 +Defence: 75 +Special Attack: 70 +Special Defence: 70 +Speed: 52 diff --git a/pokeData/darumaka b/pokeData/darumaka index e69de29..857c2ea 100644 --- a/pokeData/darumaka +++ b/pokeData/darumaka @@ -0,0 +1,15 @@ + +Name: Darumaka +Pokedex Number: 554 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Hustle - Inner Focus (Hidden Ability) + +Base Stats +---------------------- +Total: 315 +Hp: 70 +Attack: 90 +Defence: 45 +Special Attack: 15 +Special Defence: 45 +Speed: 50 diff --git a/pokeData/decidueye b/pokeData/decidueye index e69de29..f286a77 100644 --- a/pokeData/decidueye +++ b/pokeData/decidueye @@ -0,0 +1,15 @@ + +Name: Decidueye +Pokedex Number: 724 +Gender Ratio: +Abilities: Overgrow - Long Reach (Hidden) (Normal Forme) - Overgrow- Scrappy (Hidden) (Hisuian Form + +Base Stats +---------------------- +Total: 530 +Hp: 88 +Attack: 112 +Defence: 80 +Special Attack: 95 +Special Defence: 95 +Speed: 60 diff --git a/pokeData/dedenne b/pokeData/dedenne index e69de29..ccb21b4 100644 --- a/pokeData/dedenne +++ b/pokeData/dedenne @@ -0,0 +1,15 @@ + +Name: Dedenne +Pokedex Number: 702 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Cheek Pouch - Pickup - Plus (Hidden Ability) + +Base Stats +---------------------- +Total: 431 +Hp: 67 +Attack: 58 +Defence: 57 +Special Attack: 81 +Special Defence: 67 +Speed: 101 diff --git a/pokeData/deerling b/pokeData/deerling index e69de29..403f359 100644 --- a/pokeData/deerling +++ b/pokeData/deerling @@ -0,0 +1,15 @@ + +Name: Deerling +Pokedex Number: 585 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Chlorophyll - Sap Sipper - Serene Grace (Hidden Ability) + +Base Stats +---------------------- +Total: 335 +Hp: 60 +Attack: 60 +Defence: 50 +Special Attack: 40 +Special Defence: 50 +Speed: 75 diff --git a/pokeData/deino b/pokeData/deino index e69de29..2e28af5 100644 --- a/pokeData/deino +++ b/pokeData/deino @@ -0,0 +1,15 @@ + +Name: Deino +Pokedex Number: 633 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Hustle + +Base Stats +---------------------- +Total: 300 +Hp: 52 +Attack: 65 +Defence: 50 +Special Attack: 45 +Special Defence: 50 +Speed: 38 diff --git a/pokeData/delcatty b/pokeData/delcatty index e69de29..ef489e9 100644 --- a/pokeData/delcatty +++ b/pokeData/delcatty @@ -0,0 +1,15 @@ + +Name: Delcatty +Pokedex Number: 301 +Gender Ratio:  ♂:25% ♀:75% +Abilities: Cute Charm - Normalize - Wonder Skin (Hidden Ability) + +Base Stats +---------------------- +Total: 380 +Hp: 70 +Attack: 65 +Defence: 65 +Special Attack: 55 +Special Defence: 55 +Speed: 70 diff --git a/pokeData/delibird b/pokeData/delibird index e69de29..deb4081 100644 --- a/pokeData/delibird +++ b/pokeData/delibird @@ -0,0 +1,15 @@ + +Name: Delibird +Pokedex Number: 225 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Vital Spirit - Hustle - Insomnia (Hidden Ability) + +Base Stats +---------------------- +Total: 330 +Hp: 45 +Attack: 55 +Defence: 45 +Special Attack: 65 +Special Defence: 45 +Speed: 75 diff --git a/pokeData/delphox b/pokeData/delphox index e69de29..9bb899c 100644 --- a/pokeData/delphox +++ b/pokeData/delphox @@ -0,0 +1,15 @@ + +Name: Delphox +Pokedex Number: 655 +Gender Ratio:  ♂:87.5% ♀:12.5% +Abilities: Blaze - Magician (Hidden Ability) + +Base Stats +---------------------- +Total: 534 +Hp: 75 +Attack: 69 +Defence: 72 +Special Attack: 114 +Special Defence: 100 +Speed: 104 diff --git a/pokeData/deoxys b/pokeData/deoxys index e69de29..8e66967 100644 --- a/pokeData/deoxys +++ b/pokeData/deoxys @@ -0,0 +1,15 @@ + +Name: Deoxys +Pokedex Number: 386 +Gender Ratio: Genderless +Abilities: Pressure + +Base Stats +---------------------- +Total: 600 +Hp: 50 +Attack: 95 +Defence: 90 +Special Attack: 95 +Special Defence: 90 +Speed: 180 diff --git a/pokeData/dewgong b/pokeData/dewgong index e69de29..9001796 100644 --- a/pokeData/dewgong +++ b/pokeData/dewgong @@ -0,0 +1,15 @@ + +Name: Dewgong +Pokedex Number: 087 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Thick Fat - Hydration - Ice Body (Hidden Ability) + +Base Stats +---------------------- +Total: 475 +Hp: 90 +Attack: 70 +Defence: 80 +Special Attack: 70 +Special Defence: 95 +Speed: 70 diff --git a/pokeData/dewott b/pokeData/dewott index e69de29..faf3fd5 100644 --- a/pokeData/dewott +++ b/pokeData/dewott @@ -0,0 +1,15 @@ + +Name: Dewott +Pokedex Number: 502 +Gender Ratio:  ♂:87.5% ♀:12.5% +Abilities: Torrent - Shell Armor (Hidden Ability) + +Base Stats +---------------------- +Total: 413 +Hp: 75 +Attack: 75 +Defence: 60 +Special Attack: 83 +Special Defence: 60 +Speed: 60 diff --git a/pokeData/dewpider b/pokeData/dewpider index e69de29..dc2fb3c 100644 --- a/pokeData/dewpider +++ b/pokeData/dewpider @@ -0,0 +1,15 @@ + +Name: Dewpider +Pokedex Number: 751 +Gender Ratio:  ♂:50.2% ♀:49.8% +Abilities: Water Bubble - Water Absorb (Hidden Ability) + +Base Stats +---------------------- +Total: 269 +Hp: 38 +Attack: 40 +Defence: 52 +Special Attack: 40 +Special Defence: 72 +Speed: 27 diff --git a/pokeData/dhelmise b/pokeData/dhelmise index e69de29..46989bd 100644 --- a/pokeData/dhelmise +++ b/pokeData/dhelmise @@ -0,0 +1,15 @@ + +Name: Dhelmise +Pokedex Number: 781 +Gender Ratio: Genderless +Abilities: Steelworker + +Base Stats +---------------------- +Total: 517 +Hp: 70 +Attack: 131 +Defence: 100 +Special Attack: 86 +Special Defence: 90 +Speed: 40 diff --git a/pokeData/dialga b/pokeData/dialga index e69de29..80e4b79 100644 --- a/pokeData/dialga +++ b/pokeData/dialga @@ -0,0 +1,15 @@ + +Name: Dialga +Pokedex Number: 483 +Gender Ratio: Genderless +Abilities: Pressure - Telepathy (Hidden Ability) + +Base Stats +---------------------- +Total: 680 +Hp: 100 +Attack: 120 +Defence: 120 +Special Attack: 150 +Special Defence: 100 +Speed: 90 diff --git a/pokeData/diancie b/pokeData/diancie index e69de29..a5c864b 100644 --- a/pokeData/diancie +++ b/pokeData/diancie @@ -0,0 +1,15 @@ + +Name: Diancie +Pokedex Number: 719 +Gender Ratio: Genderless +Abilities: Clear Body + +Base Stats +---------------------- +Total: 600 +Hp: 50 +Attack: 160 +Defence: 110 +Special Attack: 160 +Special Defence: 110 +Speed: 110 diff --git a/pokeData/diggersby b/pokeData/diggersby index e69de29..70cbbed 100644 --- a/pokeData/diggersby +++ b/pokeData/diggersby @@ -0,0 +1,15 @@ + +Name: Diggersby +Pokedex Number: 660 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Pickup - Cheek Pouch - Huge Power (Hidden Ability) + +Base Stats +---------------------- +Total: 423 +Hp: 85 +Attack: 56 +Defence: 77 +Special Attack: 50 +Special Defence: 77 +Speed: 78 diff --git a/pokeData/diglett b/pokeData/diglett index e69de29..b1954b7 100644 --- a/pokeData/diglett +++ b/pokeData/diglett @@ -0,0 +1,15 @@ + +Name: Diglett +Pokedex Number: 050 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Sand Veil - Arena Trap - Sand Force (Hidden Ability) + +Base Stats +---------------------- +Total: 265 +Hp: 10 +Attack: 55 +Defence: 25 +Special Attack: 35 +Special Defence: 45 +Speed: 95 diff --git a/pokeData/ditto b/pokeData/ditto index e69de29..6c754bd 100644 --- a/pokeData/ditto +++ b/pokeData/ditto @@ -0,0 +1,15 @@ + +Name: Ditto +Pokedex Number: 132 +Gender Ratio: Genderless +Abilities: Limber - Imposter (Hidden Ability) + +Base Stats +---------------------- +Total: 288 +Hp: 48 +Attack: 48 +Defence: 48 +Special Attack: 48 +Special Defence: 48 +Speed: 48 diff --git a/pokeData/dodrio b/pokeData/dodrio index e69de29..58f72a5 100644 --- a/pokeData/dodrio +++ b/pokeData/dodrio @@ -0,0 +1,15 @@ + +Name: Dodrio +Pokedex Number: 085 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Run Away - Early Bird - Tangled Feet (Hidden Ability) + +Base Stats +---------------------- +Total: 460 +Hp: 60 +Attack: 110 +Defence: 70 +Special Attack: 60 +Special Defence: 60 +Speed: 100 diff --git a/pokeData/doduo b/pokeData/doduo index e69de29..e6ce335 100644 --- a/pokeData/doduo +++ b/pokeData/doduo @@ -0,0 +1,15 @@ + +Name: Doduo +Pokedex Number: 084 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Run Away - Early Bird - Tangled Feet (Hidden Ability) + +Base Stats +---------------------- +Total: 310 +Hp: 35 +Attack: 85 +Defence: 45 +Special Attack: 35 +Special Defence: 35 +Speed: 75 diff --git a/pokeData/donphan b/pokeData/donphan index e69de29..c77f0ad 100644 --- a/pokeData/donphan +++ b/pokeData/donphan @@ -0,0 +1,15 @@ + +Name: Donphan +Pokedex Number: 232 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Sturdy - Sand Veil (Hidden Ability) + +Base Stats +---------------------- +Total: 500 +Hp: 90 +Attack: 120 +Defence: 120 +Special Attack: 60 +Special Defence: 60 +Speed: 50 diff --git a/pokeData/dottler b/pokeData/dottler index e69de29..773da94 100644 --- a/pokeData/dottler +++ b/pokeData/dottler @@ -0,0 +1,15 @@ + +Name: Dottler +Pokedex Number: 825 +Gender Ratio:  ♂:50.2% ♀:49.8% +Abilities: Swarm - Compoundeyes - Telepathy (Hidden Ability) + +Base Stats +---------------------- +Total: 335 +Hp: 50 +Attack: 35 +Defence: 80 +Special Attack: 50 +Special Defence: 90 +Speed: 30 diff --git a/pokeData/doublade b/pokeData/doublade index e69de29..9b1db54 100644 --- a/pokeData/doublade +++ b/pokeData/doublade @@ -0,0 +1,15 @@ + +Name: Doublade +Pokedex Number: 680 +Gender Ratio:  ♂:50% ♀:50% +Abilities: No Guard + +Base Stats +---------------------- +Total: 448 +Hp: 59 +Attack: 110 +Defence: 150 +Special Attack: 45 +Special Defence: 49 +Speed: 35 diff --git a/pokeData/dracovish b/pokeData/dracovish index e69de29..db61aaf 100644 --- a/pokeData/dracovish +++ b/pokeData/dracovish @@ -0,0 +1,15 @@ + +Name: Dracovish +Pokedex Number: 882 +Gender Ratio: Genderless +Abilities: Water Absorb - Strong Jaw - Sand Rush (Hidden Ability) + +Base Stats +---------------------- +Total: 505 +Hp: 90 +Attack: 90 +Defence: 100 +Special Attack: 70 +Special Defence: 80 +Speed: 75 diff --git a/pokeData/dracozolt b/pokeData/dracozolt index e69de29..30f9f91 100644 --- a/pokeData/dracozolt +++ b/pokeData/dracozolt @@ -0,0 +1,15 @@ + +Name: Dracozolt +Pokedex Number: 880 +Gender Ratio: Genderless +Abilities: Volt Absorb - Hustle - Sand Rush (Hidden Ability) + +Base Stats +---------------------- +Total: 505 +Hp: 90 +Attack: 100 +Defence: 90 +Special Attack: 80 +Special Defence: 70 +Speed: 75 diff --git a/pokeData/dragalge b/pokeData/dragalge index e69de29..26dfbaa 100644 --- a/pokeData/dragalge +++ b/pokeData/dragalge @@ -0,0 +1,15 @@ + +Name: Dragalge +Pokedex Number: 691 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Poison Point - Poison Touch - Adaptability (Hidden Ability) + +Base Stats +---------------------- +Total: 494 +Hp: 65 +Attack: 75 +Defence: 90 +Special Attack: 97 +Special Defence: 123 +Speed: 44 diff --git a/pokeData/dragapult b/pokeData/dragapult index e69de29..b1dedd3 100644 --- a/pokeData/dragapult +++ b/pokeData/dragapult @@ -0,0 +1,15 @@ + +Name: Dragapult +Pokedex Number: 887 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Clear Body - Infiltrator - Cursed Body (Hidden Ability) + +Base Stats +---------------------- +Total: 600 +Hp: 88 +Attack: 120 +Defence: 75 +Special Attack: 100 +Special Defence: 75 +Speed: 142 diff --git a/pokeData/dragonair b/pokeData/dragonair index e69de29..2243b86 100644 --- a/pokeData/dragonair +++ b/pokeData/dragonair @@ -0,0 +1,15 @@ + +Name: Dragonair +Pokedex Number: 148 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Shed Skin - Marvel Scale (Hidden Ability) + +Base Stats +---------------------- +Total: 420 +Hp: 61 +Attack: 84 +Defence: 65 +Special Attack: 70 +Special Defence: 70 +Speed: 70 diff --git a/pokeData/dragonite b/pokeData/dragonite index e69de29..29d7cd4 100644 --- a/pokeData/dragonite +++ b/pokeData/dragonite @@ -0,0 +1,15 @@ + +Name: Dragonite +Pokedex Number: 149 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Inner Focus - Multiscale (Hidden Ability) + +Base Stats +---------------------- +Total: 600 +Hp: 91 +Attack: 134 +Defence: 95 +Special Attack: 100 +Special Defence: 100 +Speed: 80 diff --git a/pokeData/drakloak b/pokeData/drakloak index e69de29..64fbb92 100644 --- a/pokeData/drakloak +++ b/pokeData/drakloak @@ -0,0 +1,15 @@ + +Name: Drakloak +Pokedex Number: 886 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Clear Body - Infiltrator - Cursed Body (Hidden Ability) + +Base Stats +---------------------- +Total: 410 +Hp: 68 +Attack: 80 +Defence: 50 +Special Attack: 60 +Special Defence: 50 +Speed: 102 diff --git a/pokeData/drampa b/pokeData/drampa index e69de29..2f7690a 100644 --- a/pokeData/drampa +++ b/pokeData/drampa @@ -0,0 +1,15 @@ + +Name: Drampa +Pokedex Number: 780 +Gender Ratio:  ♂:50.2% ♀:49.8% +Abilities: Berserk - Sap Sipper - Cloud Nine (Hidden Ability) + +Base Stats +---------------------- +Total: 485 +Hp: 78 +Attack: 60 +Defence: 85 +Special Attack: 135 +Special Defence: 91 +Speed: 36 diff --git a/pokeData/drapion b/pokeData/drapion index e69de29..02d0482 100644 --- a/pokeData/drapion +++ b/pokeData/drapion @@ -0,0 +1,15 @@ + +Name: Drapion +Pokedex Number: 452 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Battle Armor - Sniper - Keen Eye (Hidden Ability) + +Base Stats +---------------------- +Total: 500 +Hp: 70 +Attack: 90 +Defence: 110 +Special Attack: 60 +Special Defence: 75 +Speed: 95 diff --git a/pokeData/dratini b/pokeData/dratini index e69de29..3244cd1 100644 --- a/pokeData/dratini +++ b/pokeData/dratini @@ -0,0 +1,15 @@ + +Name: Dratini +Pokedex Number: 147 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Shed Skin - Marvel Scale (Hidden Ability) + +Base Stats +---------------------- +Total: 300 +Hp: 41 +Attack: 64 +Defence: 45 +Special Attack: 50 +Special Defence: 50 +Speed: 50 diff --git a/pokeData/drednaw b/pokeData/drednaw index e69de29..45a0cc0 100644 --- a/pokeData/drednaw +++ b/pokeData/drednaw @@ -0,0 +1,15 @@ + +Name: Drednaw +Pokedex Number: 834 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Strong Jaw - Shell Armor - Swift Swim (Hidden Ability) + +Base Stats +---------------------- +Total: 485 +Hp: 90 +Attack: 115 +Defence: 90 +Special Attack: 48 +Special Defence: 68 +Speed: 74 diff --git a/pokeData/dreepy b/pokeData/dreepy index e69de29..ec6865f 100644 --- a/pokeData/dreepy +++ b/pokeData/dreepy @@ -0,0 +1,15 @@ + +Name: Dreepy +Pokedex Number: 885 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Clear Body - Infiltrator - Cursed Body (Hidden Ability) + +Base Stats +---------------------- +Total: 270 +Hp: 28 +Attack: 60 +Defence: 30 +Special Attack: 40 +Special Defence: 30 +Speed: 82 diff --git a/pokeData/drifblim b/pokeData/drifblim index e69de29..e71ce59 100644 --- a/pokeData/drifblim +++ b/pokeData/drifblim @@ -0,0 +1,15 @@ + +Name: Drifblim +Pokedex Number: 426 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Aftermath - Unburden - Flare Boost (Hidden Ability) + +Base Stats +---------------------- +Total: 498 +Hp: 150 +Attack: 80 +Defence: 44 +Special Attack: 90 +Special Defence: 54 +Speed: 80 diff --git a/pokeData/drifloon b/pokeData/drifloon index e69de29..e7e23d3 100644 --- a/pokeData/drifloon +++ b/pokeData/drifloon @@ -0,0 +1,15 @@ + +Name: Drifloon +Pokedex Number: 425 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Aftermath - Unburden - Flare Boost (Hidden Ability) + +Base Stats +---------------------- +Total: 348 +Hp: 90 +Attack: 50 +Defence: 34 +Special Attack: 60 +Special Defence: 44 +Speed: 70 diff --git a/pokeData/drilbur b/pokeData/drilbur index e69de29..c9c68ed 100644 --- a/pokeData/drilbur +++ b/pokeData/drilbur @@ -0,0 +1,15 @@ + +Name: Drilbur +Pokedex Number: 529 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Sand Rush - Sand Force - Mold Breaker (Hidden Ability) + +Base Stats +---------------------- +Total: 328 +Hp: 60 +Attack: 85 +Defence: 40 +Special Attack: 30 +Special Defence: 45 +Speed: 68 diff --git a/pokeData/drizzile b/pokeData/drizzile index e69de29..1a19ae6 100644 --- a/pokeData/drizzile +++ b/pokeData/drizzile @@ -0,0 +1,15 @@ + +Name: Drizzile +Pokedex Number: 817 +Gender Ratio:  ♂:87.5% ♀:12.5% +Abilities: Torrent - Sniper (Hidden Ability) + +Base Stats +---------------------- +Total: 420 +Hp: 65 +Attack: 60 +Defence: 55 +Special Attack: 95 +Special Defence: 55 +Speed: 90 diff --git a/pokeData/drowzee b/pokeData/drowzee index e69de29..cf1589d 100644 --- a/pokeData/drowzee +++ b/pokeData/drowzee @@ -0,0 +1,15 @@ + +Name: Drowzee +Pokedex Number: 096 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Insomnia - Forewarn - Inner Focus (Hidden Ability) + +Base Stats +---------------------- +Total: 328 +Hp: 60 +Attack: 48 +Defence: 45 +Special Attack: 43 +Special Defence: 90 +Speed: 42 diff --git a/pokeData/druddigon b/pokeData/druddigon index e69de29..e2404c4 100644 --- a/pokeData/druddigon +++ b/pokeData/druddigon @@ -0,0 +1,15 @@ + +Name: Druddigon +Pokedex Number: 621 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Rough Skin - Sheer Force - Mold Breaker (Hidden Ability) + +Base Stats +---------------------- +Total: 485 +Hp: 77 +Attack: 120 +Defence: 90 +Special Attack: 60 +Special Defence: 90 +Speed: 48 diff --git a/pokeData/dubwool b/pokeData/dubwool index e69de29..8cf346d 100644 --- a/pokeData/dubwool +++ b/pokeData/dubwool @@ -0,0 +1,15 @@ + +Name: Dubwool +Pokedex Number: 832 +Gender Ratio:  ♂:50.2% ♀:49.8% +Abilities: Fluffy - Steadfast - Bulletproof (Hidden Ability) + +Base Stats +---------------------- +Total: 490 +Hp: 72 +Attack: 80 +Defence: 100 +Special Attack: 60 +Special Defence: 90 +Speed: 88 diff --git a/pokeData/ducklett b/pokeData/ducklett index e69de29..971ce1e 100644 --- a/pokeData/ducklett +++ b/pokeData/ducklett @@ -0,0 +1,15 @@ + +Name: Ducklett +Pokedex Number: 580 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Keen Eye - Big Pecks - Hydration (Hidden Ability) + +Base Stats +---------------------- +Total: 305 +Hp: 62 +Attack: 44 +Defence: 50 +Special Attack: 44 +Special Defence: 50 +Speed: 55 diff --git a/pokeData/dugtrio b/pokeData/dugtrio index e69de29..6bd3599 100644 --- a/pokeData/dugtrio +++ b/pokeData/dugtrio @@ -0,0 +1,15 @@ + +Name: Dugtrio +Pokedex Number: 051 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Sand Veil - Arena Trap - Sand Force (Hidden Ability) + +Base Stats +---------------------- +Total: 405 +Hp: 35 +Attack: 80 +Defence: 50 +Special Attack: 50 +Special Defence: 70 +Speed: 120 diff --git a/pokeData/dunsparce b/pokeData/dunsparce index e69de29..9979d4f 100644 --- a/pokeData/dunsparce +++ b/pokeData/dunsparce @@ -0,0 +1,15 @@ + +Name: Dunsparce +Pokedex Number: 206 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Serene Grace - Run Away - Rattled (Hidden Ability) + +Base Stats +---------------------- +Total: 415 +Hp: 100 +Attack: 70 +Defence: 70 +Special Attack: 65 +Special Defence: 65 +Speed: 45 diff --git a/pokeData/duosion b/pokeData/duosion index e69de29..443ebd4 100644 --- a/pokeData/duosion +++ b/pokeData/duosion @@ -0,0 +1,15 @@ + +Name: Duosion +Pokedex Number: 578 +Gender Ratio:  ♂:50% ♀:50% +Abilities: Overcoat - Magic Guard - Regenerator (Hidden Ability) + +Base Stats +---------------------- +Total: 370 +Hp: 65 +Attack: 40 +Defence: 50 +Special Attack: 125 +Special Defence: 60 +Speed: 30 diff --git a/pokeData/duraludon b/pokeData/duraludon index e69de29..cc309f1 100644 --- a/pokeData/duraludon +++ b/pokeData/duraludon @@ -0,0 +1,15 @@ + +Name: Duraludon +Pokedex Number: 884 +Gender Ratio:  ♂:50.2% ♀:49.8% +Abilities: Light Metal - Heavy Metal - Stalwart (Hidden Ability) + +Base Stats +---------------------- +Total: 535 +Hp: 120 +Attack: 50 +Defence: 85 +Special Attack: Max Stats