Plant.lua 590 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/Fighter/Warrior/Guardian/Plant.lua
  3. Script Author : neatz09
  4. Script Date : 2019.11.14 08:11:36
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Forces targets in Area of Effect to change their selected target to caster.
  10. -- Increases Threat to targets in Area of Effect by 44
  11. -- Prevents targets in Area of Effect from changing targets
  12. function cast(Caster, Target, AddHate)
  13. AddHate(Caster, Target, AddHate, 1)
  14. Say(Caster, "Missing forced aggro")
  15. end