Compare commits

..
10 Commits
3 changed files with 13 additions and 10 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ The game systems that offer Drag Ruler integration are:
- GURPS 4th Edition Game Aid (Unofficial) (starting with version 0.9.1)
- Hackmaster (starting with version 0.2.11)
- Ironclaw Second Edition (starting with version 0.2.2)
- Lancer (via the module [Lancer Speed Provider](https://foundryvtt.com/packages/lancer-speed-provider))
- Lancer (via the module [Lancer Ruler Integration](https://foundryvtt.com/packages/lancer-speed-provider))
- Level Up: Advanced 5th Edition (Official) (via the module [A5E Drag Ruler Integration](https://foundryvtt.com/packages/a5edragruler))
- Pathfinder 1 (starting with version 0.77.3)
- Pathfinder 2e (via the module [PF2E Drag Ruler Integration](https://foundryvtt.com/packages/pf2e-dragruler/))
+8 -8
View File
@@ -6,7 +6,7 @@
"compatibility": {
"minimum": "12",
"verified": "12",
"maximum": "12"
"maximum": "13"
},
"authors": [
{
@@ -75,16 +75,16 @@
{
"id": "socketlib",
"type": "module",
"manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-socketlib/master/module.json"
"manifest": "https://gitea.crovaxon.de/crovaxon/foundryvtt-socketlib/raw/branch/develop/module.json"
}
]
},
"socket": true,
"url": "https://github.com/manuelVo/foundryvtt-drag-ruler",
"download": "https://github.com/manuelVo/foundryvtt-drag-ruler/archive/v1.14.2.zip",
"manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-drag-ruler/master/module.json",
"readme": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/README.md",
"changelog": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/CHANGELOG.md",
"bugs": "https://github.com/manuelVo/foundryvtt-drag-ruler/issues",
"url": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler",
"download": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/archive/v1.14.2-test.zip",
"manifest": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/raw/branch/develop/module.json",
"readme": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/blob/master/README.md",
"changelog": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/blob/master/CHANGELOG.md",
"bugs": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/issues",
"allowBugReporter": true
}
+4 -1
View File
@@ -9,7 +9,7 @@ export function getDefaultSpeedAttribute() {
case "dnd5e":
return "actor.system.attributes.movement.walk";
case "lancer":
return "actor.system.derived.speed";
return "actor.system.speed";
case "pf1":
case "D35E":
return "actor.system.attributes.speed.land.total";
@@ -27,6 +27,8 @@ export function getDefaultSpeedAttribute() {
return "actor.system.details.move.walk";
case "crucible":
return "actor.system.movement.stride";
case "dragonbane":
return "actor.system.movement.value";
}
return "";
}
@@ -44,6 +46,7 @@ export function getDefaultDashMultiplier() {
case "sfrpg":
case "shadowrun5e":
case "ds4":
case "dragonbane":
return 2;
case "CoC7":
return 5;