Files
wfrp-4e-de/reference_scripts/Lrb1S2aK7SFVD0C7.js
T
2025-05-10 00:11:46 +02:00

9 lines
282 B
JavaScript

if (args.totalWoundLoss > 0)
{
let test = await args.actor.setupSkill(game.i18n.localize("NAME.Endurance"), {skipTargets: true, appendTitle : ` - ${this.effect.name}`})
await test.roll();
if (test.failed)
{
await args.actor.addCondition("fatigued");
}
}