From 7534bb9804557201f5d6453f3b33b3736b272315 Mon Sep 17 00:00:00 2001 From: Bunny <glisa825@gmail.com> Date: Sun, 31 May 2020 21:23:58 -0400 Subject: [PATCH] plop --- .../tome/data/general/events/meteor.lua | 63 +++++++++---------- .../tome/data/general/events/pyroclast.lua | 33 +++++----- .../tome/data/gfx/particles/meteor.lua | 8 ++- 3 files changed, 52 insertions(+), 52 deletions(-) diff --git a/game/modules/tome/data/general/events/meteor.lua b/game/modules/tome/data/general/events/meteor.lua index fa1f385908..21a8bcdfce 100644 --- a/game/modules/tome/data/general/events/meteor.lua +++ b/game/modules/tome/data/general/events/meteor.lua @@ -1,5 +1,5 @@ -- ToME - Tales of Maj'Eyal --- Copyright (C) 2009 - 2019 Nicolas Casalini +-- Copyright (C) 2009 - 2017 Nicolas Casalini -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by @@ -57,39 +57,38 @@ game.zone.on_turn = function() game.zone.meteor_event_levels[game.level.level] = nil - game.level.map:particleEmitter(game.level.data.meteor_x, game.level.data.meteor_y, 10, "meteor").on_remove = function() - local x, y = game.level.data.meteor_x, game.level.data.meteor_y - game.level.map:particleEmitter(x, y, 5, "fireflash", {radius=5}) - game:playSoundNear(game.player, "talents/fireflash") - - local terrains = mod.class.Grid:loadList("/data/general/grids/lava.lua") - local npcs = mod.class.NPC:loadList("/data/general/npcs/losgoroth.lua") - - for i = x-2, x+2 do for j = y-2, y+2 do - local og = game.level.map(i, j, engine.Map.TERRAIN) - if (core.fov.distance(x, y, i, j) <= 1 or rng.percent(40)) and og and not og.escort_portal then - local g = terrains.LAVA_FLOOR:clone() - g:resolve() g:resolve(nil, true) - game.zone:addEntity(game.level, g, "terrain", i, j) - - if rng.percent(30) and not game.level.map(i, j, engine.Map.ACTOR) then - local m = game.zone:makeEntity(game.level, "actor", {base_list=npcs}, nil, true) - if m then - m.resists = m.resists or {} - m.resists[engine.DamageType.FIRE] = 100 - game.zone:addEntity(game.level, m, "actor", i, j) - end + game.level.map:particleEmitter(game.level.data.meteor_x, game.level.data.meteor_y, 10, "meteor") + local x, y = game.level.data.meteor_x, game.level.data.meteor_y + game.level.map:particleEmitter(x, y, 5, "fireflash", {radius=5}) + game:playSoundNear(game.player, "talents/fireflash") + + local terrains = mod.class.Grid:loadList("/data/general/grids/lava.lua") + local npcs = mod.class.NPC:loadList("/data/general/npcs/losgoroth.lua") + + for i = x-2, x+2 do for j = y-2, y+2 do + local og = game.level.map(i, j, engine.Map.TERRAIN) + if (core.fov.distance(x, y, i, j) <= 1 or rng.percent(40)) and og and not og.escort_portal then + local g = terrains.LAVA_FLOOR:clone() + g:resolve() g:resolve(nil, true) + game.zone:addEntity(game.level, g, "terrain", i, j) + + if rng.percent(30) and not game.level.map(i, j, engine.Map.ACTOR) then + local m = game.zone:makeEntity(game.level, "actor", {base_list=npcs}, nil, true) + if m then + m.resists = m.resists or {} + m.resists[engine.DamageType.FIRE] = 100 + game.zone:addEntity(game.level, m, "actor", i, j) end end - end end - for i = x-2, x+2 do for j = y-2, y+2 do - game.nicer_tiles:updateAround(game.level, i, j) - end end - - world:gainAchievement("EVENT_METEOR", game:getPlayer(true)) - game:getPlayer(true):attr("meteoric_crash", 1) - require("engine.ui.Dialog"):simplePopup(_t"Meteor!", _t"As you walk you notice a huge rock falling from the sky. It crashes right near you!") - end + end + end end + for i = x-2, x+2 do for j = y-2, y+2 do + game.nicer_tiles:updateAround(game.level, i, j) + end end + + world:gainAchievement("EVENT_METEOR", game:getPlayer(true)) + game:getPlayer(true):attr("meteoric_crash", 1) + require("engine.ui.Dialog"):simplePopup("Meteor!", "As you walk you notice a huge rock falling from the sky. It crashes right near you!") end return true diff --git a/game/modules/tome/data/general/events/pyroclast.lua b/game/modules/tome/data/general/events/pyroclast.lua index ae2b3f2a8b..d225be9692 100644 --- a/game/modules/tome/data/general/events/pyroclast.lua +++ b/game/modules/tome/data/general/events/pyroclast.lua @@ -1,5 +1,5 @@ -- ToME - Tales of Maj'Eyal --- Copyright (C) 2009 - 2019 Nicolas Casalini +-- Copyright (C) 2009 - 2017 Nicolas Casalini -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by @@ -70,23 +70,22 @@ if not game.zone.pyroclast_event_on_turn then table.remove(game.zone.pyroclast_event_levels[game.level.level], si) game.level.data.meteor_x, game.level.data.meteor_y = x, y - game.level.map:particleEmitter(game.level.data.meteor_x, game.level.data.meteor_y, 10, "meteor").on_remove = function() - local x, y = game.level.data.meteor_x, game.level.data.meteor_y - game.level.map:particleEmitter(x, y, 5, "fireflash", {radius=5}) - game:playSoundNear(game.player, "talents/fireflash") + game.level.map:particleEmitter(game.level.data.meteor_x, game.level.data.meteor_y, 10, "meteor") + local x, y = game.level.data.meteor_x, game.level.data.meteor_y + game.level.map:particleEmitter(x, y, 5, "fireflash", {radius=5}) + game:playSoundNear(game.player, "talents/fireflash") - for i = x-2, x+2 do for j = y-2, y+2 do - local og = game.level.map(i, j, engine.Map.TERRAIN) - if (core.fov.distance(x, y, i, j) <= 1 or rng.percent(40)) and og and not og.escort_portal and not og.change_level and not og.special then - local g = game.zone.grid_list.LAVA_FLOOR:clone() - g:resolve() g:resolve(nil, true) - game.zone:addEntity(game.level, g, "terrain", i, j) - end - end end - for i = x-2, x+2 do for j = y-2, y+2 do - game.nicer_tiles:updateAround(game.level, i, j) - end end - end + for i = x-2, x+2 do for j = y-2, y+2 do + local og = game.level.map(i, j, engine.Map.TERRAIN) + if (core.fov.distance(x, y, i, j) <= 1 or rng.percent(40)) and og and not og.escort_portal and not og.change_level and not og.special then + local g = game.zone.grid_list.LAVA_FLOOR:clone() + g:resolve() g:resolve(nil, true) + game.zone:addEntity(game.level, g, "terrain", i, j) + end + end end + for i = x-2, x+2 do for j = y-2, y+2 do + game.nicer_tiles:updateAround(game.level, i, j) + end end end end return true diff --git a/game/modules/tome/data/gfx/particles/meteor.lua b/game/modules/tome/data/gfx/particles/meteor.lua index 921f56ccf0..e48ad832ff 100644 --- a/game/modules/tome/data/gfx/particles/meteor.lua +++ b/game/modules/tome/data/gfx/particles/meteor.lua @@ -1,5 +1,5 @@ -- ToME - Tales of Maj'Eyal --- Copyright (C) 2009 - 2019 Nicolas Casalini +-- Copyright (C) 2009 - 2017 Nicolas Casalini -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by @@ -17,6 +17,8 @@ -- Nicolas Casalini "DarkGod" -- darkgod@te4.org +-- Changed to be very fast, with a longer tail to compensate. + local nb = 1 return { generator = function() @@ -26,7 +28,7 @@ return { generator = function() local x = sradius * math.cos(a) local y = sradius * math.sin(a) a = math.rad(ad + 180) - local life = 10 + local life = 5 return { trail = 1, @@ -51,4 +53,4 @@ function(self) end end, 1, -"shockbolt/object/lava_boulder" +"shockbolt/object/lava_boulder" \ No newline at end of file -- GitLab