heonian-resources/lessons/verbs.lua
2022-05-07 20:27:37 +02:00

62 lines
2.1 KiB
Lua

print([[
]] .. makeTextEffect(EFFECT.Bold,makeTextEffect(EFFECT.Italic,colorText(COLOR.LightGray,[[
VERBS]]))) .. colorTextBackground(COLOR.Gray,[[
MODIFYING VERBS
Verbs can be preceeded by a modifier to alter its meaning.]]) .. makeTextEffect(EFFECT.Bold,colorText(COLOR.HighYellow,[[
Examples:]])) .. colorText(COLOR.Black,colorTextBackground(COLOR.HighYellow,[[
Warm | gadala
To hug | bapaku
To warmly hug | gadala bapaku]]))
)
lessonPause()
print(colorTextBackground(COLOR.Gray,[[
CONJUGATING VERBS
Verbs can be conjugated to further specify negation, tense, mood and future.
All of these categories can be combined]])
)
lessonPause()
print(colorTextBackground(COLOR.Gray,[[
1. Negation
- To negate the verb, add the infix <fa> between the verbal root
and the verbal suffix <ku>
2. Tense (choose one, or infinitive)
- Infinitive: by default
- Present: Replace the verb suffix <ku> with <ka'nya>
- Past: Replace the verb suffix <ku> with <kome>
3. Mood
- Feel: add the suffix <pash>
- Command: add the suffix <dash>
- Unsure/Shy: add the suffix <bash>
- Question: add the suffix <drash>
- Relaxed/familiarity: add the suffix <shu>
- Excitement: add the suffix <ha>
4. Future
- Use the prefix <we>]])
)
lessonPause()
print(makeTextEffect(EFFECT.Bold,colorText(COLOR.HighYellow,[[
Examples:]])) .. colorText(COLOR.Black,colorTextBackground(COLOR.HighYellow,[[
To kiss | muku | infinitive
To not kiss | mufaku | infinitive negation
Kissing | mukanya | present
Not kissing | mufakanya | present negation
Will be kissing | wemukanya | future present
Won't be kissing | wemukanya | future present negation
Have kissed | mukome | past
Have not kissed | mukome | past negation
Will have kissed | wemukome | future past
Won't have kissed | wemukome | future past negation
Want to kiss | mukupash | longing
Don't want to kiss | mufakupash | longing negation
Do kiss | mukudash | imperating
Don't kiss | mufakudash | imperating negation]]))
)