CoC support (#92)

This commit is contained in:
José E. Lozano
2021-07-08 13:25:07 +02:00
committed by Manuel Vögele
parent 3b9fbac80d
commit 530a16ca5d
+4
View File
@@ -1,6 +1,8 @@
export function getDefaultSpeedAttribute() { export function getDefaultSpeedAttribute() {
switch (game.system.id) { switch (game.system.id) {
case "CoC7":
return "actor.data.data.attribs.mov.value";
case "dcc": case "dcc":
return "actor.data.data.attributes.speed.value"; return "actor.data.data.attributes.speed.value";
case "dnd5e": case "dnd5e":
@@ -32,6 +34,8 @@ export function getDefaultDashMultiplier() {
case "sfrpg": case "sfrpg":
case "shadowrun5e": case "shadowrun5e":
return 2 return 2
case "CoC7":
return 5;
} }
return 0 return 0
} }