optolith-database-schema 0.1.21 → 0.1.22
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 +7 -0
- package/lib/types/Profession.d.ts +730 -0
- package/lib/types/Profession.js +5 -0
- package/lib/types/_Identifier.d.ts +71 -0
- package/lib/types/_Identifier.js +71 -0
- package/package.json +1 -1
- package/schema/Profession.schema.json +1384 -0
- package/schema/_Identifier.schema.json +147 -0
|
@@ -52,6 +52,54 @@
|
|
|
52
52
|
"ChronicleEnchantment"
|
|
53
53
|
]
|
|
54
54
|
},
|
|
55
|
+
"SpecialAbilityTag": {
|
|
56
|
+
"enum": [
|
|
57
|
+
"GeneralSpecialAbility",
|
|
58
|
+
"FatePointSpecialAbility",
|
|
59
|
+
"CombatSpecialAbility",
|
|
60
|
+
"MagicalSpecialAbility",
|
|
61
|
+
"StaffEnchantment",
|
|
62
|
+
"FamiliarSpecialAbility",
|
|
63
|
+
"KarmaSpecialAbility",
|
|
64
|
+
"ProtectiveWardingCircleSpecialAbility",
|
|
65
|
+
"CombatStyleSpecialAbility",
|
|
66
|
+
"AdvancedCombatSpecialAbility",
|
|
67
|
+
"CommandSpecialAbility",
|
|
68
|
+
"MagicStyleSpecialAbility",
|
|
69
|
+
"AdvancedMagicalSpecialAbility",
|
|
70
|
+
"SpellSwordEnchantment",
|
|
71
|
+
"DaggerRitual",
|
|
72
|
+
"InstrumentEnchantment",
|
|
73
|
+
"AttireEnchantment",
|
|
74
|
+
"OrbEnchantment",
|
|
75
|
+
"WandEnchantment",
|
|
76
|
+
"BrawlingSpecialAbility",
|
|
77
|
+
"AncestorGlyph",
|
|
78
|
+
"CeremonialItemSpecialAbility",
|
|
79
|
+
"Sermon",
|
|
80
|
+
"LiturgicalStyleSpecialAbility",
|
|
81
|
+
"AdvancedKarmaSpecialAbility",
|
|
82
|
+
"Vision",
|
|
83
|
+
"MagicalTradition",
|
|
84
|
+
"BlessedTradition",
|
|
85
|
+
"PactGift",
|
|
86
|
+
"SikaryanDrainSpecialAbility",
|
|
87
|
+
"LycantropicGift",
|
|
88
|
+
"SkillStyleSpecialAbility",
|
|
89
|
+
"AdvancedSkillSpecialAbility",
|
|
90
|
+
"ArcaneOrbEnchantment",
|
|
91
|
+
"CauldronEnchantment",
|
|
92
|
+
"FoolsHatEnchantment",
|
|
93
|
+
"ToyEnchantment",
|
|
94
|
+
"BowlEnchantment",
|
|
95
|
+
"FatePointSexSpecialAbility",
|
|
96
|
+
"SexSpecialAbility",
|
|
97
|
+
"WeaponEnchantment",
|
|
98
|
+
"SickleRitual",
|
|
99
|
+
"RingEnchantment",
|
|
100
|
+
"ChronicleEnchantment"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
55
103
|
"CombatRelatedSpecialAbilityTag": {
|
|
56
104
|
"enum": [
|
|
57
105
|
"CombatSpecialAbility",
|
|
@@ -114,6 +162,33 @@
|
|
|
114
162
|
"Ceremony"
|
|
115
163
|
]
|
|
116
164
|
},
|
|
165
|
+
"SpellworkTag": {
|
|
166
|
+
"enum": [
|
|
167
|
+
"Spell",
|
|
168
|
+
"Ritual"
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
"LiturgyTag": {
|
|
172
|
+
"enum": [
|
|
173
|
+
"LiturgicalChant",
|
|
174
|
+
"Ceremony"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
"MagicalActionTag": {
|
|
178
|
+
"enum": [
|
|
179
|
+
"Spell",
|
|
180
|
+
"Ritual",
|
|
181
|
+
"Curse",
|
|
182
|
+
"ElvenMagicalSong",
|
|
183
|
+
"DominationRitual",
|
|
184
|
+
"MagicalMelody",
|
|
185
|
+
"MagicalDance",
|
|
186
|
+
"JesterTrick",
|
|
187
|
+
"AnimistPower",
|
|
188
|
+
"GeodeRitual",
|
|
189
|
+
"ZibiljaRitual"
|
|
190
|
+
]
|
|
191
|
+
},
|
|
117
192
|
"RequirableSelectOptionTag": {
|
|
118
193
|
"enum": [
|
|
119
194
|
"General",
|
|
@@ -140,6 +215,24 @@
|
|
|
140
215
|
],
|
|
141
216
|
"additionalProperties": false
|
|
142
217
|
},
|
|
218
|
+
"SpecialAbilityIdentifier": {
|
|
219
|
+
"type": "object",
|
|
220
|
+
"properties": {
|
|
221
|
+
"tag": {
|
|
222
|
+
"$ref": "#/definitions/SpecialAbilityTag"
|
|
223
|
+
},
|
|
224
|
+
"value": {
|
|
225
|
+
"description": "The referenced entry's numeric identifier.",
|
|
226
|
+
"type": "integer",
|
|
227
|
+
"minimum": 1
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"required": [
|
|
231
|
+
"tag",
|
|
232
|
+
"value"
|
|
233
|
+
],
|
|
234
|
+
"additionalProperties": false
|
|
235
|
+
},
|
|
143
236
|
"CombatRelatedSpecialAbilityIdentifier": {
|
|
144
237
|
"type": "object",
|
|
145
238
|
"properties": {
|
|
@@ -302,6 +395,60 @@
|
|
|
302
395
|
],
|
|
303
396
|
"additionalProperties": false
|
|
304
397
|
},
|
|
398
|
+
"LiturgyIdentifier": {
|
|
399
|
+
"type": "object",
|
|
400
|
+
"properties": {
|
|
401
|
+
"tag": {
|
|
402
|
+
"$ref": "#/definitions/LiturgyTag"
|
|
403
|
+
},
|
|
404
|
+
"value": {
|
|
405
|
+
"description": "The referenced entry's numeric identifier.",
|
|
406
|
+
"type": "integer",
|
|
407
|
+
"minimum": 1
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"required": [
|
|
411
|
+
"tag",
|
|
412
|
+
"value"
|
|
413
|
+
],
|
|
414
|
+
"additionalProperties": false
|
|
415
|
+
},
|
|
416
|
+
"SpellworkIdentifier": {
|
|
417
|
+
"type": "object",
|
|
418
|
+
"properties": {
|
|
419
|
+
"tag": {
|
|
420
|
+
"$ref": "#/definitions/SpellworkTag"
|
|
421
|
+
},
|
|
422
|
+
"value": {
|
|
423
|
+
"description": "The referenced entry's numeric identifier.",
|
|
424
|
+
"type": "integer",
|
|
425
|
+
"minimum": 1
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"required": [
|
|
429
|
+
"tag",
|
|
430
|
+
"value"
|
|
431
|
+
],
|
|
432
|
+
"additionalProperties": false
|
|
433
|
+
},
|
|
434
|
+
"MagicalActionIdentifier": {
|
|
435
|
+
"type": "object",
|
|
436
|
+
"properties": {
|
|
437
|
+
"tag": {
|
|
438
|
+
"$ref": "#/definitions/MagicalActionTag"
|
|
439
|
+
},
|
|
440
|
+
"value": {
|
|
441
|
+
"description": "The referenced entry's numeric identifier.",
|
|
442
|
+
"type": "integer",
|
|
443
|
+
"minimum": 1
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"required": [
|
|
447
|
+
"tag",
|
|
448
|
+
"value"
|
|
449
|
+
],
|
|
450
|
+
"additionalProperties": false
|
|
451
|
+
},
|
|
305
452
|
"RequirableSelectOptionIdentifier": {
|
|
306
453
|
"type": "object",
|
|
307
454
|
"properties": {
|