landsandboat/scripts/items/scroll_of_shell_iii.lua

18 lines
410 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
-- ID: 4658
-- Scroll of Shell III
-- Teaches the white magic Shell III
2021-01-18 12:51:02 -05:00
-----------------------------------
---@type TItem
local itemObject = {}
2016-01-16 01:26:33 -05:00
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.SHELL_III)
end
2016-01-16 01:26:33 -05:00
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.SHELL_III)
end
2021-01-17 11:55:03 -05:00
return itemObject