1
0
Fork 0
mirror of https://gitlab.com/Oreolek/duel.git synced 2024-07-04 15:54:29 +03:00
duel/tools.lua

37 lines
633 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

engineer = function()
if pl.plural == true then
return 'инженеры'
end
return 'инженер'
end
pronoun_3 = function()
if pl.gender == 'she' then
return 'она'
end
if pl.gender == 'he' then
return 'он'
end
if pl.gender == 'it' then
return 'оно'
end
return 'они'
end
pronoun_1 = function()
if pl.plural == true then
return 'мы'
end
return 'я'
end
endings = function()
if pl.plural == true then
return 'и'
end
if pl.gender == 'she' then
return 'а'
end
return ''
end
rndstr = function(strings)
return strings[rnd(stead.table.maxn(strings))];
end