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

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  = { 4, "2024-10-12" },
               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
    {"[[Roy Krishna]]",			"FIJ",	0, 1, 0 },
    
    -- New Caledonia
    {"[[Joseph Athale]]",		"NCL",	0, 1, 0 },
    {"[[Georges Gope-Fenepej]]","NCL",	0, 1, 0 },
    {"[[Germain Haewegene]]",	"NCL",	0, 1, 0 },
    
    -- New Zealand
    {"[[Elijah Just]]",			"NZL",	0, 1, 0 },
    {"[[Ben Waine]]",			"NZL",	0, 1, 0 },
    {"[[Chris Wood (footballer, born 1991)|Chris Wood]]",	"NZL",	0, 1, 0 },
    
    -- Papua New Guinea
    {"[[Tommy Semmy]]",			"PNG",	0, 1, 0 },
    
    -- 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 },
    {"[[Nathan Viliamu]]",		"SAM",	0, 1, 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
    {"[[John Alick]]",			"VAN",	0, 2, 0 },
    {"[[Mitch Cooper]]",		"VAN",	0, 1, 0 },
    {"[[Bong Kalo]]",			"VAN",	0, 1, 0 },
}

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