Files
foundryvtt-wh4-lang-fr-fr/scripts/bMEFHPCei2evnZZw.js

15 lines
569 B
JavaScript

// Victims that take at least 1 Wound from a Fell Dagger
// immediately take a Poisoned Condition
// resisted with a Difficult (-10) Résistance Test.
// TODO: Add Venin strength to message
if (args.totalWoundLoss > 0)
{
args.actor.addCondition("poisoned")
this.script.message(`
<strong>${this.effect.name}</strong>:<br>
<strong>${args.actor.name}</strong> has been given a @Condition[Poisoned] Condition, which can be resisted with a <strong>Difficult (-10) Résistance</strong> Test.`,
{whisper: ChatMessage.getWhisperRecipients("GM")})
}