generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
module.json
107 lines (107 loc) · 3.08 KB
/
module.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
{
"id": "ceane-talent",
"title": "Talent Character Sheet for D&D 5e",
"description": "Character sheet support for the Talent class from MCDM's The Talent and Psionics supplement for 5e",
"version": "#{VERSION}#",
"library": "false",
"manifestPlusVersion": "1.2.0",
"compatibility": {
"minimum": 11,
"verified": 11
},
"type": "module",
"author": "Ceane",
"authors": [
{
"name": "Ceane",
"reddit": "/u/Ceane",
"discord": "ceanec"
}
],
"relationships": {
"systems": [
{
"id": "dnd5e",
"type": "system",
"manifest": "https://raw.githubusercontent.com/foundryvtt/dnd5e/master/system.json",
"compatibility": {
"minimum": "3.1.0",
"verified": "3.1.0"
}
}
],
"requires": [
{
"id": "lib-wrapper",
"type": "module",
"compatibility": {
"verified": "1.12.13.0"
}
}
]
},
"esmodules": [
"scripts/module.js"
],
"styles": [
"styles/module.css"
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "languages/en.json"
}
],
"url": "#{URL}#",
"manifest": "#{MANIFEST}#",
"download": "#{DOWNLOAD}#",
"readme": "README.md",
"media": [
{
"type": "cover",
"url": "./images/cover.png",
"caption": "The strain tracker"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/vanilla-strain3.png",
"caption": "The Strain tracker on the Vanilla character sheet"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/vanilla-spellbook.png",
"caption": "Powers as pseudo-spells on the Vanilla character sheet"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/power-preparation.png",
"caption": "Setting the Spell Preparation Mode to Talent Power"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/vanilla-manifest.png",
"caption": "Manifesting a Power, and choosing the Order"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/t5e-strain3.png",
"caption": "The Strain tracker on the Tidy5e character sheet"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/t5e-spellbook.png",
"caption": "Powers as pseudo-spells on the Tidy5e character sheet"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/legacy-strain3.png",
"caption": "The Strain tracker on the Legacy character sheet"
},
{
"type": "screenshot",
"url": "https://raw.githubusercontent.com/CeaneC/FoundryVTT-Talent/master/images/legacy-spellbook.png",
"caption": "Powers as pseudo-spells on the Legacy character sheet"
}
]
}