mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
17 lines
336 B
Lua
Executable file
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
|
|
|