Jump to content

Module:Goalscorers/data/2020–21 UEFA Nations League

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by S.A. Julio (talk | contribs) at 14:57, 5 September 2020 (up). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local data = {}

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

-- date and matches played of latest update
data.updated = { -- round,       group,  matches,  update date
                    group    =   {  A =  { 4,   "2020-09-04" },
                                    B =  { 8,   "2020-09-04" },
                                    C =  { 5,   "2020-09-05" },
                                    D =  { 3,   "2020-09-05" }
                                 },
                    finals =           {   0,   "complete" }
               }

data.groups = {
                    A = { "POR", "NED", "ENG", "SUI", "BEL", "FRA", "ESP", "ITA", "BIH", "UKR", "DEN", "SWE", "CRO", "POL", "GER", "ISL" },
                    B = { "RUS", "AUT", "WAL", "CZE", "SCO", "NOR", "SRB", "FIN", "SVK", "TUR", "IRL", "NIR", "BUL", "ISR", "HUN", "ROU" },
                    C = { "GRE", "ALB", "MNE", "GEO", "MKD", "KVX", "BLR", "CYP", "EST", "SVN", "LTU", "LUX", "ARM", "AZE", "KAZ", "MDA" },
                    D = { "GIB", "FRO", "LVA", "LIE", "AND", "MLT", "SMR" }
               }

-- rounds of competition
data.rounds = { group = 3, finals = 4 }

-- all competition goalscorers
data.goalscorers = {
	-- player name, country, group, goals in league phase, goals in UNL finals
    {"[[Timo Werner]]",												"GER",	1,	0 },
    {"[[José Luis Gayà]]",											"ESP",	1,	0 },
    {"[[Andriy Yarmolenko]]",										"UKR",	1,	0 },
    {"[[Oleksandr Zinchenko (footballer)|Oleksandr Zinchenko]]",	"UKR",	1,	0 },
    {"[[Haris Seferović]]",											"SUI",	1,	0 },
    {"[[Artem Dzyuba]]",											"RUS",	2,	0 },
    {"[[Vyacheslav Karavayev]]",									"RUS",	1,	0 },
    {"[[Aleksandar Mitrović (footballer)|Aleksandar Mitrović]]",	"SRB",	1,	0 },
    {"[[Dominik Szoboszlai]]",										"HUN",	1,	0 },
    {"[[Bozhidar Kraev]]",											"BUL",	1,	0 },
    {"[[Shane Duffy]]",												"IRL",	1,	0 },
    {"[[Kieffer Moore]]",											"WAL",	1,	0 },
    {"[[Ion Nicolaescu]]",											"MDA",	1,	0 },
    {"[[Benjamin Kololli]]",										"KVX",	1,	0 },
    {"[[Klæmint Olsen]]",											"FRO",	1,	0 },
    {"[[Andreas Olsen]]",											"FRO",	1,	0 },
    {"[[Brandur Hendriksson]]",										"FRO",	1,	0 },
    {"[[Jurgen Degabriele]]",										"MLT",	1,	0 },
    {"[[Andrei Agius]]",											"MLT",	1,	0 },
    {"[[Baktiyar Zaynutdinov]]",									"KAZ",	1,	0 },
    {"[[Islambek Kuat]]",											"KAZ",	1,	0 },
    {"[[Stefano Sensi]]",											"ITA",	1,	0 },
    {"[[Edin Džeko]]",												"BIH",	1,	0 },
    {"[[Steven Bergwijn]]",											"NED",	1,	0 },
    {"[[Erling Haaland]]",											"NOR",	1,	0 },
    {"[[Michael Gregoritsch]]",										"AUT",	1,	0 },
    {"[[Marcel Sabitzer]]",											"AUT",	1,	0 },
    {"[[George Pușcaș]]",											"ROU",	1,	0 },
    {"[[Gavin Whyte]]",												"NIR",	1,	0 },
    {"[[Ryan Christie]]",											"SCO",	1,	0 },
    {"[[Eran Zahavi]]",												"ISR",	1,	0 },
    {"[[Ivan Schranz]]",											"SVK",	1,	0 },
    {"[[Vladimír Coufal]]",											"CZE",	1,	0 },
    {"[[Bořek Dočkal]]",											"CZE",	1,	0 },
    {"[[Michael Krmenčík]]",										"CZE",	1,	0 },
    {"[[Sokol Cikalleshi]]",										"ALB",	1,	0 },
    {"[[Keidi Bare]]",												"ALB",	1,	0 },
    {"[[Ezgjan Alioski]]",											"MKD",	1,	0 },
    {"[[Ilija Nestorovski]]",										"MKD",	1,	0 },
    {"[[Tigran Barseghyan]]",										"ARM",	1,	0 },
    {"[[Graeme Torrilla]]",											"GIB",	1,	0 },
}

-- all competition own goal scorers
data.owngoalscorers = {
	-- player name, country, group, { OG in group, "group OG opponents" }, { OG in playoff, "playoff OG opponent" }
}

return data