// Victims that take at least 1 Wound from a Fell Dagger
// immediately take a Poisoned Condition
// resisted with a Difficult (-10) Endurance Test.
// TODO: Add Venom strength to message
if (args.totalWoundLoss > 0)
{
args.actor.addCondition("poisoned")
this.script.scriptMessage(`
${this.effect.name}:
${args.actor.name} reçoit un état @Condition[Empoisonné], qui peut être résisté avec un Test de Résistance Difficile (-10).`,
{whisper: ChatMessage.getWhisperRecipients("GM")})
}