optolith-database-schema 0.4.1 → 0.5.0
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/CHANGELOG.md +18 -0
- package/lib/config.d.ts +2 -0
- package/lib/config.js +2 -0
- package/lib/main.d.ts +1 -1
- package/lib/main.js +28 -19
- package/lib/types/Cantrip.d.ts +2 -3
- package/lib/types/Culture.d.ts +8 -11
- package/lib/types/Lessons_Curriculum.d.ts +5 -4
- package/lib/types/Lessons_Guideline.d.ts +1 -1
- package/lib/types/Patron.d.ts +28 -4
- package/lib/types/Profession.d.ts +7 -6
- package/lib/types/Race.d.ts +12 -14
- package/lib/types/TargetCategory.d.ts +2 -3
- package/lib/types/_Activatable.d.ts +21 -22
- package/lib/types/_ActivatableSelectOptionCategory.d.ts +1 -1
- package/lib/types/_ActivatableSkillCost.d.ts +28 -1
- package/lib/types/_ActivatableSkillDuration.d.ts +1 -1
- package/lib/types/_ActivatableSkillRange.d.ts +3 -0
- package/lib/types/_CommonnessRatedAdvantageDisadvantage.d.ts +2 -4
- package/lib/types/_DiseasePoison.d.ts +3 -3
- package/lib/types/_Identifier.d.ts +1175 -247
- package/lib/types/_Identifier.js +0 -228
- package/lib/types/_IdentifierGroup.d.ts +27 -0
- package/lib/types/_IdentifierGroup.js +1 -0
- package/lib/types/_Prerequisite.d.ts +38 -36
- package/lib/types/_ResponsiveText.d.ts +1 -1
- package/lib/types/_SimpleReferences.d.ts +50 -253
- package/lib/types/equipment/EquipmentPackage.d.ts +1 -1
- package/lib/types/equipment/item/Elixir.d.ts +75 -0
- package/lib/types/equipment/item/Elixir.js +5 -0
- package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +1 -1
- package/lib/types/equipment/item/Poison.d.ts +220 -47
- package/lib/types/equipment/item/Poison.js +10 -0
- package/lib/types/equipment/item/ToolOfTheTrade.d.ts +6 -2
- package/lib/types/equipment/item/_Herbary.d.ts +31 -0
- package/lib/types/equipment/item/_Herbary.js +22 -0
- package/lib/types/equipment/item/_MeleeWeapon.d.ts +2 -9
- package/lib/types/equipment/item/_RangedWeapon.d.ts +2 -3
- package/lib/types/magicalActions/AnimistPower.d.ts +0 -1
- package/lib/types/magicalActions/MagicalRune.d.ts +22 -3
- package/lib/types/magicalActions/_SkillReference.d.ts +3 -2
- package/lib/types/magicalActions/_SkillReference.js +5 -5
- package/lib/types/prerequisites/PrerequisiteGroups.d.ts +2 -20
- package/lib/types/prerequisites/single/ActivatablePrerequisite.d.ts +1 -62
- package/lib/types/prerequisites/single/AnimistPowerPrerequisite.d.ts +2 -3
- package/lib/types/prerequisites/single/CulturePrerequisite.d.ts +5 -2
- package/lib/types/prerequisites/single/EnhancementPrerequisite.d.ts +1 -1
- package/lib/types/prerequisites/single/InfluencePrerequisite.d.ts +2 -3
- package/lib/types/prerequisites/single/RacePrerequisite.d.ts +5 -2
- package/lib/types/prerequisites/single/RatedPrerequisite.d.ts +1 -18
- package/lib/types/prerequisites/single/RulePrerequisite.d.ts +1 -1
- package/lib/types/prerequisites/single/SocialStatusPrerequisite.d.ts +2 -4
- package/lib/types/prerequisites/single/StatePrerequisite.d.ts +2 -2
- package/lib/types/rule/CoreRule.d.ts +4 -7
- package/lib/types/source/_PublicationRef.d.ts +2 -3
- package/lib/types/specialAbility/BlessedTradition.d.ts +1 -1
- package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +2 -1
- package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +2 -1
- package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +2 -1
- package/lib/types/specialAbility/MagicalTradition.d.ts +2 -3
- package/lib/types/specialAbility/PactGift.d.ts +1 -1
- package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +2 -1
- package/lib/types/specialAbility/sub/_LanguageScript.d.ts +2 -4
- package/lib/validation/schema.js +1 -1
- package/package.json +2 -2
- package/schema/Cantrip.schema.json +1 -2
- package/schema/Culture.schema.json +51 -10
- package/schema/Lessons_Curriculum.schema.json +8 -12
- package/schema/Lessons_Guideline.schema.json +1 -1
- package/schema/Patron.schema.json +24 -6
- package/schema/Profession.schema.json +57 -15
- package/schema/Race.schema.json +121 -13
- package/schema/TargetCategory.schema.json +1 -2
- package/schema/_Activatable.schema.json +5 -181
- package/schema/_ActivatableSelectOptionCategory.schema.json +4 -4
- package/schema/_ActivatableSkillCost.schema.json +61 -0
- package/schema/_ActivatableSkillDuration.schema.json +1 -3
- package/schema/_ActivatableSkillRange.schema.json +19 -0
- package/schema/_DiseasePoison.schema.json +0 -2
- package/schema/_Identifier.schema.json +2099 -347
- package/schema/_IdentifierGroup.schema.json +601 -0
- package/schema/_Prerequisite.schema.json +1284 -1049
- package/schema/_ResponsiveText.schema.json +2 -2
- package/schema/_SimpleReferences.schema.json +54 -130
- package/schema/equipment/EquipmentPackage.schema.json +1 -1
- package/schema/equipment/item/Elixir.schema.json +123 -0
- package/schema/equipment/item/EquipmentOfBlessedOnes.schema.json +4 -1
- package/schema/equipment/item/Poison.schema.json +431 -68
- package/schema/equipment/item/ToolOfTheTrade.schema.json +15 -4
- package/schema/equipment/item/_Herbary.schema.json +42 -0
- package/schema/equipment/item/_MeleeWeapon.schema.json +1 -13
- package/schema/equipment/item/_RangedWeapon.schema.json +1 -2
- package/schema/magicalActions/AnimistPower.schema.json +0 -1
- package/schema/magicalActions/MagicalRune.schema.json +38 -3
- package/schema/magicalActions/_SkillReference.schema.json +15 -3
- package/schema/prerequisites/PrerequisiteGroups.schema.json +0 -96
- package/schema/prerequisites/single/ActivatablePrerequisite.schema.json +2 -87
- package/schema/prerequisites/single/AnimistPowerPrerequisite.schema.json +1 -2
- package/schema/prerequisites/single/CulturePrerequisite.schema.json +2 -1
- package/schema/prerequisites/single/EnhancementPrerequisite.schema.json +1 -1
- package/schema/prerequisites/single/InfluencePrerequisite.schema.json +1 -2
- package/schema/prerequisites/single/RacePrerequisite.schema.json +2 -1
- package/schema/prerequisites/single/RatedPrerequisite.schema.json +1 -28
- package/schema/prerequisites/single/RulePrerequisite.schema.json +1 -1
- package/schema/prerequisites/single/SocialStatusPrerequisite.schema.json +1 -3
- package/schema/prerequisites/single/StatePrerequisite.schema.json +1 -1
- package/schema/rule/CoreRule.schema.json +3 -5
- package/schema/source/_PublicationRef.schema.json +1 -2
- package/schema/specialAbility/BlessedTradition.schema.json +2 -2
- package/schema/specialAbility/CombatStyleSpecialAbility.schema.json +511 -1
- package/schema/specialAbility/LiturgicalStyleSpecialAbility.schema.json +511 -1
- package/schema/specialAbility/MagicStyleSpecialAbility.schema.json +511 -1
- package/schema/specialAbility/MagicalTradition.schema.json +1 -2
- package/schema/specialAbility/PactGift.schema.json +1 -1
- package/schema/specialAbility/SkillStyleSpecialAbility.schema.json +511 -1
- package/schema/specialAbility/sub/_LanguageScript.schema.json +1 -3
- package/schema/_CommonnessRatedAdvantageDisadvantage.schema.json +0 -22
|
@@ -74,6 +74,27 @@
|
|
|
74
74
|
"description": "The patron-specific improvement cost. Used by several animist forces for\nanimal patrons.",
|
|
75
75
|
"$ref": "./_ImprovementCost.schema.json#/$defs/ImprovementCost"
|
|
76
76
|
},
|
|
77
|
+
"common_advantages": {
|
|
78
|
+
"description": "The patron may grant common advantages that are taken into account during\ncharacter creation.\n\n*Source:* Geisterwald & Knochenklippen, p. 6-7",
|
|
79
|
+
"type": "array",
|
|
80
|
+
"items": {
|
|
81
|
+
"$ref": "./_SimpleReferences.schema.json#/$defs/AdvantageReference"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"common_disadvantages": {
|
|
85
|
+
"description": "The patron may grant common disadvantages that are taken into account\nduring character creation.\n\n*Source:* Geisterwald & Knochenklippen, p. 6-7",
|
|
86
|
+
"type": "array",
|
|
87
|
+
"items": {
|
|
88
|
+
"$ref": "./_SimpleReferences.schema.json#/$defs/DisadvantageReference"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"common_spellworks": {
|
|
92
|
+
"description": "The animist may learn spellworks common for this patron.\n\n*Source:* Geisterwald & Knochenklippen, p. 6-7",
|
|
93
|
+
"type": "array",
|
|
94
|
+
"items": {
|
|
95
|
+
"$ref": "./_SimpleReferences.schema.json#/$defs/SpellworkReference"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
77
98
|
"translations": {
|
|
78
99
|
"description": "All translations for the entry, identified by IETF language tag (BCP47).",
|
|
79
100
|
"type": "object",
|
|
@@ -140,8 +161,7 @@
|
|
|
140
161
|
"properties": {
|
|
141
162
|
"id": {
|
|
142
163
|
"description": "The advantage's identifier.",
|
|
143
|
-
"
|
|
144
|
-
"minimum": 1
|
|
164
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
145
165
|
},
|
|
146
166
|
"level": {
|
|
147
167
|
"description": "It grants a higher level of the advantage.",
|
|
@@ -164,8 +184,7 @@
|
|
|
164
184
|
"properties": {
|
|
165
185
|
"id": {
|
|
166
186
|
"description": "The skill's identifier.",
|
|
167
|
-
"
|
|
168
|
-
"minimum": 1
|
|
187
|
+
"$ref": "./_Identifier.schema.json#/$defs/SkillIdentifier"
|
|
169
188
|
},
|
|
170
189
|
"points": {
|
|
171
190
|
"description": "The points that gets added to the skill's rating.",
|
|
@@ -283,8 +302,7 @@
|
|
|
283
302
|
"properties": {
|
|
284
303
|
"id": {
|
|
285
304
|
"description": "The attribute's identifier.",
|
|
286
|
-
"
|
|
287
|
-
"minimum": 1
|
|
305
|
+
"$ref": "./_Identifier.schema.json#/$defs/AttributeIdentifier"
|
|
288
306
|
},
|
|
289
307
|
"value": {
|
|
290
308
|
"description": "The value that gets added to the attribute.",
|
|
@@ -288,7 +288,18 @@
|
|
|
288
288
|
"description": "Typical advantages for the profession.",
|
|
289
289
|
"type": "array",
|
|
290
290
|
"items": {
|
|
291
|
-
"
|
|
291
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
292
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
293
|
+
"type": "object",
|
|
294
|
+
"properties": {
|
|
295
|
+
"id": {
|
|
296
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"required": [
|
|
300
|
+
"id"
|
|
301
|
+
],
|
|
302
|
+
"additionalProperties": false
|
|
292
303
|
},
|
|
293
304
|
"minItems": 1
|
|
294
305
|
},
|
|
@@ -296,7 +307,18 @@
|
|
|
296
307
|
"description": "Typical disadvantages for the profession.",
|
|
297
308
|
"type": "array",
|
|
298
309
|
"items": {
|
|
299
|
-
"
|
|
310
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
311
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
312
|
+
"type": "object",
|
|
313
|
+
"properties": {
|
|
314
|
+
"id": {
|
|
315
|
+
"$ref": "./_Identifier.schema.json#/$defs/DisadvantageIdentifier"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"required": [
|
|
319
|
+
"id"
|
|
320
|
+
],
|
|
321
|
+
"additionalProperties": false
|
|
300
322
|
},
|
|
301
323
|
"minItems": 1
|
|
302
324
|
},
|
|
@@ -304,7 +326,18 @@
|
|
|
304
326
|
"description": "These advantages do not fit well with this profession; to be checked with\nthe GM before taking any of them.",
|
|
305
327
|
"type": "array",
|
|
306
328
|
"items": {
|
|
307
|
-
"
|
|
329
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
330
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
331
|
+
"type": "object",
|
|
332
|
+
"properties": {
|
|
333
|
+
"id": {
|
|
334
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"required": [
|
|
338
|
+
"id"
|
|
339
|
+
],
|
|
340
|
+
"additionalProperties": false
|
|
308
341
|
},
|
|
309
342
|
"minItems": 1
|
|
310
343
|
},
|
|
@@ -312,7 +345,18 @@
|
|
|
312
345
|
"description": "These disadvantages do not fit well with this profession; to be checked\nwith the GM before taking any of them.",
|
|
313
346
|
"type": "array",
|
|
314
347
|
"items": {
|
|
315
|
-
"
|
|
348
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
349
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
350
|
+
"type": "object",
|
|
351
|
+
"properties": {
|
|
352
|
+
"id": {
|
|
353
|
+
"$ref": "./_Identifier.schema.json#/$defs/DisadvantageIdentifier"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"required": [
|
|
357
|
+
"id"
|
|
358
|
+
],
|
|
359
|
+
"additionalProperties": false
|
|
316
360
|
},
|
|
317
361
|
"minItems": 1
|
|
318
362
|
},
|
|
@@ -532,7 +576,7 @@
|
|
|
532
576
|
"properties": {
|
|
533
577
|
"id": {
|
|
534
578
|
"description": "The identifier of the combat technique to provide the rating for.",
|
|
535
|
-
"$ref": "./
|
|
579
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/SpecialAbilityIdentifier"
|
|
536
580
|
},
|
|
537
581
|
"level": {
|
|
538
582
|
"description": "The level of the received special ability.",
|
|
@@ -543,7 +587,7 @@
|
|
|
543
587
|
"description": "Received select options. Order is important. Typically, you only need the\nfirst array index, though.",
|
|
544
588
|
"type": "array",
|
|
545
589
|
"items": {
|
|
546
|
-
"$ref": "./
|
|
590
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/RequirableSelectOptionIdentifier"
|
|
547
591
|
},
|
|
548
592
|
"minItems": 1
|
|
549
593
|
}
|
|
@@ -594,7 +638,7 @@
|
|
|
594
638
|
"properties": {
|
|
595
639
|
"id": {
|
|
596
640
|
"description": "The identifier of the combat technique to provide the rating for.",
|
|
597
|
-
"$ref": "./
|
|
641
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/SpecialAbilityIdentifier"
|
|
598
642
|
},
|
|
599
643
|
"level": {
|
|
600
644
|
"description": "The level of the received special ability.",
|
|
@@ -605,7 +649,7 @@
|
|
|
605
649
|
"description": "Received select options. Order is important. Typically, you only need the\nfirst array index, though.",
|
|
606
650
|
"type": "array",
|
|
607
651
|
"items": {
|
|
608
|
-
"$ref": "./
|
|
652
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/RequirableSelectOptionIdentifier"
|
|
609
653
|
},
|
|
610
654
|
"minItems": 1
|
|
611
655
|
},
|
|
@@ -644,7 +688,7 @@
|
|
|
644
688
|
"properties": {
|
|
645
689
|
"id": {
|
|
646
690
|
"description": "The identifier of the combat technique to provide the rating for.",
|
|
647
|
-
"$ref": "./
|
|
691
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/CombatTechniqueIdentifier"
|
|
648
692
|
},
|
|
649
693
|
"rating": {
|
|
650
694
|
"description": "The rating bonus provided for the combat technique. If used in a profession\nvariant, it can also be used to lower the bonus of the base profession.\n\n**Note:** This is a rating *bonus*, so it will be *added* to the default\nvalue of 6.",
|
|
@@ -664,9 +708,7 @@
|
|
|
664
708
|
"properties": {
|
|
665
709
|
"id": {
|
|
666
710
|
"description": "The identifier of the skill to provide the rating for.",
|
|
667
|
-
"
|
|
668
|
-
"maximum": 59,
|
|
669
|
-
"minimum": 1
|
|
711
|
+
"$ref": "./_Identifier.schema.json#/$defs/SkillIdentifier"
|
|
670
712
|
},
|
|
671
713
|
"rating": {
|
|
672
714
|
"description": "The rating bonus provided for the skill. If used in a profession variant,\nit can also be used to lower the bonus of the base profession",
|
|
@@ -746,7 +788,7 @@
|
|
|
746
788
|
"properties": {
|
|
747
789
|
"id": {
|
|
748
790
|
"description": "The identifier of the spell to provide the rating for.",
|
|
749
|
-
"$ref": "./
|
|
791
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/SpellworkIdentifier"
|
|
750
792
|
},
|
|
751
793
|
"tradition": {
|
|
752
794
|
"description": "If the spell is not part of the magical tradition required by the\npackage, this references the magical tradition it is part of. It can also\nbe used to define the target magical tradition of a spell if multiple\nmagical traditions are required and the spell is available to multiple\nof them.",
|
|
@@ -763,7 +805,7 @@
|
|
|
763
805
|
"properties": {
|
|
764
806
|
"id": {
|
|
765
807
|
"description": "The identifier of the magical action to provide the rating for.",
|
|
766
|
-
"$ref": "./
|
|
808
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/MagicalActionIdentifier"
|
|
767
809
|
}
|
|
768
810
|
},
|
|
769
811
|
"required": [
|
|
@@ -778,7 +820,7 @@
|
|
|
778
820
|
"description": "The identifier(s) of the liturgical chant(s) to choose from to provide\nthe rating for. If multiple liturgical chants are provided, they must all\nhave the same improvement cost.",
|
|
779
821
|
"type": "array",
|
|
780
822
|
"items": {
|
|
781
|
-
"$ref": "./
|
|
823
|
+
"$ref": "./_IdentifierGroup.schema.json#/$defs/LiturgyIdentifier"
|
|
782
824
|
},
|
|
783
825
|
"minItems": 1
|
|
784
826
|
},
|
package/schema/Race.schema.json
CHANGED
|
@@ -38,7 +38,18 @@
|
|
|
38
38
|
"description": "A list of strongly recommended advantages.",
|
|
39
39
|
"type": "array",
|
|
40
40
|
"items": {
|
|
41
|
-
"
|
|
41
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
42
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
43
|
+
"type": "object",
|
|
44
|
+
"properties": {
|
|
45
|
+
"id": {
|
|
46
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": [
|
|
50
|
+
"id"
|
|
51
|
+
],
|
|
52
|
+
"additionalProperties": false
|
|
42
53
|
},
|
|
43
54
|
"minItems": 1
|
|
44
55
|
},
|
|
@@ -46,7 +57,18 @@
|
|
|
46
57
|
"description": "A list of strongly recommended disadvantages.",
|
|
47
58
|
"type": "array",
|
|
48
59
|
"items": {
|
|
49
|
-
"
|
|
60
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
61
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
62
|
+
"type": "object",
|
|
63
|
+
"properties": {
|
|
64
|
+
"id": {
|
|
65
|
+
"$ref": "./_Identifier.schema.json#/$defs/DisadvantageIdentifier"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": [
|
|
69
|
+
"id"
|
|
70
|
+
],
|
|
71
|
+
"additionalProperties": false
|
|
50
72
|
},
|
|
51
73
|
"minItems": 1
|
|
52
74
|
},
|
|
@@ -54,7 +76,18 @@
|
|
|
54
76
|
"description": "A list of common advantages. If common advantages are defined by race\nvariants, leave this field empty. It is overridden by the same field in\nrace variants.",
|
|
55
77
|
"type": "array",
|
|
56
78
|
"items": {
|
|
57
|
-
"
|
|
79
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
80
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
81
|
+
"type": "object",
|
|
82
|
+
"properties": {
|
|
83
|
+
"id": {
|
|
84
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"required": [
|
|
88
|
+
"id"
|
|
89
|
+
],
|
|
90
|
+
"additionalProperties": false
|
|
58
91
|
},
|
|
59
92
|
"minItems": 1
|
|
60
93
|
},
|
|
@@ -62,7 +95,18 @@
|
|
|
62
95
|
"description": "A list of common disadvantages. If common disadvantages are defined by race\nvariants, leave this field empty. It is overridden by the same field in\nrace variants.",
|
|
63
96
|
"type": "array",
|
|
64
97
|
"items": {
|
|
65
|
-
"
|
|
98
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
99
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
100
|
+
"type": "object",
|
|
101
|
+
"properties": {
|
|
102
|
+
"id": {
|
|
103
|
+
"$ref": "./_Identifier.schema.json#/$defs/DisadvantageIdentifier"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"required": [
|
|
107
|
+
"id"
|
|
108
|
+
],
|
|
109
|
+
"additionalProperties": false
|
|
66
110
|
},
|
|
67
111
|
"minItems": 1
|
|
68
112
|
},
|
|
@@ -70,7 +114,18 @@
|
|
|
70
114
|
"description": "A list of uncommon advantages. If uncommon advantages are defined by race\nvariants, leave this field empty. It is overridden by the same field in\nrace variants.",
|
|
71
115
|
"type": "array",
|
|
72
116
|
"items": {
|
|
73
|
-
"
|
|
117
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
118
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
119
|
+
"type": "object",
|
|
120
|
+
"properties": {
|
|
121
|
+
"id": {
|
|
122
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"required": [
|
|
126
|
+
"id"
|
|
127
|
+
],
|
|
128
|
+
"additionalProperties": false
|
|
74
129
|
},
|
|
75
130
|
"minItems": 1
|
|
76
131
|
},
|
|
@@ -78,7 +133,18 @@
|
|
|
78
133
|
"description": "A list of uncommon disadvantages. If uncommon disadvantages are defined by\nrace variants, leave this field empty. It is overridden by the same field\nin race variants.",
|
|
79
134
|
"type": "array",
|
|
80
135
|
"items": {
|
|
81
|
-
"
|
|
136
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
137
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
138
|
+
"type": "object",
|
|
139
|
+
"properties": {
|
|
140
|
+
"id": {
|
|
141
|
+
"$ref": "./_Identifier.schema.json#/$defs/DisadvantageIdentifier"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"required": [
|
|
145
|
+
"id"
|
|
146
|
+
],
|
|
147
|
+
"additionalProperties": false
|
|
82
148
|
},
|
|
83
149
|
"minItems": 1
|
|
84
150
|
},
|
|
@@ -248,9 +314,7 @@
|
|
|
248
314
|
"properties": {
|
|
249
315
|
"experience_level_id": {
|
|
250
316
|
"description": "The selected experience level's identifier.",
|
|
251
|
-
"
|
|
252
|
-
"maximum": 7,
|
|
253
|
-
"minimum": 1
|
|
317
|
+
"$ref": "./_Identifier.schema.json#/$defs/ExperienceLevelIdentifier"
|
|
254
318
|
},
|
|
255
319
|
"base": {
|
|
256
320
|
"description": "The base value for the selected experience level.",
|
|
@@ -377,7 +441,18 @@
|
|
|
377
441
|
"description": "A list of common advantages. If common advantages are defined by the base race, leave this field empty. This field overrides the same field of the base race, if both are defined.",
|
|
378
442
|
"type": "array",
|
|
379
443
|
"items": {
|
|
380
|
-
"
|
|
444
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
445
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
446
|
+
"type": "object",
|
|
447
|
+
"properties": {
|
|
448
|
+
"id": {
|
|
449
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"required": [
|
|
453
|
+
"id"
|
|
454
|
+
],
|
|
455
|
+
"additionalProperties": false
|
|
381
456
|
},
|
|
382
457
|
"minItems": 1
|
|
383
458
|
},
|
|
@@ -385,7 +460,18 @@
|
|
|
385
460
|
"description": "A list of common disadvantages. If common disadvantages are defined by the base race, leave this field empty. This field overrides the same field of the base race, if both are defined.",
|
|
386
461
|
"type": "array",
|
|
387
462
|
"items": {
|
|
388
|
-
"
|
|
463
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
464
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
465
|
+
"type": "object",
|
|
466
|
+
"properties": {
|
|
467
|
+
"id": {
|
|
468
|
+
"$ref": "./_Identifier.schema.json#/$defs/DisadvantageIdentifier"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"required": [
|
|
472
|
+
"id"
|
|
473
|
+
],
|
|
474
|
+
"additionalProperties": false
|
|
389
475
|
},
|
|
390
476
|
"minItems": 1
|
|
391
477
|
},
|
|
@@ -393,7 +479,18 @@
|
|
|
393
479
|
"description": "A list of uncommon advantages. If uncommon advantages are defined by the base race, leave this field empty. This field overrides the same field of the base race, if both are defined.",
|
|
394
480
|
"type": "array",
|
|
395
481
|
"items": {
|
|
396
|
-
"
|
|
482
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
483
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
484
|
+
"type": "object",
|
|
485
|
+
"properties": {
|
|
486
|
+
"id": {
|
|
487
|
+
"$ref": "./_Identifier.schema.json#/$defs/AdvantageIdentifier"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"required": [
|
|
491
|
+
"id"
|
|
492
|
+
],
|
|
493
|
+
"additionalProperties": false
|
|
397
494
|
},
|
|
398
495
|
"minItems": 1
|
|
399
496
|
},
|
|
@@ -401,7 +498,18 @@
|
|
|
401
498
|
"description": "A list of uncommon disadvantages. If uncommon disadvantages are defined by the base race, leave this field empty. This field overrides the same field of the base race, if both are defined.",
|
|
402
499
|
"type": "array",
|
|
403
500
|
"items": {
|
|
404
|
-
"
|
|
501
|
+
"title": "Commonness-rated Advantage/Disadvantage",
|
|
502
|
+
"description": "Reference to a commonness-rated advantage or disadvantage. Commonness-rating terms used in the source books are strongly recommended, common, uncommon, suggested and unsuitable.",
|
|
503
|
+
"type": "object",
|
|
504
|
+
"properties": {
|
|
505
|
+
"id": {
|
|
506
|
+
"$ref": "./_Identifier.schema.json#/$defs/DisadvantageIdentifier"
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"required": [
|
|
510
|
+
"id"
|
|
511
|
+
],
|
|
512
|
+
"additionalProperties": false
|
|
405
513
|
},
|
|
406
514
|
"minItems": 1
|
|
407
515
|
},
|