Changeset - d03c618fba75
[Not reviewed]
default
0 2 0
Silverwing - 5 years ago 2019-01-09 18:23:30

epilogue: playing as phaetlarr
2 files changed with 7 insertions and 12 deletions:
0 comments (0 inline, 0 general)
items.lua
Show inline comments
 
@@ -332,14 +332,14 @@ item_toolbox = obj {
 
item_money = obj {
 
	nam = "money";
 
	disp = function(s)
 
		if (pl.money == 0) then
 
		if pl.money == 0 or not pl.money then
 
			return "Пустой кошелек";
 
		else
 
			return s.money_format();
 
		end;
 
	end;
 
	inv = function(s)
 
		if (pl.money == 0) then
 
		if pl.money == 0 or not pl.money then
 
			return "Кошелек пуст";
 
		else
 
			return [[Кошелек с монетами различного достоинства на сумму ]] .. s.money_format();
lse_confrontation.lua
Show inline comments
 
@@ -12,16 +12,11 @@ end, "lse_phaetlarr_intro");
 

	
 
lse_phaetlarr_intro = cutscene("lse_phaetlarr_intro", "Левиафан", function(s)
 
    pr [[Фаэтларр сидел около иллюминатора в кают-компании, когда в док вошла группа навьяров. Хорошее зрение позволило ему разглядеть как они общаются друг с другом посредством цветовых сигналов: "Властитель сказал нам осмотреть корабль и взять все ценное". После чего группа направилась к Левиафану. Решение пришло в голову Фаэтларра мгновенно. Навьяр спрятался за одним из стеллажей в грузовом отсеке и, из своего укрытия, отлично видел, как один стражник из группы сообщил остальным: "Здесь никого нет. Все пришельцы схвачены". Дождавшись когда они покинули Левиафан, Фаэтларр покинул укрытие. ]];
 
end, "lse_switch");
 

	
 
lse_switch = room {
 
    nam = "lse_switch";
 
    disp = "limbo";
 
    entered = function()
 
        player_phaetlarr.where = "lse_leviathan_cargo_hold";
 
        pl = player_phaetlarr;
 
    end;
 
};
 
end, function(s)
 
    player_phaetlarr.where = "lse_leviathan_cargo_hold";
 
    change_pl(player_phaetlarr);
 
    return "lse_leviathan_cargo_hold";
 
end);
 

	
 
player_phaetlarr = player {
 
    nam = "player_phaetlarr";
0 comments (0 inline, 0 general)