Jump to content

Module:Goalscorers/data/2026 AFC Women's Asian Cup

From Wikipedia, the free encyclopedia
local data = {}

-- flag template
data.templates = { flag_icon_linked = "fbwicon" }

-- date and matches played of latest update
data.updated = {    -- round, matches, update date
               qualification = {0, "" },
               tournament = { 0, "" } }

-- controls which teams are still active in qualifying, and therefore have their players bolded
data.active_countries = {	"AUS", "CHN", "JPN", "KOR",
							"PRK", "VIE", "PHI", "TPE", "THA", "UZB", "MYA", "IRN", "IND", "JOR", "HKG",
							"BHR", "IDN", "GUM", "MAS", "NEP", "LAO", "UAE", "CAM", "MNG", "KGZ", "BAN",
							"LBN", "PLE", "SGP", "TKM", "TJK", "SRI", "TLS", "MDV", "KSA", "BHU", "IRQ" }
						  
-- rounds of competition
data.rounds = { qualification = 3, tournament = 4 } -- DO NOT CHANGE

-- all competition goalscorers
data.goalscorers = {
    -- player name, country, overall goals
    -- {"[[NAME]]",	"CODE",	qualification goals, tournament goals },

    -- Australia

    -- Bahrain

    -- Bangladesh

    -- Bhutan

    -- Cambodia

    -- China

    -- Chinese Taipei

    -- Guam

    -- Hong Kong

    -- India

    -- Indonesia

    -- Iran

    -- Iraq

    -- Japan

    -- Jordan

    -- Kyrgyzstan

    -- Laos

    -- Lebanon

    -- Malaysia

    -- Maldives

    -- Mongolia

    -- Myanmar

    -- Nepal

    -- North Korea

    -- Palestine

    -- Philippines

    -- Saudi Arabia

    -- Singapore

    -- South Korea

    -- Sri Lanka

    -- Tajikistan

    -- Thailand

    -- Timor-Leste

    -- Turkmenistan

    -- United Arab Emirates

    -- Uzbekistan

    -- Vietnam

}

-- all competition own goal scorers
data.owngoalscorers = {
	-- player name, country, { qualification OG, "OG opponents" }, { tournament OG, “OG opponents” }

}
return data