forked from SR5-FoundryVTT/SR5-FoundryVTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system.json
102 lines (102 loc) · 2.82 KB
/
system.json
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
{
"id": "shadowrun5e",
"name": "shadowrun5e",
"title": "Shadowrun 5th Edition",
"description": "Shadowrun 5th Edition game",
"authors": [
{
"name": "Jan Schoska",
"discord": "taM#9507"
}
],
"url": "#{URL}#",
"version": "0.22.0",
"compatibility": {
"minimum": "11",
"verified": "12"
},
"minimumCoreVersion": "11",
"scripts": [],
"esmodules": ["dist/bundle.js"],
"styles": ["dist/bundle.css"],
"languages": [
{
"lang": "en",
"name": "English",
"path": "dist/locale/en/config.json"
},
{
"lang": "de",
"name": "Deutsch",
"path": "dist/locale/de/config.json"
},
{
"lang": "pt-BR",
"name": "Português (Brasil)",
"path": "dist/locale/pt-BR/config.json"
},
{
"lang": "fr",
"name": "Français",
"path": "dist/locale/fr/config.json"
},
{
"lang": "ko",
"name": "Korean",
"path": "dist/locale/ko/config.json"
}
],
"packs": [
{
"name": "matrix-actions",
"label": "SR5e Matrix Actions",
"path": "packs/matrix-actions",
"ownership": {
"PLAYER": "OBSERVER",
"TRUSTED": "OBSERVER",
"ASSISTANT": "OWNER"
},
"type": "Item",
"system": "shadowrun5e"
},
{
"name": "general-actions",
"label": "SR5e General Actions",
"path": "packs/general-actions",
"ownership": {
"PLAYER": "OBSERVER",
"TRUSTED": "OBSERVER",
"ASSISTANT": "OWNER"
},
"type": "Item",
"system": "shadowrun5e"
},
{
"name": "system-macros",
"label": "SR5e System Macros",
"path": "packs/system-macros",
"ownership": {
"PLAYER": "OBSERVER",
"TRUSTED": "OBSERVER",
"ASSISTANT": "OWNER"
},
"type": "Macro",
"system": "shadowrun5e"
}
],
"relationships": [
{
"id": "autocomplete-inline-properties",
"type": "module"
}
],
"socket": true,
"manifest": "#{MANIFEST}#",
"download": "#{DOWNLOAD}#",
"protected": false,
"initiative": "@initiative.current.base.value + @initiative.current.dice.text - @wounds.value",
"gridDistance": 1,
"gridUnits": "m",
"primaryTokenAttribute": "track.physical",
"secondaryTokenAttribute": "track.stun"
}