mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
24 lines
No EOL
418 B
Lua
Executable file
24 lines
No EOL
418 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/GooeyEarPlug.lua
|
|
Script Author : neatz09
|
|
Script Date : 2021.03.26 03:03:25
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
--[[ Begin Item Effects
|
|
|
|
* When Equipped:
|
|
* Increases Attack Speed of caster by 2.0
|
|
|
|
End Item Effects--]]
|
|
|
|
function examined(Item, Player)
|
|
|
|
end
|
|
|
|
function equipped(Item, Player)
|
|
end
|
|
|
|
function unequipped(Item, Player)
|
|
end |