12345678910111213141516171819 |
- --[[
- Script Name : Spells/ButcherblockBody.lua
- Script Author : LordPazuzu
- Script Date : 2024.05.08 03:05:52
- Script Purpose :
- :
- --]]
- function cast(Caster, Target)
- CurrentRegen = GetInfoStructSInt(Caster, "hp_regen")
- AddSpellBonus(Caster, 600, math.ceil(CurrentRegen * 0.05))
- AddSpellBonus(Caster, 0, 2)
- end
- function remove(Caster, Target)
- RemoveSpellBonus()
- end
|