landsandboat/scripts/items/fire_bracers.lua

19 lines
425 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
-- ID: 14991
-- Fire Bracers
2016-01-16 01:26:33 -05:00
-- Enchantment: "Enfire"
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 0
end
2016-01-16 01:26:33 -05:00
itemObject.onItemUse = function(target)
2025-09-18 00:44:24 +02:00
local fakeSpell = GetSpell(xi.magic.spell.ENFIRE)
xi.spells.enhancing.useEnhancingSpell(target, target, fakeSpell)
end
2021-01-17 11:55:03 -05:00
return itemObject