This commit is contained in:
2025-05-02 12:24:44 +02:00
commit 39e925cc1b
3238 changed files with 110472 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
if (!args.ward)
{
args.ward = (this.effect.getFlag("wfrp4e", "ward") || 0);
if (args.wardRoll >= args.ward && args.ward > 3)
{
let newWard = Math.max(3, args.ward - 1)
this.script.scriptMessage("<strong>Ward</strong> improved to " + newWard)
this.effect.setFlag("wfrp4e", "ward", newWard)
}
}