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   = { 0, "" },
               secondround  = { 0, "" },
               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 = { "ASA", "COK", "FIJ", "NCL", "NZL", "PNG",
						  "SAM", "SOL", "TAH", "TGA", "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
    
    -- Fiji
    
    -- New Caledonia
    
    -- New Zealand
    
    -- Papua New Guinea
    
    -- Samoa
    
    -- Solomon Islands
    
    -- Tahiti
    
    -- Tonga
    
    -- Vanuatu
}

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