mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
18 lines
359 B
Lua
Executable file
18 lines
359 B
Lua
Executable file
--[[
|
|
Script Name : Spells/FelineGrace.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.08.14 04:08:27
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
-- Grants the skill Safefall.
|
|
|
|
function cast(Caster, Target)
|
|
AddControlEffect(Caster, 14)
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
RemoveControlEffect(Caster, 14)
|
|
end
|
|
|