landsandboat/scripts/items/scroll_of_boost-str.lua

18 lines
410 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
-- ID: 5094
-- Scroll of Boost-STR
-- Teaches the white magic Boost-STR
2021-01-18 12:51:02 -05:00
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.BOOST_STR)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.BOOST_STR)
end
2021-01-17 11:55:03 -05:00
return itemObject