Mobile Legend Tournament Match MPL Cambodia S6
Result Match in Mobile Legends Professional League Cambodia Tournament
@kaggle.bcakra_mobile_legend_tournament_match_mpl_cambodia_s6
Result Match in Mobile Legends Professional League Cambodia Tournament
@kaggle.bcakra_mobile_legend_tournament_match_mpl_cambodia_s6
This dataset contains details of each match from Mobile Legends Professional League Cambodia Season 6 (MPL Cambodia Season 6). The dataset includes information such as the date, stage, match number, participating teams, banned heroes, role bans, role picks, players' names, hero picks, MVP selection, match duration, spells used, talents chosen, K/D/A (Kill/Death/Assist) stats, gold earned, ratings, medals awarded, player levels, and win/loss outcome. The data has been manually scraped from YouTube match videos and supplemented with information from Liquipedia. Please note that some matches may have missing data.
Mobile Legends Professional League Cambodia (MPL Cambodia or MPL KH) is a professional league in Cambodia focused on Mobile Legends: Bang Bang.
A total of $40,000 USD is spread among the participants as follows:
Place | Prize (USD) | Qualifies To |
---|---|---|
1st | $16,000 | MSC 2024 |
2nd | $8,000 | - |
3rd | $5,000 | - |
4th | $3,500 | - |
5th | $2,500 | - |
6th | $2,000 | - |
7th | $1,500 | - |
8th | $1,500 | - |
Participants for places 2 to 8 are to be determined.
This dataset is intended for educational purposes only.
CREATE TABLE mpl_cambodia_season_6_boxmatch (
"date" TIMESTAMP,
"stage" VARCHAR,
"match" BIGINT,
"team" VARCHAR,
"players" VARCHAR,
"pick" VARCHAR,
"role_pick" VARCHAR,
"ban" VARCHAR,
"role_ban" VARCHAR,
"spell" VARCHAR,
"emblem" VARCHAR,
"talent_1" VARCHAR,
"talent_2" VARCHAR,
"talent_3" VARCHAR,
"time" VARCHAR,
"mvp" BIGINT,
"k" BIGINT,
"d" BIGINT,
"a" BIGINT,
"gold" BIGINT,
"level" BIGINT,
"win" VARCHAR,
"tower" BIGINT,
"lord" BIGINT,
"turtle" BIGINT,
"buff_biru" DOUBLE,
"buff_merah" DOUBLE
);
CREATE TABLE mpl_cambodia_season_6_hero_and_role (
"hero" VARCHAR,
"title" VARCHAR,
"hero_order" DOUBLE,
"role_s" VARCHAR -- Role(s),
"specialty_ies" VARCHAR -- Specialty(ies),
"lane_recommendation_s" VARCHAR -- Lane Recommendation(s),
"health" DOUBLE,
"health_regen" DOUBLE,
"mana" DOUBLE,
"mana_regen" DOUBLE,
"attack_speed" VARCHAR,
"physical_damage" DOUBLE,
"magical_damage" DOUBLE,
"physical_defense" DOUBLE,
"magical_defense" DOUBLE,
"movement_speed" DOUBLE,
"energy" DOUBLE,
"energy_regen" DOUBLE,
"price" VARCHAR,
"specialty" VARCHAR,
"win_rate" VARCHAR,
"hero_1" VARCHAR,
"n__name_pasive_abilities" VARCHAR -- Name Pasive Abilities,
"ability" VARCHAR,
"pasive_deskripsi" VARCHAR,
"skill_1_name_abilities" VARCHAR,
"skill_1_ability" VARCHAR,
"skill_1_pasive_deskripsi" VARCHAR,
"skill_2_name_abilities" VARCHAR,
"skill_2_ability" VARCHAR,
"skill_2_pasive_deskripsi" VARCHAR,
"skill_3_name_abilities" VARCHAR,
"skill_3_ability" VARCHAR,
"skill_3_pasive_deskripsi" VARCHAR
);
CREATE TABLE mpl_cambodia_season_6_item_stats (
"name" VARCHAR,
"name_ability" VARCHAR,
"ability_deskirpsi" VARCHAR,
"attributes" VARCHAR
);
CREATE TABLE mpl_cambodia_season_6_jungle_and_roam (
"name" VARCHAR,
"ability" VARCHAR
);
CREATE TABLE mpl_cambodia_season_6_spell_battle (
"battle_spell" VARCHAR,
"description" VARCHAR
);
Anyone who has the link will be able to view this.