5etools-utils 0.6.0 → 0.6.1
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 +3 -2
- package/schema/brew/bestiary/bestiary.json +265 -181
- package/schema/brew-fast/adventures.json +3 -2
- package/schema/brew-fast/bestiary/bestiary.json +265 -181
- package/schema/site/adventures.json +3 -2
- package/schema/site/bestiary/bestiary.json +265 -181
- package/schema/site-fast/adventures.json +3 -2
- package/schema/site-fast/bestiary/bestiary.json +265 -181
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.12",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -645,27 +645,34 @@
|
|
|
645
645
|
}
|
|
646
646
|
},
|
|
647
647
|
"bonus": {
|
|
648
|
-
"
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
"
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
648
|
+
"oneOf": [
|
|
649
|
+
{
|
|
650
|
+
"type": "array",
|
|
651
|
+
"minItems": 1,
|
|
652
|
+
"items": {
|
|
653
|
+
"type": "object",
|
|
654
|
+
"properties": {
|
|
655
|
+
"name": {
|
|
656
|
+
"type": "string"
|
|
657
|
+
},
|
|
658
|
+
"entries": {
|
|
659
|
+
"type": "array",
|
|
660
|
+
"items": {
|
|
661
|
+
"$ref": "../entry.json"
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"required": [
|
|
666
|
+
"name",
|
|
667
|
+
"entries"
|
|
668
|
+
],
|
|
669
|
+
"additionalProperties": false
|
|
661
670
|
}
|
|
662
671
|
},
|
|
663
|
-
|
|
664
|
-
"
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
"additionalProperties": false
|
|
668
|
-
}
|
|
672
|
+
{
|
|
673
|
+
"type": "null"
|
|
674
|
+
}
|
|
675
|
+
]
|
|
669
676
|
},
|
|
670
677
|
"reactionNote": {
|
|
671
678
|
"type": "string"
|
|
@@ -678,27 +685,34 @@
|
|
|
678
685
|
}
|
|
679
686
|
},
|
|
680
687
|
"reaction": {
|
|
681
|
-
"
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
"
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
688
|
+
"oneOf": [
|
|
689
|
+
{
|
|
690
|
+
"type": "array",
|
|
691
|
+
"minItems": 1,
|
|
692
|
+
"items": {
|
|
693
|
+
"type": "object",
|
|
694
|
+
"properties": {
|
|
695
|
+
"name": {
|
|
696
|
+
"type": "string"
|
|
697
|
+
},
|
|
698
|
+
"entries": {
|
|
699
|
+
"type": "array",
|
|
700
|
+
"items": {
|
|
701
|
+
"$ref": "../entry.json"
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
},
|
|
705
|
+
"required": [
|
|
706
|
+
"name",
|
|
707
|
+
"entries"
|
|
708
|
+
],
|
|
709
|
+
"additionalProperties": false
|
|
694
710
|
}
|
|
695
711
|
},
|
|
696
|
-
|
|
697
|
-
"
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
"additionalProperties": false
|
|
701
|
-
}
|
|
712
|
+
{
|
|
713
|
+
"type": "null"
|
|
714
|
+
}
|
|
715
|
+
]
|
|
702
716
|
},
|
|
703
717
|
"legendaryGroup": {
|
|
704
718
|
"type": "object",
|
|
@@ -758,32 +772,46 @@
|
|
|
758
772
|
}
|
|
759
773
|
},
|
|
760
774
|
"mythic": {
|
|
761
|
-
"
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
"
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
775
|
+
"oneOf": [
|
|
776
|
+
{
|
|
777
|
+
"type": "array",
|
|
778
|
+
"minItems": 1,
|
|
779
|
+
"items": {
|
|
780
|
+
"type": "object",
|
|
781
|
+
"properties": {
|
|
782
|
+
"name": {
|
|
783
|
+
"type": "string"
|
|
784
|
+
},
|
|
785
|
+
"entries": {
|
|
786
|
+
"type": "array",
|
|
787
|
+
"items": {
|
|
788
|
+
"$ref": "../entry.json"
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
},
|
|
792
|
+
"required": [
|
|
793
|
+
"entries"
|
|
794
|
+
],
|
|
795
|
+
"additionalProperties": false
|
|
774
796
|
}
|
|
775
797
|
},
|
|
776
|
-
|
|
777
|
-
"
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
}
|
|
798
|
+
{
|
|
799
|
+
"type": "null"
|
|
800
|
+
}
|
|
801
|
+
]
|
|
781
802
|
},
|
|
782
803
|
"variant": {
|
|
783
|
-
"
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
804
|
+
"oneOf": [
|
|
805
|
+
{
|
|
806
|
+
"type": "array",
|
|
807
|
+
"items": {
|
|
808
|
+
"$ref": "#/$defs/entryVariantBestiary"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"type": "null"
|
|
813
|
+
}
|
|
814
|
+
]
|
|
787
815
|
},
|
|
788
816
|
"page": {
|
|
789
817
|
"$ref": "../util.json#/$defs/page"
|
|
@@ -1671,27 +1699,34 @@
|
|
|
1671
1699
|
}
|
|
1672
1700
|
},
|
|
1673
1701
|
"bonus": {
|
|
1674
|
-
"
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
"
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1702
|
+
"oneOf": [
|
|
1703
|
+
{
|
|
1704
|
+
"type": "array",
|
|
1705
|
+
"minItems": 1,
|
|
1706
|
+
"items": {
|
|
1707
|
+
"type": "object",
|
|
1708
|
+
"properties": {
|
|
1709
|
+
"name": {
|
|
1710
|
+
"type": "string"
|
|
1711
|
+
},
|
|
1712
|
+
"entries": {
|
|
1713
|
+
"type": "array",
|
|
1714
|
+
"items": {
|
|
1715
|
+
"$ref": "../entry.json"
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
},
|
|
1719
|
+
"required": [
|
|
1720
|
+
"name",
|
|
1721
|
+
"entries"
|
|
1722
|
+
],
|
|
1723
|
+
"additionalProperties": false
|
|
1687
1724
|
}
|
|
1688
1725
|
},
|
|
1689
|
-
|
|
1690
|
-
"
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
"additionalProperties": false
|
|
1694
|
-
}
|
|
1726
|
+
{
|
|
1727
|
+
"type": "null"
|
|
1728
|
+
}
|
|
1729
|
+
]
|
|
1695
1730
|
},
|
|
1696
1731
|
"reactionNote": {
|
|
1697
1732
|
"type": "string"
|
|
@@ -1704,27 +1739,34 @@
|
|
|
1704
1739
|
}
|
|
1705
1740
|
},
|
|
1706
1741
|
"reaction": {
|
|
1707
|
-
"
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
"
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1742
|
+
"oneOf": [
|
|
1743
|
+
{
|
|
1744
|
+
"type": "array",
|
|
1745
|
+
"minItems": 1,
|
|
1746
|
+
"items": {
|
|
1747
|
+
"type": "object",
|
|
1748
|
+
"properties": {
|
|
1749
|
+
"name": {
|
|
1750
|
+
"type": "string"
|
|
1751
|
+
},
|
|
1752
|
+
"entries": {
|
|
1753
|
+
"type": "array",
|
|
1754
|
+
"items": {
|
|
1755
|
+
"$ref": "../entry.json"
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
},
|
|
1759
|
+
"required": [
|
|
1760
|
+
"name",
|
|
1761
|
+
"entries"
|
|
1762
|
+
],
|
|
1763
|
+
"additionalProperties": false
|
|
1720
1764
|
}
|
|
1721
1765
|
},
|
|
1722
|
-
|
|
1723
|
-
"
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
"additionalProperties": false
|
|
1727
|
-
}
|
|
1766
|
+
{
|
|
1767
|
+
"type": "null"
|
|
1768
|
+
}
|
|
1769
|
+
]
|
|
1728
1770
|
},
|
|
1729
1771
|
"legendaryGroup": {
|
|
1730
1772
|
"type": "object",
|
|
@@ -1784,32 +1826,46 @@
|
|
|
1784
1826
|
}
|
|
1785
1827
|
},
|
|
1786
1828
|
"mythic": {
|
|
1787
|
-
"
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
"
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1829
|
+
"oneOf": [
|
|
1830
|
+
{
|
|
1831
|
+
"type": "array",
|
|
1832
|
+
"minItems": 1,
|
|
1833
|
+
"items": {
|
|
1834
|
+
"type": "object",
|
|
1835
|
+
"properties": {
|
|
1836
|
+
"name": {
|
|
1837
|
+
"type": "string"
|
|
1838
|
+
},
|
|
1839
|
+
"entries": {
|
|
1840
|
+
"type": "array",
|
|
1841
|
+
"items": {
|
|
1842
|
+
"$ref": "../entry.json"
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"required": [
|
|
1847
|
+
"entries"
|
|
1848
|
+
],
|
|
1849
|
+
"additionalProperties": false
|
|
1800
1850
|
}
|
|
1801
1851
|
},
|
|
1802
|
-
|
|
1803
|
-
"
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
}
|
|
1852
|
+
{
|
|
1853
|
+
"type": "null"
|
|
1854
|
+
}
|
|
1855
|
+
]
|
|
1807
1856
|
},
|
|
1808
1857
|
"variant": {
|
|
1809
|
-
"
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1858
|
+
"oneOf": [
|
|
1859
|
+
{
|
|
1860
|
+
"type": "array",
|
|
1861
|
+
"items": {
|
|
1862
|
+
"$ref": "#/$defs/entryVariantBestiary"
|
|
1863
|
+
}
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"type": "null"
|
|
1867
|
+
}
|
|
1868
|
+
]
|
|
1813
1869
|
},
|
|
1814
1870
|
"page": {
|
|
1815
1871
|
"$ref": "../util.json#/$defs/page"
|
|
@@ -2712,27 +2768,34 @@
|
|
|
2712
2768
|
}
|
|
2713
2769
|
},
|
|
2714
2770
|
"bonus": {
|
|
2715
|
-
"
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
"
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2771
|
+
"oneOf": [
|
|
2772
|
+
{
|
|
2773
|
+
"type": "array",
|
|
2774
|
+
"minItems": 1,
|
|
2775
|
+
"items": {
|
|
2776
|
+
"type": "object",
|
|
2777
|
+
"properties": {
|
|
2778
|
+
"name": {
|
|
2779
|
+
"type": "string"
|
|
2780
|
+
},
|
|
2781
|
+
"entries": {
|
|
2782
|
+
"type": "array",
|
|
2783
|
+
"items": {
|
|
2784
|
+
"$ref": "../entry.json"
|
|
2785
|
+
}
|
|
2786
|
+
}
|
|
2787
|
+
},
|
|
2788
|
+
"required": [
|
|
2789
|
+
"name",
|
|
2790
|
+
"entries"
|
|
2791
|
+
],
|
|
2792
|
+
"additionalProperties": false
|
|
2728
2793
|
}
|
|
2729
2794
|
},
|
|
2730
|
-
|
|
2731
|
-
"
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
"additionalProperties": false
|
|
2735
|
-
}
|
|
2795
|
+
{
|
|
2796
|
+
"type": "null"
|
|
2797
|
+
}
|
|
2798
|
+
]
|
|
2736
2799
|
},
|
|
2737
2800
|
"reactionNote": {
|
|
2738
2801
|
"type": "string"
|
|
@@ -2745,27 +2808,34 @@
|
|
|
2745
2808
|
}
|
|
2746
2809
|
},
|
|
2747
2810
|
"reaction": {
|
|
2748
|
-
"
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
"
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2811
|
+
"oneOf": [
|
|
2812
|
+
{
|
|
2813
|
+
"type": "array",
|
|
2814
|
+
"minItems": 1,
|
|
2815
|
+
"items": {
|
|
2816
|
+
"type": "object",
|
|
2817
|
+
"properties": {
|
|
2818
|
+
"name": {
|
|
2819
|
+
"type": "string"
|
|
2820
|
+
},
|
|
2821
|
+
"entries": {
|
|
2822
|
+
"type": "array",
|
|
2823
|
+
"items": {
|
|
2824
|
+
"$ref": "../entry.json"
|
|
2825
|
+
}
|
|
2826
|
+
}
|
|
2827
|
+
},
|
|
2828
|
+
"required": [
|
|
2829
|
+
"name",
|
|
2830
|
+
"entries"
|
|
2831
|
+
],
|
|
2832
|
+
"additionalProperties": false
|
|
2761
2833
|
}
|
|
2762
2834
|
},
|
|
2763
|
-
|
|
2764
|
-
"
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
"additionalProperties": false
|
|
2768
|
-
}
|
|
2835
|
+
{
|
|
2836
|
+
"type": "null"
|
|
2837
|
+
}
|
|
2838
|
+
]
|
|
2769
2839
|
},
|
|
2770
2840
|
"legendaryGroup": {
|
|
2771
2841
|
"type": "object",
|
|
@@ -2825,32 +2895,46 @@
|
|
|
2825
2895
|
}
|
|
2826
2896
|
},
|
|
2827
2897
|
"mythic": {
|
|
2828
|
-
"
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
"
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2898
|
+
"oneOf": [
|
|
2899
|
+
{
|
|
2900
|
+
"type": "array",
|
|
2901
|
+
"minItems": 1,
|
|
2902
|
+
"items": {
|
|
2903
|
+
"type": "object",
|
|
2904
|
+
"properties": {
|
|
2905
|
+
"name": {
|
|
2906
|
+
"type": "string"
|
|
2907
|
+
},
|
|
2908
|
+
"entries": {
|
|
2909
|
+
"type": "array",
|
|
2910
|
+
"items": {
|
|
2911
|
+
"$ref": "../entry.json"
|
|
2912
|
+
}
|
|
2913
|
+
}
|
|
2914
|
+
},
|
|
2915
|
+
"required": [
|
|
2916
|
+
"entries"
|
|
2917
|
+
],
|
|
2918
|
+
"additionalProperties": false
|
|
2841
2919
|
}
|
|
2842
2920
|
},
|
|
2843
|
-
|
|
2844
|
-
"
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
}
|
|
2921
|
+
{
|
|
2922
|
+
"type": "null"
|
|
2923
|
+
}
|
|
2924
|
+
]
|
|
2848
2925
|
},
|
|
2849
2926
|
"variant": {
|
|
2850
|
-
"
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2927
|
+
"oneOf": [
|
|
2928
|
+
{
|
|
2929
|
+
"type": "array",
|
|
2930
|
+
"items": {
|
|
2931
|
+
"$ref": "#/$defs/entryVariantBestiary"
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
{
|
|
2935
|
+
"type": "null"
|
|
2936
|
+
}
|
|
2937
|
+
]
|
|
2854
2938
|
},
|
|
2855
2939
|
"page": {
|
|
2856
2940
|
"$ref": "../util.json#/$defs/page"
|