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
|
@@ -295,72 +295,17 @@
|
|
|
295
295
|
},
|
|
296
296
|
"CombatSpecialAbilityUsageType": {
|
|
297
297
|
"description": "The definition of how the combat special ability can be used in combat.",
|
|
298
|
-
"
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
"tag": {
|
|
303
|
-
"const": "Passive"
|
|
304
|
-
}
|
|
305
|
-
},
|
|
306
|
-
"required": [
|
|
307
|
-
"tag"
|
|
308
|
-
],
|
|
309
|
-
"additionalProperties": false
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
"type": "object",
|
|
313
|
-
"properties": {
|
|
314
|
-
"tag": {
|
|
315
|
-
"const": "BasicManeuver"
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
|
-
"required": [
|
|
319
|
-
"tag"
|
|
320
|
-
],
|
|
321
|
-
"additionalProperties": false
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"type": "object",
|
|
325
|
-
"properties": {
|
|
326
|
-
"tag": {
|
|
327
|
-
"const": "SpecialManeuver"
|
|
328
|
-
}
|
|
329
|
-
},
|
|
330
|
-
"required": [
|
|
331
|
-
"tag"
|
|
332
|
-
],
|
|
333
|
-
"additionalProperties": false
|
|
334
|
-
}
|
|
298
|
+
"enum": [
|
|
299
|
+
"Passive",
|
|
300
|
+
"BasicManeuver",
|
|
301
|
+
"SpecialManeuver"
|
|
335
302
|
]
|
|
336
303
|
},
|
|
337
304
|
"CombatSpecialAbilityType": {
|
|
338
305
|
"description": "The definition of if the combat special ability can be used when armed or\nwhen unarmed.",
|
|
339
|
-
"
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
"properties": {
|
|
343
|
-
"tag": {
|
|
344
|
-
"const": "Armed"
|
|
345
|
-
}
|
|
346
|
-
},
|
|
347
|
-
"required": [
|
|
348
|
-
"tag"
|
|
349
|
-
],
|
|
350
|
-
"additionalProperties": false
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"type": "object",
|
|
354
|
-
"properties": {
|
|
355
|
-
"tag": {
|
|
356
|
-
"const": "Unarmed"
|
|
357
|
-
}
|
|
358
|
-
},
|
|
359
|
-
"required": [
|
|
360
|
-
"tag"
|
|
361
|
-
],
|
|
362
|
-
"additionalProperties": false
|
|
363
|
-
}
|
|
306
|
+
"enum": [
|
|
307
|
+
"Armed",
|
|
308
|
+
"Unarmed"
|
|
364
309
|
]
|
|
365
310
|
},
|
|
366
311
|
"SkillApplications": {
|
|
@@ -680,10 +625,17 @@
|
|
|
680
625
|
"properties": {
|
|
681
626
|
"tag": {
|
|
682
627
|
"const": "DependsOnHitZone"
|
|
628
|
+
},
|
|
629
|
+
"depends_on_hit_zone": {
|
|
630
|
+
"type": "object",
|
|
631
|
+
"properties": {},
|
|
632
|
+
"required": [],
|
|
633
|
+
"additionalProperties": false
|
|
683
634
|
}
|
|
684
635
|
},
|
|
685
636
|
"required": [
|
|
686
|
-
"tag"
|
|
637
|
+
"tag",
|
|
638
|
+
"depends_on_hit_zone"
|
|
687
639
|
],
|
|
688
640
|
"additionalProperties": false
|
|
689
641
|
}
|
|
@@ -935,19 +887,8 @@
|
|
|
935
887
|
},
|
|
936
888
|
"PenaltyByAttackReplacement": {
|
|
937
889
|
"description": "Set if a predefined different word should be used instead of the word\n`attack` for display purposes.",
|
|
938
|
-
"
|
|
939
|
-
|
|
940
|
-
"type": "object",
|
|
941
|
-
"properties": {
|
|
942
|
-
"tag": {
|
|
943
|
-
"const": "Throw"
|
|
944
|
-
}
|
|
945
|
-
},
|
|
946
|
-
"required": [
|
|
947
|
-
"tag"
|
|
948
|
-
],
|
|
949
|
-
"additionalProperties": false
|
|
950
|
-
}
|
|
890
|
+
"enum": [
|
|
891
|
+
"Throw"
|
|
951
892
|
]
|
|
952
893
|
},
|
|
953
894
|
"EnchantmentCost": {
|
|
@@ -1089,10 +1030,17 @@
|
|
|
1089
1030
|
"properties": {
|
|
1090
1031
|
"tag": {
|
|
1091
1032
|
"const": "Variable"
|
|
1033
|
+
},
|
|
1034
|
+
"variable": {
|
|
1035
|
+
"type": "object",
|
|
1036
|
+
"properties": {},
|
|
1037
|
+
"required": [],
|
|
1038
|
+
"additionalProperties": false
|
|
1092
1039
|
}
|
|
1093
1040
|
},
|
|
1094
1041
|
"required": [
|
|
1095
|
-
"tag"
|
|
1042
|
+
"tag",
|
|
1043
|
+
"variable"
|
|
1096
1044
|
],
|
|
1097
1045
|
"additionalProperties": false
|
|
1098
1046
|
}
|
|
@@ -1137,31 +1085,9 @@
|
|
|
1137
1085
|
},
|
|
1138
1086
|
"FixedArcaneEnergyCostPerLevel": {
|
|
1139
1087
|
"description": "The AE cost are per level of the enchantment. It may either be displayed\nin a compressed way (e.g. `1 AE per level`) or in a verbose way (e.g. `1\nAE for level I; 2 AE for level II`).",
|
|
1140
|
-
"
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
"properties": {
|
|
1144
|
-
"tag": {
|
|
1145
|
-
"const": "Compressed"
|
|
1146
|
-
}
|
|
1147
|
-
},
|
|
1148
|
-
"required": [
|
|
1149
|
-
"tag"
|
|
1150
|
-
],
|
|
1151
|
-
"additionalProperties": false
|
|
1152
|
-
},
|
|
1153
|
-
{
|
|
1154
|
-
"type": "object",
|
|
1155
|
-
"properties": {
|
|
1156
|
-
"tag": {
|
|
1157
|
-
"const": "Verbose"
|
|
1158
|
-
}
|
|
1159
|
-
},
|
|
1160
|
-
"required": [
|
|
1161
|
-
"tag"
|
|
1162
|
-
],
|
|
1163
|
-
"additionalProperties": false
|
|
1164
|
-
}
|
|
1088
|
+
"enum": [
|
|
1089
|
+
"Compressed",
|
|
1090
|
+
"Verbose"
|
|
1165
1091
|
]
|
|
1166
1092
|
},
|
|
1167
1093
|
"FixedArcaneEnergyCostTranslation": {
|
|
@@ -1270,31 +1196,9 @@
|
|
|
1270
1196
|
},
|
|
1271
1197
|
"IndefiniteArcaneEnergyCostArithmetic": {
|
|
1272
1198
|
"description": "Defines how the the `value` is set off against the check result.",
|
|
1273
|
-
"
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
"properties": {
|
|
1277
|
-
"tag": {
|
|
1278
|
-
"const": "Add"
|
|
1279
|
-
}
|
|
1280
|
-
},
|
|
1281
|
-
"required": [
|
|
1282
|
-
"tag"
|
|
1283
|
-
],
|
|
1284
|
-
"additionalProperties": false
|
|
1285
|
-
},
|
|
1286
|
-
{
|
|
1287
|
-
"type": "object",
|
|
1288
|
-
"properties": {
|
|
1289
|
-
"tag": {
|
|
1290
|
-
"const": "Subtract"
|
|
1291
|
-
}
|
|
1292
|
-
},
|
|
1293
|
-
"required": [
|
|
1294
|
-
"tag"
|
|
1295
|
-
],
|
|
1296
|
-
"additionalProperties": false
|
|
1297
|
-
}
|
|
1199
|
+
"enum": [
|
|
1200
|
+
"Add",
|
|
1201
|
+
"Subtract"
|
|
1298
1202
|
]
|
|
1299
1203
|
},
|
|
1300
1204
|
"IndefiniteArcaneEnergyCostModifier": {
|
|
@@ -1861,10 +1765,17 @@
|
|
|
1861
1765
|
"properties": {
|
|
1862
1766
|
"tag": {
|
|
1863
1767
|
"const": "DependingOnSelection"
|
|
1768
|
+
},
|
|
1769
|
+
"depending_on_selection": {
|
|
1770
|
+
"type": "object",
|
|
1771
|
+
"properties": {},
|
|
1772
|
+
"required": [],
|
|
1773
|
+
"additionalProperties": false
|
|
1864
1774
|
}
|
|
1865
1775
|
},
|
|
1866
1776
|
"required": [
|
|
1867
|
-
"tag"
|
|
1777
|
+
"tag",
|
|
1778
|
+
"depending_on_selection"
|
|
1868
1779
|
],
|
|
1869
1780
|
"additionalProperties": false
|
|
1870
1781
|
},
|
|
@@ -2078,10 +1989,17 @@
|
|
|
2078
1989
|
"properties": {
|
|
2079
1990
|
"tag": {
|
|
2080
1991
|
"const": "None"
|
|
1992
|
+
},
|
|
1993
|
+
"none": {
|
|
1994
|
+
"type": "object",
|
|
1995
|
+
"properties": {},
|
|
1996
|
+
"required": [],
|
|
1997
|
+
"additionalProperties": false
|
|
2081
1998
|
}
|
|
2082
1999
|
},
|
|
2083
2000
|
"required": [
|
|
2084
|
-
"tag"
|
|
2001
|
+
"tag",
|
|
2002
|
+
"none"
|
|
2085
2003
|
],
|
|
2086
2004
|
"additionalProperties": false
|
|
2087
2005
|
},
|
|
@@ -2090,10 +2008,17 @@
|
|
|
2090
2008
|
"properties": {
|
|
2091
2009
|
"tag": {
|
|
2092
2010
|
"const": "DependingOnCombatStyle"
|
|
2011
|
+
},
|
|
2012
|
+
"depending_on_combat_style": {
|
|
2013
|
+
"type": "object",
|
|
2014
|
+
"properties": {},
|
|
2015
|
+
"required": [],
|
|
2016
|
+
"additionalProperties": false
|
|
2093
2017
|
}
|
|
2094
2018
|
},
|
|
2095
2019
|
"required": [
|
|
2096
|
-
"tag"
|
|
2020
|
+
"tag",
|
|
2021
|
+
"depending_on_combat_style"
|
|
2097
2022
|
],
|
|
2098
2023
|
"additionalProperties": false
|
|
2099
2024
|
},
|
|
@@ -2247,10 +2172,17 @@
|
|
|
2247
2172
|
"properties": {
|
|
2248
2173
|
"tag": {
|
|
2249
2174
|
"const": "Improvised"
|
|
2175
|
+
},
|
|
2176
|
+
"improvised": {
|
|
2177
|
+
"type": "object",
|
|
2178
|
+
"properties": {},
|
|
2179
|
+
"required": [],
|
|
2180
|
+
"additionalProperties": false
|
|
2250
2181
|
}
|
|
2251
2182
|
},
|
|
2252
2183
|
"required": [
|
|
2253
|
-
"tag"
|
|
2184
|
+
"tag",
|
|
2185
|
+
"improvised"
|
|
2254
2186
|
],
|
|
2255
2187
|
"additionalProperties": false
|
|
2256
2188
|
},
|
|
@@ -2259,10 +2191,17 @@
|
|
|
2259
2191
|
"properties": {
|
|
2260
2192
|
"tag": {
|
|
2261
2193
|
"const": "PointedBlade"
|
|
2194
|
+
},
|
|
2195
|
+
"pointed_blade": {
|
|
2196
|
+
"type": "object",
|
|
2197
|
+
"properties": {},
|
|
2198
|
+
"required": [],
|
|
2199
|
+
"additionalProperties": false
|
|
2262
2200
|
}
|
|
2263
2201
|
},
|
|
2264
2202
|
"required": [
|
|
2265
|
-
"tag"
|
|
2203
|
+
"tag",
|
|
2204
|
+
"pointed_blade"
|
|
2266
2205
|
],
|
|
2267
2206
|
"additionalProperties": false
|
|
2268
2207
|
},
|
|
@@ -2271,10 +2210,17 @@
|
|
|
2271
2210
|
"properties": {
|
|
2272
2211
|
"tag": {
|
|
2273
2212
|
"const": "Mount"
|
|
2213
|
+
},
|
|
2214
|
+
"mount": {
|
|
2215
|
+
"type": "object",
|
|
2216
|
+
"properties": {},
|
|
2217
|
+
"required": [],
|
|
2218
|
+
"additionalProperties": false
|
|
2274
2219
|
}
|
|
2275
2220
|
},
|
|
2276
2221
|
"required": [
|
|
2277
|
-
"tag"
|
|
2222
|
+
"tag",
|
|
2223
|
+
"mount"
|
|
2278
2224
|
],
|
|
2279
2225
|
"additionalProperties": false
|
|
2280
2226
|
},
|
|
@@ -2334,10 +2280,17 @@
|
|
|
2334
2280
|
"properties": {
|
|
2335
2281
|
"tag": {
|
|
2336
2282
|
"const": "Improvised"
|
|
2283
|
+
},
|
|
2284
|
+
"improvised": {
|
|
2285
|
+
"type": "object",
|
|
2286
|
+
"properties": {},
|
|
2287
|
+
"required": [],
|
|
2288
|
+
"additionalProperties": false
|
|
2337
2289
|
}
|
|
2338
2290
|
},
|
|
2339
2291
|
"required": [
|
|
2340
|
-
"tag"
|
|
2292
|
+
"tag",
|
|
2293
|
+
"improvised"
|
|
2341
2294
|
],
|
|
2342
2295
|
"additionalProperties": false
|
|
2343
2296
|
},
|
|
@@ -2346,10 +2299,17 @@
|
|
|
2346
2299
|
"properties": {
|
|
2347
2300
|
"tag": {
|
|
2348
2301
|
"const": "PointedBlade"
|
|
2302
|
+
},
|
|
2303
|
+
"pointed_blade": {
|
|
2304
|
+
"type": "object",
|
|
2305
|
+
"properties": {},
|
|
2306
|
+
"required": [],
|
|
2307
|
+
"additionalProperties": false
|
|
2349
2308
|
}
|
|
2350
2309
|
},
|
|
2351
2310
|
"required": [
|
|
2352
|
-
"tag"
|
|
2311
|
+
"tag",
|
|
2312
|
+
"pointed_blade"
|
|
2353
2313
|
],
|
|
2354
2314
|
"additionalProperties": false
|
|
2355
2315
|
},
|
|
@@ -2358,10 +2318,17 @@
|
|
|
2358
2318
|
"properties": {
|
|
2359
2319
|
"tag": {
|
|
2360
2320
|
"const": "Mount"
|
|
2321
|
+
},
|
|
2322
|
+
"mount": {
|
|
2323
|
+
"type": "object",
|
|
2324
|
+
"properties": {},
|
|
2325
|
+
"required": [],
|
|
2326
|
+
"additionalProperties": false
|
|
2361
2327
|
}
|
|
2362
2328
|
},
|
|
2363
2329
|
"required": [
|
|
2364
|
-
"tag"
|
|
2330
|
+
"tag",
|
|
2331
|
+
"mount"
|
|
2365
2332
|
],
|
|
2366
2333
|
"additionalProperties": false
|
|
2367
2334
|
},
|
|
@@ -2370,10 +2337,17 @@
|
|
|
2370
2337
|
"properties": {
|
|
2371
2338
|
"tag": {
|
|
2372
2339
|
"const": "HasParry"
|
|
2340
|
+
},
|
|
2341
|
+
"has_parry": {
|
|
2342
|
+
"type": "object",
|
|
2343
|
+
"properties": {},
|
|
2344
|
+
"required": [],
|
|
2345
|
+
"additionalProperties": false
|
|
2373
2346
|
}
|
|
2374
2347
|
},
|
|
2375
2348
|
"required": [
|
|
2376
|
-
"tag"
|
|
2349
|
+
"tag",
|
|
2350
|
+
"has_parry"
|
|
2377
2351
|
],
|
|
2378
2352
|
"additionalProperties": false
|
|
2379
2353
|
},
|
|
@@ -2382,10 +2356,17 @@
|
|
|
2382
2356
|
"properties": {
|
|
2383
2357
|
"tag": {
|
|
2384
2358
|
"const": "OneHanded"
|
|
2359
|
+
},
|
|
2360
|
+
"one_handed": {
|
|
2361
|
+
"type": "object",
|
|
2362
|
+
"properties": {},
|
|
2363
|
+
"required": [],
|
|
2364
|
+
"additionalProperties": false
|
|
2385
2365
|
}
|
|
2386
2366
|
},
|
|
2387
2367
|
"required": [
|
|
2388
|
-
"tag"
|
|
2368
|
+
"tag",
|
|
2369
|
+
"one_handed"
|
|
2389
2370
|
],
|
|
2390
2371
|
"additionalProperties": false
|
|
2391
2372
|
},
|
|
@@ -2394,10 +2375,17 @@
|
|
|
2394
2375
|
"properties": {
|
|
2395
2376
|
"tag": {
|
|
2396
2377
|
"const": "ParryingWeapon"
|
|
2378
|
+
},
|
|
2379
|
+
"parrying_weapon": {
|
|
2380
|
+
"type": "object",
|
|
2381
|
+
"properties": {},
|
|
2382
|
+
"required": [],
|
|
2383
|
+
"additionalProperties": false
|
|
2397
2384
|
}
|
|
2398
2385
|
},
|
|
2399
2386
|
"required": [
|
|
2400
|
-
"tag"
|
|
2387
|
+
"tag",
|
|
2388
|
+
"parrying_weapon"
|
|
2401
2389
|
],
|
|
2402
2390
|
"additionalProperties": false
|
|
2403
2391
|
},
|
|
@@ -2457,10 +2445,17 @@
|
|
|
2457
2445
|
"properties": {
|
|
2458
2446
|
"tag": {
|
|
2459
2447
|
"const": "Improvised"
|
|
2448
|
+
},
|
|
2449
|
+
"improvised": {
|
|
2450
|
+
"type": "object",
|
|
2451
|
+
"properties": {},
|
|
2452
|
+
"required": [],
|
|
2453
|
+
"additionalProperties": false
|
|
2460
2454
|
}
|
|
2461
2455
|
},
|
|
2462
2456
|
"required": [
|
|
2463
|
-
"tag"
|
|
2457
|
+
"tag",
|
|
2458
|
+
"improvised"
|
|
2464
2459
|
],
|
|
2465
2460
|
"additionalProperties": false
|
|
2466
2461
|
},
|
|
@@ -2469,10 +2464,17 @@
|
|
|
2469
2464
|
"properties": {
|
|
2470
2465
|
"tag": {
|
|
2471
2466
|
"const": "PointedBlade"
|
|
2467
|
+
},
|
|
2468
|
+
"pointed_blade": {
|
|
2469
|
+
"type": "object",
|
|
2470
|
+
"properties": {},
|
|
2471
|
+
"required": [],
|
|
2472
|
+
"additionalProperties": false
|
|
2472
2473
|
}
|
|
2473
2474
|
},
|
|
2474
2475
|
"required": [
|
|
2475
|
-
"tag"
|
|
2476
|
+
"tag",
|
|
2477
|
+
"pointed_blade"
|
|
2476
2478
|
],
|
|
2477
2479
|
"additionalProperties": false
|
|
2478
2480
|
},
|
|
@@ -2481,10 +2483,17 @@
|
|
|
2481
2483
|
"properties": {
|
|
2482
2484
|
"tag": {
|
|
2483
2485
|
"const": "Mount"
|
|
2486
|
+
},
|
|
2487
|
+
"mount": {
|
|
2488
|
+
"type": "object",
|
|
2489
|
+
"properties": {},
|
|
2490
|
+
"required": [],
|
|
2491
|
+
"additionalProperties": false
|
|
2484
2492
|
}
|
|
2485
2493
|
},
|
|
2486
2494
|
"required": [
|
|
2487
|
-
"tag"
|
|
2495
|
+
"tag",
|
|
2496
|
+
"mount"
|
|
2488
2497
|
],
|
|
2489
2498
|
"additionalProperties": false
|
|
2490
2499
|
},
|
|
@@ -2544,10 +2553,17 @@
|
|
|
2544
2553
|
"properties": {
|
|
2545
2554
|
"tag": {
|
|
2546
2555
|
"const": "Improvised"
|
|
2556
|
+
},
|
|
2557
|
+
"improvised": {
|
|
2558
|
+
"type": "object",
|
|
2559
|
+
"properties": {},
|
|
2560
|
+
"required": [],
|
|
2561
|
+
"additionalProperties": false
|
|
2547
2562
|
}
|
|
2548
2563
|
},
|
|
2549
2564
|
"required": [
|
|
2550
|
-
"tag"
|
|
2565
|
+
"tag",
|
|
2566
|
+
"improvised"
|
|
2551
2567
|
],
|
|
2552
2568
|
"additionalProperties": false
|
|
2553
2569
|
},
|
|
@@ -2556,10 +2572,17 @@
|
|
|
2556
2572
|
"properties": {
|
|
2557
2573
|
"tag": {
|
|
2558
2574
|
"const": "PointedBlade"
|
|
2575
|
+
},
|
|
2576
|
+
"pointed_blade": {
|
|
2577
|
+
"type": "object",
|
|
2578
|
+
"properties": {},
|
|
2579
|
+
"required": [],
|
|
2580
|
+
"additionalProperties": false
|
|
2559
2581
|
}
|
|
2560
2582
|
},
|
|
2561
2583
|
"required": [
|
|
2562
|
-
"tag"
|
|
2584
|
+
"tag",
|
|
2585
|
+
"pointed_blade"
|
|
2563
2586
|
],
|
|
2564
2587
|
"additionalProperties": false
|
|
2565
2588
|
},
|
|
@@ -2568,10 +2591,17 @@
|
|
|
2568
2591
|
"properties": {
|
|
2569
2592
|
"tag": {
|
|
2570
2593
|
"const": "Mount"
|
|
2594
|
+
},
|
|
2595
|
+
"mount": {
|
|
2596
|
+
"type": "object",
|
|
2597
|
+
"properties": {},
|
|
2598
|
+
"required": [],
|
|
2599
|
+
"additionalProperties": false
|
|
2571
2600
|
}
|
|
2572
2601
|
},
|
|
2573
2602
|
"required": [
|
|
2574
|
-
"tag"
|
|
2603
|
+
"tag",
|
|
2604
|
+
"mount"
|
|
2575
2605
|
],
|
|
2576
2606
|
"additionalProperties": false
|
|
2577
2607
|
},
|
|
@@ -2699,10 +2729,17 @@
|
|
|
2699
2729
|
"properties": {
|
|
2700
2730
|
"tag": {
|
|
2701
2731
|
"const": "Indefinite"
|
|
2732
|
+
},
|
|
2733
|
+
"indefinite": {
|
|
2734
|
+
"type": "object",
|
|
2735
|
+
"properties": {},
|
|
2736
|
+
"required": [],
|
|
2737
|
+
"additionalProperties": false
|
|
2702
2738
|
}
|
|
2703
2739
|
},
|
|
2704
2740
|
"required": [
|
|
2705
|
-
"tag"
|
|
2741
|
+
"tag",
|
|
2742
|
+
"indefinite"
|
|
2706
2743
|
],
|
|
2707
2744
|
"additionalProperties": false
|
|
2708
2745
|
}
|