From 71424cd2848653c0349575027851807fcc4b356d Mon Sep 17 00:00:00 2001 From: gsterling <58980630+gsterling@users.noreply.github.com> Date: Wed, 28 Sep 2022 07:31:20 +0200 Subject: [PATCH] add splittermond with speed and dash multiplier (#223) --- js/systems.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/systems.js b/js/systems.js index a9a58c4..6548da4 100644 --- a/js/systems.js +++ b/js/systems.js @@ -21,6 +21,8 @@ export function getDefaultSpeedAttribute() { return "actor.data.data.stats.speed.adjusted"; case "ds4": return "actor.data.data.combatValues.movement.total"; + case "splittermond": + return "actor.derivedValues.speed.value"; } return "" } @@ -41,6 +43,8 @@ export function getDefaultDashMultiplier() { return 2; case "CoC7": return 5; + case "splittermond": + return 3; } return 0; }