cat_zh/main-zh.lua

49 lines
1.9 KiB
Lua
Raw Normal View History

2023-12-10 11:28:07 +00:00
game.codepage="UTF-8";
game.act = 'Can\'t do that.';
game.inv = 'Hmm... Wrong...';
game.use = '不起作用……';
game.dsc = [[Commands:^
look (or just Enter), act <on what> (or just on what), use <what> [on what], go <where>,^
back, inv, way, obj, quit, save <fname>, load <fname>. Tab to autocomplete.^^
Oleg G., Vladimir P., Ilia R., et al. in the science-fiction and dramatic text adventure by Pyotr K.^^
THE RETURNING OF THE QUANTUM CAT^^
Former hacker. He left to live in the forest. But he's back. Back for his cat.^^
I JUST CAME TO GET BACK MY CAT... ^^]];
--require "dbg";
me().nam = 'Oleg';
main = room {
nam = '夺回量子猫',
pic = 'gfx/thecat.png',
dsc = [[
仿^^
西^^
IT
^^
]],
obj = { vobj(1,'Next','{继续}.') },
act = function()
return walk('home');
end,
exit = function()
set_music("mus/ofd.xm");
end,
};
set_music("mus/new.s3m");
dofile("ep1-zh.lua");
dofile("ep2-en.lua");
dofile("ep3-en.lua");
me().where = 'eroom';
--inv():add('mywear');
--inv():add('gun');
--inv():add('trap');