-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.json
More file actions
135 lines (135 loc) · 4.16 KB
/
Copy pathmodule.json
File metadata and controls
135 lines (135 loc) · 4.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"id": "acks-formation",
"title": "ACKS II — Exploration Formations",
"description": "Condenses the party into exploration formations for cleaner dungeon delving. Members join a formation and are represented on the canvas by a single party token that moves at exploration speed. Movement automatically consumes dungeon turns (10 minutes), driving light-source burn, rest requirements, wandering-monster checks, spell-duration expiry, and ration tracking per the ACKS II dungeon delve sequence of play.",
"version": "0.20.0",
"socket": true,
"compatibility": {
"minimum": "14",
"verified": "14.364"
},
"authors": [
{
"name": "NocTempre"
}
],
"license": "LICENSE",
"documentTypes": {
"Actor": {
"party": {}
},
"RegionBehavior": {
"encounterZone": {}
}
},
"esmodules": [
"scripts/module.mjs"
],
"styles": [
"styles/formation.css"
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
}
],
"packs": [
{
"name": "exploration-proficiencies",
"label": "ACKS Exploration Proficiencies (Deprecated)",
"path": "packs/exploration-proficiencies",
"type": "Item",
"system": "acks",
"flags": {
"acks-formation": {
"deprecated": true,
"supersededBy": "acks-abilities + acks-content",
"note": "Retiring — see docs/ABILITIES-AUDIT.md. Still shipped so existing worlds keep working; no new entries."
}
},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "macros",
"label": "Formation Macros",
"path": "packs/macros",
"type": "Macro",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
}
],
"relationships": {
"systems": [
{
"id": "acks",
"type": "system",
"compatibility": {
"minimum": "13"
}
}
],
"requires": [
{
"id": "lib-wrapper",
"type": "module",
"reason": "Wraps ruler measurement labels safely alongside other ruler modules.",
"compatibility": {
"minimum": "1.12.0"
}
},
{
"id": "socketlib",
"type": "module",
"reason": "Routes player action requests and fog-reload messages between clients.",
"compatibility": {
"minimum": "1.1.0"
}
}
],
"recommends": [
{
"id": "acks-lib",
"type": "module",
"reason": "Shared ability vocabulary. Enables capability (kw:) matching so party rolls and dark-sense detection find an ability however it is named; without it the module falls back to name patterns."
},
{
"id": "simple-timekeeping",
"type": "module",
"reason": "Shared world clock, calendar, and scene-darkness sync for dungeon turns. Optional: turns still advance core world time without it.",
"compatibility": {
"minimum": "2.0.0"
}
},
{
"id": "acks-monsters",
"type": "module",
"reason": "Full Monster Sheet supplies structured vision modes, special senses, and Speed tables so monster party members use their real dark sight and movement instead of human defaults. Optional: generic heuristics apply without it."
},
{
"id": "acks-abilities",
"type": "module",
"reason": "Structured ability effect model (capabilities, level-aware effects). Supersedes this module's bundled exploration-proficiencies pack — see docs/ABILITIES-AUDIT.md."
},
{
"id": "acks-content",
"type": "module",
"reason": "Materializes proficiency targets and thief-skill progressions from the GM's own books, replacing this module's bundled values — see docs/ABILITIES-AUDIT.md."
}
]
},
"url": "https://github.com/NocTempre/acks-formation",
"manifest": "https://github.com/NocTempre/acks-formation/releases/latest/download/module.json",
"download": "https://github.com/NocTempre/acks-formation/releases/latest/download/module.zip",
"flags": {
"acks-formation": {
"idPrefix": "acksfm"
}
}
}