Module:PoliticalParty/data: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (Undo revision 234069 by 515797455988850689 (talk)) Tag: Undo |
||
Line 1: | Line 1: | ||
p = {} | local p = {} | ||
p.partyNames = { | |||
["UAP"] = "Unity and Progress Party", | |||
["Unity and Progress"] = "Unity and Progress Party", | |||
["ADP"] = "Antarctic Democratic Party", | |||
["CLAU"] = "Classical Liberalists of the Antarctic Union", | |||
["PRP"] = "Polar Republic Party" | |||
} | |||
p. | --color shortname altname tablecolor | ||
p.parties = { | |||
["Unity and Progress Party"] = {"#F600C2", "UAP", "Unity and Progress", "#F67CDD"}, | |||
["Antarctic Democratic Party"] = {"#6f56d6", "ADP", "Antarctic Democratic Party", "#A798E5"}, | |||
["Classical Liberalists of the Antarctic Union"] = {"#fdd116", "CLAU", "Classical Liberalists", "#FAE487"}, | |||
["Polar Republic Party"] = {"red", "PRP", "Polar Republic", "#FB7A7A"} | |||
} | |||
return p | return p |
Revision as of 07:28, 14 November 2023
Documentation for this module may be created at Module:PoliticalParty/data/doc
local p = {}
p.partyNames = {
["UAP"] = "Unity and Progress Party",
["Unity and Progress"] = "Unity and Progress Party",
["ADP"] = "Antarctic Democratic Party",
["CLAU"] = "Classical Liberalists of the Antarctic Union",
["PRP"] = "Polar Republic Party"
}
--color shortname altname tablecolor
p.parties = {
["Unity and Progress Party"] = {"#F600C2", "UAP", "Unity and Progress", "#F67CDD"},
["Antarctic Democratic Party"] = {"#6f56d6", "ADP", "Antarctic Democratic Party", "#A798E5"},
["Classical Liberalists of the Antarctic Union"] = {"#fdd116", "CLAU", "Classical Liberalists", "#FAE487"},
["Polar Republic Party"] = {"red", "PRP", "Polar Republic", "#FB7A7A"}
}
return p