Module:Goalscorers/data/UEFA Euro 2016 qualifying

This is an old revision of this page, as edited by Jts1882 (talk | contribs) at 09:46, 13 December 2018 (create data page with partial data (top scorers from group D and play-offs)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local data = {}

data.goalscorers = {
	--    name,          country, group,     goals in group stage, goals in play-off round

    -- top goal scorers from group D
    {"Robert Lewandowski",     "Poland",    "D",           13,                  0   },
    {"Thomas Muller",          "Germany",   "D",            9,                  0   },
    {"Steven Fletcher",        "Scotland",  "D",            7,                  0   },
    {"Arkadiusz Milik",        "Poland",    "D",            6,                  0   },
    {"Robbie Keane", "Republic of Ireland", "D",            5,                  0   },
    {"Shaun Maloney",          "Scotland",  "D",            5,                  0   },
	{"Kamil Grosicki",         "Poland",    "D",            4,                  0   },
	
	-- top goalscorers from play-offs

    {"Zlatan Ibrahimovic",     "Sweden",        "G",        8,                  3   },
    {"Jonathan Walters", "Republic of Ireland", "D",        3,                  2   },
    {"Andriy Yarmolenko",      "Ukraine",       "C",        4,                  2   },

    -- note: needed to remove accents from Muller and Ibrahimovic
}

return data