optolith-database-schema 0.3.0 → 0.4.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 +14 -0
- package/lib/config.d.ts +4 -4
- package/lib/config.js +4 -4
- package/lib/types/Blessing.d.ts +3 -0
- package/lib/types/Cantrip.d.ts +3 -0
- package/lib/types/Culture.d.ts +18 -22
- package/lib/types/Culture.js +38 -0
- package/lib/types/Lessons_Curriculum.d.ts +4 -0
- package/lib/types/Patron.d.ts +12 -18
- package/lib/types/Patron.js +20 -0
- package/lib/types/Profession.d.ts +8 -11
- package/lib/types/Profession.js +6 -0
- package/lib/types/Race.d.ts +5 -7
- package/lib/types/Race.js +11 -0
- package/lib/types/Service.d.ts +4 -5
- package/lib/types/Service.js +5 -0
- package/lib/types/Skill.d.ts +10 -14
- package/lib/types/Skill.js +19 -0
- package/lib/types/Talisman.d.ts +7 -11
- package/lib/types/Talisman.js +8 -0
- package/lib/types/_Activatable.d.ts +41 -25
- package/lib/types/_Activatable.js +44 -1
- package/lib/types/_ActivatableSelectOptionCategory.d.ts +21 -18
- package/lib/types/_ActivatableSelectOptionCategory.js +8 -1
- package/lib/types/_ActivatableSkillCheckResultBased.d.ts +8 -10
- package/lib/types/_ActivatableSkillCheckResultBased.js +16 -1
- package/lib/types/_ActivatableSkillRange.d.ts +8 -4
- package/lib/types/_ActivatableSkillTargetCategory.d.ts +4 -0
- package/lib/types/_DiseasePoison.d.ts +5 -7
- package/lib/types/_DiseasePoison.js +11 -1
- package/lib/types/_Sex.d.ts +4 -5
- package/lib/types/_Sex.js +8 -1
- package/lib/types/_SkillCheck.d.ts +6 -9
- package/lib/types/_SkillCheck.js +11 -1
- package/lib/types/_Spellwork.d.ts +1 -0
- package/lib/types/equipment/item/Armor.d.ts +4 -4
- package/lib/types/equipment/item/BandageOrRemedy.d.ts +33 -3
- package/lib/types/equipment/item/CeremonialItem.d.ts +38 -3
- package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +1 -14
- package/lib/types/equipment/item/IlluminationLightSource.d.ts +62 -0
- package/lib/types/equipment/item/IlluminationLightSource.js +9 -0
- package/lib/types/equipment/item/{HealingHerb.d.ts → IlluminationRefillsOrSupplies.d.ts} +2 -2
- package/lib/types/equipment/item/{HealingHerb.js → IlluminationRefillsOrSupplies.js} +1 -1
- package/lib/types/equipment/item/LuxuryGood.d.ts +33 -3
- package/lib/types/equipment/item/MusicalInstrument.d.ts +3 -8
- package/lib/types/equipment/item/Poison.d.ts +11 -9
- package/lib/types/equipment/item/Poison.js +7 -0
- package/lib/types/equipment/item/ToolOfTheTrade.d.ts +1 -1
- package/lib/types/equipment/item/Weapon.d.ts +1 -1
- package/lib/types/equipment/item/_Item.d.ts +9 -3
- package/lib/types/equipment/item/_MeleeWeapon.d.ts +2 -0
- package/lib/types/equipment/item/_RangedWeapon.d.ts +2 -0
- package/lib/types/magicalActions/AnimistPower.d.ts +2 -0
- package/lib/types/magicalActions/Curse.d.ts +1 -0
- package/lib/types/magicalActions/GeodeRitual.d.ts +2 -0
- package/lib/types/magicalActions/JesterTrick.d.ts +3 -0
- package/lib/types/magicalActions/_MusicTradition.d.ts +8 -10
- package/lib/types/magicalActions/_MusicTradition.js +10 -1
- package/lib/types/prerequisites/DisplayOption.d.ts +1 -0
- package/lib/types/prerequisites/PrerequisiteGroups.d.ts +1 -0
- package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.d.ts +4 -5
- package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.js +5 -1
- package/lib/types/prerequisites/single/TextPrerequisite.d.ts +4 -5
- package/lib/types/prerequisites/single/TextPrerequisite.js +5 -1
- package/lib/types/prerequisites/single/TraditionPrerequisite.d.ts +8 -10
- package/lib/types/prerequisites/single/TraditionPrerequisite.js +18 -1
- package/lib/types/rule/CoreRule.d.ts +63 -5
- package/lib/types/rule/CoreRule.js +5 -0
- package/lib/types/rule/_Rule.d.ts +1 -0
- package/lib/types/source/Publication.d.ts +6 -9
- package/lib/types/source/Publication.js +10 -0
- package/lib/types/source/_PublicationRef.d.ts +2 -0
- package/lib/types/specialAbility/BlessedTradition.d.ts +3 -0
- package/lib/types/specialAbility/PactGift.d.ts +8 -10
- package/lib/types/specialAbility/PactGift.js +10 -0
- package/package.json +2 -2
- package/schema/Blessing.schema.json +24 -3
- package/schema/Cantrip.schema.json +24 -3
- package/schema/Culture.schema.json +21 -113
- package/schema/Lessons_Curriculum.schema.json +32 -4
- package/schema/Patron.schema.json +10 -98
- package/schema/Profession.schema.json +70 -47
- package/schema/Race.schema.json +4 -37
- package/schema/Service.schema.json +3 -25
- package/schema/Skill.schema.json +8 -74
- package/schema/Talisman.schema.json +6 -61
- package/schema/_Activatable.schema.json +183 -146
- package/schema/_ActivatableSelectOptionCategory.schema.json +97 -49
- package/schema/_ActivatableSkillCheckResultBased.schema.json +6 -50
- package/schema/_ActivatableSkillRange.schema.json +24 -4
- package/schema/_ActivatableSkillTargetCategory.schema.json +32 -4
- package/schema/_DiseasePoison.schema.json +4 -37
- package/schema/_Sex.schema.json +3 -25
- package/schema/_SkillCheck.schema.json +5 -49
- package/schema/_Spellwork.schema.json +8 -1
- package/schema/equipment/item/Armor.schema.json +26 -5
- package/schema/equipment/item/BandageOrRemedy.schema.json +44 -1
- package/schema/equipment/item/CeremonialItem.schema.json +50 -1
- package/schema/equipment/item/EquipmentOfBlessedOnes.schema.json +0 -13
- package/schema/equipment/item/IlluminationLightSource.schema.json +122 -0
- package/schema/equipment/item/IlluminationRefillsOrSupplies.schema.json +10 -0
- package/schema/equipment/item/LuxuryGood.schema.json +44 -1
- package/schema/equipment/item/MusicalInstrument.schema.json +4 -9
- package/schema/equipment/item/Poison.schema.json +45 -54
- package/schema/equipment/item/ToolOfTheTrade.schema.json +0 -1
- package/schema/equipment/item/Weapon.schema.json +1 -1
- package/schema/equipment/item/_Item.schema.json +52 -10
- package/schema/equipment/item/_MeleeWeapon.schema.json +16 -2
- package/schema/equipment/item/_RangedWeapon.schema.json +16 -2
- package/schema/magicalActions/AnimistPower.schema.json +16 -2
- package/schema/magicalActions/Curse.schema.json +8 -1
- package/schema/magicalActions/GeodeRitual.schema.json +16 -2
- package/schema/magicalActions/JesterTrick.schema.json +24 -3
- package/schema/magicalActions/_MusicTradition.schema.json +6 -50
- package/schema/prerequisites/DisplayOption.schema.json +8 -1
- package/schema/prerequisites/PrerequisiteGroups.schema.json +8 -1
- package/schema/prerequisites/single/PrimaryAttributePrerequisite.schema.json +3 -25
- package/schema/prerequisites/single/TextPrerequisite.schema.json +3 -25
- package/schema/prerequisites/single/TraditionPrerequisite.schema.json +6 -50
- package/schema/rule/CoreRule.schema.json +475 -84
- package/schema/rule/_Rule.schema.json +8 -1
- package/schema/source/Publication.schema.json +5 -49
- package/schema/source/_PublicationRef.schema.json +16 -2
- package/schema/specialAbility/BlessedTradition.schema.json +24 -3
- package/schema/specialAbility/PactGift.schema.json +6 -50
- package/lib/types/equipment/item/Illumination.d.ts +0 -6
- package/lib/types/equipment/item/Illumination.js +0 -5
- package/schema/equipment/item/HealingHerb.schema.json +0 -10
- package/schema/equipment/item/Illumination.schema.json +0 -10
|
@@ -212,10 +212,17 @@
|
|
|
212
212
|
"properties": {
|
|
213
213
|
"tag": {
|
|
214
214
|
"const": "Attributes"
|
|
215
|
+
},
|
|
216
|
+
"attributes": {
|
|
217
|
+
"type": "object",
|
|
218
|
+
"properties": {},
|
|
219
|
+
"required": [],
|
|
220
|
+
"additionalProperties": false
|
|
215
221
|
}
|
|
216
222
|
},
|
|
217
223
|
"required": [
|
|
218
|
-
"tag"
|
|
224
|
+
"tag",
|
|
225
|
+
"attributes"
|
|
219
226
|
],
|
|
220
227
|
"additionalProperties": false
|
|
221
228
|
},
|
|
@@ -224,10 +231,17 @@
|
|
|
224
231
|
"properties": {
|
|
225
232
|
"tag": {
|
|
226
233
|
"const": "QualityLevels"
|
|
234
|
+
},
|
|
235
|
+
"quality_levels": {
|
|
236
|
+
"type": "object",
|
|
237
|
+
"properties": {},
|
|
238
|
+
"required": [],
|
|
239
|
+
"additionalProperties": false
|
|
227
240
|
}
|
|
228
241
|
},
|
|
229
242
|
"required": [
|
|
230
|
-
"tag"
|
|
243
|
+
"tag",
|
|
244
|
+
"quality_levels"
|
|
231
245
|
],
|
|
232
246
|
"additionalProperties": false
|
|
233
247
|
},
|
|
@@ -236,10 +250,17 @@
|
|
|
236
250
|
"properties": {
|
|
237
251
|
"tag": {
|
|
238
252
|
"const": "Conditions"
|
|
253
|
+
},
|
|
254
|
+
"conditions": {
|
|
255
|
+
"type": "object",
|
|
256
|
+
"properties": {},
|
|
257
|
+
"required": [],
|
|
258
|
+
"additionalProperties": false
|
|
239
259
|
}
|
|
240
260
|
},
|
|
241
261
|
"required": [
|
|
242
|
-
"tag"
|
|
262
|
+
"tag",
|
|
263
|
+
"conditions"
|
|
243
264
|
],
|
|
244
265
|
"additionalProperties": false
|
|
245
266
|
},
|
|
@@ -248,10 +269,17 @@
|
|
|
248
269
|
"properties": {
|
|
249
270
|
"tag": {
|
|
250
271
|
"const": "States"
|
|
272
|
+
},
|
|
273
|
+
"states": {
|
|
274
|
+
"type": "object",
|
|
275
|
+
"properties": {},
|
|
276
|
+
"required": [],
|
|
277
|
+
"additionalProperties": false
|
|
251
278
|
}
|
|
252
279
|
},
|
|
253
280
|
"required": [
|
|
254
|
-
"tag"
|
|
281
|
+
"tag",
|
|
282
|
+
"states"
|
|
255
283
|
],
|
|
256
284
|
"additionalProperties": false
|
|
257
285
|
},
|
|
@@ -260,10 +288,17 @@
|
|
|
260
288
|
"properties": {
|
|
261
289
|
"tag": {
|
|
262
290
|
"const": "ExperienceLevels"
|
|
291
|
+
},
|
|
292
|
+
"experience_levels": {
|
|
293
|
+
"type": "object",
|
|
294
|
+
"properties": {},
|
|
295
|
+
"required": [],
|
|
296
|
+
"additionalProperties": false
|
|
263
297
|
}
|
|
264
298
|
},
|
|
265
299
|
"required": [
|
|
266
|
-
"tag"
|
|
300
|
+
"tag",
|
|
301
|
+
"experience_levels"
|
|
267
302
|
],
|
|
268
303
|
"additionalProperties": false
|
|
269
304
|
},
|
|
@@ -272,10 +307,17 @@
|
|
|
272
307
|
"properties": {
|
|
273
308
|
"tag": {
|
|
274
309
|
"const": "Races"
|
|
310
|
+
},
|
|
311
|
+
"races": {
|
|
312
|
+
"type": "object",
|
|
313
|
+
"properties": {},
|
|
314
|
+
"required": [],
|
|
315
|
+
"additionalProperties": false
|
|
275
316
|
}
|
|
276
317
|
},
|
|
277
318
|
"required": [
|
|
278
|
-
"tag"
|
|
319
|
+
"tag",
|
|
320
|
+
"races"
|
|
279
321
|
],
|
|
280
322
|
"additionalProperties": false
|
|
281
323
|
},
|
|
@@ -284,10 +326,17 @@
|
|
|
284
326
|
"properties": {
|
|
285
327
|
"tag": {
|
|
286
328
|
"const": "Cultures"
|
|
329
|
+
},
|
|
330
|
+
"cultures": {
|
|
331
|
+
"type": "object",
|
|
332
|
+
"properties": {},
|
|
333
|
+
"required": [],
|
|
334
|
+
"additionalProperties": false
|
|
287
335
|
}
|
|
288
336
|
},
|
|
289
337
|
"required": [
|
|
290
|
-
"tag"
|
|
338
|
+
"tag",
|
|
339
|
+
"cultures"
|
|
291
340
|
],
|
|
292
341
|
"additionalProperties": false
|
|
293
342
|
},
|
|
@@ -296,10 +345,17 @@
|
|
|
296
345
|
"properties": {
|
|
297
346
|
"tag": {
|
|
298
347
|
"const": "Professions"
|
|
348
|
+
},
|
|
349
|
+
"professions": {
|
|
350
|
+
"type": "object",
|
|
351
|
+
"properties": {},
|
|
352
|
+
"required": [],
|
|
353
|
+
"additionalProperties": false
|
|
299
354
|
}
|
|
300
355
|
},
|
|
301
356
|
"required": [
|
|
302
|
-
"tag"
|
|
357
|
+
"tag",
|
|
358
|
+
"professions"
|
|
303
359
|
],
|
|
304
360
|
"additionalProperties": false
|
|
305
361
|
},
|
|
@@ -308,10 +364,17 @@
|
|
|
308
364
|
"properties": {
|
|
309
365
|
"tag": {
|
|
310
366
|
"const": "Advantages"
|
|
367
|
+
},
|
|
368
|
+
"advantages": {
|
|
369
|
+
"type": "object",
|
|
370
|
+
"properties": {},
|
|
371
|
+
"required": [],
|
|
372
|
+
"additionalProperties": false
|
|
311
373
|
}
|
|
312
374
|
},
|
|
313
375
|
"required": [
|
|
314
|
-
"tag"
|
|
376
|
+
"tag",
|
|
377
|
+
"advantages"
|
|
315
378
|
],
|
|
316
379
|
"additionalProperties": false
|
|
317
380
|
},
|
|
@@ -320,10 +383,17 @@
|
|
|
320
383
|
"properties": {
|
|
321
384
|
"tag": {
|
|
322
385
|
"const": "Disadvantages"
|
|
386
|
+
},
|
|
387
|
+
"disadvantages": {
|
|
388
|
+
"type": "object",
|
|
389
|
+
"properties": {},
|
|
390
|
+
"required": [],
|
|
391
|
+
"additionalProperties": false
|
|
323
392
|
}
|
|
324
393
|
},
|
|
325
394
|
"required": [
|
|
326
|
-
"tag"
|
|
395
|
+
"tag",
|
|
396
|
+
"disadvantages"
|
|
327
397
|
],
|
|
328
398
|
"additionalProperties": false
|
|
329
399
|
},
|
|
@@ -332,10 +402,17 @@
|
|
|
332
402
|
"properties": {
|
|
333
403
|
"tag": {
|
|
334
404
|
"const": "CombatTechniques"
|
|
405
|
+
},
|
|
406
|
+
"combat_techniques": {
|
|
407
|
+
"type": "object",
|
|
408
|
+
"properties": {},
|
|
409
|
+
"required": [],
|
|
410
|
+
"additionalProperties": false
|
|
335
411
|
}
|
|
336
412
|
},
|
|
337
413
|
"required": [
|
|
338
|
-
"tag"
|
|
414
|
+
"tag",
|
|
415
|
+
"combat_techniques"
|
|
339
416
|
],
|
|
340
417
|
"additionalProperties": false
|
|
341
418
|
},
|
|
@@ -344,10 +421,17 @@
|
|
|
344
421
|
"properties": {
|
|
345
422
|
"tag": {
|
|
346
423
|
"const": "SpecialAbilities"
|
|
424
|
+
},
|
|
425
|
+
"special_abilities": {
|
|
426
|
+
"type": "object",
|
|
427
|
+
"properties": {},
|
|
428
|
+
"required": [],
|
|
429
|
+
"additionalProperties": false
|
|
347
430
|
}
|
|
348
431
|
},
|
|
349
432
|
"required": [
|
|
350
|
-
"tag"
|
|
433
|
+
"tag",
|
|
434
|
+
"special_abilities"
|
|
351
435
|
],
|
|
352
436
|
"additionalProperties": false
|
|
353
437
|
},
|
|
@@ -356,10 +440,17 @@
|
|
|
356
440
|
"properties": {
|
|
357
441
|
"tag": {
|
|
358
442
|
"const": "PrimaryAttributes"
|
|
443
|
+
},
|
|
444
|
+
"primary_attributes": {
|
|
445
|
+
"type": "object",
|
|
446
|
+
"properties": {},
|
|
447
|
+
"required": [],
|
|
448
|
+
"additionalProperties": false
|
|
359
449
|
}
|
|
360
450
|
},
|
|
361
451
|
"required": [
|
|
362
|
-
"tag"
|
|
452
|
+
"tag",
|
|
453
|
+
"primary_attributes"
|
|
363
454
|
],
|
|
364
455
|
"additionalProperties": false
|
|
365
456
|
},
|
|
@@ -368,10 +459,17 @@
|
|
|
368
459
|
"properties": {
|
|
369
460
|
"tag": {
|
|
370
461
|
"const": "DerivedCharacteristics"
|
|
462
|
+
},
|
|
463
|
+
"derived_characteristics": {
|
|
464
|
+
"type": "object",
|
|
465
|
+
"properties": {},
|
|
466
|
+
"required": [],
|
|
467
|
+
"additionalProperties": false
|
|
371
468
|
}
|
|
372
469
|
},
|
|
373
470
|
"required": [
|
|
374
|
-
"tag"
|
|
471
|
+
"tag",
|
|
472
|
+
"derived_characteristics"
|
|
375
473
|
],
|
|
376
474
|
"additionalProperties": false
|
|
377
475
|
},
|
|
@@ -380,10 +478,17 @@
|
|
|
380
478
|
"properties": {
|
|
381
479
|
"tag": {
|
|
382
480
|
"const": "StartingAge"
|
|
481
|
+
},
|
|
482
|
+
"starting_age": {
|
|
483
|
+
"type": "object",
|
|
484
|
+
"properties": {},
|
|
485
|
+
"required": [],
|
|
486
|
+
"additionalProperties": false
|
|
383
487
|
}
|
|
384
488
|
},
|
|
385
489
|
"required": [
|
|
386
|
-
"tag"
|
|
490
|
+
"tag",
|
|
491
|
+
"starting_age"
|
|
387
492
|
],
|
|
388
493
|
"additionalProperties": false
|
|
389
494
|
},
|
|
@@ -392,10 +497,17 @@
|
|
|
392
497
|
"properties": {
|
|
393
498
|
"tag": {
|
|
394
499
|
"const": "Archetypes"
|
|
500
|
+
},
|
|
501
|
+
"archetypes": {
|
|
502
|
+
"type": "object",
|
|
503
|
+
"properties": {},
|
|
504
|
+
"required": [],
|
|
505
|
+
"additionalProperties": false
|
|
395
506
|
}
|
|
396
507
|
},
|
|
397
508
|
"required": [
|
|
398
|
-
"tag"
|
|
509
|
+
"tag",
|
|
510
|
+
"archetypes"
|
|
399
511
|
],
|
|
400
512
|
"additionalProperties": false
|
|
401
513
|
},
|
|
@@ -404,10 +516,17 @@
|
|
|
404
516
|
"properties": {
|
|
405
517
|
"tag": {
|
|
406
518
|
"const": "RequirementsForRoutineChecks"
|
|
519
|
+
},
|
|
520
|
+
"requirements_for_routine_checks": {
|
|
521
|
+
"type": "object",
|
|
522
|
+
"properties": {},
|
|
523
|
+
"required": [],
|
|
524
|
+
"additionalProperties": false
|
|
407
525
|
}
|
|
408
526
|
},
|
|
409
527
|
"required": [
|
|
410
|
-
"tag"
|
|
528
|
+
"tag",
|
|
529
|
+
"requirements_for_routine_checks"
|
|
411
530
|
],
|
|
412
531
|
"additionalProperties": false
|
|
413
532
|
},
|
|
@@ -416,10 +535,17 @@
|
|
|
416
535
|
"properties": {
|
|
417
536
|
"tag": {
|
|
418
537
|
"const": "GeneralSpecialAbilities"
|
|
538
|
+
},
|
|
539
|
+
"general_special_abilities": {
|
|
540
|
+
"type": "object",
|
|
541
|
+
"properties": {},
|
|
542
|
+
"required": [],
|
|
543
|
+
"additionalProperties": false
|
|
419
544
|
}
|
|
420
545
|
},
|
|
421
546
|
"required": [
|
|
422
|
-
"tag"
|
|
547
|
+
"tag",
|
|
548
|
+
"general_special_abilities"
|
|
423
549
|
],
|
|
424
550
|
"additionalProperties": false
|
|
425
551
|
},
|
|
@@ -428,10 +554,17 @@
|
|
|
428
554
|
"properties": {
|
|
429
555
|
"tag": {
|
|
430
556
|
"const": "FatePointSpecialAbilities"
|
|
557
|
+
},
|
|
558
|
+
"fate_point_special_abilities": {
|
|
559
|
+
"type": "object",
|
|
560
|
+
"properties": {},
|
|
561
|
+
"required": [],
|
|
562
|
+
"additionalProperties": false
|
|
431
563
|
}
|
|
432
564
|
},
|
|
433
565
|
"required": [
|
|
434
|
-
"tag"
|
|
566
|
+
"tag",
|
|
567
|
+
"fate_point_special_abilities"
|
|
435
568
|
],
|
|
436
569
|
"additionalProperties": false
|
|
437
570
|
},
|
|
@@ -440,10 +573,17 @@
|
|
|
440
573
|
"properties": {
|
|
441
574
|
"tag": {
|
|
442
575
|
"const": "LanguagesAndScripts"
|
|
576
|
+
},
|
|
577
|
+
"languages_and_scripts": {
|
|
578
|
+
"type": "object",
|
|
579
|
+
"properties": {},
|
|
580
|
+
"required": [],
|
|
581
|
+
"additionalProperties": false
|
|
443
582
|
}
|
|
444
583
|
},
|
|
445
584
|
"required": [
|
|
446
|
-
"tag"
|
|
585
|
+
"tag",
|
|
586
|
+
"languages_and_scripts"
|
|
447
587
|
],
|
|
448
588
|
"additionalProperties": false
|
|
449
589
|
},
|
|
@@ -452,10 +592,17 @@
|
|
|
452
592
|
"properties": {
|
|
453
593
|
"tag": {
|
|
454
594
|
"const": "CloseCombatBotch"
|
|
595
|
+
},
|
|
596
|
+
"close_combat_botch": {
|
|
597
|
+
"type": "object",
|
|
598
|
+
"properties": {},
|
|
599
|
+
"required": [],
|
|
600
|
+
"additionalProperties": false
|
|
455
601
|
}
|
|
456
602
|
},
|
|
457
603
|
"required": [
|
|
458
|
-
"tag"
|
|
604
|
+
"tag",
|
|
605
|
+
"close_combat_botch"
|
|
459
606
|
],
|
|
460
607
|
"additionalProperties": false
|
|
461
608
|
},
|
|
@@ -464,10 +611,17 @@
|
|
|
464
611
|
"properties": {
|
|
465
612
|
"tag": {
|
|
466
613
|
"const": "DefenseBotch"
|
|
614
|
+
},
|
|
615
|
+
"defense_botch": {
|
|
616
|
+
"type": "object",
|
|
617
|
+
"properties": {},
|
|
618
|
+
"required": [],
|
|
619
|
+
"additionalProperties": false
|
|
467
620
|
}
|
|
468
621
|
},
|
|
469
622
|
"required": [
|
|
470
|
-
"tag"
|
|
623
|
+
"tag",
|
|
624
|
+
"defense_botch"
|
|
471
625
|
],
|
|
472
626
|
"additionalProperties": false
|
|
473
627
|
},
|
|
@@ -476,10 +630,17 @@
|
|
|
476
630
|
"properties": {
|
|
477
631
|
"tag": {
|
|
478
632
|
"const": "MeleeCombatTechniques"
|
|
633
|
+
},
|
|
634
|
+
"melee_combat_techniques": {
|
|
635
|
+
"type": "object",
|
|
636
|
+
"properties": {},
|
|
637
|
+
"required": [],
|
|
638
|
+
"additionalProperties": false
|
|
479
639
|
}
|
|
480
640
|
},
|
|
481
641
|
"required": [
|
|
482
|
-
"tag"
|
|
642
|
+
"tag",
|
|
643
|
+
"melee_combat_techniques"
|
|
483
644
|
],
|
|
484
645
|
"additionalProperties": false
|
|
485
646
|
},
|
|
@@ -488,10 +649,17 @@
|
|
|
488
649
|
"properties": {
|
|
489
650
|
"tag": {
|
|
490
651
|
"const": "RangedCombatBotch"
|
|
652
|
+
},
|
|
653
|
+
"ranged_combat_botch": {
|
|
654
|
+
"type": "object",
|
|
655
|
+
"properties": {},
|
|
656
|
+
"required": [],
|
|
657
|
+
"additionalProperties": false
|
|
491
658
|
}
|
|
492
659
|
},
|
|
493
660
|
"required": [
|
|
494
|
-
"tag"
|
|
661
|
+
"tag",
|
|
662
|
+
"ranged_combat_botch"
|
|
495
663
|
],
|
|
496
664
|
"additionalProperties": false
|
|
497
665
|
},
|
|
@@ -500,10 +668,17 @@
|
|
|
500
668
|
"properties": {
|
|
501
669
|
"tag": {
|
|
502
670
|
"const": "RangedCombatDefenseBotch"
|
|
671
|
+
},
|
|
672
|
+
"ranged_combat_defense_botch": {
|
|
673
|
+
"type": "object",
|
|
674
|
+
"properties": {},
|
|
675
|
+
"required": [],
|
|
676
|
+
"additionalProperties": false
|
|
503
677
|
}
|
|
504
678
|
},
|
|
505
679
|
"required": [
|
|
506
|
-
"tag"
|
|
680
|
+
"tag",
|
|
681
|
+
"ranged_combat_defense_botch"
|
|
507
682
|
],
|
|
508
683
|
"additionalProperties": false
|
|
509
684
|
},
|
|
@@ -512,10 +687,17 @@
|
|
|
512
687
|
"properties": {
|
|
513
688
|
"tag": {
|
|
514
689
|
"const": "RangedCombatTechniques"
|
|
690
|
+
},
|
|
691
|
+
"ranged_combat_techniques": {
|
|
692
|
+
"type": "object",
|
|
693
|
+
"properties": {},
|
|
694
|
+
"required": [],
|
|
695
|
+
"additionalProperties": false
|
|
515
696
|
}
|
|
516
697
|
},
|
|
517
698
|
"required": [
|
|
518
|
-
"tag"
|
|
699
|
+
"tag",
|
|
700
|
+
"ranged_combat_techniques"
|
|
519
701
|
],
|
|
520
702
|
"additionalProperties": false
|
|
521
703
|
},
|
|
@@ -524,10 +706,17 @@
|
|
|
524
706
|
"properties": {
|
|
525
707
|
"tag": {
|
|
526
708
|
"const": "CombatSpecialAbilities"
|
|
709
|
+
},
|
|
710
|
+
"combat_special_abilities": {
|
|
711
|
+
"type": "object",
|
|
712
|
+
"properties": {},
|
|
713
|
+
"required": [],
|
|
714
|
+
"additionalProperties": false
|
|
527
715
|
}
|
|
528
716
|
},
|
|
529
717
|
"required": [
|
|
530
|
-
"tag"
|
|
718
|
+
"tag",
|
|
719
|
+
"combat_special_abilities"
|
|
531
720
|
],
|
|
532
721
|
"additionalProperties": false
|
|
533
722
|
},
|
|
@@ -536,10 +725,17 @@
|
|
|
536
725
|
"properties": {
|
|
537
726
|
"tag": {
|
|
538
727
|
"const": "Properties"
|
|
728
|
+
},
|
|
729
|
+
"properties": {
|
|
730
|
+
"type": "object",
|
|
731
|
+
"properties": {},
|
|
732
|
+
"required": [],
|
|
733
|
+
"additionalProperties": false
|
|
539
734
|
}
|
|
540
735
|
},
|
|
541
736
|
"required": [
|
|
542
|
-
"tag"
|
|
737
|
+
"tag",
|
|
738
|
+
"properties"
|
|
543
739
|
],
|
|
544
740
|
"additionalProperties": false
|
|
545
741
|
},
|
|
@@ -548,10 +744,17 @@
|
|
|
548
744
|
"properties": {
|
|
549
745
|
"tag": {
|
|
550
746
|
"const": "SpellBotch"
|
|
747
|
+
},
|
|
748
|
+
"spell_botch": {
|
|
749
|
+
"type": "object",
|
|
750
|
+
"properties": {},
|
|
751
|
+
"required": [],
|
|
752
|
+
"additionalProperties": false
|
|
551
753
|
}
|
|
552
754
|
},
|
|
553
755
|
"required": [
|
|
554
|
-
"tag"
|
|
756
|
+
"tag",
|
|
757
|
+
"spell_botch"
|
|
555
758
|
],
|
|
556
759
|
"additionalProperties": false
|
|
557
760
|
},
|
|
@@ -560,10 +763,17 @@
|
|
|
560
763
|
"properties": {
|
|
561
764
|
"tag": {
|
|
562
765
|
"const": "Services"
|
|
766
|
+
},
|
|
767
|
+
"services": {
|
|
768
|
+
"type": "object",
|
|
769
|
+
"properties": {},
|
|
770
|
+
"required": [],
|
|
771
|
+
"additionalProperties": false
|
|
563
772
|
}
|
|
564
773
|
},
|
|
565
774
|
"required": [
|
|
566
|
-
"tag"
|
|
775
|
+
"tag",
|
|
776
|
+
"services"
|
|
567
777
|
],
|
|
568
778
|
"additionalProperties": false
|
|
569
779
|
},
|
|
@@ -572,10 +782,17 @@
|
|
|
572
782
|
"properties": {
|
|
573
783
|
"tag": {
|
|
574
784
|
"const": "ProtectiveAndWardingCircles"
|
|
785
|
+
},
|
|
786
|
+
"protective_and_warding_circles": {
|
|
787
|
+
"type": "object",
|
|
788
|
+
"properties": {},
|
|
789
|
+
"required": [],
|
|
790
|
+
"additionalProperties": false
|
|
575
791
|
}
|
|
576
792
|
},
|
|
577
793
|
"required": [
|
|
578
|
-
"tag"
|
|
794
|
+
"tag",
|
|
795
|
+
"protective_and_warding_circles"
|
|
579
796
|
],
|
|
580
797
|
"additionalProperties": false
|
|
581
798
|
},
|
|
@@ -584,10 +801,17 @@
|
|
|
584
801
|
"properties": {
|
|
585
802
|
"tag": {
|
|
586
803
|
"const": "Elixirs"
|
|
804
|
+
},
|
|
805
|
+
"elixirs": {
|
|
806
|
+
"type": "object",
|
|
807
|
+
"properties": {},
|
|
808
|
+
"required": [],
|
|
809
|
+
"additionalProperties": false
|
|
587
810
|
}
|
|
588
811
|
},
|
|
589
812
|
"required": [
|
|
590
|
-
"tag"
|
|
813
|
+
"tag",
|
|
814
|
+
"elixirs"
|
|
591
815
|
],
|
|
592
816
|
"additionalProperties": false
|
|
593
817
|
},
|
|
@@ -596,10 +820,17 @@
|
|
|
596
820
|
"properties": {
|
|
597
821
|
"tag": {
|
|
598
822
|
"const": "StaffEnchantments"
|
|
823
|
+
},
|
|
824
|
+
"staff_enchantments": {
|
|
825
|
+
"type": "object",
|
|
826
|
+
"properties": {},
|
|
827
|
+
"required": [],
|
|
828
|
+
"additionalProperties": false
|
|
599
829
|
}
|
|
600
830
|
},
|
|
601
831
|
"required": [
|
|
602
|
-
"tag"
|
|
832
|
+
"tag",
|
|
833
|
+
"staff_enchantments"
|
|
603
834
|
],
|
|
604
835
|
"additionalProperties": false
|
|
605
836
|
},
|
|
@@ -608,10 +839,17 @@
|
|
|
608
839
|
"properties": {
|
|
609
840
|
"tag": {
|
|
610
841
|
"const": "FamiliarsTricks"
|
|
842
|
+
},
|
|
843
|
+
"familiars_tricks": {
|
|
844
|
+
"type": "object",
|
|
845
|
+
"properties": {},
|
|
846
|
+
"required": [],
|
|
847
|
+
"additionalProperties": false
|
|
611
848
|
}
|
|
612
849
|
},
|
|
613
850
|
"required": [
|
|
614
|
-
"tag"
|
|
851
|
+
"tag",
|
|
852
|
+
"familiars_tricks"
|
|
615
853
|
],
|
|
616
854
|
"additionalProperties": false
|
|
617
855
|
},
|
|
@@ -620,10 +858,17 @@
|
|
|
620
858
|
"properties": {
|
|
621
859
|
"tag": {
|
|
622
860
|
"const": "Curses"
|
|
861
|
+
},
|
|
862
|
+
"curses": {
|
|
863
|
+
"type": "object",
|
|
864
|
+
"properties": {},
|
|
865
|
+
"required": [],
|
|
866
|
+
"additionalProperties": false
|
|
623
867
|
}
|
|
624
868
|
},
|
|
625
869
|
"required": [
|
|
626
|
-
"tag"
|
|
870
|
+
"tag",
|
|
871
|
+
"curses"
|
|
627
872
|
],
|
|
628
873
|
"additionalProperties": false
|
|
629
874
|
},
|
|
@@ -632,10 +877,17 @@
|
|
|
632
877
|
"properties": {
|
|
633
878
|
"tag": {
|
|
634
879
|
"const": "ElvenMagicalSongs"
|
|
880
|
+
},
|
|
881
|
+
"elven_magical_songs": {
|
|
882
|
+
"type": "object",
|
|
883
|
+
"properties": {},
|
|
884
|
+
"required": [],
|
|
885
|
+
"additionalProperties": false
|
|
635
886
|
}
|
|
636
887
|
},
|
|
637
888
|
"required": [
|
|
638
|
-
"tag"
|
|
889
|
+
"tag",
|
|
890
|
+
"elven_magical_songs"
|
|
639
891
|
],
|
|
640
892
|
"additionalProperties": false
|
|
641
893
|
},
|
|
@@ -644,10 +896,17 @@
|
|
|
644
896
|
"properties": {
|
|
645
897
|
"tag": {
|
|
646
898
|
"const": "MagicalSpecialAbilities"
|
|
899
|
+
},
|
|
900
|
+
"magical_special_abilities": {
|
|
901
|
+
"type": "object",
|
|
902
|
+
"properties": {},
|
|
903
|
+
"required": [],
|
|
904
|
+
"additionalProperties": false
|
|
647
905
|
}
|
|
648
906
|
},
|
|
649
907
|
"required": [
|
|
650
|
-
"tag"
|
|
908
|
+
"tag",
|
|
909
|
+
"magical_special_abilities"
|
|
651
910
|
],
|
|
652
911
|
"additionalProperties": false
|
|
653
912
|
},
|
|
@@ -656,10 +915,17 @@
|
|
|
656
915
|
"properties": {
|
|
657
916
|
"tag": {
|
|
658
917
|
"const": "Cantrips"
|
|
918
|
+
},
|
|
919
|
+
"cantrips": {
|
|
920
|
+
"type": "object",
|
|
921
|
+
"properties": {},
|
|
922
|
+
"required": [],
|
|
923
|
+
"additionalProperties": false
|
|
659
924
|
}
|
|
660
925
|
},
|
|
661
926
|
"required": [
|
|
662
|
-
"tag"
|
|
927
|
+
"tag",
|
|
928
|
+
"cantrips"
|
|
663
929
|
],
|
|
664
930
|
"additionalProperties": false
|
|
665
931
|
},
|
|
@@ -668,10 +934,17 @@
|
|
|
668
934
|
"properties": {
|
|
669
935
|
"tag": {
|
|
670
936
|
"const": "Spells"
|
|
937
|
+
},
|
|
938
|
+
"spells": {
|
|
939
|
+
"type": "object",
|
|
940
|
+
"properties": {},
|
|
941
|
+
"required": [],
|
|
942
|
+
"additionalProperties": false
|
|
671
943
|
}
|
|
672
944
|
},
|
|
673
945
|
"required": [
|
|
674
|
-
"tag"
|
|
946
|
+
"tag",
|
|
947
|
+
"spells"
|
|
675
948
|
],
|
|
676
949
|
"additionalProperties": false
|
|
677
950
|
},
|
|
@@ -680,10 +953,17 @@
|
|
|
680
953
|
"properties": {
|
|
681
954
|
"tag": {
|
|
682
955
|
"const": "Rituals"
|
|
956
|
+
},
|
|
957
|
+
"rituals": {
|
|
958
|
+
"type": "object",
|
|
959
|
+
"properties": {},
|
|
960
|
+
"required": [],
|
|
961
|
+
"additionalProperties": false
|
|
683
962
|
}
|
|
684
963
|
},
|
|
685
964
|
"required": [
|
|
686
|
-
"tag"
|
|
965
|
+
"tag",
|
|
966
|
+
"rituals"
|
|
687
967
|
],
|
|
688
968
|
"additionalProperties": false
|
|
689
969
|
},
|
|
@@ -692,10 +972,17 @@
|
|
|
692
972
|
"properties": {
|
|
693
973
|
"tag": {
|
|
694
974
|
"const": "Aspects"
|
|
975
|
+
},
|
|
976
|
+
"aspects": {
|
|
977
|
+
"type": "object",
|
|
978
|
+
"properties": {},
|
|
979
|
+
"required": [],
|
|
980
|
+
"additionalProperties": false
|
|
695
981
|
}
|
|
696
982
|
},
|
|
697
983
|
"required": [
|
|
698
|
-
"tag"
|
|
984
|
+
"tag",
|
|
985
|
+
"aspects"
|
|
699
986
|
],
|
|
700
987
|
"additionalProperties": false
|
|
701
988
|
},
|
|
@@ -704,10 +991,17 @@
|
|
|
704
991
|
"properties": {
|
|
705
992
|
"tag": {
|
|
706
993
|
"const": "LiturgyBotch"
|
|
994
|
+
},
|
|
995
|
+
"liturgy_botch": {
|
|
996
|
+
"type": "object",
|
|
997
|
+
"properties": {},
|
|
998
|
+
"required": [],
|
|
999
|
+
"additionalProperties": false
|
|
707
1000
|
}
|
|
708
1001
|
},
|
|
709
1002
|
"required": [
|
|
710
|
-
"tag"
|
|
1003
|
+
"tag",
|
|
1004
|
+
"liturgy_botch"
|
|
711
1005
|
],
|
|
712
1006
|
"additionalProperties": false
|
|
713
1007
|
},
|
|
@@ -716,10 +1010,17 @@
|
|
|
716
1010
|
"properties": {
|
|
717
1011
|
"tag": {
|
|
718
1012
|
"const": "KarmaSpecialAbilities"
|
|
1013
|
+
},
|
|
1014
|
+
"karma_special_abilities": {
|
|
1015
|
+
"type": "object",
|
|
1016
|
+
"properties": {},
|
|
1017
|
+
"required": [],
|
|
1018
|
+
"additionalProperties": false
|
|
719
1019
|
}
|
|
720
1020
|
},
|
|
721
1021
|
"required": [
|
|
722
|
-
"tag"
|
|
1022
|
+
"tag",
|
|
1023
|
+
"karma_special_abilities"
|
|
723
1024
|
],
|
|
724
1025
|
"additionalProperties": false
|
|
725
1026
|
},
|
|
@@ -728,10 +1029,17 @@
|
|
|
728
1029
|
"properties": {
|
|
729
1030
|
"tag": {
|
|
730
1031
|
"const": "Blessings"
|
|
1032
|
+
},
|
|
1033
|
+
"blessings": {
|
|
1034
|
+
"type": "object",
|
|
1035
|
+
"properties": {},
|
|
1036
|
+
"required": [],
|
|
1037
|
+
"additionalProperties": false
|
|
731
1038
|
}
|
|
732
1039
|
},
|
|
733
1040
|
"required": [
|
|
734
|
-
"tag"
|
|
1041
|
+
"tag",
|
|
1042
|
+
"blessings"
|
|
735
1043
|
],
|
|
736
1044
|
"additionalProperties": false
|
|
737
1045
|
},
|
|
@@ -740,10 +1048,17 @@
|
|
|
740
1048
|
"properties": {
|
|
741
1049
|
"tag": {
|
|
742
1050
|
"const": "LiturgicalChants"
|
|
1051
|
+
},
|
|
1052
|
+
"liturgical_chants": {
|
|
1053
|
+
"type": "object",
|
|
1054
|
+
"properties": {},
|
|
1055
|
+
"required": [],
|
|
1056
|
+
"additionalProperties": false
|
|
743
1057
|
}
|
|
744
1058
|
},
|
|
745
1059
|
"required": [
|
|
746
|
-
"tag"
|
|
1060
|
+
"tag",
|
|
1061
|
+
"liturgical_chants"
|
|
747
1062
|
],
|
|
748
1063
|
"additionalProperties": false
|
|
749
1064
|
},
|
|
@@ -752,10 +1067,17 @@
|
|
|
752
1067
|
"properties": {
|
|
753
1068
|
"tag": {
|
|
754
1069
|
"const": "Ceremonies"
|
|
1070
|
+
},
|
|
1071
|
+
"ceremonies": {
|
|
1072
|
+
"type": "object",
|
|
1073
|
+
"properties": {},
|
|
1074
|
+
"required": [],
|
|
1075
|
+
"additionalProperties": false
|
|
755
1076
|
}
|
|
756
1077
|
},
|
|
757
1078
|
"required": [
|
|
758
|
-
"tag"
|
|
1079
|
+
"tag",
|
|
1080
|
+
"ceremonies"
|
|
759
1081
|
],
|
|
760
1082
|
"additionalProperties": false
|
|
761
1083
|
},
|
|
@@ -764,10 +1086,17 @@
|
|
|
764
1086
|
"properties": {
|
|
765
1087
|
"tag": {
|
|
766
1088
|
"const": "SocialStatuses"
|
|
1089
|
+
},
|
|
1090
|
+
"social_statuses": {
|
|
1091
|
+
"type": "object",
|
|
1092
|
+
"properties": {},
|
|
1093
|
+
"required": [],
|
|
1094
|
+
"additionalProperties": false
|
|
767
1095
|
}
|
|
768
1096
|
},
|
|
769
1097
|
"required": [
|
|
770
|
-
"tag"
|
|
1098
|
+
"tag",
|
|
1099
|
+
"social_statuses"
|
|
771
1100
|
],
|
|
772
1101
|
"additionalProperties": false
|
|
773
1102
|
},
|
|
@@ -776,10 +1105,17 @@
|
|
|
776
1105
|
"properties": {
|
|
777
1106
|
"tag": {
|
|
778
1107
|
"const": "Poisons"
|
|
1108
|
+
},
|
|
1109
|
+
"poisons": {
|
|
1110
|
+
"type": "object",
|
|
1111
|
+
"properties": {},
|
|
1112
|
+
"required": [],
|
|
1113
|
+
"additionalProperties": false
|
|
779
1114
|
}
|
|
780
1115
|
},
|
|
781
1116
|
"required": [
|
|
782
|
-
"tag"
|
|
1117
|
+
"tag",
|
|
1118
|
+
"poisons"
|
|
783
1119
|
],
|
|
784
1120
|
"additionalProperties": false
|
|
785
1121
|
},
|
|
@@ -788,10 +1124,17 @@
|
|
|
788
1124
|
"properties": {
|
|
789
1125
|
"tag": {
|
|
790
1126
|
"const": "Diseases"
|
|
1127
|
+
},
|
|
1128
|
+
"diseases": {
|
|
1129
|
+
"type": "object",
|
|
1130
|
+
"properties": {},
|
|
1131
|
+
"required": [],
|
|
1132
|
+
"additionalProperties": false
|
|
791
1133
|
}
|
|
792
1134
|
},
|
|
793
1135
|
"required": [
|
|
794
|
-
"tag"
|
|
1136
|
+
"tag",
|
|
1137
|
+
"diseases"
|
|
795
1138
|
],
|
|
796
1139
|
"additionalProperties": false
|
|
797
1140
|
},
|
|
@@ -800,10 +1143,17 @@
|
|
|
800
1143
|
"properties": {
|
|
801
1144
|
"tag": {
|
|
802
1145
|
"const": "HealingHerbs"
|
|
1146
|
+
},
|
|
1147
|
+
"healing_herbs": {
|
|
1148
|
+
"type": "object",
|
|
1149
|
+
"properties": {},
|
|
1150
|
+
"required": [],
|
|
1151
|
+
"additionalProperties": false
|
|
803
1152
|
}
|
|
804
1153
|
},
|
|
805
1154
|
"required": [
|
|
806
|
-
"tag"
|
|
1155
|
+
"tag",
|
|
1156
|
+
"healing_herbs"
|
|
807
1157
|
],
|
|
808
1158
|
"additionalProperties": false
|
|
809
1159
|
},
|
|
@@ -812,10 +1162,17 @@
|
|
|
812
1162
|
"properties": {
|
|
813
1163
|
"tag": {
|
|
814
1164
|
"const": "VisibilityModifier"
|
|
1165
|
+
},
|
|
1166
|
+
"visibility_modifier": {
|
|
1167
|
+
"type": "object",
|
|
1168
|
+
"properties": {},
|
|
1169
|
+
"required": [],
|
|
1170
|
+
"additionalProperties": false
|
|
815
1171
|
}
|
|
816
1172
|
},
|
|
817
1173
|
"required": [
|
|
818
|
-
"tag"
|
|
1174
|
+
"tag",
|
|
1175
|
+
"visibility_modifier"
|
|
819
1176
|
],
|
|
820
1177
|
"additionalProperties": false
|
|
821
1178
|
},
|
|
@@ -824,10 +1181,17 @@
|
|
|
824
1181
|
"properties": {
|
|
825
1182
|
"tag": {
|
|
826
1183
|
"const": "Demons"
|
|
1184
|
+
},
|
|
1185
|
+
"demons": {
|
|
1186
|
+
"type": "object",
|
|
1187
|
+
"properties": {},
|
|
1188
|
+
"required": [],
|
|
1189
|
+
"additionalProperties": false
|
|
827
1190
|
}
|
|
828
1191
|
},
|
|
829
1192
|
"required": [
|
|
830
|
-
"tag"
|
|
1193
|
+
"tag",
|
|
1194
|
+
"demons"
|
|
831
1195
|
],
|
|
832
1196
|
"additionalProperties": false
|
|
833
1197
|
},
|
|
@@ -836,10 +1200,17 @@
|
|
|
836
1200
|
"properties": {
|
|
837
1201
|
"tag": {
|
|
838
1202
|
"const": "Elementals"
|
|
1203
|
+
},
|
|
1204
|
+
"elementals": {
|
|
1205
|
+
"type": "object",
|
|
1206
|
+
"properties": {},
|
|
1207
|
+
"required": [],
|
|
1208
|
+
"additionalProperties": false
|
|
839
1209
|
}
|
|
840
1210
|
},
|
|
841
1211
|
"required": [
|
|
842
|
-
"tag"
|
|
1212
|
+
"tag",
|
|
1213
|
+
"elementals"
|
|
843
1214
|
],
|
|
844
1215
|
"additionalProperties": false
|
|
845
1216
|
},
|
|
@@ -848,10 +1219,17 @@
|
|
|
848
1219
|
"properties": {
|
|
849
1220
|
"tag": {
|
|
850
1221
|
"const": "Animals"
|
|
1222
|
+
},
|
|
1223
|
+
"animals": {
|
|
1224
|
+
"type": "object",
|
|
1225
|
+
"properties": {},
|
|
1226
|
+
"required": [],
|
|
1227
|
+
"additionalProperties": false
|
|
851
1228
|
}
|
|
852
1229
|
},
|
|
853
1230
|
"required": [
|
|
854
|
-
"tag"
|
|
1231
|
+
"tag",
|
|
1232
|
+
"animals"
|
|
855
1233
|
],
|
|
856
1234
|
"additionalProperties": false
|
|
857
1235
|
},
|
|
@@ -860,10 +1238,17 @@
|
|
|
860
1238
|
"properties": {
|
|
861
1239
|
"tag": {
|
|
862
1240
|
"const": "Familiars"
|
|
1241
|
+
},
|
|
1242
|
+
"familiars": {
|
|
1243
|
+
"type": "object",
|
|
1244
|
+
"properties": {},
|
|
1245
|
+
"required": [],
|
|
1246
|
+
"additionalProperties": false
|
|
863
1247
|
}
|
|
864
1248
|
},
|
|
865
1249
|
"required": [
|
|
866
|
-
"tag"
|
|
1250
|
+
"tag",
|
|
1251
|
+
"familiars"
|
|
867
1252
|
],
|
|
868
1253
|
"additionalProperties": false
|
|
869
1254
|
},
|
|
@@ -872,10 +1257,17 @@
|
|
|
872
1257
|
"properties": {
|
|
873
1258
|
"tag": {
|
|
874
1259
|
"const": "AnimalSpecialAbilities"
|
|
1260
|
+
},
|
|
1261
|
+
"animal_special_abilities": {
|
|
1262
|
+
"type": "object",
|
|
1263
|
+
"properties": {},
|
|
1264
|
+
"required": [],
|
|
1265
|
+
"additionalProperties": false
|
|
875
1266
|
}
|
|
876
1267
|
},
|
|
877
1268
|
"required": [
|
|
878
|
-
"tag"
|
|
1269
|
+
"tag",
|
|
1270
|
+
"animal_special_abilities"
|
|
879
1271
|
],
|
|
880
1272
|
"additionalProperties": false
|
|
881
1273
|
},
|
|
@@ -884,10 +1276,17 @@
|
|
|
884
1276
|
"properties": {
|
|
885
1277
|
"tag": {
|
|
886
1278
|
"const": "EquipmentPackages"
|
|
1279
|
+
},
|
|
1280
|
+
"equipment_packages": {
|
|
1281
|
+
"type": "object",
|
|
1282
|
+
"properties": {},
|
|
1283
|
+
"required": [],
|
|
1284
|
+
"additionalProperties": false
|
|
887
1285
|
}
|
|
888
1286
|
},
|
|
889
1287
|
"required": [
|
|
890
|
-
"tag"
|
|
1288
|
+
"tag",
|
|
1289
|
+
"equipment_packages"
|
|
891
1290
|
],
|
|
892
1291
|
"additionalProperties": false
|
|
893
1292
|
},
|
|
@@ -896,10 +1295,17 @@
|
|
|
896
1295
|
"properties": {
|
|
897
1296
|
"tag": {
|
|
898
1297
|
"const": "Items"
|
|
1298
|
+
},
|
|
1299
|
+
"items": {
|
|
1300
|
+
"type": "object",
|
|
1301
|
+
"properties": {},
|
|
1302
|
+
"required": [],
|
|
1303
|
+
"additionalProperties": false
|
|
899
1304
|
}
|
|
900
1305
|
},
|
|
901
1306
|
"required": [
|
|
902
|
-
"tag"
|
|
1307
|
+
"tag",
|
|
1308
|
+
"items"
|
|
903
1309
|
],
|
|
904
1310
|
"additionalProperties": false
|
|
905
1311
|
},
|
|
@@ -908,10 +1314,17 @@
|
|
|
908
1314
|
"properties": {
|
|
909
1315
|
"tag": {
|
|
910
1316
|
"const": "OptionalRules"
|
|
1317
|
+
},
|
|
1318
|
+
"optional_rules": {
|
|
1319
|
+
"type": "object",
|
|
1320
|
+
"properties": {},
|
|
1321
|
+
"required": [],
|
|
1322
|
+
"additionalProperties": false
|
|
911
1323
|
}
|
|
912
1324
|
},
|
|
913
1325
|
"required": [
|
|
914
|
-
"tag"
|
|
1326
|
+
"tag",
|
|
1327
|
+
"optional_rules"
|
|
915
1328
|
],
|
|
916
1329
|
"additionalProperties": false
|
|
917
1330
|
},
|
|
@@ -953,31 +1366,9 @@
|
|
|
953
1366
|
"additionalProperties": false
|
|
954
1367
|
},
|
|
955
1368
|
"ReferenceListNodeImprovementCostSourceTarget": {
|
|
956
|
-
"
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
"properties": {
|
|
960
|
-
"tag": {
|
|
961
|
-
"const": "Attributes"
|
|
962
|
-
}
|
|
963
|
-
},
|
|
964
|
-
"required": [
|
|
965
|
-
"tag"
|
|
966
|
-
],
|
|
967
|
-
"additionalProperties": false
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"type": "object",
|
|
971
|
-
"properties": {
|
|
972
|
-
"tag": {
|
|
973
|
-
"const": "Skills"
|
|
974
|
-
}
|
|
975
|
-
},
|
|
976
|
-
"required": [
|
|
977
|
-
"tag"
|
|
978
|
-
],
|
|
979
|
-
"additionalProperties": false
|
|
980
|
-
}
|
|
1369
|
+
"enum": [
|
|
1370
|
+
"Attributes",
|
|
1371
|
+
"Skills"
|
|
981
1372
|
]
|
|
982
1373
|
},
|
|
983
1374
|
"ReferenceListNodeTranslation": {
|