2024-05-16 17:57:51 +02:00
|
|
|
let type = this.item.getFlag("wfrp4e", "breath");
|
|
|
|
|
|
|
|
if (type == "cold")
|
|
|
|
{
|
|
|
|
let stunned = Math.max(1, Math.trunc(args.totalWoundLoss / 5))
|
|
|
|
await args.actor.addCondition("stunned", stunned);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == "corrosion")
|
|
|
|
{
|
2024-05-17 09:19:48 +02:00
|
|
|
let damageItems = await Dialog.confirm({title : this.item.name, content : `<p>Endommager tout les objets portés?</p>`})
|
2024-05-16 17:57:51 +02:00
|
|
|
if (damageItems)
|
|
|
|
{
|
|
|
|
let msg = ``
|
|
|
|
let weapons = args.actor.itemTypes.weapon.filter(i => i.isEquipped);
|
|
|
|
let armour = args.actor.itemTypes.armour.filter(i => i.isEquipped);
|
|
|
|
let trappings = args.actor.itemTypes.trapping.filter(i => i.isEquipped);
|
|
|
|
for(let item of weapons)
|
|
|
|
{
|
|
|
|
if (item.system.properties.qualities.shield)
|
|
|
|
{
|
|
|
|
await item.system.damageItem(1, "shield");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
await item.system.damageItem(1);
|
|
|
|
}
|
2024-05-17 09:19:48 +02:00
|
|
|
msg += `<p><strong>${item.name}</strong> endommagé de 1</p>`
|
2024-05-16 17:57:51 +02:00
|
|
|
}
|
|
|
|
for(let item of armour)
|
|
|
|
{
|
|
|
|
await item.system.damageItem(1);
|
2024-05-17 09:19:48 +02:00
|
|
|
msg += `<p><strong>${item.name}</strong> endommagé de 1</p>`
|
2024-05-16 17:57:51 +02:00
|
|
|
}
|
|
|
|
for(let item of trappings)
|
|
|
|
{
|
|
|
|
await item.system.damageItem(1);
|
2024-05-17 09:19:48 +02:00
|
|
|
msg += `<p><strong>${item.name}</strong> endommagé de 1</p>`
|
2024-05-16 17:57:51 +02:00
|
|
|
}
|
|
|
|
if (msg)
|
|
|
|
{
|
|
|
|
this.script.scriptMessage(msg, {speaker : {alias : args.actor.name}});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == "fire")
|
|
|
|
{
|
|
|
|
await args.actor.addCondition("ablaze");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == "electricity")
|
|
|
|
{
|
|
|
|
await args.actor.addCondition("stunned");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == "poison")
|
|
|
|
{
|
|
|
|
await args.actor.addCondition("poisoned");
|
|
|
|
}
|
|
|
|
|