Baselight

Pokemon Dataset

900 Pokemon with stats and types

@kaggle.jaidalmotra_pokemon_dataset

Pokemon
@kaggle.jaidalmotra_pokemon_dataset.pokemon

  • 36.51 KB
  • 1072 rows
  • 13 columns
number

Number

name

Name

type1

Type1

type2

Type2

total

Total

hp

Hp

attack

Attack

defense

Defense

sp_attack

Sp Attack

sp_defense

Sp Defense

speed

Speed

generation

Generation

legendary

Legendary

1BulbasaurGrassPoison3184549496565451
2IvysaurGrassPoison4056062638080601
3VenusaurGrassPoison525808283100100801
3Mega VenusaurGrassPoison62580100123122120801
3Gigantamax VenusaurGrassPoison525808283100100801
4CharmanderFirenan3093952436050651
5CharmeleonFirenan4055864588065801
6CharizardFireFlying534788478109851001
6Mega Charizard XFireDragon63478130111130851001
6Mega Charizard YFireFlying63478104781591151001

CREATE TABLE pokemon (
  "number" BIGINT,
  "name" VARCHAR,
  "type1" VARCHAR,
  "type2" VARCHAR,
  "total" BIGINT,
  "hp" BIGINT,
  "attack" BIGINT,
  "defense" BIGINT,
  "sp_attack" BIGINT,
  "sp_defense" BIGINT,
  "speed" BIGINT,
  "generation" BIGINT,
  "legendary" BOOLEAN
);

Share link

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