optolith-database-schema 0.4.0 → 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.
Files changed (119) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/lib/config.d.ts +2 -0
  3. package/lib/config.js +2 -0
  4. package/lib/main.d.ts +1 -1
  5. package/lib/main.js +28 -19
  6. package/lib/types/Cantrip.d.ts +2 -3
  7. package/lib/types/Culture.d.ts +8 -11
  8. package/lib/types/Lessons_Curriculum.d.ts +5 -4
  9. package/lib/types/Lessons_Guideline.d.ts +1 -1
  10. package/lib/types/Patron.d.ts +28 -4
  11. package/lib/types/Profession.d.ts +7 -6
  12. package/lib/types/Race.d.ts +12 -14
  13. package/lib/types/TargetCategory.d.ts +2 -3
  14. package/lib/types/_Activatable.d.ts +22 -26
  15. package/lib/types/_ActivatableSelectOptionCategory.d.ts +1 -1
  16. package/lib/types/_ActivatableSkillCost.d.ts +28 -1
  17. package/lib/types/_ActivatableSkillDuration.d.ts +1 -1
  18. package/lib/types/_ActivatableSkillRange.d.ts +3 -0
  19. package/lib/types/_CommonnessRatedAdvantageDisadvantage.d.ts +2 -4
  20. package/lib/types/_DiseasePoison.d.ts +3 -3
  21. package/lib/types/_Identifier.d.ts +1175 -247
  22. package/lib/types/_Identifier.js +0 -228
  23. package/lib/types/_IdentifierGroup.d.ts +27 -0
  24. package/lib/types/_IdentifierGroup.js +1 -0
  25. package/lib/types/_Prerequisite.d.ts +38 -36
  26. package/lib/types/_ResponsiveText.d.ts +1 -1
  27. package/lib/types/_SimpleReferences.d.ts +50 -253
  28. package/lib/types/equipment/EquipmentPackage.d.ts +1 -1
  29. package/lib/types/equipment/item/Elixir.d.ts +75 -0
  30. package/lib/types/equipment/item/Elixir.js +5 -0
  31. package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +1 -1
  32. package/lib/types/equipment/item/Poison.d.ts +220 -47
  33. package/lib/types/equipment/item/Poison.js +10 -0
  34. package/lib/types/equipment/item/ToolOfTheTrade.d.ts +6 -2
  35. package/lib/types/equipment/item/_Herbary.d.ts +31 -0
  36. package/lib/types/equipment/item/_Herbary.js +22 -0
  37. package/lib/types/equipment/item/_MeleeWeapon.d.ts +2 -9
  38. package/lib/types/equipment/item/_RangedWeapon.d.ts +2 -3
  39. package/lib/types/magicalActions/AnimistPower.d.ts +0 -1
  40. package/lib/types/magicalActions/MagicalRune.d.ts +22 -3
  41. package/lib/types/magicalActions/_SkillReference.d.ts +3 -2
  42. package/lib/types/magicalActions/_SkillReference.js +5 -5
  43. package/lib/types/prerequisites/PrerequisiteGroups.d.ts +2 -20
  44. package/lib/types/prerequisites/single/ActivatablePrerequisite.d.ts +1 -62
  45. package/lib/types/prerequisites/single/AnimistPowerPrerequisite.d.ts +2 -3
  46. package/lib/types/prerequisites/single/CulturePrerequisite.d.ts +5 -2
  47. package/lib/types/prerequisites/single/EnhancementPrerequisite.d.ts +1 -1
  48. package/lib/types/prerequisites/single/InfluencePrerequisite.d.ts +2 -3
  49. package/lib/types/prerequisites/single/RacePrerequisite.d.ts +5 -2
  50. package/lib/types/prerequisites/single/RatedPrerequisite.d.ts +1 -18
  51. package/lib/types/prerequisites/single/RulePrerequisite.d.ts +1 -1
  52. package/lib/types/prerequisites/single/SocialStatusPrerequisite.d.ts +2 -4
  53. package/lib/types/prerequisites/single/StatePrerequisite.d.ts +2 -2
  54. package/lib/types/rule/CoreRule.d.ts +4 -7
  55. package/lib/types/source/_PublicationRef.d.ts +2 -3
  56. package/lib/types/specialAbility/BlessedTradition.d.ts +1 -1
  57. package/lib/types/specialAbility/CeremonialItemSpecialAbility.d.ts +1 -1
  58. package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +2 -1
  59. package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +2 -1
  60. package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +2 -1
  61. package/lib/types/specialAbility/MagicalTradition.d.ts +2 -3
  62. package/lib/types/specialAbility/PactGift.d.ts +1 -1
  63. package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +2 -1
  64. package/lib/types/specialAbility/sub/_LanguageScript.d.ts +2 -4
  65. package/lib/validation/schema.js +1 -1
  66. package/package.json +2 -2
  67. package/schema/Cantrip.schema.json +1 -2
  68. package/schema/Culture.schema.json +51 -10
  69. package/schema/Lessons_Curriculum.schema.json +8 -12
  70. package/schema/Lessons_Guideline.schema.json +1 -1
  71. package/schema/Patron.schema.json +24 -6
  72. package/schema/Profession.schema.json +57 -15
  73. package/schema/Race.schema.json +121 -13
  74. package/schema/TargetCategory.schema.json +1 -2
  75. package/schema/_Activatable.schema.json +7 -183
  76. package/schema/_ActivatableSelectOptionCategory.schema.json +4 -4
  77. package/schema/_ActivatableSkillCost.schema.json +61 -0
  78. package/schema/_ActivatableSkillDuration.schema.json +1 -3
  79. package/schema/_ActivatableSkillRange.schema.json +19 -0
  80. package/schema/_DiseasePoison.schema.json +0 -2
  81. package/schema/_Identifier.schema.json +2099 -347
  82. package/schema/_IdentifierGroup.schema.json +601 -0
  83. package/schema/_Prerequisite.schema.json +1298 -1072
  84. package/schema/_ResponsiveText.schema.json +2 -2
  85. package/schema/_SimpleReferences.schema.json +54 -130
  86. package/schema/equipment/EquipmentPackage.schema.json +1 -1
  87. package/schema/equipment/item/Elixir.schema.json +123 -0
  88. package/schema/equipment/item/EquipmentOfBlessedOnes.schema.json +4 -1
  89. package/schema/equipment/item/Poison.schema.json +431 -68
  90. package/schema/equipment/item/ToolOfTheTrade.schema.json +15 -4
  91. package/schema/equipment/item/_Herbary.schema.json +42 -0
  92. package/schema/equipment/item/_MeleeWeapon.schema.json +1 -13
  93. package/schema/equipment/item/_RangedWeapon.schema.json +1 -2
  94. package/schema/magicalActions/AnimistPower.schema.json +0 -1
  95. package/schema/magicalActions/MagicalRune.schema.json +38 -3
  96. package/schema/magicalActions/_SkillReference.schema.json +15 -3
  97. package/schema/prerequisites/PrerequisiteGroups.schema.json +0 -96
  98. package/schema/prerequisites/single/ActivatablePrerequisite.schema.json +2 -87
  99. package/schema/prerequisites/single/AnimistPowerPrerequisite.schema.json +1 -2
  100. package/schema/prerequisites/single/CulturePrerequisite.schema.json +2 -1
  101. package/schema/prerequisites/single/EnhancementPrerequisite.schema.json +1 -1
  102. package/schema/prerequisites/single/InfluencePrerequisite.schema.json +1 -2
  103. package/schema/prerequisites/single/RacePrerequisite.schema.json +2 -1
  104. package/schema/prerequisites/single/RatedPrerequisite.schema.json +1 -28
  105. package/schema/prerequisites/single/RulePrerequisite.schema.json +1 -1
  106. package/schema/prerequisites/single/SocialStatusPrerequisite.schema.json +1 -3
  107. package/schema/prerequisites/single/StatePrerequisite.schema.json +1 -1
  108. package/schema/rule/CoreRule.schema.json +3 -5
  109. package/schema/source/_PublicationRef.schema.json +1 -2
  110. package/schema/specialAbility/BlessedTradition.schema.json +2 -2
  111. package/schema/specialAbility/CeremonialItemSpecialAbility.schema.json +0 -1
  112. package/schema/specialAbility/CombatStyleSpecialAbility.schema.json +511 -1
  113. package/schema/specialAbility/LiturgicalStyleSpecialAbility.schema.json +511 -1
  114. package/schema/specialAbility/MagicStyleSpecialAbility.schema.json +511 -1
  115. package/schema/specialAbility/MagicalTradition.schema.json +1 -2
  116. package/schema/specialAbility/PactGift.schema.json +1 -1
  117. package/schema/specialAbility/SkillStyleSpecialAbility.schema.json +511 -1
  118. package/schema/specialAbility/sub/_LanguageScript.schema.json +1 -3
  119. package/schema/_CommonnessRatedAdvantageDisadvantage.schema.json +0 -22
@@ -1,247 +1,1175 @@
1
- declare enum ActivatableTag {
2
- Advantage = "Advantage",
3
- Disadvantage = "Disadvantage",
4
- GeneralSpecialAbility = "GeneralSpecialAbility",
5
- FatePointSpecialAbility = "FatePointSpecialAbility",
6
- CombatSpecialAbility = "CombatSpecialAbility",
7
- MagicalSpecialAbility = "MagicalSpecialAbility",
8
- StaffEnchantment = "StaffEnchantment",
9
- FamiliarSpecialAbility = "FamiliarSpecialAbility",
10
- KarmaSpecialAbility = "KarmaSpecialAbility",
11
- ProtectiveWardingCircleSpecialAbility = "ProtectiveWardingCircleSpecialAbility",
12
- CombatStyleSpecialAbility = "CombatStyleSpecialAbility",
13
- AdvancedCombatSpecialAbility = "AdvancedCombatSpecialAbility",
14
- CommandSpecialAbility = "CommandSpecialAbility",
15
- MagicStyleSpecialAbility = "MagicStyleSpecialAbility",
16
- AdvancedMagicalSpecialAbility = "AdvancedMagicalSpecialAbility",
17
- SpellSwordEnchantment = "SpellSwordEnchantment",
18
- DaggerRitual = "DaggerRitual",
19
- InstrumentEnchantment = "InstrumentEnchantment",
20
- AttireEnchantment = "AttireEnchantment",
21
- OrbEnchantment = "OrbEnchantment",
22
- WandEnchantment = "WandEnchantment",
23
- BrawlingSpecialAbility = "BrawlingSpecialAbility",
24
- AncestorGlyph = "AncestorGlyph",
25
- CeremonialItemSpecialAbility = "CeremonialItemSpecialAbility",
26
- Sermon = "Sermon",
27
- LiturgicalStyleSpecialAbility = "LiturgicalStyleSpecialAbility",
28
- AdvancedKarmaSpecialAbility = "AdvancedKarmaSpecialAbility",
29
- Vision = "Vision",
30
- MagicalTradition = "MagicalTradition",
31
- BlessedTradition = "BlessedTradition",
32
- PactGift = "PactGift",
33
- SikaryanDrainSpecialAbility = "SikaryanDrainSpecialAbility",
34
- LycantropicGift = "LycantropicGift",
35
- SkillStyleSpecialAbility = "SkillStyleSpecialAbility",
36
- AdvancedSkillSpecialAbility = "AdvancedSkillSpecialAbility",
37
- ArcaneOrbEnchantment = "ArcaneOrbEnchantment",
38
- CauldronEnchantment = "CauldronEnchantment",
39
- FoolsHatEnchantment = "FoolsHatEnchantment",
40
- ToyEnchantment = "ToyEnchantment",
41
- BowlEnchantment = "BowlEnchantment",
42
- FatePointSexSpecialAbility = "FatePointSexSpecialAbility",
43
- SexSpecialAbility = "SexSpecialAbility",
44
- WeaponEnchantment = "WeaponEnchantment",
45
- SickleRitual = "SickleRitual",
46
- RingEnchantment = "RingEnchantment",
47
- ChronicleEnchantment = "ChronicleEnchantment"
48
- }
49
- declare enum SpecialAbilityTag {
50
- GeneralSpecialAbility = "GeneralSpecialAbility",
51
- FatePointSpecialAbility = "FatePointSpecialAbility",
52
- CombatSpecialAbility = "CombatSpecialAbility",
53
- MagicalSpecialAbility = "MagicalSpecialAbility",
54
- StaffEnchantment = "StaffEnchantment",
55
- FamiliarSpecialAbility = "FamiliarSpecialAbility",
56
- KarmaSpecialAbility = "KarmaSpecialAbility",
57
- ProtectiveWardingCircleSpecialAbility = "ProtectiveWardingCircleSpecialAbility",
58
- CombatStyleSpecialAbility = "CombatStyleSpecialAbility",
59
- AdvancedCombatSpecialAbility = "AdvancedCombatSpecialAbility",
60
- CommandSpecialAbility = "CommandSpecialAbility",
61
- MagicStyleSpecialAbility = "MagicStyleSpecialAbility",
62
- AdvancedMagicalSpecialAbility = "AdvancedMagicalSpecialAbility",
63
- SpellSwordEnchantment = "SpellSwordEnchantment",
64
- DaggerRitual = "DaggerRitual",
65
- InstrumentEnchantment = "InstrumentEnchantment",
66
- AttireEnchantment = "AttireEnchantment",
67
- OrbEnchantment = "OrbEnchantment",
68
- WandEnchantment = "WandEnchantment",
69
- BrawlingSpecialAbility = "BrawlingSpecialAbility",
70
- AncestorGlyph = "AncestorGlyph",
71
- CeremonialItemSpecialAbility = "CeremonialItemSpecialAbility",
72
- Sermon = "Sermon",
73
- LiturgicalStyleSpecialAbility = "LiturgicalStyleSpecialAbility",
74
- AdvancedKarmaSpecialAbility = "AdvancedKarmaSpecialAbility",
75
- Vision = "Vision",
76
- MagicalTradition = "MagicalTradition",
77
- BlessedTradition = "BlessedTradition",
78
- PactGift = "PactGift",
79
- SikaryanDrainSpecialAbility = "SikaryanDrainSpecialAbility",
80
- LycantropicGift = "LycantropicGift",
81
- SkillStyleSpecialAbility = "SkillStyleSpecialAbility",
82
- AdvancedSkillSpecialAbility = "AdvancedSkillSpecialAbility",
83
- ArcaneOrbEnchantment = "ArcaneOrbEnchantment",
84
- CauldronEnchantment = "CauldronEnchantment",
85
- FoolsHatEnchantment = "FoolsHatEnchantment",
86
- ToyEnchantment = "ToyEnchantment",
87
- BowlEnchantment = "BowlEnchantment",
88
- FatePointSexSpecialAbility = "FatePointSexSpecialAbility",
89
- SexSpecialAbility = "SexSpecialAbility",
90
- WeaponEnchantment = "WeaponEnchantment",
91
- SickleRitual = "SickleRitual",
92
- RingEnchantment = "RingEnchantment",
93
- ChronicleEnchantment = "ChronicleEnchantment"
94
- }
95
- declare enum CombatRelatedSpecialAbilityTag {
96
- CombatSpecialAbility = "CombatSpecialAbility",
97
- CombatStyleSpecialAbility = "CombatStyleSpecialAbility",
98
- AdvancedCombatSpecialAbility = "AdvancedCombatSpecialAbility",
99
- CommandSpecialAbility = "CommandSpecialAbility"
100
- }
101
- declare enum RatedTag {
102
- Attribute = "Attribute",
103
- Skill = "Skill",
104
- CloseCombatTechnique = "CloseCombatTechnique",
105
- RangedCombatTechnique = "RangedCombatTechnique",
106
- Spell = "Spell",
107
- Ritual = "Ritual",
108
- LiturgicalChant = "LiturgicalChant",
109
- Ceremony = "Ceremony"
110
- }
111
- declare enum SkillTag {
112
- Skill = "Skill",
113
- Spell = "Spell",
114
- Ritual = "Ritual",
115
- LiturgicalChant = "LiturgicalChant",
116
- Ceremony = "Ceremony"
117
- }
118
- declare enum AdvancedSpecialAbilityRestrictedOptionTag {
119
- General = "General",
120
- Skill = "Skill",
121
- Element = "Element"
122
- }
123
- declare enum VolumePointsOptionReferenceTag {
124
- General = "General",
125
- AnimalShapeSize = "AnimalShapeSize"
126
- }
127
- declare enum CombatTechniqueTag {
128
- CloseCombatTechnique = "CloseCombatTechnique",
129
- RangedCombatTechnique = "RangedCombatTechnique"
130
- }
131
- declare enum MagicalTraditionTag {
132
- MagicalTradition = "MagicalTradition"
133
- }
134
- declare enum PatronTag {
135
- Patron = "Patron"
136
- }
137
- declare enum ExtensionRuleTag {
138
- FocusRule = "FocusRule",
139
- OptionalRule = "OptionalRule"
140
- }
141
- declare enum SkillWithEnhancementsTag {
142
- Spell = "Spell",
143
- Ritual = "Ritual",
144
- LiturgicalChant = "LiturgicalChant",
145
- Ceremony = "Ceremony"
146
- }
147
- declare enum SpellworkTag {
148
- Spell = "Spell",
149
- Ritual = "Ritual"
150
- }
151
- declare enum LiturgyTag {
152
- LiturgicalChant = "LiturgicalChant",
153
- Ceremony = "Ceremony"
154
- }
155
- declare enum MagicalActionTag {
156
- Spell = "Spell",
157
- Ritual = "Ritual",
158
- Curse = "Curse",
159
- ElvenMagicalSong = "ElvenMagicalSong",
160
- DominationRitual = "DominationRitual",
161
- MagicalMelody = "MagicalMelody",
162
- MagicalDance = "MagicalDance",
163
- JesterTrick = "JesterTrick",
164
- AnimistPower = "AnimistPower",
165
- GeodeRitual = "GeodeRitual",
166
- ZibiljaRitual = "ZibiljaRitual"
167
- }
168
- declare enum RequirableSelectOptionTag {
169
- General = "General",
170
- Skill = "Skill",
171
- CloseCombatTechnique = "CloseCombatTechnique",
172
- RangedCombatTechnique = "RangedCombatTechnique"
173
- }
174
- declare enum CoreRuleDerivableContentTag {
175
- MagicalTradition = "MagicalTradition",
176
- FamiliarSpecialAbility = "FamiliarSpecialAbility",
177
- MagicalSpecialAbility = "MagicalSpecialAbility",
178
- BlessedTradition = "BlessedTradition"
179
- }
180
- declare enum EquipmentTag {
181
- Alchemicum = "Alchemicum",
182
- Ammunition = "Ammunition",
183
- Animal = "Animal",
184
- AnimalCare = "AnimalCare",
185
- Armor = "Armor",
186
- BandageOrRemedy = "BandageOrRemedy",
187
- Book = "Book",
188
- CeremonialItem = "CeremonialItem",
189
- Clothes = "Clothes",
190
- Container = "Container",
191
- EquipmentOfBlessedOnes = "EquipmentOfBlessedOnes",
192
- GemOrPreciousStone = "GemOrPreciousStone",
193
- HealingHerb = "HealingHerb",
194
- Illumination = "Illumination",
195
- Jewelry = "Jewelry",
196
- Liebesspielzeug = "Liebesspielzeug",
197
- LuxuryGood = "LuxuryGood",
198
- MagicalArtifact = "MagicalArtifact",
199
- MusicalInstrument = "MusicalInstrument",
200
- OrienteeringAid = "OrienteeringAid",
201
- Poison = "Poison",
202
- RopeOrChain = "RopeOrChain",
203
- Stationary = "Stationary",
204
- ThievesTool = "ThievesTool",
205
- ToolOfTheTrade = "ToolOfTheTrade",
206
- TravelGearOrTool = "TravelGearOrTool",
207
- Vehicle = "Vehicle",
208
- Weapon = "Weapon",
209
- WeaponAccessory = "WeaponAccessory"
210
- }
211
- declare type TaggedIdentifier<Tag> = {
212
- tag: Tag;
213
- /**
214
- * The referenced entry's numeric identifier.
215
- * @integer
216
- * @minimum 1
217
- */
218
- value: number;
219
- };
220
- export declare type ActivatableIdentifier = TaggedIdentifier<ActivatableTag>;
221
- export declare type SpecialAbilityIdentifier = TaggedIdentifier<SpecialAbilityTag>;
222
- export declare type CombatRelatedSpecialAbilityIdentifier = TaggedIdentifier<CombatRelatedSpecialAbilityTag>;
223
- export declare type RatedIdentifier = TaggedIdentifier<RatedTag>;
224
- export declare type SkillIdentifier = TaggedIdentifier<SkillTag>;
225
- export declare type AdvancedSpecialAbilityRestrictedOptionIdentifier = TaggedIdentifier<AdvancedSpecialAbilityRestrictedOptionTag>;
226
- export declare type VolumePointsOptionReferenceIdentifier = TaggedIdentifier<VolumePointsOptionReferenceTag>;
227
- export declare type CombatTechniqueIdentifier = TaggedIdentifier<CombatTechniqueTag>;
228
- export declare type MagicalTraditionIdentifier = TaggedIdentifier<MagicalTraditionTag>;
229
- export declare type PatronIdentifier = TaggedIdentifier<PatronTag>;
230
- export declare type ExtensionRuleIdentifier = TaggedIdentifier<ExtensionRuleTag>;
231
- export declare type SkillWithEnhancementsIdentifier = TaggedIdentifier<SkillWithEnhancementsTag>;
232
- export declare type LiturgyIdentifier = TaggedIdentifier<LiturgyTag>;
233
- export declare type SpellworkIdentifier = TaggedIdentifier<SpellworkTag>;
234
- export declare type MagicalActionIdentifier = TaggedIdentifier<MagicalActionTag>;
235
- export declare type RequirableSelectOptionIdentifier = TaggedIdentifier<RequirableSelectOptionTag>;
236
- export declare type CoreRuleDerivableContentIdentifier = TaggedIdentifier<CoreRuleDerivableContentTag>;
237
- export declare type EquipmentIdentifier = TaggedIdentifier<EquipmentTag>;
238
- export declare type OneOrManyNumericIdentifiers = OneNumericIdentifier | ManyNumericIdentifiers;
239
- /**
240
- * @minimum 1
241
- */
242
- declare type OneNumericIdentifier = number;
243
- /**
244
- * @minItems 2
245
- */
246
- declare type ManyNumericIdentifiers = OneNumericIdentifier[];
247
- export {};
1
+ export declare type PublicationIdentifier = {
2
+ tag: "Publication";
3
+ /**
4
+ * The publication’s identifier.
5
+ * @integer
6
+ * @minimum 1
7
+ */
8
+ publication: number;
9
+ };
10
+ export declare type ExperienceLevelIdentifier = {
11
+ tag: "ExperienceLevel";
12
+ /**
13
+ * The experience level’s identifier.
14
+ * @integer
15
+ * @minimum 1
16
+ */
17
+ experience_level: number;
18
+ };
19
+ export declare type CoreRuleIdentifier = {
20
+ tag: "CoreRule";
21
+ /**
22
+ * The core rule’s identifier.
23
+ * @integer
24
+ * @minimum 1
25
+ */
26
+ core_rule: number;
27
+ };
28
+ export declare type FocusRuleIdentifier = {
29
+ tag: "FocusRule";
30
+ /**
31
+ * The focus rule’s identifier.
32
+ * @integer
33
+ * @minimum 1
34
+ */
35
+ focus_rule: number;
36
+ };
37
+ export declare type SubjectIdentifier = {
38
+ tag: "Subject";
39
+ /**
40
+ * The focus rule subject’s identifier.
41
+ * @integer
42
+ * @minimum 1
43
+ */
44
+ focus_rule: number;
45
+ };
46
+ export declare type OptionalRuleIdentifier = {
47
+ tag: "OptionalRule";
48
+ /**
49
+ * The optional rule’s identifier.
50
+ * @integer
51
+ * @minimum 1
52
+ */
53
+ optional_rule: number;
54
+ };
55
+ export declare type RaceIdentifier = {
56
+ tag: "Race";
57
+ /**
58
+ * The race’s identifier.
59
+ * @integer
60
+ * @minimum 1
61
+ */
62
+ race: number;
63
+ };
64
+ export declare type CultureIdentifier = {
65
+ tag: "Culture";
66
+ /**
67
+ * The culture’s identifier.
68
+ * @integer
69
+ * @minimum 1
70
+ */
71
+ culture: number;
72
+ };
73
+ export declare type ProfessionIdentifier = {
74
+ tag: "Profession";
75
+ /**
76
+ * The profession’s identifier.
77
+ * @integer
78
+ * @minimum 1
79
+ */
80
+ profession: number;
81
+ };
82
+ export declare type ProfessionVariantIdentifier = {
83
+ tag: "ProfessionVariant";
84
+ /**
85
+ * The profession variant’s identifier.
86
+ * @integer
87
+ * @minimum 1
88
+ */
89
+ profession_variant: number;
90
+ };
91
+ export declare type CurriculumIdentifier = {
92
+ tag: "Curriculum";
93
+ /**
94
+ * The curriculum’s identifier.
95
+ * @integer
96
+ * @minimum 1
97
+ */
98
+ curriculum: number;
99
+ };
100
+ export declare type GuidelineIdentifier = {
101
+ tag: "Guideline";
102
+ /**
103
+ * The guideline’s identifier.
104
+ * @integer
105
+ * @minimum 1
106
+ */
107
+ guideline: number;
108
+ };
109
+ export declare type AdvantageIdentifier = {
110
+ tag: "Advantage";
111
+ /**
112
+ * The advantage’s identifier.
113
+ * @integer
114
+ * @minimum 1
115
+ */
116
+ advantage: number;
117
+ };
118
+ export declare type DisadvantageIdentifier = {
119
+ tag: "Disadvantage";
120
+ /**
121
+ * The disadvantage’s identifier.
122
+ * @integer
123
+ * @minimum 1
124
+ */
125
+ disadvantage: number;
126
+ };
127
+ export declare type GeneralSpecialAbilityIdentifier = {
128
+ tag: "GeneralSpecialAbility";
129
+ /**
130
+ * The general special ability’s identifier.
131
+ * @integer
132
+ * @minimum 1
133
+ */
134
+ general_special_ability: number;
135
+ };
136
+ export declare type FatePointSpecialAbilityIdentifier = {
137
+ tag: "FatePointSpecialAbility";
138
+ /**
139
+ * The fate point special ability’s identifier.
140
+ * @integer
141
+ * @minimum 1
142
+ */
143
+ fate_point_special_ability: number;
144
+ };
145
+ export declare type CombatSpecialAbilityIdentifier = {
146
+ tag: "CombatSpecialAbility";
147
+ /**
148
+ * The combat special ability’s identifier.
149
+ * @integer
150
+ * @minimum 1
151
+ */
152
+ combat_special_ability: number;
153
+ };
154
+ export declare type MagicalSpecialAbilityIdentifier = {
155
+ tag: "MagicalSpecialAbility";
156
+ /**
157
+ * The magical special ability’s identifier.
158
+ * @integer
159
+ * @minimum 1
160
+ */
161
+ magical_special_ability: number;
162
+ };
163
+ export declare type StaffEnchantmentIdentifier = {
164
+ tag: "StaffEnchantment";
165
+ /**
166
+ * The staff enchantment’s identifier.
167
+ * @integer
168
+ * @minimum 1
169
+ */
170
+ staff_enchantment: number;
171
+ };
172
+ export declare type FamiliarSpecialAbilityIdentifier = {
173
+ tag: "FamiliarSpecialAbility";
174
+ /**
175
+ * The familiar special ability’s identifier.
176
+ * @integer
177
+ * @minimum 1
178
+ */
179
+ familiar_special_ability: number;
180
+ };
181
+ export declare type KarmaSpecialAbilityIdentifier = {
182
+ tag: "KarmaSpecialAbility";
183
+ /**
184
+ * The karma special ability’s identifier.
185
+ * @integer
186
+ * @minimum 1
187
+ */
188
+ karma_special_ability: number;
189
+ };
190
+ export declare type ProtectiveWardingCircleSpecialAbilityIdentifier = {
191
+ tag: "ProtectiveWardingCircleSpecialAbility";
192
+ /**
193
+ * The protective warding circle special ability’s identifier.
194
+ * @integer
195
+ * @minimum 1
196
+ */
197
+ protective_warding_circle_special_ability: number;
198
+ };
199
+ export declare type CombatStyleSpecialAbilityIdentifier = {
200
+ tag: "CombatStyleSpecialAbility";
201
+ /**
202
+ * The combat style special ability’s identifier.
203
+ * @integer
204
+ * @minimum 1
205
+ */
206
+ combat_style_special_ability: number;
207
+ };
208
+ export declare type AdvancedCombatSpecialAbilityIdentifier = {
209
+ tag: "AdvancedCombatSpecialAbility";
210
+ /**
211
+ * The advanced combat special ability’s identifier.
212
+ * @integer
213
+ * @minimum 1
214
+ */
215
+ advanced_combat_special_ability: number;
216
+ };
217
+ export declare type CommandSpecialAbilityIdentifier = {
218
+ tag: "CommandSpecialAbility";
219
+ /**
220
+ * The command special ability’s identifier.
221
+ * @integer
222
+ * @minimum 1
223
+ */
224
+ command_special_ability: number;
225
+ };
226
+ export declare type MagicStyleSpecialAbilityIdentifier = {
227
+ tag: "MagicStyleSpecialAbility";
228
+ /**
229
+ * The magic style special ability’s identifier.
230
+ * @integer
231
+ * @minimum 1
232
+ */
233
+ magic_style_special_ability: number;
234
+ };
235
+ export declare type AdvancedMagicalSpecialAbilityIdentifier = {
236
+ tag: "AdvancedMagicalSpecialAbility";
237
+ /**
238
+ * The advanced magical special ability’s identifier.
239
+ * @integer
240
+ * @minimum 1
241
+ */
242
+ advanced_magical_special_ability: number;
243
+ };
244
+ export declare type SpellSwordEnchantmentIdentifier = {
245
+ tag: "SpellSwordEnchantment";
246
+ /**
247
+ * The spell sword enchantment’s identifier.
248
+ * @integer
249
+ * @minimum 1
250
+ */
251
+ spell_sword_enchantment: number;
252
+ };
253
+ export declare type DaggerRitualIdentifier = {
254
+ tag: "DaggerRitual";
255
+ /**
256
+ * The dagger ritual’s identifier.
257
+ * @integer
258
+ * @minimum 1
259
+ */
260
+ dagger_ritual: number;
261
+ };
262
+ export declare type InstrumentEnchantmentIdentifier = {
263
+ tag: "InstrumentEnchantment";
264
+ /**
265
+ * The instrument enchantment’s identifier.
266
+ * @integer
267
+ * @minimum 1
268
+ */
269
+ instrument_enchantment: number;
270
+ };
271
+ export declare type AttireEnchantmentIdentifier = {
272
+ tag: "AttireEnchantment";
273
+ /**
274
+ * The attire enchantment’s identifier.
275
+ * @integer
276
+ * @minimum 1
277
+ */
278
+ attire_enchantment: number;
279
+ };
280
+ export declare type OrbEnchantmentIdentifier = {
281
+ tag: "OrbEnchantment";
282
+ /**
283
+ * The orb enchantment’s identifier.
284
+ * @integer
285
+ * @minimum 1
286
+ */
287
+ orb_enchantment: number;
288
+ };
289
+ export declare type WandEnchantmentIdentifier = {
290
+ tag: "WandEnchantment";
291
+ /**
292
+ * The wand enchantment’s identifier.
293
+ * @integer
294
+ * @minimum 1
295
+ */
296
+ wand_enchantment: number;
297
+ };
298
+ export declare type BrawlingSpecialAbilityIdentifier = {
299
+ tag: "BrawlingSpecialAbility";
300
+ /**
301
+ * The brawling special ability’s identifier.
302
+ * @integer
303
+ * @minimum 1
304
+ */
305
+ brawling_special_ability: number;
306
+ };
307
+ export declare type AncestorGlyphIdentifier = {
308
+ tag: "AncestorGlyph";
309
+ /**
310
+ * The ancestor glyph’s identifier.
311
+ * @integer
312
+ * @minimum 1
313
+ */
314
+ ancestor_glyph: number;
315
+ };
316
+ export declare type CeremonialItemSpecialAbilityIdentifier = {
317
+ tag: "CeremonialItemSpecialAbility";
318
+ /**
319
+ * The ceremonial item special ability’s identifier.
320
+ * @integer
321
+ * @minimum 1
322
+ */
323
+ ceremonial_item_special_ability: number;
324
+ };
325
+ export declare type SermonIdentifier = {
326
+ tag: "Sermon";
327
+ /**
328
+ * The sermon’s identifier.
329
+ * @integer
330
+ * @minimum 1
331
+ */
332
+ sermon: number;
333
+ };
334
+ export declare type LiturgicalStyleSpecialAbilityIdentifier = {
335
+ tag: "LiturgicalStyleSpecialAbility";
336
+ /**
337
+ * The liturgical style special ability’s identifier.
338
+ * @integer
339
+ * @minimum 1
340
+ */
341
+ liturgical_style_special_ability: number;
342
+ };
343
+ export declare type AdvancedKarmaSpecialAbilityIdentifier = {
344
+ tag: "AdvancedKarmaSpecialAbility";
345
+ /**
346
+ * The advanced karma special ability’s identifier.
347
+ * @integer
348
+ * @minimum 1
349
+ */
350
+ advanced_karma_special_ability: number;
351
+ };
352
+ export declare type VisionIdentifier = {
353
+ tag: "Vision";
354
+ /**
355
+ * The vision’s identifier.
356
+ * @integer
357
+ * @minimum 1
358
+ */
359
+ vision: number;
360
+ };
361
+ export declare type MagicalTraditionIdentifier = {
362
+ tag: "MagicalTradition";
363
+ /**
364
+ * The magical tradition’s identifier.
365
+ * @integer
366
+ * @minimum 1
367
+ */
368
+ magical_tradition: number;
369
+ };
370
+ export declare type BlessedTraditionIdentifier = {
371
+ tag: "BlessedTradition";
372
+ /**
373
+ * The blessed tradition’s identifier.
374
+ * @integer
375
+ * @minimum 1
376
+ */
377
+ blessed_tradition: number;
378
+ };
379
+ export declare type PactGiftIdentifier = {
380
+ tag: "PactGift";
381
+ /**
382
+ * The pact gift’s identifier.
383
+ * @integer
384
+ * @minimum 1
385
+ */
386
+ pact_gift: number;
387
+ };
388
+ export declare type SikaryanDrainSpecialAbilityIdentifier = {
389
+ tag: "SikaryanDrainSpecialAbility";
390
+ /**
391
+ * The sikaryan drain special ability’s identifier.
392
+ * @integer
393
+ * @minimum 1
394
+ */
395
+ sikaryan_drain_special_ability: number;
396
+ };
397
+ export declare type LycantropicGiftIdentifier = {
398
+ tag: "LycantropicGift";
399
+ /**
400
+ * The lycantropic gift’s identifier.
401
+ * @integer
402
+ * @minimum 1
403
+ */
404
+ lycantropic_gift: number;
405
+ };
406
+ export declare type SkillStyleSpecialAbilityIdentifier = {
407
+ tag: "SkillStyleSpecialAbility";
408
+ /**
409
+ * The skill style special ability’s identifier.
410
+ * @integer
411
+ * @minimum 1
412
+ */
413
+ skill_style_special_ability: number;
414
+ };
415
+ export declare type AdvancedSkillSpecialAbilityIdentifier = {
416
+ tag: "AdvancedSkillSpecialAbility";
417
+ /**
418
+ * The advanced skill special ability’s identifier.
419
+ * @integer
420
+ * @minimum 1
421
+ */
422
+ advanced_skill_special_ability: number;
423
+ };
424
+ export declare type ArcaneOrbEnchantmentIdentifier = {
425
+ tag: "ArcaneOrbEnchantment";
426
+ /**
427
+ * The arcane orb enchantment’s identifier.
428
+ * @integer
429
+ * @minimum 1
430
+ */
431
+ arcane_orb_enchantment: number;
432
+ };
433
+ export declare type CauldronEnchantmentIdentifier = {
434
+ tag: "CauldronEnchantment";
435
+ /**
436
+ * The cauldron enchantment’s identifier.
437
+ * @integer
438
+ * @minimum 1
439
+ */
440
+ cauldron_enchantment: number;
441
+ };
442
+ export declare type FoolsHatEnchantmentIdentifier = {
443
+ tag: "FoolsHatEnchantment";
444
+ /**
445
+ * The fools hat enchantment’s identifier.
446
+ * @integer
447
+ * @minimum 1
448
+ */
449
+ fools_hat_enchantment: number;
450
+ };
451
+ export declare type ToyEnchantmentIdentifier = {
452
+ tag: "ToyEnchantment";
453
+ /**
454
+ * The toy enchantment’s identifier.
455
+ * @integer
456
+ * @minimum 1
457
+ */
458
+ toy_enchantment: number;
459
+ };
460
+ export declare type BowlEnchantmentIdentifier = {
461
+ tag: "BowlEnchantment";
462
+ /**
463
+ * The bowl enchantment’s identifier.
464
+ * @integer
465
+ * @minimum 1
466
+ */
467
+ bowl_enchantment: number;
468
+ };
469
+ export declare type FatePointSexSpecialAbilityIdentifier = {
470
+ tag: "FatePointSexSpecialAbility";
471
+ /**
472
+ * The fate point sex special ability’s identifier.
473
+ * @integer
474
+ * @minimum 1
475
+ */
476
+ fate_point_sex_special_ability: number;
477
+ };
478
+ export declare type SexSpecialAbilityIdentifier = {
479
+ tag: "SexSpecialAbility";
480
+ /**
481
+ * The sex special ability’s identifier.
482
+ * @integer
483
+ * @minimum 1
484
+ */
485
+ sex_special_ability: number;
486
+ };
487
+ export declare type WeaponEnchantmentIdentifier = {
488
+ tag: "WeaponEnchantment";
489
+ /**
490
+ * The weapon enchantment’s identifier.
491
+ * @integer
492
+ * @minimum 1
493
+ */
494
+ weapon_enchantment: number;
495
+ };
496
+ export declare type SickleRitualIdentifier = {
497
+ tag: "SickleRitual";
498
+ /**
499
+ * The sickle ritual’s identifier.
500
+ * @integer
501
+ * @minimum 1
502
+ */
503
+ sickle_ritual: number;
504
+ };
505
+ export declare type RingEnchantmentIdentifier = {
506
+ tag: "RingEnchantment";
507
+ /**
508
+ * The ring enchantment’s identifier.
509
+ * @integer
510
+ * @minimum 1
511
+ */
512
+ ring_enchantment: number;
513
+ };
514
+ export declare type ChronicleEnchantmentIdentifier = {
515
+ tag: "ChronicleEnchantment";
516
+ /**
517
+ * The chronicle enchantment’s identifier.
518
+ * @integer
519
+ * @minimum 1
520
+ */
521
+ chronicle_enchantment: number;
522
+ };
523
+ export declare type LanguageIdentifier = {
524
+ tag: "Language";
525
+ /**
526
+ * The language’s identifier.
527
+ * @integer
528
+ * @minimum 1
529
+ */
530
+ language: number;
531
+ };
532
+ export declare type ScriptIdentifier = {
533
+ tag: "Script";
534
+ /**
535
+ * The script’s identifier.
536
+ * @integer
537
+ * @minimum 1
538
+ */
539
+ script: number;
540
+ };
541
+ export declare type ContinentIdentifier = {
542
+ tag: "Continent";
543
+ /**
544
+ * The continent’s identifier.
545
+ * @integer
546
+ * @minimum 1
547
+ * @maximum 3
548
+ */
549
+ continent: number;
550
+ };
551
+ export declare type SocialStatusIdentifier = {
552
+ tag: "SocialStatus";
553
+ /**
554
+ * The social status’s identifier.
555
+ * @integer
556
+ * @minimum 1
557
+ */
558
+ social_status: number;
559
+ };
560
+ export declare type AttributeIdentifier = {
561
+ tag: "Attribute";
562
+ /**
563
+ * The attribute’s identifier.
564
+ * @integer
565
+ * @minimum 1
566
+ * @maximum 8
567
+ */
568
+ attribute: number;
569
+ };
570
+ export declare type SkillIdentifier<Value extends number = number> = {
571
+ tag: "Skill";
572
+ /**
573
+ * The skill’s identifier.
574
+ * @integer
575
+ * @minimum 1
576
+ */
577
+ skill: Value;
578
+ };
579
+ export declare type SkillGroupIdentifier = {
580
+ tag: "SkillGroup";
581
+ /**
582
+ * The skill group’s identifier.
583
+ * @integer
584
+ * @minimum 1
585
+ * @maximum 5
586
+ */
587
+ skill_group: number;
588
+ };
589
+ export declare type CloseCombatTechniqueIdentifier = {
590
+ tag: "CloseCombatTechnique";
591
+ /**
592
+ * The close combat technique’s identifier.
593
+ * @integer
594
+ * @minimum 1
595
+ */
596
+ close_combat_technique: number;
597
+ };
598
+ export declare type RangedCombatTechniqueIdentifier = {
599
+ tag: "RangedCombatTechnique";
600
+ /**
601
+ * The ranged combat technique’s identifier.
602
+ * @integer
603
+ * @minimum 1
604
+ */
605
+ ranged_combat_technique: number;
606
+ };
607
+ export declare type SpellIdentifier = {
608
+ tag: "Spell";
609
+ /**
610
+ * The spell’s identifier.
611
+ * @integer
612
+ * @minimum 1
613
+ */
614
+ spell: number;
615
+ };
616
+ export declare type RitualIdentifier = {
617
+ tag: "Ritual";
618
+ /**
619
+ * The ritual’s identifier.
620
+ * @integer
621
+ * @minimum 1
622
+ */
623
+ ritual: number;
624
+ };
625
+ export declare type CantripIdentifier = {
626
+ tag: "Cantrip";
627
+ /**
628
+ * The cantrip’s identifier.
629
+ * @integer
630
+ * @minimum 1
631
+ */
632
+ cantrip: number;
633
+ };
634
+ export declare type PropertyIdentifier = {
635
+ tag: "Property";
636
+ /**
637
+ * The property’s identifier.
638
+ * @integer
639
+ * @minimum 1
640
+ */
641
+ property: number;
642
+ };
643
+ export declare type LiturgicalChantIdentifier = {
644
+ tag: "LiturgicalChant";
645
+ /**
646
+ * The liturgical chant’s identifier.
647
+ * @integer
648
+ * @minimum 1
649
+ */
650
+ liturgical_chant: number;
651
+ };
652
+ export declare type CeremonyIdentifier = {
653
+ tag: "Ceremony";
654
+ /**
655
+ * The ceremony’s identifier.
656
+ * @integer
657
+ * @minimum 1
658
+ */
659
+ ceremony: number;
660
+ };
661
+ export declare type BlessingIdentifier = {
662
+ tag: "Blessing";
663
+ /**
664
+ * The blessing’s identifier.
665
+ * @integer
666
+ * @minimum 1
667
+ */
668
+ blessing: number;
669
+ };
670
+ export declare type AspectIdentifier = {
671
+ tag: "Aspect";
672
+ /**
673
+ * The aspect’s identifier.
674
+ * @integer
675
+ * @minimum 1
676
+ */
677
+ aspect: number;
678
+ };
679
+ export declare type CurseIdentifier = {
680
+ tag: "Curse";
681
+ /**
682
+ * The curse’s identifier.
683
+ * @integer
684
+ * @minimum 1
685
+ */
686
+ curse: number;
687
+ };
688
+ export declare type ElvenMagicalSongIdentifier = {
689
+ tag: "ElvenMagicalSong";
690
+ /**
691
+ * The elven magical song’s identifier.
692
+ * @integer
693
+ * @minimum 1
694
+ */
695
+ elven_magical_song: number;
696
+ };
697
+ export declare type DominationRitualIdentifier = {
698
+ tag: "DominationRitual";
699
+ /**
700
+ * The domination ritual’s identifier.
701
+ * @integer
702
+ * @minimum 1
703
+ */
704
+ domination_ritual: number;
705
+ };
706
+ export declare type MagicalMelodyIdentifier = {
707
+ tag: "MagicalMelody";
708
+ /**
709
+ * The magical melody’s identifier.
710
+ * @integer
711
+ * @minimum 1
712
+ */
713
+ magical_melody: number;
714
+ };
715
+ export declare type MagicalDanceIdentifier = {
716
+ tag: "MagicalDance";
717
+ /**
718
+ * The magical dance’s identifier.
719
+ * @integer
720
+ * @minimum 1
721
+ */
722
+ magical_dance: number;
723
+ };
724
+ export declare type JesterTrickIdentifier = {
725
+ tag: "JesterTrick";
726
+ /**
727
+ * The jester trick’s identifier.
728
+ * @integer
729
+ * @minimum 1
730
+ */
731
+ jester_trick: number;
732
+ };
733
+ export declare type AnimistPowerIdentifier = {
734
+ tag: "AnimistPower";
735
+ /**
736
+ * The animist power’s identifier.
737
+ * @integer
738
+ * @minimum 1
739
+ */
740
+ animist_power: number;
741
+ };
742
+ export declare type GeodeRitualIdentifier = {
743
+ tag: "GeodeRitual";
744
+ /**
745
+ * The geode ritual’s identifier.
746
+ * @integer
747
+ * @minimum 1
748
+ */
749
+ geode_ritual: number;
750
+ };
751
+ export declare type ZibiljaRitualIdentifier = {
752
+ tag: "ZibiljaRitual";
753
+ /**
754
+ * The zibilja ritual’s identifier.
755
+ * @integer
756
+ * @minimum 1
757
+ */
758
+ zibilja_ritual: number;
759
+ };
760
+ export declare type AnimalTypeIdentifier = {
761
+ tag: "AnimalType";
762
+ /**
763
+ * The animal type’s identifier.
764
+ * @integer
765
+ * @minimum 1
766
+ */
767
+ animal_type: number;
768
+ };
769
+ export declare type TargetCategoryIdentifier = {
770
+ tag: "TargetCategory";
771
+ /**
772
+ * The target category’s identifier.
773
+ * @integer
774
+ * @minimum 1
775
+ * @maximum 24
776
+ */
777
+ target_category: number;
778
+ };
779
+ export declare type GeneralIdentifier = {
780
+ tag: "General";
781
+ /**
782
+ * The identifier of a general (unspecific) select option.
783
+ * @integer
784
+ * @minimum 1
785
+ */
786
+ general: number;
787
+ };
788
+ export declare type ElementIdentifier = {
789
+ tag: "Element";
790
+ /**
791
+ * The element’s identifier.
792
+ * @integer
793
+ * @minimum 1
794
+ */
795
+ element: number;
796
+ };
797
+ export declare type AnimalShapeSizeIdentifier = {
798
+ tag: "AnimalShapeSize";
799
+ /**
800
+ * The animal shape size’s identifier.
801
+ * @integer
802
+ * @minimum 1
803
+ */
804
+ animal_shape_size: number;
805
+ };
806
+ export declare type PatronIdentifier = {
807
+ tag: "Patron";
808
+ /**
809
+ * The patron’s identifier.
810
+ * @integer
811
+ * @minimum 1
812
+ */
813
+ patron: number;
814
+ };
815
+ export declare type AlchemicumIdentifier = {
816
+ tag: "Alchemicum";
817
+ /**
818
+ * The alchemicum’s identifier.
819
+ * @integer
820
+ * @minimum 1
821
+ */
822
+ alchemicum: number;
823
+ };
824
+ export declare type AmmunitionIdentifier = {
825
+ tag: "Ammunition";
826
+ /**
827
+ * The ammunition’s identifier.
828
+ * @integer
829
+ * @minimum 1
830
+ */
831
+ ammunition: number;
832
+ };
833
+ export declare type AnimalIdentifier = {
834
+ tag: "Animal";
835
+ /**
836
+ * The animal’s identifier.
837
+ * @integer
838
+ * @minimum 1
839
+ */
840
+ animal: number;
841
+ };
842
+ export declare type AnimalCareIdentifier = {
843
+ tag: "AnimalCare";
844
+ /**
845
+ * The animal care’s identifier.
846
+ * @integer
847
+ * @minimum 1
848
+ */
849
+ animal_care: number;
850
+ };
851
+ export declare type ArmorIdentifier = {
852
+ tag: "Armor";
853
+ /**
854
+ * The armor’s identifier.
855
+ * @integer
856
+ * @minimum 1
857
+ */
858
+ armor: number;
859
+ };
860
+ export declare type BandageOrRemedyIdentifier = {
861
+ tag: "BandageOrRemedy";
862
+ /**
863
+ * The bandage or remedy’s identifier.
864
+ * @integer
865
+ * @minimum 1
866
+ */
867
+ bandage_or_remedy: number;
868
+ };
869
+ export declare type BookIdentifier = {
870
+ tag: "Book";
871
+ /**
872
+ * The book’s identifier.
873
+ * @integer
874
+ * @minimum 1
875
+ */
876
+ book: number;
877
+ };
878
+ export declare type CeremonialItemIdentifier = {
879
+ tag: "CeremonialItem";
880
+ /**
881
+ * The ceremonial item’s identifier.
882
+ * @integer
883
+ * @minimum 1
884
+ */
885
+ ceremonial_item: number;
886
+ };
887
+ export declare type ClothesIdentifier = {
888
+ tag: "Clothes";
889
+ /**
890
+ * The clothes’ identifier.
891
+ * @integer
892
+ * @minimum 1
893
+ */
894
+ clothes: number;
895
+ };
896
+ export declare type ContainerIdentifier = {
897
+ tag: "Container";
898
+ /**
899
+ * The container’s identifier.
900
+ * @integer
901
+ * @minimum 1
902
+ */
903
+ container: number;
904
+ };
905
+ export declare type EquipmentOfBlessedOnesIdentifier = {
906
+ tag: "EquipmentOfBlessedOnes";
907
+ /**
908
+ * The equipment of blessed ones’ identifier.
909
+ * @integer
910
+ * @minimum 1
911
+ */
912
+ equipment_of_blessed_ones: number;
913
+ };
914
+ export declare type GemOrPreciousStoneIdentifier = {
915
+ tag: "GemOrPreciousStone";
916
+ /**
917
+ * The gem or precious stone’s identifier.
918
+ * @integer
919
+ * @minimum 1
920
+ */
921
+ gem_or_precious_stone: number;
922
+ };
923
+ export declare type IlluminationLightSourceIdentifier = {
924
+ tag: "IlluminationLightSource";
925
+ /**
926
+ * The illumination light source’s identifier.
927
+ * @integer
928
+ * @minimum 1
929
+ */
930
+ illumination_light_source: number;
931
+ };
932
+ export declare type IlluminationRefillsOrSuppliesIdentifier = {
933
+ tag: "IlluminationRefillsOrSupplies";
934
+ /**
935
+ * The illumination refills or supplies’ identifier.
936
+ * @integer
937
+ * @minimum 1
938
+ */
939
+ illumination_refills_or_supplies: number;
940
+ };
941
+ export declare type JewelryIdentifier = {
942
+ tag: "Jewelry";
943
+ /**
944
+ * The jewelry’s identifier.
945
+ * @integer
946
+ * @minimum 1
947
+ */
948
+ jewelry: number;
949
+ };
950
+ export declare type LiebesspielzeugIdentifier = {
951
+ tag: "Liebesspielzeug";
952
+ /**
953
+ * The Liebesspielzeug’s identifier.
954
+ * @integer
955
+ * @minimum 1
956
+ */
957
+ liebesspielzeug: number;
958
+ };
959
+ export declare type LuxuryGoodIdentifier = {
960
+ tag: "LuxuryGood";
961
+ /**
962
+ * The luxury good’s identifier.
963
+ * @integer
964
+ * @minimum 1
965
+ */
966
+ luxury_good: number;
967
+ };
968
+ export declare type MagicalArtifactIdentifier = {
969
+ tag: "MagicalArtifact";
970
+ /**
971
+ * The magical artifact’s identifier.
972
+ * @integer
973
+ * @minimum 1
974
+ */
975
+ magical_artifact: number;
976
+ };
977
+ export declare type MusicalInstrumentIdentifier = {
978
+ tag: "MusicalInstrument";
979
+ /**
980
+ * The musical instrument’s identifier.
981
+ * @integer
982
+ * @minimum 1
983
+ */
984
+ musical_instrument: number;
985
+ };
986
+ export declare type OrienteeringAidIdentifier = {
987
+ tag: "OrienteeringAid";
988
+ /**
989
+ * The orienteering aid’s identifier.
990
+ * @integer
991
+ * @minimum 1
992
+ */
993
+ orienteering_aid: number;
994
+ };
995
+ export declare type PoisonIdentifier = {
996
+ tag: "Poison";
997
+ /**
998
+ * The poison’s identifier.
999
+ * @integer
1000
+ * @minimum 1
1001
+ */
1002
+ poison: number;
1003
+ };
1004
+ export declare type RopeOrChainIdentifier = {
1005
+ tag: "RopeOrChain";
1006
+ /**
1007
+ * The rope or chain’s identifier.
1008
+ * @integer
1009
+ * @minimum 1
1010
+ */
1011
+ rope_or_chain: number;
1012
+ };
1013
+ export declare type StationaryIdentifier = {
1014
+ tag: "Stationary";
1015
+ /**
1016
+ * The stationary’s identifier.
1017
+ * @integer
1018
+ * @minimum 1
1019
+ */
1020
+ stationary: number;
1021
+ };
1022
+ export declare type ThievesToolIdentifier = {
1023
+ tag: "ThievesTool";
1024
+ /**
1025
+ * The thieves tool’s identifier.
1026
+ * @integer
1027
+ * @minimum 1
1028
+ */
1029
+ thieves_tool: number;
1030
+ };
1031
+ export declare type ToolOfTheTradeIdentifier = {
1032
+ tag: "ToolOfTheTrade";
1033
+ /**
1034
+ * The tool of the trade’s identifier.
1035
+ * @integer
1036
+ * @minimum 1
1037
+ */
1038
+ tool_of_the_trade: number;
1039
+ };
1040
+ export declare type TravelGearOrToolIdentifier = {
1041
+ tag: "TravelGearOrTool";
1042
+ /**
1043
+ * The travel gear or tool’s identifier.
1044
+ * @integer
1045
+ * @minimum 1
1046
+ */
1047
+ travel_gear_or_tool: number;
1048
+ };
1049
+ export declare type VehicleIdentifier = {
1050
+ tag: "Vehicle";
1051
+ /**
1052
+ * The vehicle’s identifier.
1053
+ * @integer
1054
+ * @minimum 1
1055
+ */
1056
+ vehicle: number;
1057
+ };
1058
+ export declare type WeaponIdentifier = {
1059
+ tag: "Weapon";
1060
+ /**
1061
+ * The weapon’s identifier.
1062
+ * @integer
1063
+ * @minimum 1
1064
+ */
1065
+ weapon: number;
1066
+ };
1067
+ export declare type WeaponAccessoryIdentifier = {
1068
+ tag: "WeaponAccessory";
1069
+ /**
1070
+ * The weapon accessory’s identifier.
1071
+ * @integer
1072
+ * @minimum 1
1073
+ */
1074
+ weapon_accessory: number;
1075
+ };
1076
+ export declare type ReachIdentifier = {
1077
+ tag: "Reach";
1078
+ /**
1079
+ * The reach’s identifier.
1080
+ * @integer
1081
+ * @minimum 1
1082
+ * @maximum 4
1083
+ */
1084
+ reach: number;
1085
+ };
1086
+ export declare type PatronCategoryIdentifier = {
1087
+ tag: "PatronCategory";
1088
+ /**
1089
+ * The patron category’s identifier.
1090
+ * @integer
1091
+ * @minimum 1
1092
+ */
1093
+ patron_category: number;
1094
+ };
1095
+ export declare type PersonalityTraitIdentifier = {
1096
+ tag: "PersonalityTrait";
1097
+ /**
1098
+ * The personality trait’s identifier.
1099
+ * @integer
1100
+ * @minimum 1
1101
+ */
1102
+ personality_trait: number;
1103
+ };
1104
+ export declare type HairColorIdentifier = {
1105
+ tag: "HairColor";
1106
+ /**
1107
+ * The hair color’s identifier.
1108
+ * @integer
1109
+ * @minimum 1
1110
+ */
1111
+ hair_color: number;
1112
+ };
1113
+ export declare type EyeColorIdentifier = {
1114
+ tag: "EyeColor";
1115
+ /**
1116
+ * The eye color’s identifier.
1117
+ * @integer
1118
+ * @minimum 1
1119
+ */
1120
+ eye_color: number;
1121
+ };
1122
+ export declare type PactCategoryIdentifier = {
1123
+ tag: "PactCategory";
1124
+ /**
1125
+ * The pact category’s identifier.
1126
+ * @integer
1127
+ * @minimum 1
1128
+ */
1129
+ pact_category: number;
1130
+ };
1131
+ export declare type PactDomainIdentifier = {
1132
+ tag: "PactDomain";
1133
+ /**
1134
+ * The pact domain’s identifier.
1135
+ * @integer
1136
+ * @minimum 1
1137
+ */
1138
+ pact_domain: number;
1139
+ };
1140
+ export declare type AnimistTribeIdentifier = {
1141
+ tag: "AnimistTribe";
1142
+ /**
1143
+ * The animist tribe’s identifier.
1144
+ * @integer
1145
+ * @minimum 1
1146
+ */
1147
+ animist_tribe: number;
1148
+ };
1149
+ export declare type InfluenceIdentifier = {
1150
+ tag: "Influence";
1151
+ /**
1152
+ * The influence’s identifier.
1153
+ * @integer
1154
+ * @minimum 1
1155
+ */
1156
+ influence: number;
1157
+ };
1158
+ export declare type ConditionIdentifier = {
1159
+ tag: "Condition";
1160
+ /**
1161
+ * The condition’s identifier.
1162
+ * @integer
1163
+ * @minimum 1
1164
+ */
1165
+ condition: number;
1166
+ };
1167
+ export declare type StateIdentifier = {
1168
+ tag: "State";
1169
+ /**
1170
+ * The state’s identifier.
1171
+ * @integer
1172
+ * @minimum 1
1173
+ */
1174
+ state: number;
1175
+ };