Rename js/ to src/ since the rust component is now gone

This commit is contained in:
Manuel Vögele
2022-09-30 22:04:41 +02:00
parent c21e4c91d6
commit c43b0bfd64
19 changed files with 3 additions and 3 deletions
+50
View File
@@ -0,0 +1,50 @@
export function getDefaultSpeedAttribute() {
switch (game.system.id) {
case "CoC7":
return "actor.system.attribs.mov.value";
case "dcc":
return "actor.system.attributes.speed.value";
case "dnd4e":
return "actor.system.movement.walk.value";
case "dnd5e":
return "actor.system.attributes.movement.walk";
case "lancer":
return "actor.system.derived.speed";
case "pf1":
case "D35E":
return "actor.system.attributes.speed.land.total";
case "sfrpg":
return "actor.system.attributes.speed.value";
case "shadowrun5e":
return "actor.system.movement.walk.value";
case "swade":
return "actor.system.stats.speed.adjusted";
case "ds4":
return "actor.system.combatValues.movement.total";
case "splittermond":
return "actor.derivedValues.speed.value";
}
return "";
}
export function getDefaultDashMultiplier() {
switch (game.system.id) {
case "swade":
return 0;
case "dcc":
case "dnd4e":
case "dnd5e":
case "lancer":
case "pf1":
case "D35E":
case "sfrpg":
case "shadowrun5e":
case "ds4":
return 2;
case "CoC7":
return 5;
case "splittermond":
return 3;
}
return 0;
}