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.
Files changed (129) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/lib/config.d.ts +4 -4
  3. package/lib/config.js +4 -4
  4. package/lib/types/Blessing.d.ts +3 -0
  5. package/lib/types/Cantrip.d.ts +3 -0
  6. package/lib/types/Culture.d.ts +18 -22
  7. package/lib/types/Culture.js +38 -0
  8. package/lib/types/Lessons_Curriculum.d.ts +4 -0
  9. package/lib/types/Patron.d.ts +12 -18
  10. package/lib/types/Patron.js +20 -0
  11. package/lib/types/Profession.d.ts +8 -11
  12. package/lib/types/Profession.js +6 -0
  13. package/lib/types/Race.d.ts +5 -7
  14. package/lib/types/Race.js +11 -0
  15. package/lib/types/Service.d.ts +4 -5
  16. package/lib/types/Service.js +5 -0
  17. package/lib/types/Skill.d.ts +10 -14
  18. package/lib/types/Skill.js +19 -0
  19. package/lib/types/Talisman.d.ts +7 -11
  20. package/lib/types/Talisman.js +8 -0
  21. package/lib/types/_Activatable.d.ts +41 -25
  22. package/lib/types/_Activatable.js +44 -1
  23. package/lib/types/_ActivatableSelectOptionCategory.d.ts +21 -18
  24. package/lib/types/_ActivatableSelectOptionCategory.js +8 -1
  25. package/lib/types/_ActivatableSkillCheckResultBased.d.ts +8 -10
  26. package/lib/types/_ActivatableSkillCheckResultBased.js +16 -1
  27. package/lib/types/_ActivatableSkillRange.d.ts +8 -4
  28. package/lib/types/_ActivatableSkillTargetCategory.d.ts +4 -0
  29. package/lib/types/_DiseasePoison.d.ts +5 -7
  30. package/lib/types/_DiseasePoison.js +11 -1
  31. package/lib/types/_Sex.d.ts +4 -5
  32. package/lib/types/_Sex.js +8 -1
  33. package/lib/types/_SkillCheck.d.ts +6 -9
  34. package/lib/types/_SkillCheck.js +11 -1
  35. package/lib/types/_Spellwork.d.ts +1 -0
  36. package/lib/types/equipment/item/Armor.d.ts +4 -4
  37. package/lib/types/equipment/item/BandageOrRemedy.d.ts +33 -3
  38. package/lib/types/equipment/item/CeremonialItem.d.ts +38 -3
  39. package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +1 -14
  40. package/lib/types/equipment/item/IlluminationLightSource.d.ts +62 -0
  41. package/lib/types/equipment/item/IlluminationLightSource.js +9 -0
  42. package/lib/types/equipment/item/{HealingHerb.d.ts → IlluminationRefillsOrSupplies.d.ts} +2 -2
  43. package/lib/types/equipment/item/{HealingHerb.js → IlluminationRefillsOrSupplies.js} +1 -1
  44. package/lib/types/equipment/item/LuxuryGood.d.ts +33 -3
  45. package/lib/types/equipment/item/MusicalInstrument.d.ts +3 -8
  46. package/lib/types/equipment/item/Poison.d.ts +11 -9
  47. package/lib/types/equipment/item/Poison.js +7 -0
  48. package/lib/types/equipment/item/ToolOfTheTrade.d.ts +1 -1
  49. package/lib/types/equipment/item/Weapon.d.ts +1 -1
  50. package/lib/types/equipment/item/_Item.d.ts +9 -3
  51. package/lib/types/equipment/item/_MeleeWeapon.d.ts +2 -0
  52. package/lib/types/equipment/item/_RangedWeapon.d.ts +2 -0
  53. package/lib/types/magicalActions/AnimistPower.d.ts +2 -0
  54. package/lib/types/magicalActions/Curse.d.ts +1 -0
  55. package/lib/types/magicalActions/GeodeRitual.d.ts +2 -0
  56. package/lib/types/magicalActions/JesterTrick.d.ts +3 -0
  57. package/lib/types/magicalActions/_MusicTradition.d.ts +8 -10
  58. package/lib/types/magicalActions/_MusicTradition.js +10 -1
  59. package/lib/types/prerequisites/DisplayOption.d.ts +1 -0
  60. package/lib/types/prerequisites/PrerequisiteGroups.d.ts +1 -0
  61. package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.d.ts +4 -5
  62. package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.js +5 -1
  63. package/lib/types/prerequisites/single/TextPrerequisite.d.ts +4 -5
  64. package/lib/types/prerequisites/single/TextPrerequisite.js +5 -1
  65. package/lib/types/prerequisites/single/TraditionPrerequisite.d.ts +8 -10
  66. package/lib/types/prerequisites/single/TraditionPrerequisite.js +18 -1
  67. package/lib/types/rule/CoreRule.d.ts +63 -5
  68. package/lib/types/rule/CoreRule.js +5 -0
  69. package/lib/types/rule/_Rule.d.ts +1 -0
  70. package/lib/types/source/Publication.d.ts +6 -9
  71. package/lib/types/source/Publication.js +10 -0
  72. package/lib/types/source/_PublicationRef.d.ts +2 -0
  73. package/lib/types/specialAbility/BlessedTradition.d.ts +3 -0
  74. package/lib/types/specialAbility/PactGift.d.ts +8 -10
  75. package/lib/types/specialAbility/PactGift.js +10 -0
  76. package/package.json +2 -2
  77. package/schema/Blessing.schema.json +24 -3
  78. package/schema/Cantrip.schema.json +24 -3
  79. package/schema/Culture.schema.json +21 -113
  80. package/schema/Lessons_Curriculum.schema.json +32 -4
  81. package/schema/Patron.schema.json +10 -98
  82. package/schema/Profession.schema.json +70 -47
  83. package/schema/Race.schema.json +4 -37
  84. package/schema/Service.schema.json +3 -25
  85. package/schema/Skill.schema.json +8 -74
  86. package/schema/Talisman.schema.json +6 -61
  87. package/schema/_Activatable.schema.json +183 -146
  88. package/schema/_ActivatableSelectOptionCategory.schema.json +97 -49
  89. package/schema/_ActivatableSkillCheckResultBased.schema.json +6 -50
  90. package/schema/_ActivatableSkillRange.schema.json +24 -4
  91. package/schema/_ActivatableSkillTargetCategory.schema.json +32 -4
  92. package/schema/_DiseasePoison.schema.json +4 -37
  93. package/schema/_Sex.schema.json +3 -25
  94. package/schema/_SkillCheck.schema.json +5 -49
  95. package/schema/_Spellwork.schema.json +8 -1
  96. package/schema/equipment/item/Armor.schema.json +26 -5
  97. package/schema/equipment/item/BandageOrRemedy.schema.json +44 -1
  98. package/schema/equipment/item/CeremonialItem.schema.json +50 -1
  99. package/schema/equipment/item/EquipmentOfBlessedOnes.schema.json +0 -13
  100. package/schema/equipment/item/IlluminationLightSource.schema.json +122 -0
  101. package/schema/equipment/item/IlluminationRefillsOrSupplies.schema.json +10 -0
  102. package/schema/equipment/item/LuxuryGood.schema.json +44 -1
  103. package/schema/equipment/item/MusicalInstrument.schema.json +4 -9
  104. package/schema/equipment/item/Poison.schema.json +45 -54
  105. package/schema/equipment/item/ToolOfTheTrade.schema.json +0 -1
  106. package/schema/equipment/item/Weapon.schema.json +1 -1
  107. package/schema/equipment/item/_Item.schema.json +52 -10
  108. package/schema/equipment/item/_MeleeWeapon.schema.json +16 -2
  109. package/schema/equipment/item/_RangedWeapon.schema.json +16 -2
  110. package/schema/magicalActions/AnimistPower.schema.json +16 -2
  111. package/schema/magicalActions/Curse.schema.json +8 -1
  112. package/schema/magicalActions/GeodeRitual.schema.json +16 -2
  113. package/schema/magicalActions/JesterTrick.schema.json +24 -3
  114. package/schema/magicalActions/_MusicTradition.schema.json +6 -50
  115. package/schema/prerequisites/DisplayOption.schema.json +8 -1
  116. package/schema/prerequisites/PrerequisiteGroups.schema.json +8 -1
  117. package/schema/prerequisites/single/PrimaryAttributePrerequisite.schema.json +3 -25
  118. package/schema/prerequisites/single/TextPrerequisite.schema.json +3 -25
  119. package/schema/prerequisites/single/TraditionPrerequisite.schema.json +6 -50
  120. package/schema/rule/CoreRule.schema.json +475 -84
  121. package/schema/rule/_Rule.schema.json +8 -1
  122. package/schema/source/Publication.schema.json +5 -49
  123. package/schema/source/_PublicationRef.schema.json +16 -2
  124. package/schema/specialAbility/BlessedTradition.schema.json +24 -3
  125. package/schema/specialAbility/PactGift.schema.json +6 -50
  126. package/lib/types/equipment/item/Illumination.d.ts +0 -6
  127. package/lib/types/equipment/item/Illumination.js +0 -5
  128. package/schema/equipment/item/HealingHerb.schema.json +0 -10
  129. package/schema/equipment/item/Illumination.schema.json +0 -10
@@ -77,10 +77,17 @@
77
77
  "properties": {
78
78
  "tag": {
79
79
  "const": "DefinedByGameMaster"
80
+ },
81
+ "defined_by_game_master": {
82
+ "type": "object",
83
+ "properties": {},
84
+ "required": [],
85
+ "additionalProperties": false
80
86
  }
81
87
  },
82
88
  "required": [
83
- "tag"
89
+ "tag",
90
+ "defined_by_game_master"
84
91
  ],
85
92
  "additionalProperties": false
86
93
  },
@@ -202,10 +209,17 @@
202
209
  "properties": {
203
210
  "tag": {
204
211
  "const": "DemonSummoning"
212
+ },
213
+ "demon_summoning": {
214
+ "type": "object",
215
+ "properties": {},
216
+ "required": [],
217
+ "additionalProperties": false
205
218
  }
206
219
  },
207
220
  "required": [
208
- "tag"
221
+ "tag",
222
+ "demon_summoning"
209
223
  ],
210
224
  "additionalProperties": false
211
225
  },
@@ -214,10 +228,17 @@
214
228
  "properties": {
215
229
  "tag": {
216
230
  "const": "Borbaradian"
231
+ },
232
+ "borbaradian": {
233
+ "type": "object",
234
+ "properties": {},
235
+ "required": [],
236
+ "additionalProperties": false
217
237
  }
218
238
  },
219
239
  "required": [
220
- "tag"
240
+ "tag",
241
+ "borbaradian"
221
242
  ],
222
243
  "additionalProperties": false
223
244
  },
@@ -226,10 +247,17 @@
226
247
  "properties": {
227
248
  "tag": {
228
249
  "const": "DamageIntelligent"
250
+ },
251
+ "damage_intelligent": {
252
+ "type": "object",
253
+ "properties": {},
254
+ "required": [],
255
+ "additionalProperties": false
229
256
  }
230
257
  },
231
258
  "required": [
232
- "tag"
259
+ "tag",
260
+ "damage_intelligent"
233
261
  ],
234
262
  "additionalProperties": false
235
263
  }
@@ -130,31 +130,9 @@
130
130
  },
131
131
  "PatronCultureOperation": {
132
132
  "description": "The set operation to combine the set of all patron cultures with the\nspecified set of patron cultures: If they should intersect, the patron is\nonly part of the given cultures. If they should differ, the patron is only\npart of the cultures that are not given.",
133
- "oneOf": [
134
- {
135
- "type": "object",
136
- "properties": {
137
- "tag": {
138
- "const": "Intersection"
139
- }
140
- },
141
- "required": [
142
- "tag"
143
- ],
144
- "additionalProperties": false
145
- },
146
- {
147
- "type": "object",
148
- "properties": {
149
- "tag": {
150
- "const": "Difference"
151
- }
152
- },
153
- "required": [
154
- "tag"
155
- ],
156
- "additionalProperties": false
157
- }
133
+ "enum": [
134
+ "Intersection",
135
+ "Difference"
158
136
  ]
159
137
  },
160
138
  "AdvantageAnimalPower": {
@@ -264,79 +242,13 @@
264
242
  "additionalProperties": false
265
243
  },
266
244
  "CombatAnimalPowerType": {
267
- "oneOf": [
268
- {
269
- "type": "object",
270
- "properties": {
271
- "tag": {
272
- "const": "Attack"
273
- }
274
- },
275
- "required": [
276
- "tag"
277
- ],
278
- "additionalProperties": false
279
- },
280
- {
281
- "type": "object",
282
- "properties": {
283
- "tag": {
284
- "const": "Parry"
285
- }
286
- },
287
- "required": [
288
- "tag"
289
- ],
290
- "additionalProperties": false
291
- },
292
- {
293
- "type": "object",
294
- "properties": {
295
- "tag": {
296
- "const": "RangedCombat"
297
- }
298
- },
299
- "required": [
300
- "tag"
301
- ],
302
- "additionalProperties": false
303
- },
304
- {
305
- "type": "object",
306
- "properties": {
307
- "tag": {
308
- "const": "Dodge"
309
- }
310
- },
311
- "required": [
312
- "tag"
313
- ],
314
- "additionalProperties": false
315
- },
316
- {
317
- "type": "object",
318
- "properties": {
319
- "tag": {
320
- "const": "DamagePoints"
321
- }
322
- },
323
- "required": [
324
- "tag"
325
- ],
326
- "additionalProperties": false
327
- },
328
- {
329
- "type": "object",
330
- "properties": {
331
- "tag": {
332
- "const": "Protection"
333
- }
334
- },
335
- "required": [
336
- "tag"
337
- ],
338
- "additionalProperties": false
339
- }
245
+ "enum": [
246
+ "Attack",
247
+ "Parry",
248
+ "RangedCombat",
249
+ "Dodge",
250
+ "DamagePoints",
251
+ "Protection"
340
252
  ]
341
253
  },
342
254
  "AnimalPowerLevel2": {
@@ -61,7 +61,8 @@
61
61
  }
62
62
  },
63
63
  "required": [
64
- "tag"
64
+ "tag",
65
+ "magical"
65
66
  ],
66
67
  "additionalProperties": false
67
68
  },
@@ -70,53 +71,27 @@
70
71
  "properties": {
71
72
  "tag": {
72
73
  "const": "Blessed"
74
+ },
75
+ "blessed": {
76
+ "type": "object",
77
+ "properties": {},
78
+ "required": [],
79
+ "additionalProperties": false
73
80
  }
74
81
  },
75
82
  "required": [
76
- "tag"
83
+ "tag",
84
+ "blessed"
77
85
  ],
78
86
  "additionalProperties": false
79
87
  }
80
88
  ]
81
89
  },
82
90
  "MundaneProfessionGroup": {
83
- "oneOf": [
84
- {
85
- "type": "object",
86
- "properties": {
87
- "tag": {
88
- "const": "Profane"
89
- }
90
- },
91
- "required": [
92
- "tag"
93
- ],
94
- "additionalProperties": false
95
- },
96
- {
97
- "type": "object",
98
- "properties": {
99
- "tag": {
100
- "const": "Fighter"
101
- }
102
- },
103
- "required": [
104
- "tag"
105
- ],
106
- "additionalProperties": false
107
- },
108
- {
109
- "type": "object",
110
- "properties": {
111
- "tag": {
112
- "const": "Religious"
113
- }
114
- },
115
- "required": [
116
- "tag"
117
- ],
118
- "additionalProperties": false
119
- }
91
+ "enum": [
92
+ "Profane",
93
+ "Fighter",
94
+ "Religious"
120
95
  ]
121
96
  },
122
97
  "MagicalProfessionGroup": {
@@ -128,7 +103,6 @@
128
103
  }
129
104
  },
130
105
  "required": [],
131
- "minProperties": 1,
132
106
  "additionalProperties": false
133
107
  },
134
108
  "ProfessionVersion": {
@@ -862,10 +836,17 @@
862
836
  "properties": {
863
837
  "tag": {
864
838
  "const": "Remove"
839
+ },
840
+ "remove": {
841
+ "type": "object",
842
+ "properties": {},
843
+ "required": [],
844
+ "additionalProperties": false
865
845
  }
866
846
  },
867
847
  "required": [
868
- "tag"
848
+ "tag",
849
+ "remove"
869
850
  ],
870
851
  "additionalProperties": false
871
852
  },
@@ -894,10 +875,17 @@
894
875
  "properties": {
895
876
  "tag": {
896
877
  "const": "Remove"
878
+ },
879
+ "remove": {
880
+ "type": "object",
881
+ "properties": {},
882
+ "required": [],
883
+ "additionalProperties": false
897
884
  }
898
885
  },
899
886
  "required": [
900
- "tag"
887
+ "tag",
888
+ "remove"
901
889
  ],
902
890
  "additionalProperties": false
903
891
  },
@@ -926,10 +914,17 @@
926
914
  "properties": {
927
915
  "tag": {
928
916
  "const": "Remove"
917
+ },
918
+ "remove": {
919
+ "type": "object",
920
+ "properties": {},
921
+ "required": [],
922
+ "additionalProperties": false
929
923
  }
930
924
  },
931
925
  "required": [
932
- "tag"
926
+ "tag",
927
+ "remove"
933
928
  ],
934
929
  "additionalProperties": false
935
930
  },
@@ -958,10 +953,17 @@
958
953
  "properties": {
959
954
  "tag": {
960
955
  "const": "Remove"
956
+ },
957
+ "remove": {
958
+ "type": "object",
959
+ "properties": {},
960
+ "required": [],
961
+ "additionalProperties": false
961
962
  }
962
963
  },
963
964
  "required": [
964
- "tag"
965
+ "tag",
966
+ "remove"
965
967
  ],
966
968
  "additionalProperties": false
967
969
  },
@@ -990,10 +992,17 @@
990
992
  "properties": {
991
993
  "tag": {
992
994
  "const": "Remove"
995
+ },
996
+ "remove": {
997
+ "type": "object",
998
+ "properties": {},
999
+ "required": [],
1000
+ "additionalProperties": false
993
1001
  }
994
1002
  },
995
1003
  "required": [
996
- "tag"
1004
+ "tag",
1005
+ "remove"
997
1006
  ],
998
1007
  "additionalProperties": false
999
1008
  },
@@ -1022,10 +1031,17 @@
1022
1031
  "properties": {
1023
1032
  "tag": {
1024
1033
  "const": "Remove"
1034
+ },
1035
+ "remove": {
1036
+ "type": "object",
1037
+ "properties": {},
1038
+ "required": [],
1039
+ "additionalProperties": false
1025
1040
  }
1026
1041
  },
1027
1042
  "required": [
1028
- "tag"
1043
+ "tag",
1044
+ "remove"
1029
1045
  ],
1030
1046
  "additionalProperties": false
1031
1047
  },
@@ -1054,10 +1070,17 @@
1054
1070
  "properties": {
1055
1071
  "tag": {
1056
1072
  "const": "Remove"
1073
+ },
1074
+ "remove": {
1075
+ "type": "object",
1076
+ "properties": {},
1077
+ "required": [],
1078
+ "additionalProperties": false
1057
1079
  }
1058
1080
  },
1059
1081
  "required": [
1060
- "tag"
1082
+ "tag",
1083
+ "remove"
1061
1084
  ],
1062
1085
  "additionalProperties": false
1063
1086
  },
@@ -237,43 +237,10 @@
237
237
  },
238
238
  "WeightDiceOffsetStrategy": {
239
239
  "description": "The strategy how to offset the randomly generated values against the\nbase value. Either they are all added or subtracted or even results are\nadded and odd results are subtracted.",
240
- "oneOf": [
241
- {
242
- "type": "object",
243
- "properties": {
244
- "tag": {
245
- "const": "Add"
246
- }
247
- },
248
- "required": [
249
- "tag"
250
- ],
251
- "additionalProperties": false
252
- },
253
- {
254
- "type": "object",
255
- "properties": {
256
- "tag": {
257
- "const": "Subtract"
258
- }
259
- },
260
- "required": [
261
- "tag"
262
- ],
263
- "additionalProperties": false
264
- },
265
- {
266
- "type": "object",
267
- "properties": {
268
- "tag": {
269
- "const": "AddEvenSubtractOdd"
270
- }
271
- },
272
- "required": [
273
- "tag"
274
- ],
275
- "additionalProperties": false
276
- }
240
+ "enum": [
241
+ "Add",
242
+ "Subtract",
243
+ "AddEvenSubtractOdd"
277
244
  ]
278
245
  },
279
246
  "StartingAgeConfigForExperienceLevel": {
@@ -45,31 +45,9 @@
45
45
  "additionalProperties": false
46
46
  },
47
47
  "ServiceAvailability": {
48
- "oneOf": [
49
- {
50
- "type": "object",
51
- "properties": {
52
- "tag": {
53
- "const": "SummonedCreatures"
54
- }
55
- },
56
- "required": [
57
- "tag"
58
- ],
59
- "additionalProperties": false
60
- },
61
- {
62
- "type": "object",
63
- "properties": {
64
- "tag": {
65
- "const": "Monstrosities"
66
- }
67
- },
68
- "required": [
69
- "tag"
70
- ],
71
- "additionalProperties": false
72
- }
48
+ "enum": [
49
+ "SummonedCreatures",
50
+ "Monstrosities"
73
51
  ]
74
52
  },
75
53
  "ServiceTranslation": {
@@ -109,43 +109,10 @@
109
109
  },
110
110
  "ApplicationCategory": {
111
111
  "description": "A category. All available entries from the specified category will be\nincluded as separate applications.",
112
- "oneOf": [
113
- {
114
- "type": "object",
115
- "properties": {
116
- "tag": {
117
- "const": "BlessedTraditions"
118
- }
119
- },
120
- "required": [
121
- "tag"
122
- ],
123
- "additionalProperties": false
124
- },
125
- {
126
- "type": "object",
127
- "properties": {
128
- "tag": {
129
- "const": "Diseases"
130
- }
131
- },
132
- "required": [
133
- "tag"
134
- ],
135
- "additionalProperties": false
136
- },
137
- {
138
- "type": "object",
139
- "properties": {
140
- "tag": {
141
- "const": "Regions"
142
- }
143
- },
144
- "required": [
145
- "tag"
146
- ],
147
- "additionalProperties": false
148
- }
112
+ "enum": [
113
+ "BlessedTraditions",
114
+ "Diseases",
115
+ "Regions"
149
116
  ]
150
117
  },
151
118
  "Applications": {
@@ -234,43 +201,10 @@
234
201
  },
235
202
  "Encumbrance": {
236
203
  "description": "Indicates whether encumbrance gives a penalty for checks with the skill.",
237
- "oneOf": [
238
- {
239
- "type": "object",
240
- "properties": {
241
- "tag": {
242
- "const": "True"
243
- }
244
- },
245
- "required": [
246
- "tag"
247
- ],
248
- "additionalProperties": false
249
- },
250
- {
251
- "type": "object",
252
- "properties": {
253
- "tag": {
254
- "const": "False"
255
- }
256
- },
257
- "required": [
258
- "tag"
259
- ],
260
- "additionalProperties": false
261
- },
262
- {
263
- "type": "object",
264
- "properties": {
265
- "tag": {
266
- "const": "Maybe"
267
- }
268
- },
269
- "required": [
270
- "tag"
271
- ],
272
- "additionalProperties": false
273
- }
204
+ "enum": [
205
+ "True",
206
+ "False",
207
+ "Maybe"
274
208
  ]
275
209
  }
276
210
  }
@@ -56,67 +56,12 @@
56
56
  "additionalProperties": false
57
57
  },
58
58
  "TalismanType": {
59
- "oneOf": [
60
- {
61
- "type": "object",
62
- "properties": {
63
- "tag": {
64
- "const": "MainTalisman"
65
- }
66
- },
67
- "required": [
68
- "tag"
69
- ],
70
- "additionalProperties": false
71
- },
72
- {
73
- "type": "object",
74
- "properties": {
75
- "tag": {
76
- "const": "Talisman"
77
- }
78
- },
79
- "required": [
80
- "tag"
81
- ],
82
- "additionalProperties": false
83
- },
84
- {
85
- "type": "object",
86
- "properties": {
87
- "tag": {
88
- "const": "MinorTalisman"
89
- }
90
- },
91
- "required": [
92
- "tag"
93
- ],
94
- "additionalProperties": false
95
- },
96
- {
97
- "type": "object",
98
- "properties": {
99
- "tag": {
100
- "const": "Regalia"
101
- }
102
- },
103
- "required": [
104
- "tag"
105
- ],
106
- "additionalProperties": false
107
- },
108
- {
109
- "type": "object",
110
- "properties": {
111
- "tag": {
112
- "const": "PowerfulTalisman"
113
- }
114
- },
115
- "required": [
116
- "tag"
117
- ],
118
- "additionalProperties": false
119
- }
59
+ "enum": [
60
+ "MainTalisman",
61
+ "Talisman",
62
+ "MinorTalisman",
63
+ "Regalia",
64
+ "PowerfulTalisman"
120
65
  ]
121
66
  },
122
67
  "TalismanTranslation": {