Testing the gameplay. Looks damn good!

This commit is contained in:
Alexander Yakovlev 2011-11-15 15:27:39 +07:00
parent 1ac3bebde5
commit 3d8193c92a
2 changed files with 18 additions and 4 deletions

View file

@ -19,4 +19,7 @@ word_simple = function(word)
return true return true
end end
} }
end end
newline = vobj("^^", "^^")
space = vobj(" ", " ")
signed = vobj(" ", txtr("Проверено: цензор ███████████^^"))

View file

@ -2,10 +2,21 @@
instead_version "1.5.2" instead_version "1.5.2"
game.codepage="UTF-8"; game.codepage="UTF-8";
require 'para' require 'para'
require 'dash'
dofile 'engine.lua' dofile 'engine.lua'
main = room{ main = room{
nam = 'Тест', nam = 'Почтовый ящик 107. Ул. Елизарова, 76 -- г. Новосибирск, Красный проспект, 23-12',
dsc = "", dsc = "",
obj = {word_simple('Пожалуйста.')} obj = {
}; word_simple('Дорогая'), space, word_simple('мамочка!'), newline,
word_simple('Пишет'), space, word_simple('тебе'), space, word_simple('твой'), space, word_simple('любимый'), space, word_simple('сын'), space, word_simple('Степан.'), newline,
word_simple('Я'), space, word_simple('живу'), space, word_simple('хорошо.'), newline,
signed, 'sign_main'
}
};
sign_main = obj{
nam = 'send',
dsc = txtc(txtu('{ОТПРАВИТЬ}')),
act = true
}