landsandboat/scripts/items/scroll_of_cure_ex.lua

17 lines
402 B
Lua

-----------------------------------
-- ID: 4608
-- Scroll of Cure (Exclusive)
-- Teaches the white magic Cure
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.CURE)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.CURE)
end
return itemObject