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

local data = {}

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

-- date and matches played of latest update
data.updated = {    -- round, matches, update date
               group      = { A = { 0, "" },
                    	      B = { 0, "" },
                    	      C = { 0, "" },
                    	      D = { 0, "" },
                    	      E = { 0, "" },
                    	      F = { 0, "" },
                    	      G = { 0, "" },
                    	      H = { 0, "" },
                    	      I = { 0, "" },
                    	      J = { 0, "" },
               				  K = { 0, "" },
               				  L = { 0, "" } },
               secondround  = { 0, "" } }

data.groups = { -- DO NOT CHANGE THIS SECTION
              A = { "", "", "", "" },
              B = { "", "", "", "" },
              C = { "", "", "", "" },
              D = { "", "", "", "" },
              E = { "", "", "", "" },
              F = { "", "", "", "" },
              G = { "", "", "", "", "" },
              H = { "", "", "", "", "" },
              I = { "", "", "", "", "" },
              J = { "", "", "", "", "" },
			  K = { "", "", "", "", "" },
			  L = { "", "", "", "", "" } }

-- controls which teams are still active in qualifying, and therefore have their players bolded
data.active_countries = { "ALB", "AND", "ARM", "AUT", "AZE", "BLR", "BEL", "BIH", "BUL",
						  "CRO", "CYP", "CZE", "DEN", "ENG", "EST", "FRO", "FIN", "FRA",
						  "GEO", "GER", "GIB", "GRE", "HUN", "ISL", "ISR", "ITA", "KAZ",
						  "KOS", "LVA", "LIE", "LTU", "LUX", "MLT", "MDA", "MNE", "NED",
						  "MKD", "NIR", "NOR", "POL", "POR", "IRL", "ROU", "SMR", "SCO",
						  "SRB", "SVK", "SVN", "ESP", "SWE", "SUI", "TUR", "UKR", "WAL" }
						  
-- rounds of competition
data.rounds = { group = 3, secondround = 4 } -- DO NOT CHANGE

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

    -- Andorra
    
    -- Armenia
    
    -- Austria
    
    -- Azerbaijan
    
    -- Belarus
    
    -- Belgium
    
    -- Bosnia and Herzegovina
    
    -- Bulgaria
    
    -- Croatia
    
    -- Cyprus
    
    -- Czech Republic
    
    -- Denmark
    
    -- England
    
    -- Estonia
    
    -- Faroe Islands
    
    -- Finland
    
    -- France
    
    -- Georgia
    
    -- Germany
    
    -- Gibraltar
    
    -- Greece
    
    -- Hungary
    
    -- Iceland
    
    -- Israel
    
    -- Italy
    
    -- Kazakhstan
    
    -- Kosovo
    
    -- Latvia
    
    -- Liechtenstein
    
    -- Lithuania
    
    -- Luxembourg
    
    -- Malta
    
    -- Moldova
    
    -- Montenegro
    
    -- Netherlands
    
    -- North Macedonia
    
    -- Northern Ireland
    
    -- Norway
    
    -- Poland
    
    -- Portugal
    
    -- Republic of Ireland
    
    -- Romania
    
    -- San Marino
    
    -- Scotland
    
    -- Serbia
    
    -- Slovakia
    
    -- Slovenia
    
    -- Spain
    
    -- Sweden
    
    -- Switzerland
    
    -- Turkey
    
    -- Ukraine
    
    -- Wales

}

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