IgnoreTerror.lua 433 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Commoner/IgnoreTerror.lua
  3. Script Author : neatz09
  4. Script Date : 2020.08.14 11:08:48
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Makes caster immune to Fear effects
  10. function cast(Caster, Target)
  11. AddImmunitySpell(6, Target)
  12. end
  13. function remove(Caster, Target)
  14. RemoveImmunitySpell(6, Target)
  15. end