Skip to content
Snippets Groups Projects
Commit 52460c8b authored by dg's avatar dg
Browse files

Some Afflicted fixes

git-svn-id: http://svn.net-core.org/repos/t-engine4@5242 51575b47-30f0-44d4-a5cc-537603b46e54
parent 950127ca
No related branches found
No related tags found
No related merge requests found
......@@ -394,10 +394,10 @@ newTalent{
-- your will ignores friendly targets (except for knockback hits)
local target = game.level.map(x, y, Map.ACTOR)
if target then
self:project(target, target.x, target.y, DamageType.DARKNESS, self:spellCrit(damage))
self:project(target, target.x, target.y, DamageType.DARKNESS, damage)
if rng.percent(25) then
if not target.dead and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, 3, {apply_power=self:combatSpellpower(), min_dur=1})
target:setEffect(target.EFF_BLINDED, 3, {apply_power=self:combatMindpower(), min_dur=1})
target:setTarget(nil)
--game.logSeen(target, "%s stumbles in the darkness!", target.name:capitalize())
end
......
......@@ -220,7 +220,7 @@ newTalent{
end,
}
newTalent{
newTalent{
name = "Blast",
type = {"cursed/force-of-will", 3},
require = cursed_wil_req3,
......@@ -246,7 +246,7 @@ newTalent{
getDazeDuration = function(self, t)
return 3
end,
action = function(self, t)
action = function(self, t) --NOTE TO DG, SINCE I CAN'T UNDERSTAND A WORD OF BENLI'S CODE: EDIT SO THAT KNOCKBACK OCCURS AFTER DAMAGE, AND SEPARATELY, TO PREVENT ENEMIES BEING SHOVED INTO A NEW SPACE AND HIT AGAIN.
local range = self:getTalentRange(t)
local radius = self:getTalentRadius(t)
local damage = t.getDamage(self, t)
......
......@@ -225,7 +225,7 @@ newTalent{
require = cursed_wil_req4,
points = 5,
getDamageChange = function(self, t)
return math.min(35, -math.sqrt(self:getTalentLevel(t)) * 11)
return math.max(-35, -math.sqrt(self:getTalentLevel(t)) * 11)
end,
info = function(self, t)
local damageChange = t.getDamageChange(self, t)
......
......@@ -79,7 +79,7 @@ newTalent{
onTakeHit = function(t, self, fractionDamage)
if fractionDamage < 0.08 then return false end
if self:hasEffect(self.EFF_RAMPAGE) then return false end
if rng.percent(0.5) then
if rng.percent(50) then
t.action(self, t, 0)
return true
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