Changeset - 13ca5eb0af05
[Not reviewed]
default
0 1 0
Silverwing - 5 years ago 2019-06-28 21:48:30

fix map in captain's cabin
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
leviathan.lua
Show inline comments
 
@@ -169,62 +169,62 @@ leviathan_captains_cabin = darkroom {
 
        "lev_capn_map";
 
        "lev_capn_chair";
 
        "lev_capn_bed";
 
        "lev_capn_view";
 
	};
 
};
 
 
lev_capn_desk = obj {
 
    nam = "lev_capn_desk";
 
    dsc = [[У стены установлен небольшой стол с несколькими {ящиками}. ]];
 
    act = "Ящики пусты. ";
 
};
 
 
lev_capn_map = obj {
 
    nam = "lev_capn_map";
 
    dsc = [[Над столом висит {карта} Атлантического океана. ]];
 
    act = function(s) 
 
        walkin(lev_capn_map_see);
 
    end;
 
};
 
 
lev_capn_map_see = room {
 
	nam = 'Левиафан, каюта капитана';
 
	pic = function(s)
 
		if not dypphaanotrr_found then
 
		if not dypatreanotrr_found then
 
			return 'images/map_begin.png';
 
		elseif not iraaphaanotrr_found then
 
			return 'images/map_dyp.png';
 
		elseif not venaedanotrr_found then
 
			return 'images/map_near.png';
 
		elseif not nleyyslanotrr_found then
 
			return 'images/map_ven.png';
 
		else
 
			if not deep_temple_found and not lseryanotrr_found then
 
				return 'images/map_nley.png';
 
			elseif deep_temple_found and not lseryanotrr_found then
 
				return 'images/map_no_final.png';
 
			elseif deep_temple_found and not lseryanotrr_found then
 
			elseif not deep_temple_found and lseryanotrr_found then
 
				return 'images/map_no_temple.png';
 
			else
 
				return 'images/map_all.png';
 
			end;
 
		end;
 
	end;
 
	nosave = true;
 
	noautosave = true;
 
	dsc = function(s)
 
		if atlantis_found then
 
			return [[Карта Атлантического океана, судя по маркировке, принадлежащая компании "Вестхейвен Трансоушен". На ней изображено несколько объектов, имеющих значение для компании и, в частности, Атлантида. ]];
 
		else
 
			atlantis_found = true;
 
			return [[Карта Атлантического океана, судя по маркировке, принадлежащая компании "Вестхейвен Трансоушен". Вы внимательно осматриваете карту в поисках чего-нибудь необычного. Ваше внимание привлекает отметка "Атлантида", сделанная посреди океана. К сожалению, никаких пояснений у вас нет и единственное, что вы можете сделать это попытаться добраться до этой точки. ]];
 
		end;
 
	end;
 
	way = {
 
		kh_vroom('Назад', 'leviathan_captains_cabin')
 
	}
 
}
 
 
lev_capn_chair = obj {
 
    nam = "lev_capn_chair";
 
    dsc = "Рядом со столом стоит {кресло}. ";
0 comments (0 inline, 0 general)