landsandboat/scripts/effects/one_for_all.lua
claywar 7bba1bdc3a
[type] Add type annotations to Effect scripts
Fix delStatusEffect in atma.lua
2024-08-24 21:26:29 -04:00

17 lines
415 B
Lua

-----------------------------------
-- xi.effect.ONE_FOR_ALL
-----------------------------------
---@type TEffect
local effectObject = {}
-- intentionally empty, effects of buff handled by using the power of the effect.
effectObject.onEffectGain = function(target, effect)
end
effectObject.onEffectTick = function(target, effect)
end
effectObject.onEffectLose = function(target, effect)
end
return effectObject