Baselight

Pokemon Stats Generations 1-9

Names, typings, and base stats of all the Pokemon from generations 1 through 9

@kaggle.jkorn28_pokemon_stats_gens_1_9

Pokemon
@kaggle.jkorn28_pokemon_stats_gens_1_9.pokemon

  • 48.47 KB
  • 1194 rows
  • 12 columns
dex_no

Dex No

name

Name

base_name

Base Name

type_1

Type 1

type_2

Type 2

bst

BST

hp

HP

attack

Attack

defense

Defense

sp_attack

Sp. Attack

sp_defense

Sp. Defense

speed

Speed

1BulbasaurBulbasaurGRASSPOISON318454949656545
2IvysaurIvysaurGRASSPOISON405606263808060
3VenusaurVenusaurGRASSPOISON52580828310010080
3Mega VenusaurVenusaurGRASSPOISON6258010012312212080
4CharmanderCharmanderFIRE-309395243605065
5CharmeleonCharmeleonFIRE-405586458806580
6CharizardCharizardFIREFLYING53478847810985100
6Mega Charizard XCharizardFIREDRAGON6347813011113085100
6Mega Charizard YCharizardFIREFLYING6347810478159115100
7SquirtleSquirtleWATER-314444865506443

CREATE TABLE pokemon (
  "dex_no" BIGINT,
  "name" VARCHAR,
  "base_name" VARCHAR,
  "type_1" VARCHAR,
  "type_2" VARCHAR,
  "bst" BIGINT,
  "hp" BIGINT,
  "attack" BIGINT,
  "defense" BIGINT,
  "sp_attack" BIGINT,
  "sp_defense" BIGINT,
  "speed" BIGINT
);

Share link

Anyone who has the link will be able to view this.