landsandboat/scripts/items/slime_cap.lua
Rosienaikanaro a648fe0e6e DQX Candies
Adds on-use effects, corrects the hat stats, and adds the candy effects from the Dragon Quest X crossover event.
2025-04-07 01:13:03 -04:00

18 lines
472 B
Lua

-----------------------------------
-- ID: 27756
-- Item: Slime Cap
-- Dispense: Slimeulation Candy
-- TODO: Add hidden set effect
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, param, caster)
return xi.itemUtils.itemBoxOnItemCheck(target)
end
itemObject.onItemUse = function(target)
npcUtil.giveItem(target, { { xi.item.SLIMEULATION_CANDY, math.random(5, 12) } })
end
return itemObject