diff --git a/game/engines/default/engine/Target.lua b/game/engines/default/engine/Target.lua index 1f2080dae46147d31563f3ec9fc312d2cc564488..af9c1a3e0636244964e17123178f9bc5918ddd6f 100644 --- a/game/engines/default/engine/Target.lua +++ b/game/engines/default/engine/Target.lua @@ -111,6 +111,26 @@ function _M:display(dispx, dispy) self.display_x, self.display_y = ox, oy end +-- Default type def +target_type = { + range=20, + friendlyfire=true, + block_path = function(typ, lx, ly) + if not typ.no_restrict then + if typ.requires_knowledge and not game.level.map.remembers(lx, ly) and not game.level.map.seens(lx, ly) then return true end + if not typ.pass_terrain and game.level.map:checkEntity(lx, ly, engine.Map.TERRAIN, "block_move") then return true + -- If we explode due to something other than terrain, then we should explode ON the tile, not before it + elseif typ.stop_block and game.level.map:checkAllEntities(lx, ly, "block_move") then return true, lx, ly end + if typ.range and typ.source_actor and typ.source_actor.x and math.sqrt((typ.source_actor.x-lx)^2 + (typ.source_actor.y-ly)^2) > typ.range then return true end + end + -- If we don't block the path, then the explode point should be here + return false, lx, ly + end, + block_radius=function(typ, lx, ly) + return not typ.no_restrict and game.level.map:checkEntity(lx, ly, engine.Map.TERRAIN, "block_move") + end +} + -- @return t The target table used by ActorProject, Projectile, GameTargeting, etc. -- @param t Target table used to generate the -- @param t.type The engine-defined type, populates other more complex variables (see below) @@ -131,24 +151,6 @@ function _M:getType(t) if not t then return {} end -- Add the default values t = table.clone(t) - target_type = { - range=20, - friendlyfire=true, - block_path = function(typ, lx, ly) - if not typ.no_restrict then - if typ.requires_knowledge and not game.level.map.remembers(lx, ly) and not game.level.map.seens(lx, ly) then return true end - if not typ.pass_terrain and game.level.map:checkEntity(lx, ly, engine.Map.TERRAIN, "block_move") then return true - -- If we explode due to something other than terrain, then we should explode ON the tile, not before it - elseif typ.stop_block and game.level.map:checkAllEntities(lx, ly, "block_move") then return true, lx, ly end - if typ.range and typ.source_actor and typ.source_actor.x and math.sqrt((typ.source_actor.x-lx)^2 + (typ.source_actor.y-ly)^2) > typ.range then return true end - end - -- If we don't block the path, then the explode point should be here - return false, lx, ly - end, - block_radius=function(typ, lx, ly) - return not typ.no_restrict and game.level.map:checkEntity(lx, ly, engine.Map.TERRAIN, "block_move") - end - } table.update(t, target_type) -- And now modify for the default types if t.type then diff --git a/game/modules/tome/class/interface/Archery.lua b/game/modules/tome/class/interface/Archery.lua index fcb9f8ee033c57114a213b3c3dd6e2f4982a9732..11121ae60f57159777490de4b6b0aaaa30c45aae 100644 --- a/game/modules/tome/class/interface/Archery.lua +++ b/game/modules/tome/class/interface/Archery.lua @@ -77,12 +77,7 @@ function _M:archeryAcquireTargets(tg, params) for i = 1, params.multishots or 1 do local a if not ammo.infinite then - if self:doesPackRat() then - game.logPlayer(self, "Pack Rat!") - a = self:getInven("QUIVER")[1] - else - a = self:removeObject(self:getInven("QUIVER"), 1) - end + a = self:removeObject(self:getInven("QUIVER"), 1) else a = ammo end diff --git a/game/modules/tome/data/talents/spells/staff-combat.lua b/game/modules/tome/data/talents/spells/staff-combat.lua index 7d41ea57c1050dd0e6d97fed83b5b270380f94b3..581a087c875f634dec2b6225a1c218cb4c3612c3 100644 --- a/game/modules/tome/data/talents/spells/staff-combat.lua +++ b/game/modules/tome/data/talents/spells/staff-combat.lua @@ -52,7 +52,17 @@ newTalent{ else explosion = "manathrust" particle = "bolt_arcane" trail = "arcanetrail" damtype = DamageType.ARCANE end - local tg = {type="bolt", range=self:getTalentRange(t), talent=t, display = {particle=particle, trail=trail}} + local tg = {type="bolt", range=self:getTalentRange(t), talent=t, display = {particle=particle, trail=trail}, + -- Like a normal block_path, but goes over friendlies + block_path = function(typ, lx, ly) + local a = game.level.map(lx, ly, engine.Map.ACTOR) + if a and self:reactionToward(a) >= 0 then return false, lx, ly + elseif game.level.map:checkAllEntities(lx, ly, "block_move") then return true, lx, ly end + if typ.range and typ.source_actor and typ.source_actor.x and math.sqrt((typ.source_actor.x-lx)^2 + (typ.source_actor.y-ly)^2) > typ.range then return true end + return false, lx, ly + end, + } + local x, y = self:getTarget(tg) if not x or not y then return nil end