10,916
editsMore actions
no edit summary
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
end | end | ||
-- We don't need to cover most regular English words, as they're very unlikely | |||
-- to ever be used with this module. The kind of stuff you want to add here is | |||
-- gameplay elements like classes, weapons, races, etc. that you may want to | |||
-- pluralize in a listing. | |||
local specialPlurals = { | local specialPlurals = { | ||
-- Classes | |||
Thief = "Thieves", | Thief = "Thieves", | ||
thief = "thieves", | thief = "thieves", | ||
-- Weapons | |||
Quarterstaff = "Quarterstaves", | Quarterstaff = "Quarterstaves", | ||
quarterstaff = "quarterstaves", | quarterstaff = "quarterstaves", | ||
-- Races | |||
Elf = "Elves", | |||
elf = "elves", | |||
["Half-Elf"] = "Half-Elves", | |||
["half-elf"] = "half-elves", | |||
Dwarf = "Dwarves", | |||
dwarf = "dwarves", | |||
Gith = "Gith", | |||
gith = "gith", | |||
Githyanki = "Githyanki", | |||
githyanki = "githyanki", | |||
Duergar = "Duergar", | |||
duergar = "duergar", | |||
Drow = "Drow", | |||
drow = "drow", | |||
} | } | ||