5etools-utils 0.14.32 → 0.14.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/brew/adventures.json +4 -1
- package/schema/brew/bestiary/foundry.json +86 -1
- package/schema/brew/books.json +4 -1
- package/schema/brew/encounters.json +10 -1
- package/schema/brew/homebrew.json +19 -1
- package/schema/brew/names.json +4 -1
- package/schema/brew-fast/adventures.json +4 -1
- package/schema/brew-fast/bestiary/foundry.json +86 -1
- package/schema/brew-fast/books.json +4 -1
- package/schema/brew-fast/encounters.json +10 -1
- package/schema/brew-fast/homebrew.json +19 -1
- package/schema/brew-fast/names.json +4 -1
- package/schema/site/adventures.json +4 -1
- package/schema/site/bestiary/foundry.json +86 -1
- package/schema/site/books.json +4 -1
- package/schema/site/encounters.json +10 -1
- package/schema/site/homebrew.json +19 -1
- package/schema/site/names.json +4 -1
- package/schema/site-fast/adventures.json +4 -1
- package/schema/site-fast/bestiary/foundry.json +86 -1
- package/schema/site-fast/books.json +4 -1
- package/schema/site-fast/encounters.json +10 -1
- package/schema/site-fast/homebrew.json +19 -1
- package/schema/site-fast/names.json +4 -1
- package/schema/ua/adventures.json +4 -1
- package/schema/ua/bestiary/foundry.json +86 -1
- package/schema/ua/books.json +4 -1
- package/schema/ua/encounters.json +10 -1
- package/schema/ua/homebrew.json +19 -1
- package/schema/ua/names.json +4 -1
- package/schema/ua-fast/adventures.json +4 -1
- package/schema/ua-fast/bestiary/foundry.json +86 -1
- package/schema/ua-fast/books.json +4 -1
- package/schema/ua-fast/encounters.json +10 -1
- package/schema/ua-fast/homebrew.json +19 -1
- package/schema/ua-fast/names.json +4 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.34",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -82,6 +82,9 @@
|
|
|
82
82
|
"published": {
|
|
83
83
|
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
84
84
|
},
|
|
85
|
+
"revised": {
|
|
86
|
+
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
87
|
+
},
|
|
85
88
|
"publishedOrder": {
|
|
86
89
|
"description": "A sorting order for adventures within a single source.",
|
|
87
90
|
"type": "integer",
|
|
@@ -1,11 +1,96 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "foundry-bestiary.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"_monsterSubEntityArray": {
|
|
8
|
+
"type": "array",
|
|
9
|
+
"minItems": 1,
|
|
10
|
+
"uniqueItems": true,
|
|
11
|
+
"items": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"required": [
|
|
14
|
+
"name",
|
|
15
|
+
"source",
|
|
16
|
+
"monsterName",
|
|
17
|
+
"monsterSource"
|
|
18
|
+
],
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"properties": {
|
|
21
|
+
"name": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"source": {
|
|
25
|
+
"$ref": "../util.json#/$defs/source"
|
|
26
|
+
},
|
|
27
|
+
"identifier": {
|
|
28
|
+
"$ref": "../util-foundry.json#/$defs/foundryIdentifier"
|
|
29
|
+
},
|
|
30
|
+
"system": {
|
|
31
|
+
"$ref": "../util-foundry.json#/$defs/foundrySystemObject"
|
|
32
|
+
},
|
|
33
|
+
"activities": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {
|
|
36
|
+
"$ref": "../util-foundry.json#/$defs/foundryActivityObject"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"effects": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": {
|
|
42
|
+
"$ref": "../util-foundry.json#/$defs/foundryEffectObject"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"flags": {
|
|
46
|
+
"$ref": "../util-foundry.json#/$defs/foundryFlagsObject"
|
|
47
|
+
},
|
|
48
|
+
"advice": {
|
|
49
|
+
"$ref": "../entry.json"
|
|
50
|
+
},
|
|
51
|
+
"img": {
|
|
52
|
+
"type": "string"
|
|
53
|
+
},
|
|
54
|
+
"advancement": {
|
|
55
|
+
"$ref": "../util-foundry.json#/$defs/foundryAdvancementsArray"
|
|
56
|
+
},
|
|
57
|
+
"migrationVersion": {
|
|
58
|
+
"type": "integer"
|
|
59
|
+
},
|
|
60
|
+
"_merge": {
|
|
61
|
+
"$ref": "../util-foundry.json#/$defs/foundryMergeObject"
|
|
62
|
+
},
|
|
63
|
+
"monsterName": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"monsterSource": {
|
|
67
|
+
"$ref": "../util.json#/$defs/source"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
6
73
|
"properties": {
|
|
7
74
|
"monster": {
|
|
8
75
|
"$ref": "../util-foundry.json#/$defs/foundrySideDataGenericActorArray"
|
|
76
|
+
},
|
|
77
|
+
"monsterAction": {
|
|
78
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
79
|
+
},
|
|
80
|
+
"monsterBonus": {
|
|
81
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
82
|
+
},
|
|
83
|
+
"monsterReaction": {
|
|
84
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
85
|
+
},
|
|
86
|
+
"monsterTrait": {
|
|
87
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
88
|
+
},
|
|
89
|
+
"monsterLegendary": {
|
|
90
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
91
|
+
},
|
|
92
|
+
"monsterMythic": {
|
|
93
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
9
94
|
}
|
|
10
95
|
},
|
|
11
96
|
"required": [
|
package/schema/brew/books.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "books.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"book": {
|
|
@@ -53,6 +53,9 @@
|
|
|
53
53
|
"published": {
|
|
54
54
|
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
55
55
|
},
|
|
56
|
+
"revised": {
|
|
57
|
+
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
58
|
+
},
|
|
56
59
|
"cover": {
|
|
57
60
|
"$ref": "corpus-shared.json#/$defs/corpusCover"
|
|
58
61
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounters.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.4",
|
|
5
5
|
"title": "EncounterArray",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -31,6 +31,9 @@
|
|
|
31
31
|
"_encounterTableShared": {
|
|
32
32
|
"type": "object",
|
|
33
33
|
"properties": {
|
|
34
|
+
"page": {
|
|
35
|
+
"$ref": "util.json#/$defs/page"
|
|
36
|
+
},
|
|
34
37
|
"minlvl": {
|
|
35
38
|
"type": "integer"
|
|
36
39
|
},
|
|
@@ -66,6 +69,9 @@
|
|
|
66
69
|
{
|
|
67
70
|
"type": "object",
|
|
68
71
|
"properties": {
|
|
72
|
+
"page": {
|
|
73
|
+
"$ref": "util.json#/$defs/page"
|
|
74
|
+
},
|
|
69
75
|
"minlvl": {
|
|
70
76
|
"type": "integer"
|
|
71
77
|
},
|
|
@@ -102,6 +108,9 @@
|
|
|
102
108
|
{
|
|
103
109
|
"type": "object",
|
|
104
110
|
"properties": {
|
|
111
|
+
"page": {
|
|
112
|
+
"$ref": "util.json#/$defs/page"
|
|
113
|
+
},
|
|
105
114
|
"minlvl": {
|
|
106
115
|
"type": "integer"
|
|
107
116
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.5",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -539,6 +539,24 @@
|
|
|
539
539
|
"foundryMonster": {
|
|
540
540
|
"$ref": "bestiary/foundry.json#/properties/monster"
|
|
541
541
|
},
|
|
542
|
+
"foundryMonsterAction": {
|
|
543
|
+
"$ref": "bestiary/foundry.json#/properties/monsterAction"
|
|
544
|
+
},
|
|
545
|
+
"foundryMonsterBonus": {
|
|
546
|
+
"$ref": "bestiary/foundry.json#/properties/monsterBonus"
|
|
547
|
+
},
|
|
548
|
+
"foundryMonsterReaction": {
|
|
549
|
+
"$ref": "bestiary/foundry.json#/properties/monsterReaction"
|
|
550
|
+
},
|
|
551
|
+
"foundryMonsterTrait": {
|
|
552
|
+
"$ref": "bestiary/foundry.json#/properties/monsterTrait"
|
|
553
|
+
},
|
|
554
|
+
"foundryMonsterLegendary": {
|
|
555
|
+
"$ref": "bestiary/foundry.json#/properties/monsterLegendary"
|
|
556
|
+
},
|
|
557
|
+
"foundryMonsterMythic": {
|
|
558
|
+
"$ref": "bestiary/foundry.json#/properties/monsterMythic"
|
|
559
|
+
},
|
|
542
560
|
"legendaryGroup": {
|
|
543
561
|
"$ref": "bestiary/legendarygroups.json#/properties/legendaryGroup"
|
|
544
562
|
},
|
package/schema/brew/names.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "names.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.2",
|
|
5
5
|
"title": "NameArray",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"nameTable": {
|
|
29
29
|
"type": "object",
|
|
30
30
|
"properties": {
|
|
31
|
+
"page": {
|
|
32
|
+
"$ref": "util.json#/$defs/page"
|
|
33
|
+
},
|
|
31
34
|
"option": {
|
|
32
35
|
"type": "string"
|
|
33
36
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.34",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -82,6 +82,9 @@
|
|
|
82
82
|
"published": {
|
|
83
83
|
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
84
84
|
},
|
|
85
|
+
"revised": {
|
|
86
|
+
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
87
|
+
},
|
|
85
88
|
"publishedOrder": {
|
|
86
89
|
"description": "A sorting order for adventures within a single source.",
|
|
87
90
|
"type": "integer",
|
|
@@ -1,11 +1,96 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "foundry-bestiary.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"_monsterSubEntityArray": {
|
|
8
|
+
"type": "array",
|
|
9
|
+
"minItems": 1,
|
|
10
|
+
"uniqueItems": true,
|
|
11
|
+
"items": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"required": [
|
|
14
|
+
"name",
|
|
15
|
+
"source",
|
|
16
|
+
"monsterName",
|
|
17
|
+
"monsterSource"
|
|
18
|
+
],
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"properties": {
|
|
21
|
+
"name": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"source": {
|
|
25
|
+
"$ref": "../util.json#/$defs/source"
|
|
26
|
+
},
|
|
27
|
+
"identifier": {
|
|
28
|
+
"$ref": "../util-foundry.json#/$defs/foundryIdentifier"
|
|
29
|
+
},
|
|
30
|
+
"system": {
|
|
31
|
+
"$ref": "../util-foundry.json#/$defs/foundrySystemObject"
|
|
32
|
+
},
|
|
33
|
+
"activities": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {
|
|
36
|
+
"$ref": "../util-foundry.json#/$defs/foundryActivityObject"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"effects": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": {
|
|
42
|
+
"$ref": "../util-foundry.json#/$defs/foundryEffectObject"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"flags": {
|
|
46
|
+
"$ref": "../util-foundry.json#/$defs/foundryFlagsObject"
|
|
47
|
+
},
|
|
48
|
+
"advice": {
|
|
49
|
+
"$ref": "../entry.json"
|
|
50
|
+
},
|
|
51
|
+
"img": {
|
|
52
|
+
"type": "string"
|
|
53
|
+
},
|
|
54
|
+
"advancement": {
|
|
55
|
+
"$ref": "../util-foundry.json#/$defs/foundryAdvancementsArray"
|
|
56
|
+
},
|
|
57
|
+
"migrationVersion": {
|
|
58
|
+
"type": "integer"
|
|
59
|
+
},
|
|
60
|
+
"_merge": {
|
|
61
|
+
"$ref": "../util-foundry.json#/$defs/foundryMergeObject"
|
|
62
|
+
},
|
|
63
|
+
"monsterName": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"monsterSource": {
|
|
67
|
+
"$ref": "../util.json#/$defs/source"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
6
73
|
"properties": {
|
|
7
74
|
"monster": {
|
|
8
75
|
"$ref": "../util-foundry.json#/$defs/foundrySideDataGenericActorArray"
|
|
76
|
+
},
|
|
77
|
+
"monsterAction": {
|
|
78
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
79
|
+
},
|
|
80
|
+
"monsterBonus": {
|
|
81
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
82
|
+
},
|
|
83
|
+
"monsterReaction": {
|
|
84
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
85
|
+
},
|
|
86
|
+
"monsterTrait": {
|
|
87
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
88
|
+
},
|
|
89
|
+
"monsterLegendary": {
|
|
90
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
91
|
+
},
|
|
92
|
+
"monsterMythic": {
|
|
93
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
9
94
|
}
|
|
10
95
|
},
|
|
11
96
|
"required": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "books.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"book": {
|
|
@@ -53,6 +53,9 @@
|
|
|
53
53
|
"published": {
|
|
54
54
|
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
55
55
|
},
|
|
56
|
+
"revised": {
|
|
57
|
+
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
58
|
+
},
|
|
56
59
|
"cover": {
|
|
57
60
|
"$ref": "corpus-shared.json#/$defs/corpusCover"
|
|
58
61
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounters.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.4",
|
|
5
5
|
"title": "EncounterArray",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -31,6 +31,9 @@
|
|
|
31
31
|
"_encounterTableShared": {
|
|
32
32
|
"type": "object",
|
|
33
33
|
"properties": {
|
|
34
|
+
"page": {
|
|
35
|
+
"$ref": "util.json#/$defs/page"
|
|
36
|
+
},
|
|
34
37
|
"minlvl": {
|
|
35
38
|
"type": "integer"
|
|
36
39
|
},
|
|
@@ -66,6 +69,9 @@
|
|
|
66
69
|
{
|
|
67
70
|
"type": "object",
|
|
68
71
|
"properties": {
|
|
72
|
+
"page": {
|
|
73
|
+
"$ref": "util.json#/$defs/page"
|
|
74
|
+
},
|
|
69
75
|
"minlvl": {
|
|
70
76
|
"type": "integer"
|
|
71
77
|
},
|
|
@@ -102,6 +108,9 @@
|
|
|
102
108
|
{
|
|
103
109
|
"type": "object",
|
|
104
110
|
"properties": {
|
|
111
|
+
"page": {
|
|
112
|
+
"$ref": "util.json#/$defs/page"
|
|
113
|
+
},
|
|
105
114
|
"minlvl": {
|
|
106
115
|
"type": "integer"
|
|
107
116
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.5",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -537,6 +537,24 @@
|
|
|
537
537
|
"foundryMonster": {
|
|
538
538
|
"$ref": "bestiary/foundry.json#/properties/monster"
|
|
539
539
|
},
|
|
540
|
+
"foundryMonsterAction": {
|
|
541
|
+
"$ref": "bestiary/foundry.json#/properties/monsterAction"
|
|
542
|
+
},
|
|
543
|
+
"foundryMonsterBonus": {
|
|
544
|
+
"$ref": "bestiary/foundry.json#/properties/monsterBonus"
|
|
545
|
+
},
|
|
546
|
+
"foundryMonsterReaction": {
|
|
547
|
+
"$ref": "bestiary/foundry.json#/properties/monsterReaction"
|
|
548
|
+
},
|
|
549
|
+
"foundryMonsterTrait": {
|
|
550
|
+
"$ref": "bestiary/foundry.json#/properties/monsterTrait"
|
|
551
|
+
},
|
|
552
|
+
"foundryMonsterLegendary": {
|
|
553
|
+
"$ref": "bestiary/foundry.json#/properties/monsterLegendary"
|
|
554
|
+
},
|
|
555
|
+
"foundryMonsterMythic": {
|
|
556
|
+
"$ref": "bestiary/foundry.json#/properties/monsterMythic"
|
|
557
|
+
},
|
|
540
558
|
"legendaryGroup": {
|
|
541
559
|
"$ref": "bestiary/legendarygroups.json#/properties/legendaryGroup"
|
|
542
560
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "names.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.2",
|
|
5
5
|
"title": "NameArray",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"nameTable": {
|
|
29
29
|
"type": "object",
|
|
30
30
|
"properties": {
|
|
31
|
+
"page": {
|
|
32
|
+
"$ref": "util.json#/$defs/page"
|
|
33
|
+
},
|
|
31
34
|
"option": {
|
|
32
35
|
"type": "string"
|
|
33
36
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.34",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -82,6 +82,9 @@
|
|
|
82
82
|
"published": {
|
|
83
83
|
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
84
84
|
},
|
|
85
|
+
"revised": {
|
|
86
|
+
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
87
|
+
},
|
|
85
88
|
"publishedOrder": {
|
|
86
89
|
"description": "A sorting order for adventures within a single source.",
|
|
87
90
|
"type": "integer",
|
|
@@ -1,11 +1,96 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "foundry-bestiary.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"_monsterSubEntityArray": {
|
|
8
|
+
"type": "array",
|
|
9
|
+
"minItems": 1,
|
|
10
|
+
"uniqueItems": true,
|
|
11
|
+
"items": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"required": [
|
|
14
|
+
"name",
|
|
15
|
+
"source",
|
|
16
|
+
"monsterName",
|
|
17
|
+
"monsterSource"
|
|
18
|
+
],
|
|
19
|
+
"additionalProperties": false,
|
|
20
|
+
"properties": {
|
|
21
|
+
"name": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"source": {
|
|
25
|
+
"$ref": "../util.json#/$defs/source"
|
|
26
|
+
},
|
|
27
|
+
"identifier": {
|
|
28
|
+
"$ref": "../util-foundry.json#/$defs/foundryIdentifier"
|
|
29
|
+
},
|
|
30
|
+
"system": {
|
|
31
|
+
"$ref": "../util-foundry.json#/$defs/foundrySystemObject"
|
|
32
|
+
},
|
|
33
|
+
"activities": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {
|
|
36
|
+
"$ref": "../util-foundry.json#/$defs/foundryActivityObject"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"effects": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": {
|
|
42
|
+
"$ref": "../util-foundry.json#/$defs/foundryEffectObject"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"flags": {
|
|
46
|
+
"$ref": "../util-foundry.json#/$defs/foundryFlagsObject"
|
|
47
|
+
},
|
|
48
|
+
"advice": {
|
|
49
|
+
"$ref": "../entry.json"
|
|
50
|
+
},
|
|
51
|
+
"img": {
|
|
52
|
+
"type": "string"
|
|
53
|
+
},
|
|
54
|
+
"advancement": {
|
|
55
|
+
"$ref": "../util-foundry.json#/$defs/foundryAdvancementsArray"
|
|
56
|
+
},
|
|
57
|
+
"migrationVersion": {
|
|
58
|
+
"type": "integer"
|
|
59
|
+
},
|
|
60
|
+
"_merge": {
|
|
61
|
+
"$ref": "../util-foundry.json#/$defs/foundryMergeObject"
|
|
62
|
+
},
|
|
63
|
+
"monsterName": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"monsterSource": {
|
|
67
|
+
"$ref": "../util.json#/$defs/source"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
6
73
|
"properties": {
|
|
7
74
|
"monster": {
|
|
8
75
|
"$ref": "../util-foundry.json#/$defs/foundrySideDataGenericActorArray"
|
|
76
|
+
},
|
|
77
|
+
"monsterAction": {
|
|
78
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
79
|
+
},
|
|
80
|
+
"monsterBonus": {
|
|
81
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
82
|
+
},
|
|
83
|
+
"monsterReaction": {
|
|
84
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
85
|
+
},
|
|
86
|
+
"monsterTrait": {
|
|
87
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
88
|
+
},
|
|
89
|
+
"monsterLegendary": {
|
|
90
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
91
|
+
},
|
|
92
|
+
"monsterMythic": {
|
|
93
|
+
"$ref": "#/$defs/_monsterSubEntityArray"
|
|
9
94
|
}
|
|
10
95
|
},
|
|
11
96
|
"required": [
|
package/schema/site/books.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "books.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"book": {
|
|
@@ -53,6 +53,9 @@
|
|
|
53
53
|
"published": {
|
|
54
54
|
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
55
55
|
},
|
|
56
|
+
"revised": {
|
|
57
|
+
"$ref": "corpus-shared.json#/$defs/corpusPublished"
|
|
58
|
+
},
|
|
56
59
|
"cover": {
|
|
57
60
|
"$ref": "corpus-shared.json#/$defs/corpusCover"
|
|
58
61
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounters.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.4",
|
|
5
5
|
"title": "EncounterArray",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -31,6 +31,9 @@
|
|
|
31
31
|
"_encounterTableShared": {
|
|
32
32
|
"type": "object",
|
|
33
33
|
"properties": {
|
|
34
|
+
"page": {
|
|
35
|
+
"$ref": "util.json#/$defs/page"
|
|
36
|
+
},
|
|
34
37
|
"minlvl": {
|
|
35
38
|
"type": "integer"
|
|
36
39
|
},
|
|
@@ -66,6 +69,9 @@
|
|
|
66
69
|
{
|
|
67
70
|
"type": "object",
|
|
68
71
|
"properties": {
|
|
72
|
+
"page": {
|
|
73
|
+
"$ref": "util.json#/$defs/page"
|
|
74
|
+
},
|
|
69
75
|
"minlvl": {
|
|
70
76
|
"type": "integer"
|
|
71
77
|
},
|
|
@@ -102,6 +108,9 @@
|
|
|
102
108
|
{
|
|
103
109
|
"type": "object",
|
|
104
110
|
"properties": {
|
|
111
|
+
"page": {
|
|
112
|
+
"$ref": "util.json#/$defs/page"
|
|
113
|
+
},
|
|
105
114
|
"minlvl": {
|
|
106
115
|
"type": "integer"
|
|
107
116
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.5",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -539,6 +539,24 @@
|
|
|
539
539
|
"foundryMonster": {
|
|
540
540
|
"$ref": "bestiary/foundry.json#/properties/monster"
|
|
541
541
|
},
|
|
542
|
+
"foundryMonsterAction": {
|
|
543
|
+
"$ref": "bestiary/foundry.json#/properties/monsterAction"
|
|
544
|
+
},
|
|
545
|
+
"foundryMonsterBonus": {
|
|
546
|
+
"$ref": "bestiary/foundry.json#/properties/monsterBonus"
|
|
547
|
+
},
|
|
548
|
+
"foundryMonsterReaction": {
|
|
549
|
+
"$ref": "bestiary/foundry.json#/properties/monsterReaction"
|
|
550
|
+
},
|
|
551
|
+
"foundryMonsterTrait": {
|
|
552
|
+
"$ref": "bestiary/foundry.json#/properties/monsterTrait"
|
|
553
|
+
},
|
|
554
|
+
"foundryMonsterLegendary": {
|
|
555
|
+
"$ref": "bestiary/foundry.json#/properties/monsterLegendary"
|
|
556
|
+
},
|
|
557
|
+
"foundryMonsterMythic": {
|
|
558
|
+
"$ref": "bestiary/foundry.json#/properties/monsterMythic"
|
|
559
|
+
},
|
|
542
560
|
"legendaryGroup": {
|
|
543
561
|
"$ref": "bestiary/legendarygroups.json#/properties/legendaryGroup"
|
|
544
562
|
},
|