Module:Goalscorers/data/2026 FIFA World Cup qualification (OFC)

From English Wikipedia @ Freddythechick
local data = {}

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

-- date and matches played of latest update
data.updated = {    -- round, matches, update date
               firstround   = { 3, "complete" },
               secondround  = { 0, "2024-09-09" },
               thirdround   = { 0, "" }
               }

data.groups = { -- DO NOT CHANGE THIS SECTION
              }

-- controls which teams are still active in qualifying, and therefore have their players bolded
data.active_countries = { "FIJ", "NCL", "NZL", "PNG",
						  "SAM", "SOL", "TAH", "VAN" }
						  
-- rounds of competition
data.rounds = { firstround = 3, secondround = 4, thirdround = 5 } -- DO NOT CHANGE

-- all competition goalscorers
data.goalscorers = {
    -- player name, country, goals scored
    -- {"[[NAME]]",	"CODE",	R1 goals, R2 goals, R3 goals },
    
    -- American Samoa
    
    -- Cook Islands
    {"[[Taci Kumsuz]]",			"COK",	1, 0, 0 },
    
    -- Fiji
    
    -- New Caledonia
    
    -- New Zealand
    
    -- Papua New Guinea
    
    -- Samoa
    {"[[Jefferson Faamatau]]",	"SAM",	1, 0, 0 },
    {"[[Luke Salisbury]]",		"SAM",	1, 0, 0 },
    {"[[Dilo Tumua]]",			"SAM",	1, 0, 0 },
    {"[[Jarvis Vaai]]",			"SAM",	1, 0, 0 },
    
    -- Solomon Islands
    
    -- Tahiti
    
    -- Tonga
    {"[[Christopher Kefu]]",	"TGA",	1, 0, 0 },
    {"[[Hemaloto Polovili]]",	"TGA",	1, 0, 0 },
    {"[[Ulafala Sonasi]]",		"TGA",	1, 0, 0 },
    {"[[Viliami Tikoipau]]",	"TGA",	1, 0, 0 },
    
    -- Vanuatu
}

-- all competition own goal scorers
data.owngoalscorers = {
	-- player name, country, { OG, "OG opponents" }
	
}
return data