45,698
edits
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
or sub(stem, -1) == "j" and stem or stem .. "r") | or sub(stem, -1) == "j" and stem or stem .. "r") | ||
data.decl_type = "I" | data.decl_type = "I" | ||
table.insert(data.categories, "High Valyrian class-I adjectives") | if not data.no_cat then table.insert(data.categories, "High Valyrian class-I adjectives") end | ||
data.forms["eq"] = {stem .. "āpa"} | data.forms["eq"] = {stem .. "āpa"} | ||
Line 181: | Line 181: | ||
data.decl_type = "II" | data.decl_type = "II" | ||
table.insert(data.categories, "High Valyrian class-II adjectives") | if not data.no_cat then table.insert(data.categories, "High Valyrian class-II adjectives") end | ||
data.forms["eq"] = {stemm .. "pa"} | data.forms["eq"] = {stemm .. "pa"} | ||
Line 270: | Line 270: | ||
local stem = args[1] | local stem = args[1] | ||
data.decl_type = "IIr" | data.decl_type = "IIr" | ||
table.insert(data.categories, "High Valyrian class-IIr adjectives") | if not data.no_cat then table.insert(data.categories, "High Valyrian class-IIr adjectives") end | ||
data.forms["eq"] = {stem .. "rpa"} | data.forms["eq"] = {stem .. "rpa"} | ||
Line 360: | Line 360: | ||
local stemm = sub(stem, -1) == "n" and sub(stem, 1, -2) .. "m" or stem | local stemm = sub(stem, -1) == "n" and sub(stem, 1, -2) .. "m" or stem | ||
data.decl_type = "III" | data.decl_type = "III" | ||
table.insert(data.categories, "High Valyrian class-III adjectives") | if not data.no_cat then table.insert(data.categories, "High Valyrian class-III adjectives") end | ||
data.forms["eq"] = {stemm .. "ipa"} | data.forms["eq"] = {stemm .. "ipa"} |