Baselight

Pokemon With Stats

721 Pokemon with stats and types

@kaggle.abcsds_pokemon

Pokemon
@kaggle.abcsds_pokemon.pokemon

  • 30.05 KB
  • 800 rows
  • 13 columns
n

#

name

Name

type_1

Type 1

type_2

Type 2

total

Total

hp

HP

attack

Attack

defense

Defense

sp_atk

Sp. Atk

sp_def

Sp. Def

speed

Speed

generation

Generation

legendary

Legendary

1BulbasaurGrassPoison3184549496565451
2IvysaurGrassPoison4056062638080601
3VenusaurGrassPoison525808283100100801
3VenusaurMega VenusaurGrassPoison62580100123122120801
4CharmanderFirenan3093952436050651
5CharmeleonFirenan4055864588065801
6CharizardFireFlying534788478109851001
6CharizardMega Charizard XFireDragon63478130111130851001
6CharizardMega Charizard YFireFlying63478104781591151001
7SquirtleWaternan3144448655064431

CREATE TABLE pokemon (
  "n" BIGINT,
  "name" VARCHAR,
  "type_1" VARCHAR,
  "type_2" VARCHAR,
  "total" BIGINT,
  "hp" BIGINT,
  "attack" BIGINT,
  "defense" BIGINT,
  "sp_atk" BIGINT,
  "sp_def" BIGINT,
  "speed" BIGINT,
  "generation" BIGINT,
  "legendary" BOOLEAN
);

Share link

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