conlang-heonian/lessons/nouns.lua
UndeadMaelys 38fb2f7a51 lesson
2022-03-31 10:09:28 +02:00

54 lines
1.5 KiB
Lua

print([[
]] .. makeTextEffect(EFFECT.Bold,makeTextEffect(EFFECT.Italic,colorText(COLOR.LightGray,[[
NOUNS]]))) .. colorTextBackground(COLOR.Gray,[[
MODIFYING NOUNS
Nouns can be preceeded by a modifier to alter its meaning.]])
)
lessonPause()
print(makeTextEffect(EFFECT.Bold,colorText(COLOR.HighYellow,[[
Examples:]])) .. colorText(COLOR.Black,colorTextBackground(COLOR.HighYellow,[[
Fruit | shepa |
Orange | lunyaton | (modifier & noun!)
Orange fruit | lunyaton shepa |]])) .. [[
]]
)
lessonPause()
print(colorTextBackground(COLOR.Gray,[[
PLURAL NOUNS
Nouns can be made plural by using the suffix "-n".
This signifies an ambiguous amount of noun, greater than one.]]) .. [[
]]
)
lessonPause()
print(colorTextBackground(COLOR.Gray,[[
POSSESIVE RELATION
Nouns can be modified by another noun or pronouns using the suffix "-la".
This signifies a possesive from the first noun onto the second.
If the plural suffix is added to the possesive relation, it brings
the sense that it is common of all instances.]])
)
lessonPause()
print(makeTextEffect(EFFECT.Bold,colorText(COLOR.HighYellow,[[
Examples:]])) .. colorText(COLOR.Black,colorTextBackground(COLOR.HighYellow,[[
Fruit | shepa
Fruits | shepan
Of the fruit | shepala
Of the fruits | shepanla
Of all instances of the fruit | shepalan
Of all fruits | shepanlan]])) .. [[
]])