ButcherblockBody.lua 445 B

12345678910111213141516171819
  1. --[[
  2. Script Name : Spells/ButcherblockBody.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.05.08 03:05:52
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. CurrentRegen = GetInfoStructSInt(Caster, "hp_regen")
  10. AddSpellBonus(Caster, 600, math.ceil(CurrentRegen * 0.05))
  11. AddSpellBonus(Caster, 0, 2)
  12. end
  13. function remove(Caster, Target)
  14. RemoveSpellBonus()
  15. end