-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsystem.json
144 lines (144 loc) · 2.95 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
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
136
137
138
139
140
141
142
143
144
{
"id": "dnd4e",
"title": "DnD 4th Edition",
"description": "An implementation of Dungeons & Dragons 4th Edition game system for Foundry Virtual Tabletop.",
"version": "0.5.11",
"compatibility":{
"minimum": 12,
"verified": 12.324,
"maximum": 12
},
"authors": [
{
"name": "EndlesNights",
"url": "https://github.com/EndlesNights",
"email": "[email protected]",
"discord": "endlesnights#9000"
}
],
"relationships.requires": [
{ "name": "lib-wrapper" }
],
"esmodules": [
"module/dnd4e.js"
],
"styles": [
"styles/dnd4e.css"
],
"packs": [
{
"name": "equipmentPack",
"label": "Equipment",
"path": "./packs/equipmentPack",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "featuresPack",
"label": "Classes, Race, & Features",
"path": "./packs/featuresPack",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "example_powers",
"label": "Example Powers",
"system": "dnd4e",
"path": "./packs/example_powers",
"type": "Item",
"private": false,
"flags": {}
},
{
"name": "manual",
"label": "Manual & Help",
"system": "dnd4e",
"path": "./packs/manual",
"type": "JournalEntry",
"private": false,
"flags": {}
},
{
"name": "example_character",
"label": "Example Character",
"system": "dnd4e",
"path": "./packs/example_character",
"type": "Actor",
"private": false,
"flags": {}
},
{
"name": "srd_rules",
"label": "SRD Rules",
"system": "dnd4e",
"path": "./packs/srd_rules.db",
"type": "JournalEntry"
}
],
"packFolders": [
{
"name": "DnD4e",
"color": "#193974",
"packs": [
"equipmentPack",
"featuresPack",
"example_powers",
"manual",
"example_character",
"srd_rules"
]
}
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
},
{
"lang": "fr",
"name": "Français",
"path": "lang/fr.json"
},
{
"lang": "cn",
"name": "中文",
"path": "lang/cn.json"
},
{
"lang": "en-AU",
"name": "English (Australian)",
"path": "lang/en-au.json"
},
{
"lang": "pt-br",
"name": "Portugues do Brasil",
"path": "lang/pt-br.json"
}
],
"socket": true,
"grid": {
"distance": 1,
"units": "sq"
},
"documentTypes": {
"RegionBehavior" : {
"difficultTerrain" :{}
}
},
"primaryTokenAttribute": "attributes.hp",
"secondaryTokenAttribute": "attributes.temphp",
"url": "https://github.com/EndlesNights/dnd4eBeta",
"manifest": "https://raw.githubusercontent.com/EndlesNights/dnd4eBeta/main/system.json",
"download": "https://github.com/EndlesNights/dnd4eBeta/archive/0.5.11.zip",
"flags": {
"needsMigrationVersion": "0.5.5",
"compatibleMigrationVersion": "0.2.50",
"hotReload": {
"extensions": ["css", "html"],
"paths": ["styles/", "templates/"]
}
}
}