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.
- package/CHANGELOG.md +26 -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 +22 -26
- 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/CeremonialItemSpecialAbility.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 +7 -183
- 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 +1298 -1072
- 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/CeremonialItemSpecialAbility.schema.json +0 -1
- 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
|
@@ -1,247 +1,1175 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}
|
|
118
|
-
declare
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
}
|
|
127
|
-
declare
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
export declare type
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
export declare type
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
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
|
+
};
|