Jump to content

Module:DartsRankings/data/WSDT Players

From Wikipedia, the free encyclopedia
local data = {}





-- list of currently ranked WSDT players by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match PDC/PDPA listing (case insensitive)
-- 2nd entry is the 3 letter country code for the player
-- 3rd entry should be the first name (for sorting purposes) of the wikipedia page
-- 4th entry should be the last name (for sorting purposes) of the wikipedia page
-- 5th entry iundicates if the page exists (to reduce redlinks)
--[[6th entry is optional, and is the disambiguator for page (for Template:Sortname) ]]--
data.library = { 
	{ "Martin Adams" , "ENG" , "Martin" , "Adams" , 1 },
	{ "Bob Anderson" , "ENG" , "Bob" , "Anderson" , 1 , "darts player" },
	{ "Lisa Ashton" , "ENG" , "Lisa" , "Ashton" , 1 },
	{ "Kevin Burness" , "NIR" , "Kevin" , "Burness" , 1 },
	{ "Richie Burnett" , "WAL" , "Richie" , "Burnett" , 1 },
	{ "Larry Butler" , "USA" , "Larry" , "Butler" , 1 , "darts player" },
	{ "Keith Deller" , "ENG" , "Keith" , "Deller" , 1 },
	{ "Darryl Fitton" , "ENG" , "Darryl" , "Fitton" , 1 },
	{ "Trina Gulliver" , "ENG" , "Trina" , "Gulliver" , 1 },
	{ "Ted Hankey" , "ENG" , "Ted" , "Hankey" , 1 },
	{ "Deta Hedman" , "ENG" , "Deta" , "Hedman" , 1 },
	{ "Richie Howson" , "ENG" , "Richie" , "Howson" , 1 },
	{ "Terry Jenkins" , "ENG" , "Terry" , "Jenkins" , 1 },
	{ "Paul Lim" , "SIN" , "Paul" , "Lim" , 1 },
	{ "John Lowe" , "ENG" , "John" , "Lowe" , 1 },
	{ "Peter Manley" , "ENG" , "Peter" , "Manley" , 1 },
	{ "Tony O'Shea" , "ENG" , "Tony" , "O'Shea" , 1 },
	{ "John Part" , "CAN" , "John" , "Part" , 1 },
	{ "Dave Prins" , "ENG" , "Dave" , "Prins" , 1 },
	{ "Roland Scholten" , "NED" , "Roland" , "Scholten" , 1 },
	{ "Phil Taylor" , "ENG" , "Phil" , "Taylor" , 1 , "darts player" },
	{ "Robert Thornton" , "SCO" , "Robert" , "Thornton" , 1 , "darts player" },
	{ "Les Wallace" , "SCO" , "Les" , "Wallace" , 1 },
	{ "John Walton" , "ENG" , "John" , "Walton" , 1 , "darts player" },
	{ "Wayne Warren" , "WAL" , "Wayne" , "Warren" , 1 },
	{ "Alan Warriner" , "ENG" , "Alan" , "Warriner-Little" , 1 },
}


return data