5etools-utils 0.9.55 → 0.9.57
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/entry.json +4 -0
- package/schema/brew/spells/spells.json +5 -4
- package/schema/brew/util.json +58 -36
- package/schema/brew-fast/entry.json +4 -0
- package/schema/brew-fast/spells/spells.json +5 -4
- package/schema/brew-fast/util.json +58 -36
- package/schema/site/entry.json +4 -0
- package/schema/site/spells/spells.json +5 -4
- package/schema/site/util.json +58 -36
- package/schema/site-fast/entry.json +4 -0
- package/schema/site-fast/spells/spells.json +5 -4
- package/schema/site-fast/util.json +58 -36
- package/schema/ua/entry.json +4 -0
- package/schema/ua/spells/spells.json +5 -4
- package/schema/ua/util.json +58 -36
- package/schema/ua-fast/entry.json +4 -0
- package/schema/ua-fast/spells/spells.json +5 -4
- package/schema/ua-fast/util.json +58 -36
package/package.json
CHANGED
package/schema/brew/entry.json
CHANGED
|
@@ -3323,6 +3323,9 @@
|
|
|
3323
3323
|
"weekly": {
|
|
3324
3324
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3325
3325
|
},
|
|
3326
|
+
"monthly": {
|
|
3327
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3328
|
+
},
|
|
3326
3329
|
"yearly": {
|
|
3327
3330
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3328
3331
|
},
|
|
@@ -3392,6 +3395,7 @@
|
|
|
3392
3395
|
"rest",
|
|
3393
3396
|
"daily",
|
|
3394
3397
|
"weekly",
|
|
3398
|
+
"monthly",
|
|
3395
3399
|
"yearly",
|
|
3396
3400
|
"ritual",
|
|
3397
3401
|
"spells",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "spells.json",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.11",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -1681,12 +1681,13 @@
|
|
|
1681
1681
|
"type": {
|
|
1682
1682
|
"type": "string",
|
|
1683
1683
|
"examples": [
|
|
1684
|
-
"hour",
|
|
1685
|
-
"minute",
|
|
1686
1684
|
"turn",
|
|
1687
1685
|
"round",
|
|
1688
|
-
"
|
|
1686
|
+
"minute",
|
|
1687
|
+
"hour",
|
|
1689
1688
|
"day",
|
|
1689
|
+
"week",
|
|
1690
|
+
"month",
|
|
1690
1691
|
"year"
|
|
1691
1692
|
]
|
|
1692
1693
|
},
|
package/schema/brew/util.json
CHANGED
|
@@ -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.
|
|
6
|
+
"version": "1.15.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -1505,30 +1505,8 @@
|
|
|
1505
1505
|
"type": "integer"
|
|
1506
1506
|
},
|
|
1507
1507
|
"choose": {
|
|
1508
|
-
"
|
|
1509
|
-
|
|
1510
|
-
"from": {
|
|
1511
|
-
"type": "array",
|
|
1512
|
-
"items": {
|
|
1513
|
-
"enum": [
|
|
1514
|
-
"str",
|
|
1515
|
-
"dex",
|
|
1516
|
-
"con",
|
|
1517
|
-
"int",
|
|
1518
|
-
"wis",
|
|
1519
|
-
"cha"
|
|
1520
|
-
]
|
|
1521
|
-
},
|
|
1522
|
-
"uniqueItems": true,
|
|
1523
|
-
"minItems": 1
|
|
1524
|
-
},
|
|
1525
|
-
"count": {
|
|
1526
|
-
"type": "integer"
|
|
1527
|
-
},
|
|
1528
|
-
"amount": {
|
|
1529
|
-
"type": "integer"
|
|
1530
|
-
},
|
|
1531
|
-
"weighted": {
|
|
1508
|
+
"oneOf": [
|
|
1509
|
+
{
|
|
1532
1510
|
"type": "object",
|
|
1533
1511
|
"properties": {
|
|
1534
1512
|
"from": {
|
|
@@ -1546,20 +1524,61 @@
|
|
|
1546
1524
|
"uniqueItems": true,
|
|
1547
1525
|
"minItems": 1
|
|
1548
1526
|
},
|
|
1549
|
-
"
|
|
1550
|
-
"type": "
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1527
|
+
"count": {
|
|
1528
|
+
"type": "integer"
|
|
1529
|
+
},
|
|
1530
|
+
"amount": {
|
|
1531
|
+
"type": "integer"
|
|
1532
|
+
},
|
|
1533
|
+
"entry": {
|
|
1534
|
+
"$ref": "entry.json"
|
|
1555
1535
|
}
|
|
1556
|
-
}
|
|
1536
|
+
},
|
|
1537
|
+
"required": [
|
|
1538
|
+
"from"
|
|
1539
|
+
],
|
|
1540
|
+
"additionalProperties": false
|
|
1557
1541
|
},
|
|
1558
|
-
|
|
1559
|
-
"
|
|
1542
|
+
{
|
|
1543
|
+
"type": "object",
|
|
1544
|
+
"properties": {
|
|
1545
|
+
"weighted": {
|
|
1546
|
+
"type": "object",
|
|
1547
|
+
"properties": {
|
|
1548
|
+
"from": {
|
|
1549
|
+
"type": "array",
|
|
1550
|
+
"items": {
|
|
1551
|
+
"enum": [
|
|
1552
|
+
"str",
|
|
1553
|
+
"dex",
|
|
1554
|
+
"con",
|
|
1555
|
+
"int",
|
|
1556
|
+
"wis",
|
|
1557
|
+
"cha"
|
|
1558
|
+
]
|
|
1559
|
+
},
|
|
1560
|
+
"uniqueItems": true,
|
|
1561
|
+
"minItems": 1
|
|
1562
|
+
},
|
|
1563
|
+
"weights": {
|
|
1564
|
+
"type": "array",
|
|
1565
|
+
"items": {
|
|
1566
|
+
"type": "integer"
|
|
1567
|
+
},
|
|
1568
|
+
"minItems": 1
|
|
1569
|
+
}
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1572
|
+
"entry": {
|
|
1573
|
+
"$ref": "entry.json"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
"required": [
|
|
1577
|
+
"weighted"
|
|
1578
|
+
],
|
|
1579
|
+
"additionalProperties": false
|
|
1560
1580
|
}
|
|
1561
|
-
|
|
1562
|
-
"additionalProperties": false
|
|
1581
|
+
]
|
|
1563
1582
|
},
|
|
1564
1583
|
"hidden": {
|
|
1565
1584
|
"type": "boolean"
|
|
@@ -3264,6 +3283,9 @@
|
|
|
3264
3283
|
"weekly": {
|
|
3265
3284
|
"type": "object"
|
|
3266
3285
|
},
|
|
3286
|
+
"monthly": {
|
|
3287
|
+
"type": "object"
|
|
3288
|
+
},
|
|
3267
3289
|
"yearly": {
|
|
3268
3290
|
"type": "object"
|
|
3269
3291
|
}
|
|
@@ -3323,6 +3323,9 @@
|
|
|
3323
3323
|
"weekly": {
|
|
3324
3324
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3325
3325
|
},
|
|
3326
|
+
"monthly": {
|
|
3327
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3328
|
+
},
|
|
3326
3329
|
"yearly": {
|
|
3327
3330
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3328
3331
|
},
|
|
@@ -3392,6 +3395,7 @@
|
|
|
3392
3395
|
"rest",
|
|
3393
3396
|
"daily",
|
|
3394
3397
|
"weekly",
|
|
3398
|
+
"monthly",
|
|
3395
3399
|
"yearly",
|
|
3396
3400
|
"ritual",
|
|
3397
3401
|
"spells",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "spells.json",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.11",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -1681,12 +1681,13 @@
|
|
|
1681
1681
|
"type": {
|
|
1682
1682
|
"type": "string",
|
|
1683
1683
|
"examples": [
|
|
1684
|
-
"hour",
|
|
1685
|
-
"minute",
|
|
1686
1684
|
"turn",
|
|
1687
1685
|
"round",
|
|
1688
|
-
"
|
|
1686
|
+
"minute",
|
|
1687
|
+
"hour",
|
|
1689
1688
|
"day",
|
|
1689
|
+
"week",
|
|
1690
|
+
"month",
|
|
1690
1691
|
"year"
|
|
1691
1692
|
]
|
|
1692
1693
|
},
|
|
@@ -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.
|
|
6
|
+
"version": "1.15.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -1505,30 +1505,8 @@
|
|
|
1505
1505
|
"type": "integer"
|
|
1506
1506
|
},
|
|
1507
1507
|
"choose": {
|
|
1508
|
-
"
|
|
1509
|
-
|
|
1510
|
-
"from": {
|
|
1511
|
-
"type": "array",
|
|
1512
|
-
"items": {
|
|
1513
|
-
"enum": [
|
|
1514
|
-
"str",
|
|
1515
|
-
"dex",
|
|
1516
|
-
"con",
|
|
1517
|
-
"int",
|
|
1518
|
-
"wis",
|
|
1519
|
-
"cha"
|
|
1520
|
-
]
|
|
1521
|
-
},
|
|
1522
|
-
"uniqueItems": true,
|
|
1523
|
-
"minItems": 1
|
|
1524
|
-
},
|
|
1525
|
-
"count": {
|
|
1526
|
-
"type": "integer"
|
|
1527
|
-
},
|
|
1528
|
-
"amount": {
|
|
1529
|
-
"type": "integer"
|
|
1530
|
-
},
|
|
1531
|
-
"weighted": {
|
|
1508
|
+
"oneOf": [
|
|
1509
|
+
{
|
|
1532
1510
|
"type": "object",
|
|
1533
1511
|
"properties": {
|
|
1534
1512
|
"from": {
|
|
@@ -1546,20 +1524,61 @@
|
|
|
1546
1524
|
"uniqueItems": true,
|
|
1547
1525
|
"minItems": 1
|
|
1548
1526
|
},
|
|
1549
|
-
"
|
|
1550
|
-
"type": "
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1527
|
+
"count": {
|
|
1528
|
+
"type": "integer"
|
|
1529
|
+
},
|
|
1530
|
+
"amount": {
|
|
1531
|
+
"type": "integer"
|
|
1532
|
+
},
|
|
1533
|
+
"entry": {
|
|
1534
|
+
"$ref": "entry.json"
|
|
1555
1535
|
}
|
|
1556
|
-
}
|
|
1536
|
+
},
|
|
1537
|
+
"required": [
|
|
1538
|
+
"from"
|
|
1539
|
+
],
|
|
1540
|
+
"additionalProperties": false
|
|
1557
1541
|
},
|
|
1558
|
-
|
|
1559
|
-
"
|
|
1542
|
+
{
|
|
1543
|
+
"type": "object",
|
|
1544
|
+
"properties": {
|
|
1545
|
+
"weighted": {
|
|
1546
|
+
"type": "object",
|
|
1547
|
+
"properties": {
|
|
1548
|
+
"from": {
|
|
1549
|
+
"type": "array",
|
|
1550
|
+
"items": {
|
|
1551
|
+
"enum": [
|
|
1552
|
+
"str",
|
|
1553
|
+
"dex",
|
|
1554
|
+
"con",
|
|
1555
|
+
"int",
|
|
1556
|
+
"wis",
|
|
1557
|
+
"cha"
|
|
1558
|
+
]
|
|
1559
|
+
},
|
|
1560
|
+
"uniqueItems": true,
|
|
1561
|
+
"minItems": 1
|
|
1562
|
+
},
|
|
1563
|
+
"weights": {
|
|
1564
|
+
"type": "array",
|
|
1565
|
+
"items": {
|
|
1566
|
+
"type": "integer"
|
|
1567
|
+
},
|
|
1568
|
+
"minItems": 1
|
|
1569
|
+
}
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1572
|
+
"entry": {
|
|
1573
|
+
"$ref": "entry.json"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
"required": [
|
|
1577
|
+
"weighted"
|
|
1578
|
+
],
|
|
1579
|
+
"additionalProperties": false
|
|
1560
1580
|
}
|
|
1561
|
-
|
|
1562
|
-
"additionalProperties": false
|
|
1581
|
+
]
|
|
1563
1582
|
},
|
|
1564
1583
|
"hidden": {
|
|
1565
1584
|
"type": "boolean"
|
|
@@ -3264,6 +3283,9 @@
|
|
|
3264
3283
|
"weekly": {
|
|
3265
3284
|
"type": "object"
|
|
3266
3285
|
},
|
|
3286
|
+
"monthly": {
|
|
3287
|
+
"type": "object"
|
|
3288
|
+
},
|
|
3267
3289
|
"yearly": {
|
|
3268
3290
|
"type": "object"
|
|
3269
3291
|
}
|
package/schema/site/entry.json
CHANGED
|
@@ -3280,6 +3280,9 @@
|
|
|
3280
3280
|
"weekly": {
|
|
3281
3281
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3282
3282
|
},
|
|
3283
|
+
"monthly": {
|
|
3284
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
|
+
},
|
|
3283
3286
|
"yearly": {
|
|
3284
3287
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
3288
|
},
|
|
@@ -3349,6 +3352,7 @@
|
|
|
3349
3352
|
"rest",
|
|
3350
3353
|
"daily",
|
|
3351
3354
|
"weekly",
|
|
3355
|
+
"monthly",
|
|
3352
3356
|
"yearly",
|
|
3353
3357
|
"ritual",
|
|
3354
3358
|
"spells",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "spells.json",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.11",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -1042,12 +1042,13 @@
|
|
|
1042
1042
|
"type": {
|
|
1043
1043
|
"type": "string",
|
|
1044
1044
|
"enum": [
|
|
1045
|
-
"hour",
|
|
1046
|
-
"minute",
|
|
1047
1045
|
"turn",
|
|
1048
1046
|
"round",
|
|
1049
|
-
"
|
|
1047
|
+
"minute",
|
|
1048
|
+
"hour",
|
|
1050
1049
|
"day",
|
|
1050
|
+
"week",
|
|
1051
|
+
"month",
|
|
1051
1052
|
"year"
|
|
1052
1053
|
]
|
|
1053
1054
|
},
|
package/schema/site/util.json
CHANGED
|
@@ -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.
|
|
6
|
+
"version": "1.15.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -1493,30 +1493,8 @@
|
|
|
1493
1493
|
"type": "integer"
|
|
1494
1494
|
},
|
|
1495
1495
|
"choose": {
|
|
1496
|
-
"
|
|
1497
|
-
|
|
1498
|
-
"from": {
|
|
1499
|
-
"type": "array",
|
|
1500
|
-
"items": {
|
|
1501
|
-
"enum": [
|
|
1502
|
-
"str",
|
|
1503
|
-
"dex",
|
|
1504
|
-
"con",
|
|
1505
|
-
"int",
|
|
1506
|
-
"wis",
|
|
1507
|
-
"cha"
|
|
1508
|
-
]
|
|
1509
|
-
},
|
|
1510
|
-
"uniqueItems": true,
|
|
1511
|
-
"minItems": 1
|
|
1512
|
-
},
|
|
1513
|
-
"count": {
|
|
1514
|
-
"type": "integer"
|
|
1515
|
-
},
|
|
1516
|
-
"amount": {
|
|
1517
|
-
"type": "integer"
|
|
1518
|
-
},
|
|
1519
|
-
"weighted": {
|
|
1496
|
+
"oneOf": [
|
|
1497
|
+
{
|
|
1520
1498
|
"type": "object",
|
|
1521
1499
|
"properties": {
|
|
1522
1500
|
"from": {
|
|
@@ -1534,20 +1512,61 @@
|
|
|
1534
1512
|
"uniqueItems": true,
|
|
1535
1513
|
"minItems": 1
|
|
1536
1514
|
},
|
|
1537
|
-
"
|
|
1538
|
-
"type": "
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1515
|
+
"count": {
|
|
1516
|
+
"type": "integer"
|
|
1517
|
+
},
|
|
1518
|
+
"amount": {
|
|
1519
|
+
"type": "integer"
|
|
1520
|
+
},
|
|
1521
|
+
"entry": {
|
|
1522
|
+
"$ref": "entry.json"
|
|
1543
1523
|
}
|
|
1544
|
-
}
|
|
1524
|
+
},
|
|
1525
|
+
"required": [
|
|
1526
|
+
"from"
|
|
1527
|
+
],
|
|
1528
|
+
"additionalProperties": false
|
|
1545
1529
|
},
|
|
1546
|
-
|
|
1547
|
-
"
|
|
1530
|
+
{
|
|
1531
|
+
"type": "object",
|
|
1532
|
+
"properties": {
|
|
1533
|
+
"weighted": {
|
|
1534
|
+
"type": "object",
|
|
1535
|
+
"properties": {
|
|
1536
|
+
"from": {
|
|
1537
|
+
"type": "array",
|
|
1538
|
+
"items": {
|
|
1539
|
+
"enum": [
|
|
1540
|
+
"str",
|
|
1541
|
+
"dex",
|
|
1542
|
+
"con",
|
|
1543
|
+
"int",
|
|
1544
|
+
"wis",
|
|
1545
|
+
"cha"
|
|
1546
|
+
]
|
|
1547
|
+
},
|
|
1548
|
+
"uniqueItems": true,
|
|
1549
|
+
"minItems": 1
|
|
1550
|
+
},
|
|
1551
|
+
"weights": {
|
|
1552
|
+
"type": "array",
|
|
1553
|
+
"items": {
|
|
1554
|
+
"type": "integer"
|
|
1555
|
+
},
|
|
1556
|
+
"minItems": 1
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
},
|
|
1560
|
+
"entry": {
|
|
1561
|
+
"$ref": "entry.json"
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1564
|
+
"required": [
|
|
1565
|
+
"weighted"
|
|
1566
|
+
],
|
|
1567
|
+
"additionalProperties": false
|
|
1548
1568
|
}
|
|
1549
|
-
|
|
1550
|
-
"additionalProperties": false
|
|
1569
|
+
]
|
|
1551
1570
|
},
|
|
1552
1571
|
"hidden": {
|
|
1553
1572
|
"type": "boolean"
|
|
@@ -3249,6 +3268,9 @@
|
|
|
3249
3268
|
"weekly": {
|
|
3250
3269
|
"type": "object"
|
|
3251
3270
|
},
|
|
3271
|
+
"monthly": {
|
|
3272
|
+
"type": "object"
|
|
3273
|
+
},
|
|
3252
3274
|
"yearly": {
|
|
3253
3275
|
"type": "object"
|
|
3254
3276
|
}
|
|
@@ -3280,6 +3280,9 @@
|
|
|
3280
3280
|
"weekly": {
|
|
3281
3281
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3282
3282
|
},
|
|
3283
|
+
"monthly": {
|
|
3284
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
|
+
},
|
|
3283
3286
|
"yearly": {
|
|
3284
3287
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
3288
|
},
|
|
@@ -3349,6 +3352,7 @@
|
|
|
3349
3352
|
"rest",
|
|
3350
3353
|
"daily",
|
|
3351
3354
|
"weekly",
|
|
3355
|
+
"monthly",
|
|
3352
3356
|
"yearly",
|
|
3353
3357
|
"ritual",
|
|
3354
3358
|
"spells",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "spells.json",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.11",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -1042,12 +1042,13 @@
|
|
|
1042
1042
|
"type": {
|
|
1043
1043
|
"type": "string",
|
|
1044
1044
|
"enum": [
|
|
1045
|
-
"hour",
|
|
1046
|
-
"minute",
|
|
1047
1045
|
"turn",
|
|
1048
1046
|
"round",
|
|
1049
|
-
"
|
|
1047
|
+
"minute",
|
|
1048
|
+
"hour",
|
|
1050
1049
|
"day",
|
|
1050
|
+
"week",
|
|
1051
|
+
"month",
|
|
1051
1052
|
"year"
|
|
1052
1053
|
]
|
|
1053
1054
|
},
|
|
@@ -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.
|
|
6
|
+
"version": "1.15.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -1493,30 +1493,8 @@
|
|
|
1493
1493
|
"type": "integer"
|
|
1494
1494
|
},
|
|
1495
1495
|
"choose": {
|
|
1496
|
-
"
|
|
1497
|
-
|
|
1498
|
-
"from": {
|
|
1499
|
-
"type": "array",
|
|
1500
|
-
"items": {
|
|
1501
|
-
"enum": [
|
|
1502
|
-
"str",
|
|
1503
|
-
"dex",
|
|
1504
|
-
"con",
|
|
1505
|
-
"int",
|
|
1506
|
-
"wis",
|
|
1507
|
-
"cha"
|
|
1508
|
-
]
|
|
1509
|
-
},
|
|
1510
|
-
"uniqueItems": true,
|
|
1511
|
-
"minItems": 1
|
|
1512
|
-
},
|
|
1513
|
-
"count": {
|
|
1514
|
-
"type": "integer"
|
|
1515
|
-
},
|
|
1516
|
-
"amount": {
|
|
1517
|
-
"type": "integer"
|
|
1518
|
-
},
|
|
1519
|
-
"weighted": {
|
|
1496
|
+
"oneOf": [
|
|
1497
|
+
{
|
|
1520
1498
|
"type": "object",
|
|
1521
1499
|
"properties": {
|
|
1522
1500
|
"from": {
|
|
@@ -1534,20 +1512,61 @@
|
|
|
1534
1512
|
"uniqueItems": true,
|
|
1535
1513
|
"minItems": 1
|
|
1536
1514
|
},
|
|
1537
|
-
"
|
|
1538
|
-
"type": "
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1515
|
+
"count": {
|
|
1516
|
+
"type": "integer"
|
|
1517
|
+
},
|
|
1518
|
+
"amount": {
|
|
1519
|
+
"type": "integer"
|
|
1520
|
+
},
|
|
1521
|
+
"entry": {
|
|
1522
|
+
"$ref": "entry.json"
|
|
1543
1523
|
}
|
|
1544
|
-
}
|
|
1524
|
+
},
|
|
1525
|
+
"required": [
|
|
1526
|
+
"from"
|
|
1527
|
+
],
|
|
1528
|
+
"additionalProperties": false
|
|
1545
1529
|
},
|
|
1546
|
-
|
|
1547
|
-
"
|
|
1530
|
+
{
|
|
1531
|
+
"type": "object",
|
|
1532
|
+
"properties": {
|
|
1533
|
+
"weighted": {
|
|
1534
|
+
"type": "object",
|
|
1535
|
+
"properties": {
|
|
1536
|
+
"from": {
|
|
1537
|
+
"type": "array",
|
|
1538
|
+
"items": {
|
|
1539
|
+
"enum": [
|
|
1540
|
+
"str",
|
|
1541
|
+
"dex",
|
|
1542
|
+
"con",
|
|
1543
|
+
"int",
|
|
1544
|
+
"wis",
|
|
1545
|
+
"cha"
|
|
1546
|
+
]
|
|
1547
|
+
},
|
|
1548
|
+
"uniqueItems": true,
|
|
1549
|
+
"minItems": 1
|
|
1550
|
+
},
|
|
1551
|
+
"weights": {
|
|
1552
|
+
"type": "array",
|
|
1553
|
+
"items": {
|
|
1554
|
+
"type": "integer"
|
|
1555
|
+
},
|
|
1556
|
+
"minItems": 1
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
},
|
|
1560
|
+
"entry": {
|
|
1561
|
+
"$ref": "entry.json"
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1564
|
+
"required": [
|
|
1565
|
+
"weighted"
|
|
1566
|
+
],
|
|
1567
|
+
"additionalProperties": false
|
|
1548
1568
|
}
|
|
1549
|
-
|
|
1550
|
-
"additionalProperties": false
|
|
1569
|
+
]
|
|
1551
1570
|
},
|
|
1552
1571
|
"hidden": {
|
|
1553
1572
|
"type": "boolean"
|
|
@@ -3249,6 +3268,9 @@
|
|
|
3249
3268
|
"weekly": {
|
|
3250
3269
|
"type": "object"
|
|
3251
3270
|
},
|
|
3271
|
+
"monthly": {
|
|
3272
|
+
"type": "object"
|
|
3273
|
+
},
|
|
3252
3274
|
"yearly": {
|
|
3253
3275
|
"type": "object"
|
|
3254
3276
|
}
|
package/schema/ua/entry.json
CHANGED
|
@@ -3280,6 +3280,9 @@
|
|
|
3280
3280
|
"weekly": {
|
|
3281
3281
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3282
3282
|
},
|
|
3283
|
+
"monthly": {
|
|
3284
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
|
+
},
|
|
3283
3286
|
"yearly": {
|
|
3284
3287
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
3288
|
},
|
|
@@ -3349,6 +3352,7 @@
|
|
|
3349
3352
|
"rest",
|
|
3350
3353
|
"daily",
|
|
3351
3354
|
"weekly",
|
|
3355
|
+
"monthly",
|
|
3352
3356
|
"yearly",
|
|
3353
3357
|
"ritual",
|
|
3354
3358
|
"spells",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "spells.json",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.11",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -1582,12 +1582,13 @@
|
|
|
1582
1582
|
"type": {
|
|
1583
1583
|
"type": "string",
|
|
1584
1584
|
"enum": [
|
|
1585
|
-
"hour",
|
|
1586
|
-
"minute",
|
|
1587
1585
|
"turn",
|
|
1588
1586
|
"round",
|
|
1589
|
-
"
|
|
1587
|
+
"minute",
|
|
1588
|
+
"hour",
|
|
1590
1589
|
"day",
|
|
1590
|
+
"week",
|
|
1591
|
+
"month",
|
|
1591
1592
|
"year"
|
|
1592
1593
|
]
|
|
1593
1594
|
},
|
package/schema/ua/util.json
CHANGED
|
@@ -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.
|
|
6
|
+
"version": "1.15.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -1496,30 +1496,8 @@
|
|
|
1496
1496
|
"type": "integer"
|
|
1497
1497
|
},
|
|
1498
1498
|
"choose": {
|
|
1499
|
-
"
|
|
1500
|
-
|
|
1501
|
-
"from": {
|
|
1502
|
-
"type": "array",
|
|
1503
|
-
"items": {
|
|
1504
|
-
"enum": [
|
|
1505
|
-
"str",
|
|
1506
|
-
"dex",
|
|
1507
|
-
"con",
|
|
1508
|
-
"int",
|
|
1509
|
-
"wis",
|
|
1510
|
-
"cha"
|
|
1511
|
-
]
|
|
1512
|
-
},
|
|
1513
|
-
"uniqueItems": true,
|
|
1514
|
-
"minItems": 1
|
|
1515
|
-
},
|
|
1516
|
-
"count": {
|
|
1517
|
-
"type": "integer"
|
|
1518
|
-
},
|
|
1519
|
-
"amount": {
|
|
1520
|
-
"type": "integer"
|
|
1521
|
-
},
|
|
1522
|
-
"weighted": {
|
|
1499
|
+
"oneOf": [
|
|
1500
|
+
{
|
|
1523
1501
|
"type": "object",
|
|
1524
1502
|
"properties": {
|
|
1525
1503
|
"from": {
|
|
@@ -1537,20 +1515,61 @@
|
|
|
1537
1515
|
"uniqueItems": true,
|
|
1538
1516
|
"minItems": 1
|
|
1539
1517
|
},
|
|
1540
|
-
"
|
|
1541
|
-
"type": "
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1518
|
+
"count": {
|
|
1519
|
+
"type": "integer"
|
|
1520
|
+
},
|
|
1521
|
+
"amount": {
|
|
1522
|
+
"type": "integer"
|
|
1523
|
+
},
|
|
1524
|
+
"entry": {
|
|
1525
|
+
"$ref": "entry.json"
|
|
1546
1526
|
}
|
|
1547
|
-
}
|
|
1527
|
+
},
|
|
1528
|
+
"required": [
|
|
1529
|
+
"from"
|
|
1530
|
+
],
|
|
1531
|
+
"additionalProperties": false
|
|
1548
1532
|
},
|
|
1549
|
-
|
|
1550
|
-
"
|
|
1533
|
+
{
|
|
1534
|
+
"type": "object",
|
|
1535
|
+
"properties": {
|
|
1536
|
+
"weighted": {
|
|
1537
|
+
"type": "object",
|
|
1538
|
+
"properties": {
|
|
1539
|
+
"from": {
|
|
1540
|
+
"type": "array",
|
|
1541
|
+
"items": {
|
|
1542
|
+
"enum": [
|
|
1543
|
+
"str",
|
|
1544
|
+
"dex",
|
|
1545
|
+
"con",
|
|
1546
|
+
"int",
|
|
1547
|
+
"wis",
|
|
1548
|
+
"cha"
|
|
1549
|
+
]
|
|
1550
|
+
},
|
|
1551
|
+
"uniqueItems": true,
|
|
1552
|
+
"minItems": 1
|
|
1553
|
+
},
|
|
1554
|
+
"weights": {
|
|
1555
|
+
"type": "array",
|
|
1556
|
+
"items": {
|
|
1557
|
+
"type": "integer"
|
|
1558
|
+
},
|
|
1559
|
+
"minItems": 1
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"entry": {
|
|
1564
|
+
"$ref": "entry.json"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"required": [
|
|
1568
|
+
"weighted"
|
|
1569
|
+
],
|
|
1570
|
+
"additionalProperties": false
|
|
1551
1571
|
}
|
|
1552
|
-
|
|
1553
|
-
"additionalProperties": false
|
|
1572
|
+
]
|
|
1554
1573
|
},
|
|
1555
1574
|
"hidden": {
|
|
1556
1575
|
"type": "boolean"
|
|
@@ -3252,6 +3271,9 @@
|
|
|
3252
3271
|
"weekly": {
|
|
3253
3272
|
"type": "object"
|
|
3254
3273
|
},
|
|
3274
|
+
"monthly": {
|
|
3275
|
+
"type": "object"
|
|
3276
|
+
},
|
|
3255
3277
|
"yearly": {
|
|
3256
3278
|
"type": "object"
|
|
3257
3279
|
}
|
|
@@ -3280,6 +3280,9 @@
|
|
|
3280
3280
|
"weekly": {
|
|
3281
3281
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3282
3282
|
},
|
|
3283
|
+
"monthly": {
|
|
3284
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
|
+
},
|
|
3283
3286
|
"yearly": {
|
|
3284
3287
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3285
3288
|
},
|
|
@@ -3349,6 +3352,7 @@
|
|
|
3349
3352
|
"rest",
|
|
3350
3353
|
"daily",
|
|
3351
3354
|
"weekly",
|
|
3355
|
+
"monthly",
|
|
3352
3356
|
"yearly",
|
|
3353
3357
|
"ritual",
|
|
3354
3358
|
"spells",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "spells.json",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.11",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -1582,12 +1582,13 @@
|
|
|
1582
1582
|
"type": {
|
|
1583
1583
|
"type": "string",
|
|
1584
1584
|
"enum": [
|
|
1585
|
-
"hour",
|
|
1586
|
-
"minute",
|
|
1587
1585
|
"turn",
|
|
1588
1586
|
"round",
|
|
1589
|
-
"
|
|
1587
|
+
"minute",
|
|
1588
|
+
"hour",
|
|
1590
1589
|
"day",
|
|
1590
|
+
"week",
|
|
1591
|
+
"month",
|
|
1591
1592
|
"year"
|
|
1592
1593
|
]
|
|
1593
1594
|
},
|
package/schema/ua-fast/util.json
CHANGED
|
@@ -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.
|
|
6
|
+
"version": "1.15.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -1496,30 +1496,8 @@
|
|
|
1496
1496
|
"type": "integer"
|
|
1497
1497
|
},
|
|
1498
1498
|
"choose": {
|
|
1499
|
-
"
|
|
1500
|
-
|
|
1501
|
-
"from": {
|
|
1502
|
-
"type": "array",
|
|
1503
|
-
"items": {
|
|
1504
|
-
"enum": [
|
|
1505
|
-
"str",
|
|
1506
|
-
"dex",
|
|
1507
|
-
"con",
|
|
1508
|
-
"int",
|
|
1509
|
-
"wis",
|
|
1510
|
-
"cha"
|
|
1511
|
-
]
|
|
1512
|
-
},
|
|
1513
|
-
"uniqueItems": true,
|
|
1514
|
-
"minItems": 1
|
|
1515
|
-
},
|
|
1516
|
-
"count": {
|
|
1517
|
-
"type": "integer"
|
|
1518
|
-
},
|
|
1519
|
-
"amount": {
|
|
1520
|
-
"type": "integer"
|
|
1521
|
-
},
|
|
1522
|
-
"weighted": {
|
|
1499
|
+
"oneOf": [
|
|
1500
|
+
{
|
|
1523
1501
|
"type": "object",
|
|
1524
1502
|
"properties": {
|
|
1525
1503
|
"from": {
|
|
@@ -1537,20 +1515,61 @@
|
|
|
1537
1515
|
"uniqueItems": true,
|
|
1538
1516
|
"minItems": 1
|
|
1539
1517
|
},
|
|
1540
|
-
"
|
|
1541
|
-
"type": "
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1518
|
+
"count": {
|
|
1519
|
+
"type": "integer"
|
|
1520
|
+
},
|
|
1521
|
+
"amount": {
|
|
1522
|
+
"type": "integer"
|
|
1523
|
+
},
|
|
1524
|
+
"entry": {
|
|
1525
|
+
"$ref": "entry.json"
|
|
1546
1526
|
}
|
|
1547
|
-
}
|
|
1527
|
+
},
|
|
1528
|
+
"required": [
|
|
1529
|
+
"from"
|
|
1530
|
+
],
|
|
1531
|
+
"additionalProperties": false
|
|
1548
1532
|
},
|
|
1549
|
-
|
|
1550
|
-
"
|
|
1533
|
+
{
|
|
1534
|
+
"type": "object",
|
|
1535
|
+
"properties": {
|
|
1536
|
+
"weighted": {
|
|
1537
|
+
"type": "object",
|
|
1538
|
+
"properties": {
|
|
1539
|
+
"from": {
|
|
1540
|
+
"type": "array",
|
|
1541
|
+
"items": {
|
|
1542
|
+
"enum": [
|
|
1543
|
+
"str",
|
|
1544
|
+
"dex",
|
|
1545
|
+
"con",
|
|
1546
|
+
"int",
|
|
1547
|
+
"wis",
|
|
1548
|
+
"cha"
|
|
1549
|
+
]
|
|
1550
|
+
},
|
|
1551
|
+
"uniqueItems": true,
|
|
1552
|
+
"minItems": 1
|
|
1553
|
+
},
|
|
1554
|
+
"weights": {
|
|
1555
|
+
"type": "array",
|
|
1556
|
+
"items": {
|
|
1557
|
+
"type": "integer"
|
|
1558
|
+
},
|
|
1559
|
+
"minItems": 1
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"entry": {
|
|
1564
|
+
"$ref": "entry.json"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"required": [
|
|
1568
|
+
"weighted"
|
|
1569
|
+
],
|
|
1570
|
+
"additionalProperties": false
|
|
1551
1571
|
}
|
|
1552
|
-
|
|
1553
|
-
"additionalProperties": false
|
|
1572
|
+
]
|
|
1554
1573
|
},
|
|
1555
1574
|
"hidden": {
|
|
1556
1575
|
"type": "boolean"
|
|
@@ -3252,6 +3271,9 @@
|
|
|
3252
3271
|
"weekly": {
|
|
3253
3272
|
"type": "object"
|
|
3254
3273
|
},
|
|
3274
|
+
"monthly": {
|
|
3275
|
+
"type": "object"
|
|
3276
|
+
},
|
|
3255
3277
|
"yearly": {
|
|
3256
3278
|
"type": "object"
|
|
3257
3279
|
}
|