diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index c53f7925bfa2de1c4ad699192a54df5850eba7ea..de403577b6fd8c292a7cdfba04335648a479b57a 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -4877,6 +4877,7 @@ local sustainCallbackCheck = { callbackOnTalentPost = "talents_on_talent_post", callbackOnTemporaryEffect = "talents_on_tmp", callbackOnTalentDisturbed = "talents_on_talent_disturbed", + callbackOnBlock = "talents_on_block", } _M.sustainCallbackCheck = sustainCallbackCheck diff --git a/game/modules/tome/data/timed_effects/physical.lua b/game/modules/tome/data/timed_effects/physical.lua index ea966eb9b2293b2f0a5f5a76b9734956635f8eed..21efc23075a46055315518cbc0d4afbff222bdb2 100644 --- a/game/modules/tome/data/timed_effects/physical.lua +++ b/game/modules/tome/data/timed_effects/physical.lua @@ -2053,7 +2053,9 @@ newEffect{ game:delayedLogMessage(self, src, "block_heal", "#CRIMSON##Source# heals from blocking with %s shield!", string.his_her(self)) end if eff.properties.ref and src.life then DamageType.defaultProjector(src, src.x, src.y, type, blocked, tmp, true) end + local full = false if (self:knowTalent(self.T_RIPOSTE) or amt == 0) and src.life then + full = true src:setEffect(src.EFF_COUNTERSTRIKE, (1 + dur_inc) * math.max(1, (src.global_speed or 1)), {power=eff.power, no_ct_effect=true, src=self, crit_inc=crit_inc, nb=nb}) if eff.properties.sb then if src:canBe("disarm") then @@ -2066,6 +2068,9 @@ newEffect{ eff.properties.on_cs(self, eff, dam, type, src) end end-- specify duration here to avoid stacking for high speed attackers + + self:fireTalentCheck("callbackOnBlock", eff, dam, type, src) + return amt end, activate = function(self, eff)