23 lines
654 B
Lua
23 lines
654 B
Lua
-----------------------------------
|
|
-- ID: 18276
|
|
-- Item: Excalibur
|
|
-- Additional effect: Slashing Damage
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemAdditionalEffect = function(actor, target, baseAttackDamage, item)
|
|
local pTable =
|
|
{
|
|
chance = 7,
|
|
ignoreEnSpell = true,
|
|
basePower = math.floor(actor:getHP() / 4),
|
|
attackType = xi.attackType.PHYSICAL,
|
|
physicalElement = xi.damageType.SLASHING,
|
|
magicalElement = xi.element.NONE,
|
|
}
|
|
|
|
return xi.combat.action.executeAddEffectDamage(actor, target, pTable)
|
|
end
|
|
|
|
return itemObject
|