This commit is contained in:
2025-05-02 12:24:44 +02:00
commit 39e925cc1b
3238 changed files with 110472 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
let initiativeSetting = game.settings.get("wfrp4e", "initiativeRule")
switch (initiativeSetting) {
case "default":
args.initiative += "+10"
break;
case "sl":
args.initiative += "+1"
break;
case "d10Init":
args.initiative += "+10"
break;
case "d10InitAgi":
args.initiative += "+1"
break;
}