eq2emu-content/Spells/Commoner/IgnoreTerror.lua
2024-10-26 11:37:28 +00:00

18 lines
433 B
Lua
Executable file

--[[
Script Name : Spells/Commoner/IgnoreTerror.lua
Script Author : neatz09
Script Date : 2020.08.14 11:08:48
Script Purpose :
:
--]]
-- Info from spell_display_effects (remove from script when done)
-- Makes caster immune to Fear effects
function cast(Caster, Target)
AddImmunitySpell(6, Target)
end
function remove(Caster, Target)
RemoveImmunitySpell(6, Target)
end