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