Compare commits

...

10 Commits

Author SHA1 Message Date
Crovaxon 0372b6a3b9 Removed duplicates from merging, fuck VS Code. 2025-05-11 16:43:52 +02:00
Crovaxon 3bd945b6e2 Merge branch 'develop' of https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler into develop 2025-05-11 16:42:37 +02:00
Crovaxon 63b946051a Updated URLs and prepared for test release. 2025-05-11 16:41:13 +02:00
Crovaxon 179cc73fa1 Merge branch 'develop' of https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler into develop 2025-05-11 16:39:19 +02:00
Crovaxon 9eed5d4245 Updated download URL for upcoming test release. 2025-05-11 16:38:27 +02:00
Crovaxon f31c2c0f8a Updated URLs
Updated the download URL
2025-05-11 16:36:44 +02:00
Crovaxon 72a646ab89 Updated URLs 2025-05-11 16:35:28 +02:00
Crovaxon e0c57ce78b Changed socketlib dependency to my own hosted instance and upped version compatibility so Foundry v13 will be able to install this. 2025-05-11 16:22:17 +02:00
Jonas Karlsson a21085ca5b Add dragonbane support (#333) 2024-08-03 21:19:05 +02:00
Joe 21533a0075 Update lancer speed attribute (#301) 2024-08-03 21:18:48 +02:00
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) - GURPS 4th Edition Game Aid (Unofficial) (starting with version 0.9.1)
- Hackmaster (starting with version 0.2.11) - Hackmaster (starting with version 0.2.11)
- Ironclaw Second Edition (starting with version 0.2.2) - 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)) - 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 1 (starting with version 0.77.3)
- Pathfinder 2e (via the module [PF2E Drag Ruler Integration](https://foundryvtt.com/packages/pf2e-dragruler/)) - Pathfinder 2e (via the module [PF2E Drag Ruler Integration](https://foundryvtt.com/packages/pf2e-dragruler/))
+8 -8
View File
@@ -6,7 +6,7 @@
"compatibility": { "compatibility": {
"minimum": "12", "minimum": "12",
"verified": "12", "verified": "12",
"maximum": "12" "maximum": "13"
}, },
"authors": [ "authors": [
{ {
@@ -75,16 +75,16 @@
{ {
"id": "socketlib", "id": "socketlib",
"type": "module", "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, "socket": true,
"url": "https://github.com/manuelVo/foundryvtt-drag-ruler", "url": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler",
"download": "https://github.com/manuelVo/foundryvtt-drag-ruler/archive/v1.14.2.zip", "download": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/archive/v1.14.2-test.zip",
"manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-drag-ruler/master/module.json", "manifest": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/raw/branch/develop/module.json",
"readme": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/README.md", "readme": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/blob/master/README.md",
"changelog": "https://github.com/manuelVo/foundryvtt-drag-ruler/blob/master/CHANGELOG.md", "changelog": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/blob/master/CHANGELOG.md",
"bugs": "https://github.com/manuelVo/foundryvtt-drag-ruler/issues", "bugs": "https://gitea.crovaxon.de/crovaxon/foundryvtt-drag-ruler/issues",
"allowBugReporter": true "allowBugReporter": true
} }
+4 -1
View File
@@ -9,7 +9,7 @@ export function getDefaultSpeedAttribute() {
case "dnd5e": case "dnd5e":
return "actor.system.attributes.movement.walk"; return "actor.system.attributes.movement.walk";
case "lancer": case "lancer":
return "actor.system.derived.speed"; return "actor.system.speed";
case "pf1": case "pf1":
case "D35E": case "D35E":
return "actor.system.attributes.speed.land.total"; return "actor.system.attributes.speed.land.total";
@@ -27,6 +27,8 @@ export function getDefaultSpeedAttribute() {
return "actor.system.details.move.walk"; return "actor.system.details.move.walk";
case "crucible": case "crucible":
return "actor.system.movement.stride"; return "actor.system.movement.stride";
case "dragonbane":
return "actor.system.movement.value";
} }
return ""; return "";
} }
@@ -44,6 +46,7 @@ export function getDefaultDashMultiplier() {
case "sfrpg": case "sfrpg":
case "shadowrun5e": case "shadowrun5e":
case "ds4": case "ds4":
case "dragonbane":
return 2; return 2;
case "CoC7": case "CoC7":
return 5; return 5;