Add default settings for shadowrun 5e

This commit is contained in:
Manuel Vögele
2021-05-03 19:39:11 +02:00
parent 4a96348659
commit 7bed5abd0a
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
## In development
### Compatibility
- Drag Ruler's Generic SpeedProvider is now aware of good default values for the Savage Worlds Adventure Edition game system
## 1.6.2 ## 1.6.2
### Bugfixes ### Bugfixes
- The reset movement history button now resets the movement history for all players, not just for the GM - The reset movement history button now resets the movement history for all players, not just for the GM
+3
View File
@@ -9,6 +9,8 @@ export function getDefaultSpeedAttribute() {
return "actor.data.data.mech.speed" return "actor.data.data.mech.speed"
case "pf1": case "pf1":
return "actor.data.data.attributes.speed.land.total" return "actor.data.data.attributes.speed.land.total"
case "shadowrun5e":
return "actor.data.data.movement.walk.value";
case "swade": case "swade":
return "actor.data.data.stats.speed.value" return "actor.data.data.stats.speed.value"
} }
@@ -23,6 +25,7 @@ export function getDefaultDashMultiplier() {
case "dnd5e": case "dnd5e":
case "lancer": case "lancer":
case "pf1": case "pf1":
case "shadowrun5e":
return 2 return 2
} }
return 0 return 0