Initial commit

This commit is contained in:
Manuel Vögele
2021-02-01 13:17:23 +01:00
commit 4b73cd93bf
7 changed files with 380 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
export function getDefaultSpeedAttribute() {
switch (game.system.id) {
case "dnd5e":
return "actor.data.data.attributes.movement.walk"
case "pf1":
return "actor.data.data.attributes.speed.land.total"
}
return ""
}
export function getDefaultDashMultiplier() {
switch (game.system.id) {
case "dnd5e":
case "pf1":
return 2
}
return 0
}