Skip to content
Snippets Groups Projects
Commit 71ea80c8 authored by dg's avatar dg
Browse files

Psiblades APR can nto go down

git-svn-id: http://svn.net-core.org/repos/t-engine4@5783 51575b47-30f0-44d4-a5cc-537603b46e54
parent 724f1d06
No related branches found
No related tags found
No related merge requests found
......@@ -2871,7 +2871,7 @@ function _M:checkMindstar(o)
local nm = {}
for s, v in pairs(o.combat.dammod) do nm[s] = v * (1.3 + pv / 10) end
o.combat.dammod = nm
o.combat.apr = math.floor(o.combat.apr * (1 + pv / 6.3))
o.combat.apr = o.combat.apr * (1 + pv / 6.3)
print("Activating psiblade", o.name)
elseif not new and old then
......@@ -2880,7 +2880,7 @@ function _M:checkMindstar(o)
local nm = {}
for s, v in pairs(o.combat.dammod) do nm[s] = v / (1.3 + pv / 10) end
o.combat.dammod = nm
o.combat.apr = math.floor(o.combat.apr / (1 + pv / 6.3))
o.combat.apr = o.combat.apr / (1 + pv / 6.3)
o.moddable_tile_ornament = nil
o.psiblade_active = false
......
......@@ -65,7 +65,7 @@ uberTalent{
if target:canBe("stun") then target:setEffect(target.EFF_STUNNED, 3, {}) end
end,
info = function(self, t)
return ([[You deal a massive blow to your foe, smashing it for 250%% weapon damage and knocking it back 6 tiles away.
return ([[You deal a massive blow to your foe, smashing it for 230%% weapon damage and knocking it back 6 tiles away.
All foes in its path will be knocked on the sides and stunned for 3 turns.]])
:format()
end,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment