diff --git a/src/systems.js b/src/systems.js index fa93ea7..359b460 100644 --- a/src/systems.js +++ b/src/systems.js @@ -3,6 +3,8 @@ export function getDefaultSpeedAttribute() { switch (game.system.id) { case "dnd5e": return "actor.data.data.attributes.movement.walk" + case "lancer": + return "actor.data.data.mech.speed" case "pf1": return "actor.data.data.attributes.speed.land.total" } @@ -12,6 +14,7 @@ export function getDefaultSpeedAttribute() { export function getDefaultDashMultiplier() { switch (game.system.id) { case "dnd5e": + case "lancer": case "pf1": return 2 }