местоимения

This commit is contained in:
Alexander Yakovlev 2021-01-09 00:04:47 +07:00
parent d0c15deab9
commit 4c1ae44986
Signed by: oreolek
GPG key ID: 1CDC4B7820C93BD3
2 changed files with 13 additions and 10 deletions

View file

@ -2,6 +2,9 @@
### История изменений
#### 1.3.5 - 8 января
- Прояснил местоимения
#### 1.3.4 - 8 января
- Правка резака

View file

@ -1,5 +1,5 @@
--$Name: Полёт в Петербург$
--$Version: 1.3.4$
--$Version: 1.3.5$
--$Author:Александр Яковлев$
require "fmt"
@ -73,11 +73,11 @@ dlg {
{
nam = 'phr_she',
cond = true,
'она/её',
'она/ты',
function()
pl.plural = false;
pl.pronouns = 'fem';
pl.strpronouns = 'она/её';
pl.strpronouns = 'она/ты';
std.player.word = 'ты/жр,2л';
here().continue();
end
@ -85,11 +85,11 @@ dlg {
{
nam = 'phr_he',
cond = true,
'он/его',
'он/ты',
function()
pl.plural = false;
pl.pronouns = 'masc';
pl.strpronouns = 'он/его';
pl.strpronouns = 'он/ты';
std.player.word = 'ты/мр,2л';
here().continue();
end
@ -97,23 +97,23 @@ dlg {
{
nam = 'phr_theysingle',
cond = true,
'оно/их',
'оно/ты',
function()
pl.plural = false;
pl.pronouns = 'other';
pl.strpronouns = 'оно/их';
pl.strpronouns = 'оно/ты';
std.player.word = 'вы/cр,2л';
here().continue();
end
};
{
nam = 'phr_theyplural',
nam = 'phr_plural',
cond = true,
'они/их',
'они/вы',
function()
pl.plural = true;
pl.pronouns = 'other';
pl.strpronouns = 'они/их';
pl.strpronouns = 'они/вы';
std.player.word = 'вы/cр,мн,2л';
here().continue();
end