landsandboat/scripts/items/scroll_of_stone_iv.lua

17 lines
406 B
Lua

-----------------------------------
-- ID: 4770
-- Scroll of Stone IV
-- Teaches the black magic Stone IV
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.STONE_IV)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.STONE_IV)
end
return itemObject