local data = {}
-- information about other templates used by module
data.templates = { flag_icon_linked = "fbicon" } -- template for flag icon and team link [fbicon|fbwicon]
-- date of latest update
data.updated = { day = 11, month = 'December', year =2018 }
-- rounds of competition
data.rounds = { group = 4, playoffs =5 } -- round with column for goals
data.goalscorers = {
-- player name, country, group, goals in group stage, goals in play-off round
-- top goal scorers from group D
{"Steven Fletcher", "Scotland", "D", 7, 0 },
{"Kamil Grosicki", "Poland", "D", 4, 0 },
{"Robbie Keane", "Republic of Ireland", "D", 5, 0 },
{"Robert Lewandowski", "Poland", "D", 13, 0 },
{"Shaun Maloney", "Scotland", "D", 5, 0 },
{"Arkadiusz Milik", "Poland", "D", 6, 0 },
{"Thomas Müller", "Germany", "D", 9, 0 },
-- top goalscorers from play-offs
{"Zlatan Ibrahimović", "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
}
data.owngoalscorers = {
}
return data