Module:DartsRankings/data/CDC Players

MyWikiBiz, Author Your Legacy — Sunday May 12, 2024
Jump to navigationJump to search

Documentation for this module may be created at Module:DartsRankings/data/CDC Players/doc

local data = {}


-- list of currently ranked PDC playesr by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match CDC 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 = { 
	{ "Danny Baggish" , "USA" , "Danny" , "Baggish" , 1 },
	{ "Joe Berrcroft" , "USA" , "Joe" , "Berrcroft" , 0 },
	{ "Jason Brandon" , "USA" , "Jason" , "Brandon" , 0 },
	{ "Shawn Brenneman" , "CAN" , "Shawn" , "Brenneman" , 1 },
	{ "Larry Butler" , "USA" , "Larry" , "Butler" , 1 , "darts player" },
	{ "David Cameron" , "CAN" , "David" , "Cameron" , 1 },
	{ "Matt Campbell" , "CAN" , "Matt" , "Campbell" , 1 , "darts player" },
	{ "Joe Chaney" , "USA" , "Joe" , "Chaney" , 1 },
	{ "Kylie Edmunds" , "CAN" , "Kylie" , "Edmunds" , 0 },
	{ "David Fatum" , "USA" , "David" , "Fatum" , 1 },
	{ "Gino Florian" , "USA" , "Gino" , "Florian" , 0 },
	{ "Leonard Gates" , "USA" , "Leonard" , "Gates" , 0 },
	{ "Joe Huffman" , "USA" , "Joe" , "Huffman" , 0 },
	{ "Dan Lauby" , "USA" , "Dan" , "Lauby" , 1 },
	{ "Danny Lauby Jr." , "USA" , "Danny" , "Lauby Jr." , 1 },
	{ "Nick Linberg" , "USA" , "Nick" , "Linberg" , 0 },
	{ "Jim Long" , "CAN" , "Jim" , "Long" , 1 , "darts player" },
	{ "Gary Mawson" , "USA" , "Gary" , "Mawson" , 1 },
	{ "Jeremiah Millar" , "USA" , "Jeremiah" , "Millar" , 0 },
	{ "Dawson Murschell" , "CAN" , "Dawson" , "Murschell" , 1 },
	{ "Timmy Nicoll" , "USA" , "Timmy" , "Nicoll" , 0 },
	{ "John Norman Jnr" , "CAN" , "John" , "Norman Jnr" , 1 },
	{ "Danny Pace" , "USA" , "Danny" , "Pace" , 0 },
	{ "John Part" , "CAN" , "John" , "Part" , 1 },
	{ "Chuck Puleo" , "USA" , "Chuck" , "Puleo" , 1 },
	{ "Dave Richarson" , "CAN" , "Dave" , "Richarson" , 1 , "darts player" },
	{ "DJ Sayre" , "USA" , "DJ" , "Sayre" , 1 },
	{ "Jeff Smith" , "CAN" , "Jeff" , "Smith" , 1 , "darts player" },
	{ "Ross Snook" , "CAN" , "Ross" , "Snook" , 1 , "darts player" },
	{ "Chris White" , "USA" , "Chris" , "White" , 1 , "darts player" },
	{ "Jim Widmayer" , "USA" , "Jim" , "Widmayer" , 1 },
	{ "Darin Young" , "USA" , "Darin" , "Young" , 1 },
}

return data