Documentation for this module may be created at Module:DartsRankings/data/PDCAsia Players/doc
local data = {}
-- This list includes BOTH PDC Asia, PDC China, and PDJ players,
-- Since there is some overlap, both rankings can pull from this list.
-- list of currently ranked PDC playesr by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match PDC Asia 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 = {
{ "Seigo Asada" , "JPN" , "Seigo" , "Asada" , 1 },
{ "Yoshihisa Baba" , "JPN" , "Yoshihisa" , "Baba" , 0 },
{ "Masumi Chino" , "JPN" , "Masumi" , "Chino" , 0 },
{ "Lourence Ilagan" , "PHI" , "Lourence" , "Ilagan" , 1 },
{ "Royden Lam" , "HKG" , "Royden" , "Lam" , 1 },
{ "Kai Fan Leung" , "HKG" , "Kai Fan" , "Leung" , 1 },
{ "Man Lok Leung" , "HKG" , "Man Lok" , "Leung" , 0 },
{ "Harith Lim" , "SGP" , "Harith" , "Lim" , 1 },
{ "Paul Lim" , "SGP" , "Paul" , "Lim" , 1 },
{ "Jianfeng Lu" , "CHN" , "Jianfeng" , "Lu" , 0 },
{ "Wenqing Liu" , "CHN" , "Wenqing" , "Liu" , 0 },
{ "Noel Malicdem" , "PHI" , "Noel" , "Malicdem" , 1 },
{ "Jun Matsuda" , "JPN" , "Jun" , "Matsuda" , 0 },
{ "Haruki Muramatsu" , "JPN" , "Haruki" , "Muramatsu" , 1 },
{ "Paolo Nebrida" , "PHI" , "Paolo" , "Nebrida" , 0 },
{ "Teng Lieh Pupo" , "TAI" , "Teng Lieh" , "Pupo" , 0 },
{ "Lihao Wen" , "CHN" , "Lihao" , "Wen" , 0 },
{ "Yuki Yamada" , "JPN" , "Yuki" , "Yamada" , 1 , "darts player" },
{ "Bin Zheng" , "CHN" , "Bin" , "Zheng" , 0 },
{ "Xiaochen Zong" , "CHN" , "Zong" , "Xiao Chen" , 1 },
}
return data