Module:Goalscorers/data/2026 ASEAN Championship
Appearance
local data = {}
-- flag template
data.templates = { flag_icon_linked = "fbicon" }
-- date and matches played of latest update
data.updated = { -- round, matches, update date, OF TODAY: matches finished so far/total matches
finals = { 6, "2026-07-27", "2/2" },
}
data.groups = { -- DO NOT CHANGE THIS SECTION
}
-- controls which teams are still active in tournament, and therefore have their players bolded
-- ONLY ENABLE THIS AFTER AT LEAST ONE OF THE GROUPS HAS CONCLUDED
-- data.active_countries = { "VIE", "SGP", "IDN", "CAM", "TLS", "THA", "MAS", "PHI", "MYA", "LAO" }
-- rounds of competition
data.rounds = { finals = 3 } -- DO NOT CHANGE
-- all competition goalscorers
data.goalscorers = {
-- player wikilink, country, goals
-- order doesn't matter, that is handled by the module
-- use to combine given names for sorting purposes
-- (only the text after the first regular space is used for sorting)
-- Cambodia (CAM)
{"[[Ouk Sovann]]", "CAM", 1 },
-- Indonesia (IDN)
{"[[Mitchell Baker (footballer)|Mitchell Baker]]", "IDN", 3 },
{"[[Sandy Walsh]]", "IDN", 1 },
{"[[Jens Raven]]", "IDN", 1 },
-- Laos (LAO)
-- {"[[PLAYER]]", "LAO", 0 },
-- Malaysia (MAS)
{"[[Paulo Josué]]", "MAS", 2 },
-- Myanmar (MYA)
{"[[Myat Kaung Khant]]", "MYA", 1 },
-- Philippines (PHI)
-- {"[[PLAYER]]", "PHI", 0 },
-- Singapore (SGP))
{"[[Ilhan Fandi]]", "SGP", 2 },
{"[[Shawal Anuar]]", "SGP", 1 },
{"[[Song Ui-young]]", "SGP", 1 },
-- Thailand (THA)
{"[[Kakana Khamyok]]", "THA", 2 },
{"[[Sarach Yooyen]]", "THA", 1 },
{"[[Yotsakorn Burapha]]", "THA", 1 },
{"[[Teerasak Poeiphimai]]", "THA", 1 },
-- Vietnam (VIE)
{"[[Nguyễn Đình Bắc]]", "VIE", 3 },
{"[[Hêndrio]]", "VIE", 2 },
{"[[Nguyễn Quang Hải (footballer, born 1997)|Nguyễn Quang Hải]]", "VIE", 1 },
{"[[Rafaelson]]", "VIE", 1 },
-- Timor-Leste (TLS)
-- {"[[PLAYER]]", "TLS", 0 },
}
-- all competition own goal scorers
data.owngoalscorers = {
-- player wikilink, country, { own goals, "own goal opponents" }
{"[[Nadeo Argawinata]]", "IDN", { 1, "CAM" } },
}
return data