spined.lua 210 B

123456789101112
  1. local Spined = extend(Buff)
  2. Spined.tags = {'elite'}
  3. function Spined:prehurt(amount, source, kind)
  4. if source then
  5. source:hurt(amount * self.reflect, self.unit)
  6. end
  7. return amount
  8. end
  9. return Spined