Ajout de la commande /voyage et grosse MAJK de la commande /auberge

This commit is contained in:
2026-01-07 15:04:49 +01:00
parent c8119601d8
commit f525b6c07a
1329 changed files with 24138 additions and 4397 deletions

View File

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