Jump to content

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

From Wikipedia, the free encyclopedia
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  = { 12, "complete" },
               thirdround   = { 0, "2024-11-18" }
               }

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", "TAH" }
						  
-- 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
    {"[[Thomas Dunn (footballer, born 2003)|Thomas Dunn]]",	"FIJ",	0, 1, 0 },
    {"[[Roy Krishna]]",			"FIJ",	0, 3, 0 },
    {"[[Merrill Nand]]",		"FIJ",	0, 1, 0 },
    
    -- New Caledonia
    {"[[Joseph Athale]]",		"NCL",	0, 3, 0 },
    {"[[Georges Gope-Fenepej]]","NCL",	0, 1, 0 },
    {"[[Germain Haewegene]]",	"NCL",	0, 1, 0 },
    {"[[Jean-Jacques Katrawa]]","NCL",  0, 1, 0 },
    {"[[Gérard Waia]]",			"NCL",	0, 1, 0 },
    
    -- New Zealand
    {"[[Tyler Bindon]]",		"NZL",	0, 1, 0 },
    {"[[Francis de Vries]]",	"NZL",	0, 1, 0 },
    {"[[Matthew Garbett]]",		"NZL",	0, 1, 0 },
    {"[[Elijah Just]]",			"NZL",	0, 3, 0 },
    {"[[Callum McCowatt]]",		"NZL",	0, 2, 0 },
    {"[[Sarpreet Singh]]",		"NZL",	0, 1, 0 },
    {"[[Marko Stamenić]]",		"NZL",	0, 1, 0 },
    {"[[Ben Waine]]",			"NZL",	0, 2, 0 },
    {"[[Chris Wood (footballer, born 1991)|Chris Wood]]",	"NZL",	0, 6, 0 },
    
    -- Papua New Guinea
    {"[[Raymond Gunemba]]",		"PNG",	0, 1, 0 },
    {"[[Joseph Joe]]",			"PNG",	0, 1, 0 },
    {"[[Ati Kepo]]",			"PNG",	0, 1, 0 },
    {"[[Tommy Semmy]]",			"PNG",	0, 2, 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
    {"[[Javin Alick]]",			"SOL",	0, 1, 0 },
    {"[[Junior David]]",        "SOL",  0, 1, 0 },
    {"[[Micah Lea'alafa]]",     "SOL",  0, 1, 0 },
    {"[[Raphael Lea'i]]",		"SOL",	0, 1, 0 },
    
    -- Tahiti
    {"[[Eddy Kaspard]]",		"TAH",	0, 1, 0 },
    {"[[Benoit Mathon]]",		"TAH",	0, 2, 0 },
    {"[[Teaonui Tehau]]",		"TAH",	0, 1, 0 },
    
    -- 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 },
    {"[[Jordy Tasip]]",			"VAN",	0, 1, 0 },
}

-- all competition own goal scorers
data.owngoalscorers = {
	-- player name, country, { OG, "OG opponents" }
    {"[[Brian Kaltak]]",		"VAN",	0, { 1, "New Zealand" }, 0 },
    {"[[Johnathan Spokeyjack]]",	"VAN",	0, { 1, "Tahiti" }, 0 },
	
}
return data