5etools-utils 0.14.32 → 0.14.33

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5etools-utils",
3
- "version": "0.14.32",
3
+ "version": "0.14.33",
4
4
  "description": "Shared utilities for the 5etools ecosystem.",
5
5
  "type": "module",
6
6
  "main": "lib/Api.js",
@@ -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.33",
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.1",
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.18",
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,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.11.4",
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
  },
@@ -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.33",
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.1",
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.18",
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,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.11.4",
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": "adventures.json",
4
- "version": "1.10.33",
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.1",
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.18",
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,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.11.4",
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
  },
@@ -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.33",
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.1",
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.18",
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,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.11.4",
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": "adventures.json",
4
- "version": "1.10.33",
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.1",
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.18",
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,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.11.4",
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
  },
@@ -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.33",
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.1",
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.18",
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,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.11.4",
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
  },