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

17 lines
336 B
Lua
Executable file

--[[
Script Name : Spells/Procs/RootImmunity.Lua
Script Author : LordPazuzu
Script Date : 2022.11.30 05:11:52
Script Purpose :
:
--]]
function cast(Caster, Target)
AddImmunitySpell(5, Target)
end
function remove(Caster, Target)
RemoveImmunitySpell(5, Target)
end