slayer.lua 156 B

12345678
  1. local Slayer = extend(Buff)
  2. Slayer.tags = {}
  3. function Slayer:prehurt(amount, source, kind)
  4. return amount * (source.player and 2 or 1)
  5. end
  6. return Slayer