5etools-utils 0.8.24 → 0.8.26

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.
@@ -3,7 +3,7 @@
3
3
  "$id": "entry.json",
4
4
  "title": "Entry",
5
5
  "description": "A recursively renderable object.",
6
- "version": "1.8.14",
6
+ "version": "1.8.15",
7
7
  "$defs": {
8
8
  "_arrayOfSpell": {
9
9
  "type": "array",
@@ -3278,6 +3278,9 @@
3278
3278
  "charges": {
3279
3279
  "$ref": "#/$defs/entrySpellcasting_frequency"
3280
3280
  },
3281
+ "recharge": {
3282
+ "$ref": "#/$defs/entrySpellcasting_recharge"
3283
+ },
3281
3284
  "spells": {
3282
3285
  "type": "object",
3283
3286
  "properties": {
@@ -3340,7 +3343,9 @@
3340
3343
  "weekly",
3341
3344
  "yearly",
3342
3345
  "ritual",
3343
- "spells"
3346
+ "spells",
3347
+ "charges",
3348
+ "recharge"
3344
3349
  ]
3345
3350
  }
3346
3351
  },
@@ -3464,6 +3469,30 @@
3464
3469
  },
3465
3470
  "additionalProperties": false
3466
3471
  },
3472
+ "entrySpellcasting_recharge": {
3473
+ "type": "object",
3474
+ "properties": {
3475
+ "1": {
3476
+ "$ref": "#/$defs/_arrayOfSpell"
3477
+ },
3478
+ "2": {
3479
+ "$ref": "#/$defs/_arrayOfSpell"
3480
+ },
3481
+ "3": {
3482
+ "$ref": "#/$defs/_arrayOfSpell"
3483
+ },
3484
+ "4": {
3485
+ "$ref": "#/$defs/_arrayOfSpell"
3486
+ },
3487
+ "5": {
3488
+ "$ref": "#/$defs/_arrayOfSpell"
3489
+ },
3490
+ "6": {
3491
+ "$ref": "#/$defs/_arrayOfSpell"
3492
+ }
3493
+ },
3494
+ "additionalProperties": false
3495
+ },
3467
3496
  "entryWrapped": {
3468
3497
  "type": "object",
3469
3498
  "properties": {
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.13.21",
6
+ "version": "1.13.22",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -3041,6 +3041,23 @@
3041
3041
  },
3042
3042
  "additionalProperties": false
3043
3043
  },
3044
+ {
3045
+ "type": "object",
3046
+ "properties": {
3047
+ "mode": {
3048
+ "const": "setProp"
3049
+ },
3050
+ "prop": {
3051
+ "type": "string"
3052
+ },
3053
+ "value": {}
3054
+ },
3055
+ "required": [
3056
+ "prop",
3057
+ "value"
3058
+ ],
3059
+ "additionalProperties": false
3060
+ },
3044
3061
  {
3045
3062
  "type": "object",
3046
3063
  "properties": {
@@ -1,85 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.0.2",
4
- "$id": "traits.json",
5
- "type": "object",
6
- "$defs": {
7
- "trait": {
8
- "type": "object",
9
- "properties": {
10
- "name": {
11
- "type": "string"
12
- },
13
- "source": {
14
- "type": "string"
15
- },
16
- "page": {
17
- "$ref": "../util.json#/$defs/page"
18
- },
19
- "ref": {
20
- "type": "string"
21
- },
22
- "crMin": {
23
- "type": "string"
24
- },
25
- "crMax": {
26
- "type": "string"
27
- },
28
- "prerequisite": {
29
- "type": "object",
30
- "patternProperties": {
31
- "^.*$": {
32
- "oneOf": [
33
- {
34
- "type": "object",
35
- "properties": {
36
- "min": {},
37
- "max": {}
38
- },
39
- "additionalProperties": false
40
- },
41
- {
42
- "type": "object",
43
- "properties": {
44
- "oneOf": {
45
- "type": "array"
46
- }
47
- },
48
- "additionalProperties": false
49
- }
50
- ]
51
- }
52
- }
53
- },
54
- "apply": {
55
- "type": "object",
56
- "properties": {
57
- "_root": {
58
- "$ref": "bestiary.json#/$defs/creatureData"
59
- },
60
- "_mod": {
61
- "$ref": "../util.json#/$defs/_modObject"
62
- }
63
- }
64
- }
65
- },
66
- "additionalProperties": false,
67
- "required": [
68
- "name",
69
- "source",
70
- "apply"
71
- ]
72
- }
73
- },
74
- "properties": {
75
- "trait": {
76
- "type": "array",
77
- "minItems": 1,
78
- "uniqueItems": true,
79
- "items": {
80
- "$ref": "#/$defs/trait"
81
- }
82
- }
83
- },
84
- "additionalProperties": false
85
- }
@@ -1,85 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.0.2",
4
- "$id": "traits.json",
5
- "type": "object",
6
- "$defs": {
7
- "trait": {
8
- "type": "object",
9
- "properties": {
10
- "name": {
11
- "type": "string"
12
- },
13
- "source": {
14
- "type": "string"
15
- },
16
- "page": {
17
- "$ref": "../util.json#/$defs/page"
18
- },
19
- "ref": {
20
- "type": "string"
21
- },
22
- "crMin": {
23
- "type": "string"
24
- },
25
- "crMax": {
26
- "type": "string"
27
- },
28
- "prerequisite": {
29
- "type": "object",
30
- "patternProperties": {
31
- "^.*$": {
32
- "oneOf": [
33
- {
34
- "type": "object",
35
- "properties": {
36
- "min": {},
37
- "max": {}
38
- },
39
- "additionalProperties": false
40
- },
41
- {
42
- "type": "object",
43
- "properties": {
44
- "oneOf": {
45
- "type": "array"
46
- }
47
- },
48
- "additionalProperties": false
49
- }
50
- ]
51
- }
52
- }
53
- },
54
- "apply": {
55
- "type": "object",
56
- "properties": {
57
- "_root": {
58
- "$ref": "bestiary.json#/$defs/creatureData"
59
- },
60
- "_mod": {
61
- "$ref": "../util.json#/$defs/_modObject"
62
- }
63
- }
64
- }
65
- },
66
- "additionalProperties": false,
67
- "required": [
68
- "name",
69
- "source",
70
- "apply"
71
- ]
72
- }
73
- },
74
- "properties": {
75
- "trait": {
76
- "type": "array",
77
- "minItems": 1,
78
- "uniqueItems": true,
79
- "items": {
80
- "$ref": "#/$defs/trait"
81
- }
82
- }
83
- },
84
- "additionalProperties": false
85
- }
@@ -1,85 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.0.2",
4
- "$id": "traits.json",
5
- "type": "object",
6
- "$defs": {
7
- "trait": {
8
- "type": "object",
9
- "properties": {
10
- "name": {
11
- "type": "string"
12
- },
13
- "source": {
14
- "type": "string"
15
- },
16
- "page": {
17
- "$ref": "../util.json#/$defs/page"
18
- },
19
- "ref": {
20
- "type": "string"
21
- },
22
- "crMin": {
23
- "type": "string"
24
- },
25
- "crMax": {
26
- "type": "string"
27
- },
28
- "prerequisite": {
29
- "type": "object",
30
- "patternProperties": {
31
- "^.*$": {
32
- "oneOf": [
33
- {
34
- "type": "object",
35
- "properties": {
36
- "min": {},
37
- "max": {}
38
- },
39
- "additionalProperties": false
40
- },
41
- {
42
- "type": "object",
43
- "properties": {
44
- "oneOf": {
45
- "type": "array"
46
- }
47
- },
48
- "additionalProperties": false
49
- }
50
- ]
51
- }
52
- }
53
- },
54
- "apply": {
55
- "type": "object",
56
- "properties": {
57
- "_root": {
58
- "$ref": "bestiary.json#/$defs/creatureData"
59
- },
60
- "_mod": {
61
- "$ref": "../util.json#/$defs/_modObject"
62
- }
63
- }
64
- }
65
- },
66
- "additionalProperties": false,
67
- "required": [
68
- "name",
69
- "source",
70
- "apply"
71
- ]
72
- }
73
- },
74
- "properties": {
75
- "trait": {
76
- "type": "array",
77
- "minItems": 1,
78
- "uniqueItems": true,
79
- "items": {
80
- "$ref": "#/$defs/trait"
81
- }
82
- }
83
- },
84
- "additionalProperties": false
85
- }
@@ -1,85 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.0.2",
4
- "$id": "traits.json",
5
- "type": "object",
6
- "$defs": {
7
- "trait": {
8
- "type": "object",
9
- "properties": {
10
- "name": {
11
- "type": "string"
12
- },
13
- "source": {
14
- "type": "string"
15
- },
16
- "page": {
17
- "$ref": "../util.json#/$defs/page"
18
- },
19
- "ref": {
20
- "type": "string"
21
- },
22
- "crMin": {
23
- "type": "string"
24
- },
25
- "crMax": {
26
- "type": "string"
27
- },
28
- "prerequisite": {
29
- "type": "object",
30
- "patternProperties": {
31
- "^.*$": {
32
- "oneOf": [
33
- {
34
- "type": "object",
35
- "properties": {
36
- "min": {},
37
- "max": {}
38
- },
39
- "additionalProperties": false
40
- },
41
- {
42
- "type": "object",
43
- "properties": {
44
- "oneOf": {
45
- "type": "array"
46
- }
47
- },
48
- "additionalProperties": false
49
- }
50
- ]
51
- }
52
- }
53
- },
54
- "apply": {
55
- "type": "object",
56
- "properties": {
57
- "_root": {
58
- "$ref": "bestiary.json#/$defs/creatureData"
59
- },
60
- "_mod": {
61
- "$ref": "../util.json#/$defs/_modObject"
62
- }
63
- }
64
- }
65
- },
66
- "additionalProperties": false,
67
- "required": [
68
- "name",
69
- "source",
70
- "apply"
71
- ]
72
- }
73
- },
74
- "properties": {
75
- "trait": {
76
- "type": "array",
77
- "minItems": 1,
78
- "uniqueItems": true,
79
- "items": {
80
- "$ref": "#/$defs/trait"
81
- }
82
- }
83
- },
84
- "additionalProperties": false
85
- }