League Of Legends Champions
The dataset of LoL champions with their stats
@kaggle.cutedango_league_of_legends_champions
The dataset of LoL champions with their stats
@kaggle.cutedango_league_of_legends_champions
This dataset contains detailed information about 167 champions from League of Legends. The dataset can be used for various purposes such as strategy development or statistical analysis.
Column descriptions:
More information about champion statistics can be found there: https://leagueoflegends.fandom.com/wiki/Champion_statistic
Information about classification:
https://leagueoflegends.fandom.com/wiki/Champion_classes#Development
CREATE TABLE lol_champions (
"name" VARCHAR,
"tags" VARCHAR,
"role" VARCHAR,
"range_type" VARCHAR,
"resourse_type" VARCHAR,
"base_hp" BIGINT,
"hp_per_lvl" BIGINT,
"base_mana" BIGINT,
"mana_per_lvl" DOUBLE,
"movement_speed" BIGINT,
"base_armor" BIGINT,
"armor_per_lvl" DOUBLE,
"base_magic_resistance" BIGINT,
"magic_resistance_per_lvl" DOUBLE,
"attack_range" BIGINT,
"hp_regeneration" DOUBLE,
"hp_regeneration_per_lvl" DOUBLE,
"mana_regeneration" DOUBLE,
"mana_regeneration_per_lvl" DOUBLE,
"attack_damage" BIGINT,
"attack_damage_per_lvl" DOUBLE,
"attack_speed_per_lvl" DOUBLE,
"attack_speed" DOUBLE,
"as_ratio" DOUBLE
);Anyone who has the link will be able to view this.