mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
327 B
Lua
16 lines
327 B
Lua
--[[
|
|
Script Name : Spells/Commoner/RodentReflexes.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2024.05.09 03:05:35
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function cast(Caster, Target)
|
|
AddSpellBonus(Caster, 2, 5)
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
RemoveSpellBonus()
|
|
end
|
|
|