Changeset - fdd1761f4692
[Not reviewed]
default
0 2 42
Silverwing - 5 years ago 2019-01-08 23:46:08

final battle and deep tample battle graphics
44 files changed with 37 insertions and 0 deletions:
images/fb_pylon.png
bin+new file
0 comments (0 inline, 0 general)
images/deep_temple_bg.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_1.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_2.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_3.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_4.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_5.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_6.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_7.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_leviathan_8.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_1_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_1_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_1_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_1_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_2_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_2_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_2_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_2_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_3_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_3_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_3_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_3_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_4_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_4_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_4_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_4_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_5_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_5_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_5_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_5_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_6_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_6_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_6_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_6_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_7_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_7_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_7_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_7_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_8_healthy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_8_heavy.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_8_light.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/dt_tentacle_8_medium.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
images/fb_drake.png
Show inline comments
 
binary diff not shown
Show images
images/fb_pylon.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
journey_temple.lua
Show inline comments
 
@@ -1018,9 +1018,46 @@ dt_fight = room {
 
            {hp=200, dir=4, away = 0 };
 
        };
 
    };
 

	
 
    positions = {
 
        {80, 0},
 
        {160, 0},
 
        {160, 80},
 
        {160, 160},
 
        {80, 160},
 
        {0, 160},
 
        {0, 80},
 
        {0, 0}
 
    };
 

	
 
    nam = "dt_fight";
 
    pic = function(s)
 
        local pic = 'images/deep_temple_bg.png';
 

	
 
        for i = 1, #s.tentacles do
 
            if s.tentacles[i].away == 0 then
 
                local pos = s.positions[s.tentacles[i].dir + 1];
 
                local status;
 
                if (s.tentacles[i].hp <= 70) then
 
                    status = 'heavy';
 
                elseif (s.tentacles[i].hp <= 140) then
 
                    status = 'medium';
 
                elseif (s.tentacles[i].hp < 200) then
 
                    status = 'light';
 
                else
 
                    status = 'healthy';
 
                end;
 
                pic = pic .. ';images/dt_tentacle_' .. tostring(s.tentacles[i].dir + 1) .. '_' .. status .. '.png@' .. pos[1] .. ',' .. pos[2];
 
            end;
 
        end;
 

	
 
        pic = pic .. ';images/dt_leviathan_' .. tostring(s.dir + 1) .. '.png@80,80'
 

	
 
        return pic;
 
    end;
 
    disp = "Левиафан, рубка";
 
    not_follow = true;
 
    nosave = true;
 
    forcedsc = true;
 
    entered = function(s)
 
        s:maketurn();
0 comments (0 inline, 0 general)