spined.lua 182 B

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