Full Pokemon Stats, Abilities And More Data
This is a full database of everything you would want to know about a Pokemon
@kaggle.elijahiadusi_full_pokemon_stats_abilities_and_more_data
This is a full database of everything you would want to know about a Pokemon
@kaggle.elijahiadusi_full_pokemon_stats_abilities_and_more_data
This is all the Pokemon data since to the most recent generation. Will be updated with each generation. The data was web-scraped from https://pokemondb.net/pokedex/all. It includes more than just stats.
CREATE TABLE pokemon_data (
"unnamed_0" VARCHAR -- Unnamed: 0,
"pokemon_number" BIGINT,
"stat_total" BIGINT,
"hp" BIGINT,
"attack" BIGINT,
"defense" BIGINT,
"sp_atk" BIGINT,
"sp_def" BIGINT,
"speed" BIGINT,
"mega" BOOLEAN,
"first_type" VARCHAR,
"second_type" VARCHAR,
"species" VARCHAR,
"first_ability" VARCHAR,
"second_ability" VARCHAR,
"hidden_ability" VARCHAR,
"generation" VARCHAR,
"egg_group_1" VARCHAR,
"egg_group_2" VARCHAR,
"is_sub_legendary" BOOLEAN,
"is_legendary" BOOLEAN,
"is_mythical" BOOLEAN
);Anyone who has the link will be able to view this.