Changeset - 69e3aac84dc7
[Not reviewed]
default
0 1 0
Silverwing - 7 years ago 2017-12-02 17:06:05

lfc saboteur seen
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
atlantis_looking_for_clues.lua
Show inline comments
 
@@ -455,48 +455,49 @@ atl_lfc_dock_e = room {
 
        "atl_nd_barrel";
 
    };
 
};
 
 
atl_lfc_behind_boxes = room {
 
    nam = "Ящики";
 
    nosave = true;
 
    noautosave = true;
 
    dsc = function(s)
 
        local f = [[Док хорошо просматривается из вашего укрытия. ]];
 
        
 
    end;
 
    way = {
 
        kh_vroom("Выйти из укрытия", function(s)
 
             if (where(atl_lfc_sab) == atl_lfc_dock_s) or (where(atl_lfc_sab) == atl_lfc_dock_w) then
 
                return 'game_over_lfc_shot';
 
             else
 
                return 'atl_lfc_dock_n';
 
             end;
 
        end);
 
    };
 
    obj = {
 
        "atl_nd_crane";
 
        "atl_nd_barrel";
 
        "atl_lfc_sab_vis";
 
    };
 
};
 
 
atl_lfc_boxes = obj {
 
	var {
 
		state = 0;
 
	};
 
	nam = "Ящики";
 
	dsc = function(s)
 
		if (s.state == 0) then
 
			return [[У стены составлено несколько {ящиков}. ]];
 
		elseif (s.state == 1) then
 
			return [[У стены составлено несколько {ящиков}, за которыми вы сможете спрятаться, поджидая саботажника. ]];
 
		elseif (s.state == 2) then
 
			return [[У стены составлено несколько {ящиков}. ]];
 
		end;
 
	end;
 
	act = function(s)
 
		if (s.state == 0) then
 
			s.state = 1;
 
			return [[За этими ящиками можно спрятаться! ]];
 
		elseif (s.state == 1) then
 
			s.state = 2;
 
			walk("atl_lfc_behind_boxes");
0 comments (0 inline, 0 general)