@optolith/database-schema 0.42.1

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 (488) hide show
  1. package/AUTHORS +1 -0
  2. package/CHANGELOG.md +1789 -0
  3. package/LICENSE +378 -0
  4. package/README.md +34 -0
  5. package/gen/types.d.ts +24682 -0
  6. package/lib/cache/activatableSelectOptions.d.ts +18 -0
  7. package/lib/cache/activatableSelectOptions.js +762 -0
  8. package/lib/cache/ancestorBloodAdvantages.d.ts +4 -0
  9. package/lib/cache/ancestorBloodAdvantages.js +13 -0
  10. package/lib/cache/index.d.ts +31 -0
  11. package/lib/cache/index.js +22 -0
  12. package/lib/cache/internal.d.ts +4 -0
  13. package/lib/cache/internal.js +1 -0
  14. package/lib/cache/magicalAndBlessedAdvantagesAndDisadvantages.d.ts +3 -0
  15. package/lib/cache/magicalAndBlessedAdvantagesAndDisadvantages.js +103 -0
  16. package/lib/cache/newApplicationsAndUses.d.ts +22 -0
  17. package/lib/cache/newApplicationsAndUses.js +12 -0
  18. package/lib/main.d.ts +17 -0
  19. package/lib/main.js +226 -0
  20. package/lib/test.d.ts +1 -0
  21. package/lib/test.js +11 -0
  22. package/lib/types/Advantage.d.ts +1193 -0
  23. package/lib/types/Advantage.js +58 -0
  24. package/lib/types/AnimalDisease.d.ts +91 -0
  25. package/lib/types/AnimalDisease.js +35 -0
  26. package/lib/types/AnimalType.d.ts +6 -0
  27. package/lib/types/AnimalType.js +21 -0
  28. package/lib/types/ArcaneBardTradition.d.ts +30 -0
  29. package/lib/types/ArcaneBardTradition.js +14 -0
  30. package/lib/types/ArcaneDancerTradition.d.ts +30 -0
  31. package/lib/types/ArcaneDancerTradition.js +14 -0
  32. package/lib/types/Aspect.d.ts +7 -0
  33. package/lib/types/Aspect.js +27 -0
  34. package/lib/types/Attribute.d.ts +19 -0
  35. package/lib/types/Attribute.js +49 -0
  36. package/lib/types/Blessing.d.ts +106 -0
  37. package/lib/types/Blessing.js +102 -0
  38. package/lib/types/Cantrip.d.ts +134 -0
  39. package/lib/types/Cantrip.js +166 -0
  40. package/lib/types/Ceremony.d.ts +685 -0
  41. package/lib/types/Ceremony.js +94 -0
  42. package/lib/types/CombatTechnique.d.ts +153 -0
  43. package/lib/types/CombatTechnique.js +133 -0
  44. package/lib/types/Condition.d.ts +53 -0
  45. package/lib/types/Condition.js +38 -0
  46. package/lib/types/Continent.d.ts +6 -0
  47. package/lib/types/Continent.js +22 -0
  48. package/lib/types/Culture.d.ts +158 -0
  49. package/lib/types/Culture.js +374 -0
  50. package/lib/types/DerivedCharacteristic.d.ts +267 -0
  51. package/lib/types/DerivedCharacteristic.js +227 -0
  52. package/lib/types/Disadvantage.d.ts +1120 -0
  53. package/lib/types/Disadvantage.js +59 -0
  54. package/lib/types/Disease.d.ts +111 -0
  55. package/lib/types/Disease.js +35 -0
  56. package/lib/types/Element.d.ts +6 -0
  57. package/lib/types/Element.js +21 -0
  58. package/lib/types/ExperienceLevel.d.ts +13 -0
  59. package/lib/types/ExperienceLevel.js +56 -0
  60. package/lib/types/EyeColor.d.ts +6 -0
  61. package/lib/types/EyeColor.js +21 -0
  62. package/lib/types/FamiliarsTrick.d.ts +192 -0
  63. package/lib/types/FamiliarsTrick.js +202 -0
  64. package/lib/types/HairColor.d.ts +6 -0
  65. package/lib/types/HairColor.js +21 -0
  66. package/lib/types/HomunculusType.d.ts +6 -0
  67. package/lib/types/HomunculusType.js +15 -0
  68. package/lib/types/Influence.d.ts +80 -0
  69. package/lib/types/Influence.js +52 -0
  70. package/lib/types/Lessons.d.ts +181 -0
  71. package/lib/types/Lessons.js +230 -0
  72. package/lib/types/LiturgicalChant.d.ts +685 -0
  73. package/lib/types/LiturgicalChant.js +94 -0
  74. package/lib/types/Locale.d.ts +1607 -0
  75. package/lib/types/Locale.js +1747 -0
  76. package/lib/types/MetaCondition.d.ts +53 -0
  77. package/lib/types/MetaCondition.js +39 -0
  78. package/lib/types/PactCategory.d.ts +75 -0
  79. package/lib/types/PactCategory.js +102 -0
  80. package/lib/types/Patron.d.ts +101 -0
  81. package/lib/types/Patron.js +203 -0
  82. package/lib/types/PatronCategory.d.ts +7 -0
  83. package/lib/types/PatronCategory.js +26 -0
  84. package/lib/types/PersonalityTrait.d.ts +81 -0
  85. package/lib/types/PersonalityTrait.js +58 -0
  86. package/lib/types/Profession.d.ts +2120 -0
  87. package/lib/types/Profession.js +631 -0
  88. package/lib/types/Property.d.ts +7 -0
  89. package/lib/types/Property.js +26 -0
  90. package/lib/types/Race.d.ts +207 -0
  91. package/lib/types/Race.js +332 -0
  92. package/lib/types/Region.d.ts +6 -0
  93. package/lib/types/Region.js +21 -0
  94. package/lib/types/Ritual.d.ts +688 -0
  95. package/lib/types/Ritual.js +96 -0
  96. package/lib/types/Service.d.ts +56 -0
  97. package/lib/types/Service.js +45 -0
  98. package/lib/types/SexPractice.d.ts +51 -0
  99. package/lib/types/SexPractice.js +39 -0
  100. package/lib/types/Skill.d.ts +116 -0
  101. package/lib/types/Skill.js +139 -0
  102. package/lib/types/SkillGroup.d.ts +17 -0
  103. package/lib/types/SkillGroup.js +45 -0
  104. package/lib/types/SkillModificationLevel.d.ts +34 -0
  105. package/lib/types/SkillModificationLevel.js +116 -0
  106. package/lib/types/SocialStatus.d.ts +7 -0
  107. package/lib/types/SocialStatus.js +26 -0
  108. package/lib/types/Spell.d.ts +688 -0
  109. package/lib/types/Spell.js +96 -0
  110. package/lib/types/State.d.ts +52 -0
  111. package/lib/types/State.js +31 -0
  112. package/lib/types/Talisman.d.ts +135 -0
  113. package/lib/types/Talisman.js +168 -0
  114. package/lib/types/TargetCategory.d.ts +7 -0
  115. package/lib/types/TargetCategory.js +26 -0
  116. package/lib/types/_Activatable.d.ts +12 -0
  117. package/lib/types/_Activatable.js +43 -0
  118. package/lib/types/_ActivatableAdvanced.d.ts +50 -0
  119. package/lib/types/_ActivatableAdvanced.js +101 -0
  120. package/lib/types/_ActivatableAdventurePointsValue.d.ts +159 -0
  121. package/lib/types/_ActivatableAdventurePointsValue.js +148 -0
  122. package/lib/types/_ActivatableAutomatic.d.ts +74 -0
  123. package/lib/types/_ActivatableAutomatic.js +64 -0
  124. package/lib/types/_ActivatableCombat.d.ts +123 -0
  125. package/lib/types/_ActivatableCombat.js +350 -0
  126. package/lib/types/_ActivatableNames.d.ts +15 -0
  127. package/lib/types/_ActivatableNames.js +26 -0
  128. package/lib/types/_ActivatableNonMundane.d.ts +387 -0
  129. package/lib/types/_ActivatableNonMundane.js +536 -0
  130. package/lib/types/_ActivatableSelectOptionCategory.d.ts +1380 -0
  131. package/lib/types/_ActivatableSelectOptionCategory.js +478 -0
  132. package/lib/types/_ActivatableSelectOptions.d.ts +1077 -0
  133. package/lib/types/_ActivatableSelectOptions.js +218 -0
  134. package/lib/types/_ActivatableSkill.d.ts +1231 -0
  135. package/lib/types/_ActivatableSkill.js +89 -0
  136. package/lib/types/_ActivatableSkillApplicationsAndUses.d.ts +109 -0
  137. package/lib/types/_ActivatableSkillApplicationsAndUses.js +80 -0
  138. package/lib/types/_ActivatableSkillCastingTime.d.ts +66 -0
  139. package/lib/types/_ActivatableSkillCastingTime.js +92 -0
  140. package/lib/types/_ActivatableSkillCheckResultBased.d.ts +27 -0
  141. package/lib/types/_ActivatableSkillCheckResultBased.js +45 -0
  142. package/lib/types/_ActivatableSkillCost.d.ts +366 -0
  143. package/lib/types/_ActivatableSkillCost.js +280 -0
  144. package/lib/types/_ActivatableSkillDuration.d.ts +204 -0
  145. package/lib/types/_ActivatableSkillDuration.js +138 -0
  146. package/lib/types/_ActivatableSkillEffect.d.ts +16 -0
  147. package/lib/types/_ActivatableSkillEffect.js +65 -0
  148. package/lib/types/_ActivatableSkillRange.d.ts +62 -0
  149. package/lib/types/_ActivatableSkillRange.js +106 -0
  150. package/lib/types/_ActivatableSkillTargetCategory.d.ts +14 -0
  151. package/lib/types/_ActivatableSkillTargetCategory.js +30 -0
  152. package/lib/types/_AlternativeNames.d.ts +5 -0
  153. package/lib/types/_AlternativeNames.js +14 -0
  154. package/lib/types/_ArcaneTradition.d.ts +30 -0
  155. package/lib/types/_ArcaneTradition.js +14 -0
  156. package/lib/types/_Blessed.d.ts +8 -0
  157. package/lib/types/_Blessed.js +22 -0
  158. package/lib/types/_Color.d.ts +19 -0
  159. package/lib/types/_Color.js +27 -0
  160. package/lib/types/_CommonnessRatedAdvantageDisadvantage.d.ts +7 -0
  161. package/lib/types/_CommonnessRatedAdvantageDisadvantage.js +19 -0
  162. package/lib/types/_Dice.d.ts +6 -0
  163. package/lib/types/_Dice.js +23 -0
  164. package/lib/types/_DiseasePoison.d.ts +59 -0
  165. package/lib/types/_DiseasePoison.js +110 -0
  166. package/lib/types/_Enhancements.d.ts +170 -0
  167. package/lib/types/_Enhancements.js +80 -0
  168. package/lib/types/_Identifier.d.ts +170 -0
  169. package/lib/types/_Identifier.js +325 -0
  170. package/lib/types/_IdentifierGroup.d.ts +413 -0
  171. package/lib/types/_IdentifierGroup.js +333 -0
  172. package/lib/types/_ImprovementCost.d.ts +7 -0
  173. package/lib/types/_ImprovementCost.js +10 -0
  174. package/lib/types/_MathExpression.d.ts +12 -0
  175. package/lib/types/_MathExpression.js +36 -0
  176. package/lib/types/_Prerequisite.d.ts +421 -0
  177. package/lib/types/_Prerequisite.js +163 -0
  178. package/lib/types/_ResponsiveText.d.ts +13 -0
  179. package/lib/types/_ResponsiveText.js +43 -0
  180. package/lib/types/_Sex.d.ts +5 -0
  181. package/lib/types/_Sex.js +8 -0
  182. package/lib/types/_SizeCategory.d.ts +15 -0
  183. package/lib/types/_SizeCategory.js +24 -0
  184. package/lib/types/_SkillCheck.d.ts +11 -0
  185. package/lib/types/_SkillCheck.js +23 -0
  186. package/lib/types/_Spellwork.d.ts +17 -0
  187. package/lib/types/_Spellwork.js +39 -0
  188. package/lib/types/equipment/EquipmentPackage.d.ts +85 -0
  189. package/lib/types/equipment/EquipmentPackage.js +41 -0
  190. package/lib/types/equipment/item/Ammunition.d.ts +72 -0
  191. package/lib/types/equipment/item/Ammunition.js +44 -0
  192. package/lib/types/equipment/item/Animal.d.ts +72 -0
  193. package/lib/types/equipment/item/Animal.js +22 -0
  194. package/lib/types/equipment/item/AnimalCare.d.ts +87 -0
  195. package/lib/types/equipment/item/AnimalCare.js +58 -0
  196. package/lib/types/equipment/item/Armor.d.ts +166 -0
  197. package/lib/types/equipment/item/Armor.js +181 -0
  198. package/lib/types/equipment/item/BandageOrRemedy.d.ts +201 -0
  199. package/lib/types/equipment/item/BandageOrRemedy.js +48 -0
  200. package/lib/types/equipment/item/Book.d.ts +169 -0
  201. package/lib/types/equipment/item/Book.js +271 -0
  202. package/lib/types/equipment/item/CeremonialItem.d.ts +202 -0
  203. package/lib/types/equipment/item/CeremonialItem.js +53 -0
  204. package/lib/types/equipment/item/Clothes.d.ts +201 -0
  205. package/lib/types/equipment/item/Clothes.js +48 -0
  206. package/lib/types/equipment/item/ClothingPackage.d.ts +63 -0
  207. package/lib/types/equipment/item/ClothingPackage.js +21 -0
  208. package/lib/types/equipment/item/Container.d.ts +201 -0
  209. package/lib/types/equipment/item/Container.js +48 -0
  210. package/lib/types/equipment/item/Elixir.d.ts +119 -0
  211. package/lib/types/equipment/item/Elixir.js +110 -0
  212. package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +215 -0
  213. package/lib/types/equipment/item/EquipmentOfBlessedOnes.js +44 -0
  214. package/lib/types/equipment/item/GemOrPreciousStone.d.ts +74 -0
  215. package/lib/types/equipment/item/GemOrPreciousStone.js +52 -0
  216. package/lib/types/equipment/item/IlluminationLightSource.d.ts +210 -0
  217. package/lib/types/equipment/item/IlluminationLightSource.js +78 -0
  218. package/lib/types/equipment/item/IlluminationRefillOrSupply.d.ts +201 -0
  219. package/lib/types/equipment/item/IlluminationRefillOrSupply.js +48 -0
  220. package/lib/types/equipment/item/Jewelry.d.ts +74 -0
  221. package/lib/types/equipment/item/Jewelry.js +46 -0
  222. package/lib/types/equipment/item/Laboratory.d.ts +81 -0
  223. package/lib/types/equipment/item/Laboratory.js +34 -0
  224. package/lib/types/equipment/item/Liebesspielzeug.d.ts +201 -0
  225. package/lib/types/equipment/item/Liebesspielzeug.js +48 -0
  226. package/lib/types/equipment/item/LuxuryGood.d.ts +201 -0
  227. package/lib/types/equipment/item/LuxuryGood.js +48 -0
  228. package/lib/types/equipment/item/MagicalArtifact.d.ts +204 -0
  229. package/lib/types/equipment/item/MagicalArtifact.js +82 -0
  230. package/lib/types/equipment/item/MusicalInstrument.d.ts +201 -0
  231. package/lib/types/equipment/item/MusicalInstrument.js +48 -0
  232. package/lib/types/equipment/item/Newspaper.d.ts +67 -0
  233. package/lib/types/equipment/item/Newspaper.js +36 -0
  234. package/lib/types/equipment/item/OrienteeringAid.d.ts +200 -0
  235. package/lib/types/equipment/item/OrienteeringAid.js +2 -0
  236. package/lib/types/equipment/item/Poison.d.ts +621 -0
  237. package/lib/types/equipment/item/Poison.js +486 -0
  238. package/lib/types/equipment/item/RopeOrChain.d.ts +200 -0
  239. package/lib/types/equipment/item/RopeOrChain.js +2 -0
  240. package/lib/types/equipment/item/Stationery.d.ts +200 -0
  241. package/lib/types/equipment/item/Stationery.js +2 -0
  242. package/lib/types/equipment/item/ThievesTool.d.ts +200 -0
  243. package/lib/types/equipment/item/ThievesTool.js +2 -0
  244. package/lib/types/equipment/item/ToolOfTheTrade.d.ts +83 -0
  245. package/lib/types/equipment/item/ToolOfTheTrade.js +34 -0
  246. package/lib/types/equipment/item/TravelGearOrTool.d.ts +201 -0
  247. package/lib/types/equipment/item/TravelGearOrTool.js +48 -0
  248. package/lib/types/equipment/item/Vehicle.d.ts +80 -0
  249. package/lib/types/equipment/item/Vehicle.js +30 -0
  250. package/lib/types/equipment/item/Weapon.d.ts +225 -0
  251. package/lib/types/equipment/item/Weapon.js +132 -0
  252. package/lib/types/equipment/item/WeaponAccessory.d.ts +201 -0
  253. package/lib/types/equipment/item/WeaponAccessory.js +48 -0
  254. package/lib/types/equipment/item/WorkingSupernaturalCreature.d.ts +72 -0
  255. package/lib/types/equipment/item/WorkingSupernaturalCreature.js +44 -0
  256. package/lib/types/equipment/item/_Herbary.d.ts +76 -0
  257. package/lib/types/equipment/item/_Herbary.js +48 -0
  258. package/lib/types/equipment/item/_Item.d.ts +414 -0
  259. package/lib/types/equipment/item/_Item.js +254 -0
  260. package/lib/types/equipment/item/_MeleeWeapon.d.ts +62 -0
  261. package/lib/types/equipment/item/_MeleeWeapon.js +100 -0
  262. package/lib/types/equipment/item/_RangedWeapon.d.ts +38 -0
  263. package/lib/types/equipment/item/_RangedWeapon.js +93 -0
  264. package/lib/types/equipment/item/_Weapon.d.ts +25 -0
  265. package/lib/types/equipment/item/_Weapon.js +77 -0
  266. package/lib/types/equipment/item/sub/ArmorType.d.ts +7 -0
  267. package/lib/types/equipment/item/sub/ArmorType.js +25 -0
  268. package/lib/types/equipment/item/sub/Reach.d.ts +7 -0
  269. package/lib/types/equipment/item/sub/Reach.js +28 -0
  270. package/lib/types/index.d.ts +160 -0
  271. package/lib/types/index.js +160 -0
  272. package/lib/types/magicalActions/AnimistPower.d.ts +302 -0
  273. package/lib/types/magicalActions/AnimistPower.js +204 -0
  274. package/lib/types/magicalActions/AnimistPower_Tribe.d.ts +30 -0
  275. package/lib/types/magicalActions/AnimistPower_Tribe.js +26 -0
  276. package/lib/types/magicalActions/Bannzeichen.d.ts +244 -0
  277. package/lib/types/magicalActions/Bannzeichen.js +231 -0
  278. package/lib/types/magicalActions/Curse.d.ts +219 -0
  279. package/lib/types/magicalActions/Curse.js +133 -0
  280. package/lib/types/magicalActions/DominationRitual.d.ts +204 -0
  281. package/lib/types/magicalActions/DominationRitual.js +133 -0
  282. package/lib/types/magicalActions/ElvenMagicalSong.d.ts +126 -0
  283. package/lib/types/magicalActions/ElvenMagicalSong.js +117 -0
  284. package/lib/types/magicalActions/GeodeRitual.d.ts +227 -0
  285. package/lib/types/magicalActions/GeodeRitual.js +142 -0
  286. package/lib/types/magicalActions/GoblinRitual.d.ts +286 -0
  287. package/lib/types/magicalActions/GoblinRitual.js +196 -0
  288. package/lib/types/magicalActions/JesterTrick.d.ts +305 -0
  289. package/lib/types/magicalActions/JesterTrick.js +160 -0
  290. package/lib/types/magicalActions/MagicalDance.d.ts +129 -0
  291. package/lib/types/magicalActions/MagicalDance.js +119 -0
  292. package/lib/types/magicalActions/MagicalMelody.d.ts +133 -0
  293. package/lib/types/magicalActions/MagicalMelody.js +123 -0
  294. package/lib/types/magicalActions/MagicalRune.d.ts +279 -0
  295. package/lib/types/magicalActions/MagicalRune.js +292 -0
  296. package/lib/types/magicalActions/ZibiljaRitual.d.ts +420 -0
  297. package/lib/types/magicalActions/ZibiljaRitual.js +90 -0
  298. package/lib/types/magicalActions/_MusicTradition.d.ts +17 -0
  299. package/lib/types/magicalActions/_MusicTradition.js +43 -0
  300. package/lib/types/prerequisites/ConditionalPrerequisites.d.ts +42 -0
  301. package/lib/types/prerequisites/ConditionalPrerequisites.js +9 -0
  302. package/lib/types/prerequisites/DisplayOption.d.ts +13 -0
  303. package/lib/types/prerequisites/DisplayOption.js +27 -0
  304. package/lib/types/prerequisites/PrerequisiteGroups.d.ts +2053 -0
  305. package/lib/types/prerequisites/PrerequisiteGroups.js +180 -0
  306. package/lib/types/prerequisites/single/ActivatablePrerequisite.d.ts +133 -0
  307. package/lib/types/prerequisites/single/ActivatablePrerequisite.js +32 -0
  308. package/lib/types/prerequisites/single/AncestorBloodPrerequisite.d.ts +4 -0
  309. package/lib/types/prerequisites/single/AncestorBloodPrerequisite.js +4 -0
  310. package/lib/types/prerequisites/single/AnimistPowerPrerequisite.d.ts +18 -0
  311. package/lib/types/prerequisites/single/AnimistPowerPrerequisite.js +24 -0
  312. package/lib/types/prerequisites/single/CulturePrerequisite.d.ts +16 -0
  313. package/lib/types/prerequisites/single/CulturePrerequisite.js +16 -0
  314. package/lib/types/prerequisites/single/EnhancementPrerequisite.d.ts +4 -0
  315. package/lib/types/prerequisites/single/EnhancementPrerequisite.js +12 -0
  316. package/lib/types/prerequisites/single/InfluencePrerequisite.d.ts +17 -0
  317. package/lib/types/prerequisites/single/InfluencePrerequisite.js +19 -0
  318. package/lib/types/prerequisites/single/PactPrerequisite.d.ts +18 -0
  319. package/lib/types/prerequisites/single/PactPrerequisite.js +24 -0
  320. package/lib/types/prerequisites/single/PersonalityTraitPrerequisite.d.ts +17 -0
  321. package/lib/types/prerequisites/single/PersonalityTraitPrerequisite.js +19 -0
  322. package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.d.ts +20 -0
  323. package/lib/types/prerequisites/single/PrimaryAttributePrerequisite.js +25 -0
  324. package/lib/types/prerequisites/single/ProfessionPrerequisite.d.ts +16 -0
  325. package/lib/types/prerequisites/single/ProfessionPrerequisite.js +16 -0
  326. package/lib/types/prerequisites/single/PublicationPrerequisite.d.ts +16 -0
  327. package/lib/types/prerequisites/single/PublicationPrerequisite.js +15 -0
  328. package/lib/types/prerequisites/single/RacePrerequisite.d.ts +17 -0
  329. package/lib/types/prerequisites/single/RacePrerequisite.js +19 -0
  330. package/lib/types/prerequisites/single/RatedMinimumNumberPrerequisite.d.ts +51 -0
  331. package/lib/types/prerequisites/single/RatedMinimumNumberPrerequisite.js +82 -0
  332. package/lib/types/prerequisites/single/RatedPrerequisite.d.ts +26 -0
  333. package/lib/types/prerequisites/single/RatedPrerequisite.js +19 -0
  334. package/lib/types/prerequisites/single/RatedSumPrerequisite.d.ts +17 -0
  335. package/lib/types/prerequisites/single/RatedSumPrerequisite.js +19 -0
  336. package/lib/types/prerequisites/single/RulePrerequisite.d.ts +19 -0
  337. package/lib/types/prerequisites/single/RulePrerequisite.js +15 -0
  338. package/lib/types/prerequisites/single/SexPrerequisite.d.ts +19 -0
  339. package/lib/types/prerequisites/single/SexPrerequisite.js +15 -0
  340. package/lib/types/prerequisites/single/SexualCharacteristicPrerequisite.d.ts +7 -0
  341. package/lib/types/prerequisites/single/SexualCharacteristicPrerequisite.js +17 -0
  342. package/lib/types/prerequisites/single/SocialStatusPrerequisite.d.ts +16 -0
  343. package/lib/types/prerequisites/single/SocialStatusPrerequisite.js +16 -0
  344. package/lib/types/prerequisites/single/StatePrerequisite.d.ts +16 -0
  345. package/lib/types/prerequisites/single/StatePrerequisite.js +15 -0
  346. package/lib/types/prerequisites/single/TextPrerequisite.d.ts +19 -0
  347. package/lib/types/prerequisites/single/TextPrerequisite.js +53 -0
  348. package/lib/types/prerequisites/single/TraditionPrerequisite.d.ts +37 -0
  349. package/lib/types/prerequisites/single/TraditionPrerequisite.js +42 -0
  350. package/lib/types/rule/AlternativeRule.d.ts +54 -0
  351. package/lib/types/rule/AlternativeRule.js +40 -0
  352. package/lib/types/rule/AlternativeRule_PlayerType.d.ts +6 -0
  353. package/lib/types/rule/AlternativeRule_PlayerType.js +16 -0
  354. package/lib/types/rule/CoreRule.d.ts +143 -0
  355. package/lib/types/rule/CoreRule.js +181 -0
  356. package/lib/types/rule/FocusRule.d.ts +79 -0
  357. package/lib/types/rule/FocusRule.js +48 -0
  358. package/lib/types/rule/FocusRule_Subject.d.ts +6 -0
  359. package/lib/types/rule/FocusRule_Subject.js +22 -0
  360. package/lib/types/rule/OptionalRule.d.ts +83 -0
  361. package/lib/types/rule/OptionalRule.js +59 -0
  362. package/lib/types/source/Publication.d.ts +50 -0
  363. package/lib/types/source/Publication.js +64 -0
  364. package/lib/types/source/_Erratum.d.ts +12 -0
  365. package/lib/types/source/_Erratum.js +22 -0
  366. package/lib/types/source/_PublicationRef.d.ts +168 -0
  367. package/lib/types/source/_PublicationRef.js +164 -0
  368. package/lib/types/specialAbility/AdvancedCombatSpecialAbility.d.ts +1234 -0
  369. package/lib/types/specialAbility/AdvancedCombatSpecialAbility.js +52 -0
  370. package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.d.ts +1116 -0
  371. package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.js +47 -0
  372. package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.d.ts +1116 -0
  373. package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.js +47 -0
  374. package/lib/types/specialAbility/AdvancedSkillSpecialAbility.d.ts +1116 -0
  375. package/lib/types/specialAbility/AdvancedSkillSpecialAbility.js +47 -0
  376. package/lib/types/specialAbility/AncestorGlyph.d.ts +1063 -0
  377. package/lib/types/specialAbility/AncestorGlyph.js +48 -0
  378. package/lib/types/specialAbility/BlessedTradition.d.ts +1141 -0
  379. package/lib/types/specialAbility/BlessedTradition.js +147 -0
  380. package/lib/types/specialAbility/BrawlingSpecialAbility.d.ts +1127 -0
  381. package/lib/types/specialAbility/BrawlingSpecialAbility.js +46 -0
  382. package/lib/types/specialAbility/CeremonialItemSpecialAbility.d.ts +1117 -0
  383. package/lib/types/specialAbility/CeremonialItemSpecialAbility.js +53 -0
  384. package/lib/types/specialAbility/CombatSpecialAbility.d.ts +1235 -0
  385. package/lib/types/specialAbility/CombatSpecialAbility.js +52 -0
  386. package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +1286 -0
  387. package/lib/types/specialAbility/CombatStyleSpecialAbility.js +54 -0
  388. package/lib/types/specialAbility/CommandSpecialAbility.d.ts +1127 -0
  389. package/lib/types/specialAbility/CommandSpecialAbility.js +46 -0
  390. package/lib/types/specialAbility/FamiliarSpecialAbility.d.ts +1062 -0
  391. package/lib/types/specialAbility/FamiliarSpecialAbility.js +43 -0
  392. package/lib/types/specialAbility/FatePointSexSpecialAbility.d.ts +1062 -0
  393. package/lib/types/specialAbility/FatePointSexSpecialAbility.js +43 -0
  394. package/lib/types/specialAbility/FatePointSpecialAbility.d.ts +1116 -0
  395. package/lib/types/specialAbility/FatePointSpecialAbility.js +46 -0
  396. package/lib/types/specialAbility/GeneralSpecialAbility.d.ts +1117 -0
  397. package/lib/types/specialAbility/GeneralSpecialAbility.js +47 -0
  398. package/lib/types/specialAbility/KarmaSpecialAbility.d.ts +1062 -0
  399. package/lib/types/specialAbility/KarmaSpecialAbility.js +43 -0
  400. package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +1165 -0
  401. package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.js +49 -0
  402. package/lib/types/specialAbility/LycantropicGift.d.ts +1062 -0
  403. package/lib/types/specialAbility/LycantropicGift.js +43 -0
  404. package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +1165 -0
  405. package/lib/types/specialAbility/MagicStyleSpecialAbility.js +49 -0
  406. package/lib/types/specialAbility/MagicalSign.d.ts +127 -0
  407. package/lib/types/specialAbility/MagicalSign.js +66 -0
  408. package/lib/types/specialAbility/MagicalSpecialAbility.d.ts +1117 -0
  409. package/lib/types/specialAbility/MagicalSpecialAbility.js +47 -0
  410. package/lib/types/specialAbility/MagicalTradition.d.ts +1138 -0
  411. package/lib/types/specialAbility/MagicalTradition.js +115 -0
  412. package/lib/types/specialAbility/PactGift.d.ts +1143 -0
  413. package/lib/types/specialAbility/PactGift.js +76 -0
  414. package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.d.ts +1064 -0
  415. package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.js +54 -0
  416. package/lib/types/specialAbility/Sermon.d.ts +1062 -0
  417. package/lib/types/specialAbility/Sermon.js +43 -0
  418. package/lib/types/specialAbility/SexSpecialAbility.d.ts +1116 -0
  419. package/lib/types/specialAbility/SexSpecialAbility.js +46 -0
  420. package/lib/types/specialAbility/SikaryanDrainSpecialAbility.d.ts +1062 -0
  421. package/lib/types/specialAbility/SikaryanDrainSpecialAbility.js +43 -0
  422. package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +1111 -0
  423. package/lib/types/specialAbility/SkillStyleSpecialAbility.js +46 -0
  424. package/lib/types/specialAbility/VampiricGift.d.ts +1062 -0
  425. package/lib/types/specialAbility/VampiricGift.js +43 -0
  426. package/lib/types/specialAbility/Vision.d.ts +1062 -0
  427. package/lib/types/specialAbility/Vision.js +43 -0
  428. package/lib/types/specialAbility/_Tradition.d.ts +5 -0
  429. package/lib/types/specialAbility/_Tradition.js +14 -0
  430. package/lib/types/specialAbility/sub/Language.d.ts +108 -0
  431. package/lib/types/specialAbility/sub/Language.js +98 -0
  432. package/lib/types/specialAbility/sub/Script.d.ts +62 -0
  433. package/lib/types/specialAbility/sub/Script.js +50 -0
  434. package/lib/types/specialAbility/sub/TradeSecret.d.ts +972 -0
  435. package/lib/types/specialAbility/sub/TradeSecret.js +76 -0
  436. package/lib/types/specialAbility/sub/_LanguageScript.d.ts +5 -0
  437. package/lib/types/specialAbility/sub/_LanguageScript.js +15 -0
  438. package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.d.ts +1282 -0
  439. package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.js +50 -0
  440. package/lib/types/traditionArtifacts/AttireEnchantment.d.ts +1282 -0
  441. package/lib/types/traditionArtifacts/AttireEnchantment.js +50 -0
  442. package/lib/types/traditionArtifacts/Beutelzauber.d.ts +1282 -0
  443. package/lib/types/traditionArtifacts/Beutelzauber.js +50 -0
  444. package/lib/types/traditionArtifacts/BowlEnchantment.d.ts +1282 -0
  445. package/lib/types/traditionArtifacts/BowlEnchantment.js +50 -0
  446. package/lib/types/traditionArtifacts/CauldronEnchantment.d.ts +1283 -0
  447. package/lib/types/traditionArtifacts/CauldronEnchantment.js +55 -0
  448. package/lib/types/traditionArtifacts/ChronicleEnchantment.d.ts +1282 -0
  449. package/lib/types/traditionArtifacts/ChronicleEnchantment.js +50 -0
  450. package/lib/types/traditionArtifacts/DaggerRitual.d.ts +1294 -0
  451. package/lib/types/traditionArtifacts/DaggerRitual.js +85 -0
  452. package/lib/types/traditionArtifacts/FoolsHatEnchantment.d.ts +1282 -0
  453. package/lib/types/traditionArtifacts/FoolsHatEnchantment.js +52 -0
  454. package/lib/types/traditionArtifacts/Haubenzauber.d.ts +1282 -0
  455. package/lib/types/traditionArtifacts/Haubenzauber.js +50 -0
  456. package/lib/types/traditionArtifacts/InstrumentEnchantment.d.ts +1282 -0
  457. package/lib/types/traditionArtifacts/InstrumentEnchantment.js +50 -0
  458. package/lib/types/traditionArtifacts/Krallenkettenzauber.d.ts +1282 -0
  459. package/lib/types/traditionArtifacts/Krallenkettenzauber.js +50 -0
  460. package/lib/types/traditionArtifacts/Kristallkugelzauber.d.ts +1282 -0
  461. package/lib/types/traditionArtifacts/Kristallkugelzauber.js +50 -0
  462. package/lib/types/traditionArtifacts/OrbEnchantment.d.ts +1282 -0
  463. package/lib/types/traditionArtifacts/OrbEnchantment.js +50 -0
  464. package/lib/types/traditionArtifacts/RingEnchantment.d.ts +1282 -0
  465. package/lib/types/traditionArtifacts/RingEnchantment.js +50 -0
  466. package/lib/types/traditionArtifacts/SickleRitual.d.ts +1282 -0
  467. package/lib/types/traditionArtifacts/SickleRitual.js +50 -0
  468. package/lib/types/traditionArtifacts/SpellSwordEnchantment.d.ts +1282 -0
  469. package/lib/types/traditionArtifacts/SpellSwordEnchantment.js +50 -0
  470. package/lib/types/traditionArtifacts/StaffEnchantment.d.ts +1286 -0
  471. package/lib/types/traditionArtifacts/StaffEnchantment.js +55 -0
  472. package/lib/types/traditionArtifacts/ToyEnchantment.d.ts +1282 -0
  473. package/lib/types/traditionArtifacts/ToyEnchantment.js +50 -0
  474. package/lib/types/traditionArtifacts/Trinkhornzauber.d.ts +1282 -0
  475. package/lib/types/traditionArtifacts/Trinkhornzauber.js +50 -0
  476. package/lib/types/traditionArtifacts/WandEnchantment.d.ts +1231 -0
  477. package/lib/types/traditionArtifacts/WandEnchantment.js +49 -0
  478. package/lib/types/traditionArtifacts/WeaponEnchantment.d.ts +1282 -0
  479. package/lib/types/traditionArtifacts/WeaponEnchantment.js +50 -0
  480. package/lib/types/traditionArtifacts/sub/AnimalShape.d.ts +8 -0
  481. package/lib/types/traditionArtifacts/sub/AnimalShape.js +24 -0
  482. package/lib/types/traditionArtifacts/sub/AnimalShapePath.d.ts +6 -0
  483. package/lib/types/traditionArtifacts/sub/AnimalShapePath.js +15 -0
  484. package/lib/types/traditionArtifacts/sub/AnimalShapeSize.d.ts +8 -0
  485. package/lib/types/traditionArtifacts/sub/AnimalShapeSize.js +23 -0
  486. package/lib/types/traditionArtifacts/sub/Brew.d.ts +6 -0
  487. package/lib/types/traditionArtifacts/sub/Brew.js +15 -0
  488. package/package.json +61 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1789 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
+
5
+ ## [0.42.1](https://github.com/elyukai/optolith-database-schema/compare/v0.42.0...v0.42.1) (2026-03-31)
6
+
7
+
8
+ ### Features
9
+
10
+ * add Bannzeichen entity ([2dd0be7](https://github.com/elyukai/optolith-database-schema/commit/2dd0be71977a447248c6916c89d624d4290601e1)), closes [#135](https://github.com/elyukai/optolith-database-schema/issues/135) [#133](https://github.com/elyukai/optolith-database-schema/issues/133)
11
+ * add goblin rituals entity ([78dcb9a](https://github.com/elyukai/optolith-database-schema/commit/78dcb9a737ca7c76370942168163b6b9ca3971ce)), closes [#132](https://github.com/elyukai/optolith-database-schema/issues/132) [#131](https://github.com/elyukai/optolith-database-schema/issues/131)
12
+
13
+ ## [0.42.0](https://github.com/elyukai/optolith-database-schema/compare/v0.41.0...v0.42.0) (2026-03-23)
14
+
15
+
16
+ ### ⚠ BREAKING CHANGES
17
+
18
+ * adjust translations for 0.41.0 schema changes
19
+ * do not confuse rules tab with rules term in entry texts
20
+ * require hair and eye color specifications
21
+
22
+ ### Features
23
+
24
+ * add familiars trick magical tradition restriction ([5c8a164](https://github.com/elyukai/optolith-database-schema/commit/5c8a164428d3e2a706bf07f106e1c7aecc8cb1af)), closes [#126](https://github.com/elyukai/optolith-database-schema/issues/126) [#106](https://github.com/elyukai/optolith-database-schema/issues/106)
25
+ * adjust translations for 0.41.0 schema changes ([849fca4](https://github.com/elyukai/optolith-database-schema/commit/849fca45dbfcd48e8fa99a30ee375d37738c55f3))
26
+ * do not confuse rules tab with rules term in entry texts ([7d8bcd8](https://github.com/elyukai/optolith-database-schema/commit/7d8bcd89baebcea6db20c442cb26aa48ea9268cc))
27
+ * hair color label and hair color count ([750ddb1](https://github.com/elyukai/optolith-database-schema/commit/750ddb154824ab1e2de557084655297aa19e86fd)), closes [#116](https://github.com/elyukai/optolith-database-schema/issues/116)
28
+ * require hair and eye color specifications ([99466ed](https://github.com/elyukai/optolith-database-schema/commit/99466ed0eec6676c0a8a0259bfc7480988284f41))
29
+ * skill rating as check-result-based base value ([bd931ff](https://github.com/elyukai/optolith-database-schema/commit/bd931ffcb671e7b34a79d8d3f6b11da586a21859)), closes [#125](https://github.com/elyukai/optolith-database-schema/issues/125)
30
+
31
+ ## [0.41.0](https://github.com/elyukai/optolith-database-schema/compare/v0.40.0...v0.41.0) (2026-03-21)
32
+
33
+
34
+ ### ⚠ BREAKING CHANGES
35
+
36
+ * allow activatable prerequisites for geode rituals
37
+ * childhood and magical disease flags
38
+ * attribute adjustments can vary by race variant
39
+ * optional ceremonial item structure points
40
+ * allow enhancements as profession special abilities
41
+ * allow weapons as ammunition
42
+ * multiple weapon reaches
43
+ * reach position
44
+ * derived characteristic type
45
+ * id-connected race base values
46
+ * atomic talisman activation values
47
+ * plain quality level effect
48
+ * animal poison can have a complexity
49
+ * unify poison times as expression
50
+
51
+ * id-connected race base values ([ee11a36](https://github.com/elyukai/optolith-database-schema/commit/ee11a3605159dfff9a1ba12fabe5cb11523bbf91))
52
+ * unify poison times as expression ([03f33ce](https://github.com/elyukai/optolith-database-schema/commit/03f33ce36d127c080a932be013428a0f6247aaf1))
53
+
54
+
55
+ ### Features
56
+
57
+ * allow activatable prerequisites for geode rituals ([937eeb9](https://github.com/elyukai/optolith-database-schema/commit/937eeb94e0c110acf7959ee07b9a7bbd48bb3938)), closes [#124](https://github.com/elyukai/optolith-database-schema/issues/124)
58
+ * allow enhancements as profession special abilities ([47cdc55](https://github.com/elyukai/optolith-database-schema/commit/47cdc55aa0eb0b312a6528e020fc4069e02c70bd)), closes [#114](https://github.com/elyukai/optolith-database-schema/issues/114)
59
+ * allow weapons as ammunition ([d36c4b8](https://github.com/elyukai/optolith-database-schema/commit/d36c4b8334e72ce680ec50b8d5ac4272302286cc)), closes [#90](https://github.com/elyukai/optolith-database-schema/issues/90)
60
+ * animal poison can have a complexity ([eafeb5d](https://github.com/elyukai/optolith-database-schema/commit/eafeb5de3648d6d9181e5e772dbfcab121c3f0ea)), closes [#48](https://github.com/elyukai/optolith-database-schema/issues/48)
61
+ * atomic talisman activation values ([0375cd5](https://github.com/elyukai/optolith-database-schema/commit/0375cd5d2ae3812218bd753a98fa9a0f34f9cd8b))
62
+ * attribute adjustments can vary by race variant ([ed6cec9](https://github.com/elyukai/optolith-database-schema/commit/ed6cec999785f6f516478d03a34900e6f173abe8)), closes [#117](https://github.com/elyukai/optolith-database-schema/issues/117)
63
+ * childhood and magical disease flags ([d4008b3](https://github.com/elyukai/optolith-database-schema/commit/d4008b3fcf60ae0da3fb317721eac3c0d7703a2a)), closes [#122](https://github.com/elyukai/optolith-database-schema/issues/122)
64
+ * derived characteristic type ([9a5ae50](https://github.com/elyukai/optolith-database-schema/commit/9a5ae5028092a6226443f3836e26941d32516307))
65
+ * magical melody cost interval ([c3087b4](https://github.com/elyukai/optolith-database-schema/commit/c3087b456bbe57a7a8efc95700bf0a692241c8ad)), closes [#123](https://github.com/elyukai/optolith-database-schema/issues/123)
66
+ * multiple weapon reaches ([00966f9](https://github.com/elyukai/optolith-database-schema/commit/00966f9186a1298ac575c8fdef4cab7e60b22658)), closes [#89](https://github.com/elyukai/optolith-database-schema/issues/89)
67
+ * optional ceremonial item structure points ([b172b9f](https://github.com/elyukai/optolith-database-schema/commit/b172b9f3313e59f08bb0d2cdf07b917ea13b5472)), closes [#115](https://github.com/elyukai/optolith-database-schema/issues/115)
68
+ * plain quality level effect ([30db26f](https://github.com/elyukai/optolith-database-schema/commit/30db26fc6bc5eb742d6d87847d91fec85c235954)), closes [#56](https://github.com/elyukai/optolith-database-schema/issues/56)
69
+ * reach position ([962950d](https://github.com/elyukai/optolith-database-schema/commit/962950d4c58b8caad89d617f789c221fdae7c202))
70
+ * specific skills for profession skill options ([4f5ed76](https://github.com/elyukai/optolith-database-schema/commit/4f5ed7679f94acb67e7bb845114a46a2d82a3136)), closes [#97](https://github.com/elyukai/optolith-database-schema/issues/97)
71
+
72
+ ## [0.40.0](https://github.com/elyukai/optolith-database-schema/compare/v0.39.0...v0.40.0) (2026-03-15)
73
+
74
+
75
+ ### ⚠ BREAKING CHANGES
76
+
77
+ * translations for style and advanced special abilities
78
+
79
+ ### Features
80
+
81
+ * translations for style and advanced special abilities ([7712c1b](https://github.com/elyukai/optolith-database-schema/commit/7712c1b9bd49a3cd934a03d3018972d6376c686a))
82
+
83
+ ## [0.39.0](https://github.com/elyukai/optolith-database-schema/compare/v0.38.0...v0.39.0) (2026-03-14)
84
+
85
+
86
+ ### ⚠ BREAKING CHANGES
87
+
88
+ * more translations for equipment and professions
89
+
90
+ ### Features
91
+
92
+ * more translations for equipment and professions ([960f1a9](https://github.com/elyukai/optolith-database-schema/commit/960f1a9a363593b8b16b0258f86338a546e0c674))
93
+
94
+ ## [0.38.0](https://github.com/elyukai/optolith-database-schema/compare/v0.37.0...v0.38.0) (2026-03-14)
95
+
96
+
97
+ ### ⚠ BREAKING CHANGES
98
+
99
+ * reconstruction and references can differ per edition
100
+
101
+ ### Features
102
+
103
+ * display names for new skill applications and uses ([e3eaca0](https://github.com/elyukai/optolith-database-schema/commit/e3eaca0c25f6597bed456f6ae2edd0ff4afd2dae))
104
+ * reconstruction and references can differ per edition ([8774da6](https://github.com/elyukai/optolith-database-schema/commit/8774da6c72786333b09235ee712d0864778dbbfe))
105
+
106
+ ## [0.37.0](https://github.com/elyukai/optolith-database-schema/compare/v0.36.1...v0.37.0) (2026-03-14)
107
+
108
+
109
+ ### ⚠ BREAKING CHANGES
110
+
111
+ * more detailed book rules and meta data
112
+
113
+ ### Features
114
+
115
+ * more detailed book rules and meta data ([04b3a74](https://github.com/elyukai/optolith-database-schema/commit/04b3a7451e8ccc629b670da95b178f115085363b))
116
+
117
+ ## [0.36.1](https://github.com/elyukai/optolith-database-schema/compare/v0.36.0...v0.36.1) (2026-03-13)
118
+
119
+
120
+ ### Features
121
+
122
+ * cost map style ([127cc6c](https://github.com/elyukai/optolith-database-schema/commit/127cc6cc48ea1c77ab4e31eb424ddc92c2cb248e))
123
+
124
+ ## [0.36.0](https://github.com/elyukai/optolith-database-schema/compare/v0.35.0...v0.36.0) (2026-03-13)
125
+
126
+
127
+ ### ⚠ BREAKING CHANGES
128
+
129
+ * style for time units
130
+
131
+ ### Features
132
+
133
+ * style for time units ([5f5785d](https://github.com/elyukai/optolith-database-schema/commit/5f5785db79da544267d48f5787d5142517c30f1f))
134
+
135
+ ## [0.35.0](https://github.com/elyukai/optolith-database-schema/compare/v0.34.17...v0.35.0) (2026-03-13)
136
+
137
+
138
+ ### ⚠ BREAKING CHANGES
139
+
140
+ * only allow numeric cost for jewelry
141
+
142
+ ### Features
143
+
144
+ * only allow numeric cost for jewelry ([a83b27e](https://github.com/elyukai/optolith-database-schema/commit/a83b27e802efb026bbd2fc75ee70a41df2c56c36))
145
+
146
+ ## [0.34.17](https://github.com/elyukai/optolith-database-schema/compare/v0.34.16...v0.34.17) (2026-03-12)
147
+
148
+
149
+ ### Features
150
+
151
+ * add two translations ([4d3b548](https://github.com/elyukai/optolith-database-schema/commit/4d3b548c70f4bb12e0bb6178a0a0426be56c4b97))
152
+
153
+ ## [0.34.16](https://github.com/elyukai/optolith-database-schema/compare/v0.34.15...v0.34.16) (2026-03-12)
154
+
155
+
156
+ ### Features
157
+
158
+ * add translations for enhancements ([5c11a0f](https://github.com/elyukai/optolith-database-schema/commit/5c11a0f59cbbeb162d67b492be2a3481782535d7))
159
+
160
+ ## [0.34.15](https://github.com/elyukai/optolith-database-schema/compare/v0.34.14...v0.34.15) (2026-03-12)
161
+
162
+
163
+ ### Features
164
+
165
+ * add translations for recent additions ([8f59744](https://github.com/elyukai/optolith-database-schema/commit/8f59744409c12894525e18b880296cefc9e90aa1))
166
+
167
+ ## [0.34.14](https://github.com/elyukai/optolith-database-schema/compare/v0.34.13...v0.34.14) (2026-03-11)
168
+
169
+ ## [0.34.13](https://github.com/elyukai/optolith-database-schema/compare/v0.34.12...v0.34.13) (2026-03-11)
170
+
171
+
172
+ ### Features
173
+
174
+ * alchemical poison can be demonic as well ([21e033e](https://github.com/elyukai/optolith-database-schema/commit/21e033e0169c051baf5f3167e070adcde9da76b3))
175
+
176
+ ## [0.34.12](https://github.com/elyukai/optolith-database-schema/compare/v0.34.11...v0.34.12) (2026-03-10)
177
+
178
+
179
+ ### Features
180
+
181
+ * optional language and script for books ([3239e09](https://github.com/elyukai/optolith-database-schema/commit/3239e095392ff91811956ad8f9f022e057fa9763))
182
+
183
+ ## [0.34.11](https://github.com/elyukai/optolith-database-schema/compare/v0.34.10...v0.34.11) (2026-03-10)
184
+
185
+
186
+ ### Features
187
+
188
+ * working supernatural creature entity ([f8a174e](https://github.com/elyukai/optolith-database-schema/commit/f8a174efad6dc46e83efd9d6e33155de435e6569))
189
+
190
+ ## [0.34.10](https://github.com/elyukai/optolith-database-schema/compare/v0.34.9...v0.34.10) (2026-03-10)
191
+
192
+
193
+ ### Features
194
+
195
+ * poison cost depending on purchase or sale ([22e6dfd](https://github.com/elyukai/optolith-database-schema/commit/22e6dfda8b2e9425ab7b524fda0276ef549a685c))
196
+
197
+ ## [0.34.9](https://github.com/elyukai/optolith-database-schema/compare/v0.34.8...v0.34.9) (2026-03-09)
198
+
199
+
200
+ ### Features
201
+
202
+ * add circle of damnation as possible poison duration component ([d519e66](https://github.com/elyukai/optolith-database-schema/commit/d519e662b416a376824a1042bf0f11f7e9033017))
203
+
204
+ ## [0.34.8](https://github.com/elyukai/optolith-database-schema/compare/v0.34.7...v0.34.8) (2026-03-09)
205
+
206
+
207
+ ### Bug Fixes
208
+
209
+ * **cache:** handle added poison source type ([17d46f1](https://github.com/elyukai/optolith-database-schema/commit/17d46f17b45efe20e154e15a526a370e7b73a5c2))
210
+
211
+ ## [0.34.7](https://github.com/elyukai/optolith-database-schema/compare/v0.34.6...v0.34.7) (2026-03-09)
212
+
213
+
214
+ ### Features
215
+
216
+ * add alchemical pact gift poison source type and make cost optional ([c32cb59](https://github.com/elyukai/optolith-database-schema/commit/c32cb594aa0cb7802511adb7ed13327e51620999)), closes [#88](https://github.com/elyukai/optolith-database-schema/issues/88)
217
+
218
+ ## [0.34.6](https://github.com/elyukai/optolith-database-schema/compare/v0.34.5...v0.34.6) (2026-03-09)
219
+
220
+
221
+ ### Features
222
+
223
+ * general rules for influences ([f97e9dc](https://github.com/elyukai/optolith-database-schema/commit/f97e9dce22dcbb11a5f4ca593cbc751475fa8eef))
224
+
225
+ ## [0.34.5](https://github.com/elyukai/optolith-database-schema/compare/v0.34.4...v0.34.5) (2026-03-09)
226
+
227
+
228
+ ### Features
229
+
230
+ * support markdown in influence effect texts ([1e08553](https://github.com/elyukai/optolith-database-schema/commit/1e08553eae6216411abe4124b63a07684ffd485d))
231
+
232
+ ## [0.34.4](https://github.com/elyukai/optolith-database-schema/compare/v0.34.3...v0.34.4) (2026-03-09)
233
+
234
+
235
+ ### Features
236
+
237
+ * profession influence prerequisites ([c7f862b](https://github.com/elyukai/optolith-database-schema/commit/c7f862b4cb798a566eb82835d002f707cc739881))
238
+ * rule precondition ([7404637](https://github.com/elyukai/optolith-database-schema/commit/7404637f2982a9abd5c26a9b10c77e75deb848a2))
239
+
240
+ ## [0.34.3](https://github.com/elyukai/optolith-database-schema/compare/v0.34.2...v0.34.3) (2026-03-09)
241
+
242
+
243
+ ### Features
244
+
245
+ * add race and activatable influence prerequisites ([bc41f2e](https://github.com/elyukai/optolith-database-schema/commit/bc41f2e7d10ca24b83f3961fd644428c188696ab))
246
+
247
+ ## [0.34.2](https://github.com/elyukai/optolith-database-schema/compare/v0.34.1...v0.34.2) (2026-03-08)
248
+
249
+
250
+ ### Features
251
+
252
+ * make optional rule complexity influence optional ([fa4c6f8](https://github.com/elyukai/optolith-database-schema/commit/fa4c6f820bc5c48ddbceacee325c2d29b839069f))
253
+
254
+ ## [0.34.1](https://github.com/elyukai/optolith-database-schema/compare/v0.34.0...v0.34.1) (2026-03-08)
255
+
256
+ ## [0.34.0](https://github.com/elyukai/optolith-database-schema/compare/v0.33.0...v0.34.0) (2026-03-08)
257
+
258
+
259
+ ### ⚠ BREAKING CHANGES
260
+
261
+ * define attribute and skill group colors
262
+ * atomic specification of how an optional rule influences game complexity
263
+
264
+ ### Features
265
+
266
+ * atomic specification of how an optional rule influences game complexity ([b2f1c5d](https://github.com/elyukai/optolith-database-schema/commit/b2f1c5dfd64777cb083da4bb1964ad4a3e219e8b))
267
+ * define attribute and skill group colors ([8aedafb](https://github.com/elyukai/optolith-database-schema/commit/8aedafb8136439fa9a1011ea94ee2f301f0d6f64))
268
+
269
+ ## [0.33.0](https://github.com/elyukai/optolith-database-schema/compare/v0.32.0...v0.33.0) (2026-02-25)
270
+
271
+
272
+ ### ⚠ BREAKING CHANGES
273
+
274
+ * require blessed ones' name
275
+ * required skill group for free AP distribution on skills
276
+ * remove terrain knowledge profession option
277
+ * require experience level for profession packages
278
+ * remove subgroup option from common mundane professions
279
+ * culture languages can specify specializations
280
+
281
+ ### Features
282
+
283
+ * activatable name builder rules ([977f33c](https://github.com/elyukai/optolith-database-schema/commit/977f33c068d9a47f9b760fa50b53a33ede3688cb))
284
+ * add various translations ([7b28823](https://github.com/elyukai/optolith-database-schema/commit/7b2882322cd7b7a217c124a69bdf709e07cdd177))
285
+ * culture languages can specify specializations ([1c84c83](https://github.com/elyukai/optolith-database-schema/commit/1c84c830bc67eb9d41523c8b5ffe31fca8958d53))
286
+ * language specialization display name includes language ([badd4ae](https://github.com/elyukai/optolith-database-schema/commit/badd4aef9537786e54c002048f10b2e57bd26f1a))
287
+ * remove subgroup option from common mundane professions ([710d5be](https://github.com/elyukai/optolith-database-schema/commit/710d5be33d2dfa62c9a6a875a53f4fac07f50748))
288
+ * remove terrain knowledge profession option ([fa3be57](https://github.com/elyukai/optolith-database-schema/commit/fa3be570968d507cd825808b5f8c77d6b14af315))
289
+ * require blessed ones' name ([9fcb303](https://github.com/elyukai/optolith-database-schema/commit/9fcb303452ea8534e9f69eb1779afd9b52464d7d))
290
+ * require experience level for profession packages ([ab02370](https://github.com/elyukai/optolith-database-schema/commit/ab02370c90f685034cc43a16ea798ab47a2ba25b))
291
+ * required skill group for free AP distribution on skills ([6154058](https://github.com/elyukai/optolith-database-schema/commit/6154058d655dc5adf9c796a4e5590616bb17ffbf))
292
+
293
+ ## [0.32.0](https://github.com/elyukai/optolith-database-schema/compare/v0.31.4...v0.32.0) (2026-02-21)
294
+
295
+
296
+ ### ⚠ BREAKING CHANGES
297
+
298
+ * streamline types
299
+
300
+ * streamline types ([9fd01ec](https://github.com/elyukai/optolith-database-schema/commit/9fd01ec1f287b881548f91d562eea7efcfc2e50f))
301
+
302
+
303
+ ### Features
304
+
305
+ * add translations for magical actions ([db431e2](https://github.com/elyukai/optolith-database-schema/commit/db431e25cf45b732ea5ed4be9faca7b6e98617ca))
306
+
307
+ ## [0.31.4](https://github.com/elyukai/optolith-database-schema/compare/v0.31.3...v0.31.4) (2026-02-16)
308
+
309
+
310
+ ### Bug Fixes
311
+
312
+ * optional withdrawal prevention and disease link ([a9211ec](https://github.com/elyukai/optolith-database-schema/commit/a9211ec6b784538cc303cde312b59d8f72079775))
313
+
314
+ ## [0.31.3](https://github.com/elyukai/optolith-database-schema/compare/v0.31.2...v0.31.3) (2026-02-16)
315
+
316
+
317
+ ### Bug Fixes
318
+
319
+ * interpretation and display of poisons/elixirs ([30a6a3c](https://github.com/elyukai/optolith-database-schema/commit/30a6a3c4262e2920f9100605faee8c426cd37491))
320
+
321
+ ## [0.31.2](https://github.com/elyukai/optolith-database-schema/compare/v0.31.1...v0.31.2) (2026-02-15)
322
+
323
+
324
+ ### Features
325
+
326
+ * add translations for poisons, elixirs, sex practices, diseases and personality traits ([3561289](https://github.com/elyukai/optolith-database-schema/commit/3561289fc1283bcecde3065bee5850b166ba3270))
327
+
328
+
329
+ ### Bug Fixes
330
+
331
+ * incorrect comment ([c3a6124](https://github.com/elyukai/optolith-database-schema/commit/c3a61244cec93af6396f723ee972e7911f98c1fa))
332
+ * poison addition interpretation ([a24aeb6](https://github.com/elyukai/optolith-database-schema/commit/a24aeb6dd1cf170afe0d7de1b23f5cdf0c11b5b3))
333
+
334
+ ## [0.31.1](https://github.com/elyukai/optolith-database-schema/compare/v0.31.0...v0.31.1) (2026-02-15)
335
+
336
+
337
+ ### Features
338
+
339
+ * add rest of translations for equipment ([fa4b7b5](https://github.com/elyukai/optolith-database-schema/commit/fa4b7b5e68491aa367e65f14ebf6afdf636da1da))
340
+
341
+ ## [0.31.0](https://github.com/elyukai/optolith-database-schema/compare/v0.30.1...v0.31.0) (2026-02-14)
342
+
343
+
344
+ ### ⚠ BREAKING CHANGES
345
+
346
+ * use correct entity names in identifier groups
347
+
348
+ ### Features
349
+
350
+ * add some translations for equipment ([3fa1060](https://github.com/elyukai/optolith-database-schema/commit/3fa10600c26c6c82cbbed08a8cca6114d6feeeee))
351
+ * locale measurement adjustments ([9040013](https://github.com/elyukai/optolith-database-schema/commit/9040013a844b33a707b7d0f8d804f24a2bfb1325))
352
+
353
+
354
+ ### Bug Fixes
355
+
356
+ * use correct entity names in identifier groups ([b46029d](https://github.com/elyukai/optolith-database-schema/commit/b46029da1e0520cbe99f3665a928868648e027ca))
357
+
358
+ ## [0.30.1](https://github.com/elyukai/optolith-database-schema/compare/v0.30.0...v0.30.1) (2026-02-13)
359
+
360
+
361
+ ### Features
362
+
363
+ * add translations for curricula ([7da65cf](https://github.com/elyukai/optolith-database-schema/commit/7da65cf3b8015be63dccf93137dfa4cc97ed1d24))
364
+
365
+ ## [0.30.0](https://github.com/elyukai/optolith-database-schema/compare/v0.29.1...v0.30.0) (2026-02-12)
366
+
367
+
368
+ ### ⚠ BREAKING CHANGES
369
+
370
+ * adjust for activatable display
371
+ * require focus rule subjects
372
+ * more advanced identifier options
373
+
374
+ ### Features
375
+
376
+ * add more translations ([b2a0d58](https://github.com/elyukai/optolith-database-schema/commit/b2a0d5820240fd3b89461c1742b894981c1acdbd))
377
+ * add optional derived characteristic description ([403d4bc](https://github.com/elyukai/optolith-database-schema/commit/403d4bc1e3768a78d4bc71778c80b29c3a13d91e))
378
+ * adjust for activatable display ([40c07ba](https://github.com/elyukai/optolith-database-schema/commit/40c07baa30361b7955f478b840717e06767054cb))
379
+ * more advanced identifier options ([e0ac1e3](https://github.com/elyukai/optolith-database-schema/commit/e0ac1e31e4c9d19f6dacff60a120c08311a165bf)), closes [#120](https://github.com/elyukai/optolith-database-schema/issues/120)
380
+ * require focus rule subjects ([78b69fb](https://github.com/elyukai/optolith-database-schema/commit/78b69fbe7063ba39301392382f8e8429284e7220))
381
+
382
+ ## [0.29.1](https://github.com/elyukai/optolith-database-schema/compare/v0.29.0...v0.29.1) (2026-02-09)
383
+
384
+
385
+ ### Features
386
+
387
+ * include all derived characteristic settings ([3c0469e](https://github.com/elyukai/optolith-database-schema/commit/3c0469e4148d8bd314e3c949a42a7e0ca593f87c))
388
+ * values and translations for derived characteristic base value calculation ([f55bb9f](https://github.com/elyukai/optolith-database-schema/commit/f55bb9f6c292b79c8d45d8b620f641b8bc2fc1e8))
389
+
390
+ ## [0.29.0](https://github.com/elyukai/optolith-database-schema/compare/v0.28.3...v0.29.0) (2026-02-09)
391
+
392
+
393
+ ### ⚠ BREAKING CHANGES
394
+
395
+ * adjust cache builder for current database
396
+
397
+ ### Features
398
+
399
+ * add some translation strings ([55d2273](https://github.com/elyukai/optolith-database-schema/commit/55d227322346b204720b9f3a4eb32c586d26c45e))
400
+ * adjust cache builder for current database ([9407cb5](https://github.com/elyukai/optolith-database-schema/commit/9407cb57670d8b50ba72cf5e856534447f249218))
401
+ * **cache:** export other relevant types ([0b80c3b](https://github.com/elyukai/optolith-database-schema/commit/0b80c3bf02d1037459d8a2f19280a29082893acc))
402
+
403
+ ## [0.28.3](https://github.com/elyukai/optolith-database-schema/compare/v0.28.2...v0.28.3) (2026-02-05)
404
+
405
+ ## [0.28.2](https://github.com/elyukai/optolith-database-schema/compare/v0.28.1...v0.28.2) (2026-02-05)
406
+
407
+
408
+ ### Features
409
+
410
+ * add optional isRemoved flag to initial source refs ([ae034e1](https://github.com/elyukai/optolith-database-schema/commit/ae034e1bd6ed3da3940ba0b3af0a162d45141168))
411
+ * nested entity maps should not be empty ([72a3384](https://github.com/elyukai/optolith-database-schema/commit/72a3384fdad7623bc211e23271dfb47b628e4d35))
412
+
413
+ ## [0.28.1](https://github.com/elyukai/optolith-database-schema/compare/v0.28.0...v0.28.1) (2026-02-05)
414
+
415
+
416
+ ### Bug Fixes
417
+
418
+ * empty target categories must be possible ([b7d449a](https://github.com/elyukai/optolith-database-schema/commit/b7d449a5f0a42b4b927c3c0bf4a07745222ba03f))
419
+ * require at least one target category ([b251679](https://github.com/elyukai/optolith-database-schema/commit/b2516791a1a2cf6725c6560bee3bf89c41fb0786))
420
+
421
+ ## [0.28.0](https://github.com/elyukai/optolith-database-schema/compare/v0.27.1...v0.28.0) (2026-02-01)
422
+
423
+
424
+ ### ⚠ BREAKING CHANGES
425
+
426
+ * remodel reversalis
427
+
428
+ ### Features
429
+
430
+ * remodel reversalis ([99d3bc4](https://github.com/elyukai/optolith-database-schema/commit/99d3bc425cac0693237860d0eedde790e60da0d3))
431
+
432
+ ## [0.27.1](https://github.com/elyukai/optolith-database-schema/compare/v0.27.0...v0.27.1) (2026-02-01)
433
+
434
+
435
+ ### Features
436
+
437
+ * add reversalis fields to spells and rituals ([73edb6c](https://github.com/elyukai/optolith-database-schema/commit/73edb6cb5dd4a209e20b8e68eb4503c0e7e48f64))
438
+
439
+ ## [0.27.0](https://github.com/elyukai/optolith-database-schema/compare/v0.26.5...v0.27.0) (2026-01-29)
440
+
441
+
442
+ ### ⚠ BREAKING CHANGES
443
+
444
+ * The position values need to be added. Also, the
445
+ "order" value for social statuses has been renamed to "position" to
446
+ align with other specially sorted entities.
447
+
448
+ ### Features
449
+
450
+ * allow deprecation as only source reference ([fb251d1](https://github.com/elyukai/optolith-database-schema/commit/fb251d1bb6e47b9ca6bbe97e37e124188e037816))
451
+ * allow options text with reference ([260f74d](https://github.com/elyukai/optolith-database-schema/commit/260f74dcd2de9d5c43c983a58060524a6581b119))
452
+ * automatic race disadvantages ([21b8fcc](https://github.com/elyukai/optolith-database-schema/commit/21b8fcc7d273109f1399027ceb56253bed7e0971)), closes [#113](https://github.com/elyukai/optolith-database-schema/issues/113)
453
+ * custom sort orders and position values ([aca931d](https://github.com/elyukai/optolith-database-schema/commit/aca931d66818f1e425a6283e846b4c5c10003b2b))
454
+ * talisman melee and ranged uses ([5a1fc2f](https://github.com/elyukai/optolith-database-schema/commit/5a1fc2f2f5dd35b1b426ab4b6f12852082863aaa)), closes [#60](https://github.com/elyukai/optolith-database-schema/issues/60)
455
+
456
+
457
+ ### Bug Fixes
458
+
459
+ * add type parameter name ([d42253c](https://github.com/elyukai/optolith-database-schema/commit/d42253c483b9e2291ba2bd58f3d879c66b1f2991))
460
+ * make unique constraint work with any damage ([8af0910](https://github.com/elyukai/optolith-database-schema/commit/8af09109ba1dd433973aca185f2566978ac89750))
461
+ * src comment and display name ([0a073b5](https://github.com/elyukai/optolith-database-schema/commit/0a073b5d6706a3a87f4ae5935651f28eaed0ad0b))
462
+ * talisman combat use nesting and constraint ([1f8823f](https://github.com/elyukai/optolith-database-schema/commit/1f8823fa5fc075ed60cabfb81276db58e47ecae0))
463
+
464
+ ## [0.26.5](https://github.com/elyukai/optolith-database-schema/compare/v0.26.4...v0.26.5) (2025-12-29)
465
+
466
+
467
+ ### Features
468
+
469
+ * add some display names ([6cb3f40](https://github.com/elyukai/optolith-database-schema/commit/6cb3f40f7e1cb43ec02fcb48030b72613d194701))
470
+
471
+
472
+ ### Bug Fixes
473
+
474
+ * duplicate cost map translation identifier ([6fad16b](https://github.com/elyukai/optolith-database-schema/commit/6fad16bf98ede7dc3f41ec6afb153eb2ad4b9d84))
475
+
476
+ ## [0.26.4](https://github.com/elyukai/optolith-database-schema/compare/v0.26.3...v0.26.4) (2025-12-29)
477
+
478
+
479
+ ### Features
480
+
481
+ * add object as skill check penalty ([f3ea105](https://github.com/elyukai/optolith-database-schema/commit/f3ea105280387cbfb70c988aecd4285fb9e91572)), closes [#101](https://github.com/elyukai/optolith-database-schema/issues/101)
482
+ * add race as requirable select option ([e3bd65f](https://github.com/elyukai/optolith-database-schema/commit/e3bd65f71194c136130265d5bff24d9fe71f3dcc)), closes [#99](https://github.com/elyukai/optolith-database-schema/issues/99)
483
+ * add rated option to enhancement prerequisite ([ae43d2a](https://github.com/elyukai/optolith-database-schema/commit/ae43d2ab12e9313260b96bac931a75e730d69423)), closes [#103](https://github.com/elyukai/optolith-database-schema/issues/103)
484
+ * add sustained skill cost map ([1fd987d](https://github.com/elyukai/optolith-database-schema/commit/1fd987de4fe3b0a5e72eaa49f95252c9cb7e6cdb)), closes [#102](https://github.com/elyukai/optolith-database-schema/issues/102)
485
+ * warding circle text is optional ([8a4903e](https://github.com/elyukai/optolith-database-schema/commit/8a4903ebdcd1e2e8c77a220cc272421913f42493)), closes [#105](https://github.com/elyukai/optolith-database-schema/issues/105)
486
+
487
+ ## [0.26.3](https://github.com/elyukai/optolith-database-schema/compare/v0.26.2...v0.26.3) (2025-12-28)
488
+
489
+
490
+ ### Features
491
+
492
+ * add spellworks as target category option ([13413e2](https://github.com/elyukai/optolith-database-schema/commit/13413e236f73832c7ef625f57778ccff483a7ecd)), closes [#100](https://github.com/elyukai/optolith-database-schema/issues/100)
493
+
494
+
495
+ ### Bug Fixes
496
+
497
+ * general select option display name ([498014a](https://github.com/elyukai/optolith-database-schema/commit/498014a55afecf91fa1bac6ada00a35402b0837a))
498
+
499
+ ## [0.26.2](https://github.com/elyukai/optolith-database-schema/compare/v0.26.1...v0.26.2) (2025-12-23)
500
+
501
+
502
+ ### Bug Fixes
503
+
504
+ * add homunculus type to schema ([59a6d41](https://github.com/elyukai/optolith-database-schema/commit/59a6d4119dc8a7ea5b76bdd79ddb6a856ad64897))
505
+
506
+ ## [0.26.1](https://github.com/elyukai/optolith-database-schema/compare/v0.26.0...v0.26.1) (2025-12-23)
507
+
508
+
509
+ ### Features
510
+
511
+ * add homunculus type entity ([4fb42d3](https://github.com/elyukai/optolith-database-schema/commit/4fb42d3f8497fa1b06a4e7ba2a0853ef5844fd8e))
512
+ * allow homunculus types as derived select options ([8062836](https://github.com/elyukai/optolith-database-schema/commit/8062836e9c2ebc290da58842b6acf17679451514))
513
+ * customize AP value string generation ([2dc62b5](https://github.com/elyukai/optolith-database-schema/commit/2dc62b5907a178e450b831b92b8e8788de832cd1))
514
+ * streamline trade secret select options ([8eaab37](https://github.com/elyukai/optolith-database-schema/commit/8eaab37e9b92f0dfca1bab67a5ebbb6dcf30003d))
515
+ * support binding cost generation for select options ([c8de5a7](https://github.com/elyukai/optolith-database-schema/commit/c8de5a74bd7e7277b4d141b5abd5e1e949634f5e))
516
+
517
+
518
+ ### Bug Fixes
519
+
520
+ * note on profession spells and liturgies ([fd52e85](https://github.com/elyukai/optolith-database-schema/commit/fd52e8525623cbc6b2dbcac5e7934c8c9206a99e)), closes [#98](https://github.com/elyukai/optolith-database-schema/issues/98)
521
+ * require binding cost map option translations ([b2c23c7](https://github.com/elyukai/optolith-database-schema/commit/b2c23c7099809ff96ba4b3ee9ad24fde710e05c2))
522
+
523
+ ## [0.26.0](https://github.com/elyukai/optolith-database-schema/compare/v0.25.0...v0.26.0) (2025-12-15)
524
+
525
+
526
+ ### ⚠ BREAKING CHANGES
527
+
528
+ * Combat techniques need to specify special rules
529
+ differently.
530
+
531
+ ### Features
532
+
533
+ * add profession liturgies for ap sum option ([a1316af](https://github.com/elyukai/optolith-database-schema/commit/a1316af0c1f8b85e79f5f393eed2c3bec5204645)), closes [#86](https://github.com/elyukai/optolith-database-schema/issues/86)
534
+ * custom constraint for weapon values ([02be29d](https://github.com/elyukai/optolith-database-schema/commit/02be29dab7bca40fb4c370c48a9f775ccf8aaf7d))
535
+
536
+ ## [0.25.0](https://github.com/elyukai/optolith-database-schema/compare/v0.24.3...v0.25.0) (2025-12-14)
537
+
538
+
539
+ ### ⚠ BREAKING CHANGES
540
+
541
+ * add unique constraints
542
+
543
+ ### Features
544
+
545
+ * add unique constraints ([8bacb48](https://github.com/elyukai/optolith-database-schema/commit/8bacb489d804d280801b38111d96732fb9a317fc))
546
+ * adjust display names of pact domains and types ([6086a6d](https://github.com/elyukai/optolith-database-schema/commit/6086a6d89160f7f09f9f6474cc240acd4d518f43))
547
+
548
+ ## [0.24.3](https://github.com/elyukai/optolith-database-schema/compare/v0.24.2...v0.24.3) (2025-12-09)
549
+
550
+
551
+ ### Features
552
+
553
+ * add raw value option to elixirs ([f14ecf0](https://github.com/elyukai/optolith-database-schema/commit/f14ecf01b4eb6acbaee8b27abb95e9907a41aed4)), closes [#84](https://github.com/elyukai/optolith-database-schema/issues/84)
554
+
555
+
556
+ ### Bug Fixes
557
+
558
+ * profession variants could not be entered ([df21ff3](https://github.com/elyukai/optolith-database-schema/commit/df21ff3e992c9976a5111de1a46f644f26f8c122))
559
+
560
+ ## [0.24.2](https://github.com/elyukai/optolith-database-schema/compare/v0.24.1...v0.24.2) (2025-12-09)
561
+
562
+
563
+ ### Features
564
+
565
+ * add input option to advanced combat special abilities ([254f683](https://github.com/elyukai/optolith-database-schema/commit/254f683dd219ba8dfefffb30568e7898cbebb974)), closes [#80](https://github.com/elyukai/optolith-database-schema/issues/80)
566
+ * add one blunt side as an option for specific combat techniques ([18e2059](https://github.com/elyukai/optolith-database-schema/commit/18e2059118f1f1ba8af443d5d40636a6e4ceafab)), closes [#79](https://github.com/elyukai/optolith-database-schema/issues/79)
567
+ * add personality trait prerequisite to personality traits ([5f521c1](https://github.com/elyukai/optolith-database-schema/commit/5f521c113d0ae1932062d086747dd4cf21b37124)), closes [#83](https://github.com/elyukai/optolith-database-schema/issues/83)
568
+ * add tradition artifact entities for achaz ([b071ac9](https://github.com/elyukai/optolith-database-schema/commit/b071ac927a28bd1aee38a354406145a4e86bbb03)), closes [#81](https://github.com/elyukai/optolith-database-schema/issues/81)
569
+ * modification level translation in display name ([6995b8c](https://github.com/elyukai/optolith-database-schema/commit/6995b8cebd943be4742e545c93e54208362f2e9c))
570
+ * optional weight for gems and precious stones ([7e93d95](https://github.com/elyukai/optolith-database-schema/commit/7e93d95232efc17b005edf3100788287e42bdc62)), closes [#78](https://github.com/elyukai/optolith-database-schema/issues/78)
571
+
572
+
573
+ ### Bug Fixes
574
+
575
+ * achaz enchantments as select option parent ([71f9d59](https://github.com/elyukai/optolith-database-schema/commit/71f9d5981bd566189713dc2c46b32bdcb0f272d1))
576
+
577
+ ## [0.24.1](https://github.com/elyukai/optolith-database-schema/compare/v0.24.0...v0.24.1) (2025-12-08)
578
+
579
+
580
+ ### Features
581
+
582
+ * add and adjust translation strings ([5cd59ca](https://github.com/elyukai/optolith-database-schema/commit/5cd59ca6ce600c0ffbc62ef49e0609cc02cfd3d2))
583
+
584
+
585
+ ### Bug Fixes
586
+
587
+ * double name ([d2b8a44](https://github.com/elyukai/optolith-database-schema/commit/d2b8a4450dc032c3411190b58bea9c1ee7df94d7))
588
+ * fixed blessing range without values ([0751823](https://github.com/elyukai/optolith-database-schema/commit/075182370c4ed81ea30af1c8552aa95fcd2aa669))
589
+
590
+ ## [0.24.0](https://github.com/elyukai/optolith-database-schema/compare/v0.23.2...v0.24.0) (2025-12-05)
591
+
592
+
593
+ ### ⚠ BREAKING CHANGES
594
+
595
+ * The prerequisites field is moved from profession
596
+ versions to profession packages.
597
+
598
+ ### Bug Fixes
599
+
600
+ * arcane traditions and elements can be requirable select options ([d1c9795](https://github.com/elyukai/optolith-database-schema/commit/d1c9795e8378b8f7da69e47491c48df6514661a8))
601
+ * profession prerequisites can differ per profession version ([08a7d8d](https://github.com/elyukai/optolith-database-schema/commit/08a7d8d2c88beff69ea7b4d68995b1eb6d2528a6))
602
+
603
+ ## [0.23.2](https://github.com/elyukai/optolith-database-schema/compare/v0.23.1...v0.23.2) (2025-12-04)
604
+
605
+
606
+ ### Bug Fixes
607
+
608
+ * use correct identifiers in restrictions ([9392990](https://github.com/elyukai/optolith-database-schema/commit/9392990109296bc4cfbc5116c8fa5360efd4a02d))
609
+
610
+ ## [0.23.1](https://github.com/elyukai/optolith-database-schema/compare/v0.23.0...v0.23.1) (2025-12-04)
611
+
612
+
613
+ ### Bug Fixes
614
+
615
+ * restore removed magical artifact translation properties ([d4b8ad3](https://github.com/elyukai/optolith-database-schema/commit/d4b8ad3bd854b32d2a6b05d1e79837c210910d4b))
616
+
617
+ ## [0.23.0](https://github.com/elyukai/optolith-database-schema/compare/v0.22.0...v0.23.0) (2025-12-04)
618
+
619
+
620
+ ### ⚠ BREAKING CHANGES
621
+
622
+ * **gen:** duplicate translation postfix
623
+ * This removes previous note and rules fields.
624
+ * add map and permanent cost options to magical signs
625
+ * add item restrictions to equipment of blessed ones
626
+ * unify item restrictions and add profession restrictions
627
+ * translation keys follow Unicode MessageFormat 2.0
628
+
629
+ ### Features
630
+
631
+ * add expression-based poison duration option ([fcb30ba](https://github.com/elyukai/optolith-database-schema/commit/fcb30ba06b93924ce9399ea5481b98bd2689b229)), closes [#70](https://github.com/elyukai/optolith-database-schema/issues/70)
632
+ * add item restrictions to armor ([6a14e81](https://github.com/elyukai/optolith-database-schema/commit/6a14e811fe71e2f6ade006572d4ba4740cc7b4cd)), closes [#68](https://github.com/elyukai/optolith-database-schema/issues/68)
633
+ * add item restrictions to equipment of blessed ones ([d2418f4](https://github.com/elyukai/optolith-database-schema/commit/d2418f4036c52d5cf972208c67ecf1229e883c85)), closes [#72](https://github.com/elyukai/optolith-database-schema/issues/72)
634
+ * add map and permanent cost options to magical signs ([6958dd7](https://github.com/elyukai/optolith-database-schema/commit/6958dd7f7bda88027d38ba2a3de75a0c645ff7f7)), closes [#75](https://github.com/elyukai/optolith-database-schema/issues/75)
635
+ * add structure points option to some item categories ([6281812](https://github.com/elyukai/optolith-database-schema/commit/62818120f9e849ba7e95f3a68a3f00758fb8a514)), closes [#76](https://github.com/elyukai/optolith-database-schema/issues/76)
636
+ * add translatable intoxicant addiction chance ([bd6fc3c](https://github.com/elyukai/optolith-database-schema/commit/bd6fc3c1448c4b6a221603f33197d8b44a743509)), closes [#71](https://github.com/elyukai/optolith-database-schema/issues/71)
637
+ * allow penalty for combat style special abilities ([90ca20f](https://github.com/elyukai/optolith-database-schema/commit/90ca20f52f806824325a916b8a89f46070db941a)), closes [#77](https://github.com/elyukai/optolith-database-schema/issues/77)
638
+ * optional intoxicant overdose ([90d3adc](https://github.com/elyukai/optolith-database-schema/commit/90d3adc6f4a214f3a4178fb402becc446984005d)), closes [#69](https://github.com/elyukai/optolith-database-schema/issues/69)
639
+ * translation keys follow Unicode MessageFormat 2.0 ([b651562](https://github.com/elyukai/optolith-database-schema/commit/b651562db13d1531d160f8d3288485a04f9bfa3e))
640
+ * unify item restrictions and add profession restrictions ([5611ba5](https://github.com/elyukai/optolith-database-schema/commit/5611ba54402ce6ac401d40160513b3db70327d8d)), closes [#51](https://github.com/elyukai/optolith-database-schema/issues/51)
641
+ * use description, effect and cost for magical artifact ([a7988fc](https://github.com/elyukai/optolith-database-schema/commit/a7988fc426ad76f4b876071b4cde05b11d523212)), closes [#74](https://github.com/elyukai/optolith-database-schema/issues/74)
642
+
643
+
644
+ ### Bug Fixes
645
+
646
+ * **gen:** duplicate translation postfix ([772da37](https://github.com/elyukai/optolith-database-schema/commit/772da37386622cff0a1ab4954a392eeaca1ac72a))
647
+
648
+ ## [0.22.0](https://github.com/elyukai/optolith-database-schema/compare/v0.21.2...v0.22.0) (2025-12-01)
649
+
650
+
651
+ ### ⚠ BREAKING CHANGES
652
+
653
+ * Previous lists of values by level need to be wrapped in
654
+ an object.
655
+
656
+ ### Features
657
+
658
+ * add two-handed option to combat technique restriction ([92d9269](https://github.com/elyukai/optolith-database-schema/commit/92d9269a923ccaa9a99617c34de612947ddbcb88)), closes [#67](https://github.com/elyukai/optolith-database-schema/issues/67)
659
+ * allow magical signs having AE cost ([f8e53e7](https://github.com/elyukai/optolith-database-schema/commit/f8e53e7dc3645e19a24cc60f1257ccd33f8579d6)), closes [#53](https://github.com/elyukai/optolith-database-schema/issues/53)
660
+ * ap value may depend on (any) active instance ([80b726f](https://github.com/elyukai/optolith-database-schema/commit/80b726f945cd6fe4609dfc0b11195ee3801d6433)), closes [#49](https://github.com/elyukai/optolith-database-schema/issues/49)
661
+ * ap value per level based on size category ([43b86db](https://github.com/elyukai/optolith-database-schema/commit/43b86dbf6b6940b6352a69d2a5e9c2f2430e2516)), closes [#43](https://github.com/elyukai/optolith-database-schema/issues/43)
662
+ * enable automatic entries for advantages ([a3e3559](https://github.com/elyukai/optolith-database-schema/commit/a3e35594ccaf85a7d10db4425234bdf8adc7bca0))
663
+ * make magical sign property optional ([5d5db60](https://github.com/elyukai/optolith-database-schema/commit/5d5db60ce3dba9330ed1b6f63b8ceb9e8b4c393b)), closes [#52](https://github.com/elyukai/optolith-database-schema/issues/52)
664
+ * support levels for automatic entries ([dfd83bd](https://github.com/elyukai/optolith-database-schema/commit/dfd83bd28b68bf73df6936d566765f526b1879c4))
665
+
666
+
667
+ ### Bug Fixes
668
+
669
+ * identifier access error ([782ae60](https://github.com/elyukai/optolith-database-schema/commit/782ae60ca8e20f9118448922946735313852fed8))
670
+
671
+ ## [0.21.2](https://github.com/elyukai/optolith-database-schema/compare/v0.21.1...v0.21.2) (2025-11-30)
672
+
673
+
674
+ ### Features
675
+
676
+ * allow three fraction digits for item weight ([9d2dc02](https://github.com/elyukai/optolith-database-schema/commit/9d2dc029c2a07ec3180b4d340ff5ea8afe67fcba))
677
+
678
+ ## [0.21.1](https://github.com/elyukai/optolith-database-schema/compare/v0.21.0...v0.21.1) (2025-11-27)
679
+
680
+
681
+ ### Features
682
+
683
+ * add trade secret option for diseases ([da69a79](https://github.com/elyukai/optolith-database-schema/commit/da69a793a65e7737505c4ff140f6be2132119d6c))
684
+ * add weight and complexity options to vehicles ([bfbf0c0](https://github.com/elyukai/optolith-database-schema/commit/bfbf0c017f0e7bd08bf0ebebe189a862796831ce)), closes [#59](https://github.com/elyukai/optolith-database-schema/issues/59)
685
+ * magical artifacts may define complexity and combat uses ([0a86d73](https://github.com/elyukai/optolith-database-schema/commit/0a86d7396b2fddd977e214ab8be283dd31353292)), closes [#62](https://github.com/elyukai/optolith-database-schema/issues/62)
686
+
687
+
688
+ ### Bug Fixes
689
+
690
+ * ranged weapons may have a range of 0 ([fb34438](https://github.com/elyukai/optolith-database-schema/commit/fb3443816195b3079362d07c9bb3a261f98609c8)), closes [#63](https://github.com/elyukai/optolith-database-schema/issues/63)
691
+
692
+ ## [0.21.0](https://github.com/elyukai/optolith-database-schema/compare/v0.20.6...v0.21.0) (2025-11-21)
693
+
694
+
695
+ ### ⚠ BREAKING CHANGES
696
+
697
+ * patrons also work with tribes instead of plain cultures to align with animist powers
698
+
699
+ ### Features
700
+
701
+ * allow race prerequisite for personality traits ([146723c](https://github.com/elyukai/optolith-database-schema/commit/146723c3e7f91e8c4b4e63b61df95c5a497ea117)), closes [#45](https://github.com/elyukai/optolith-database-schema/issues/45)
702
+ * allow trade secret for animal poisons ([8d14f89](https://github.com/elyukai/optolith-database-schema/commit/8d14f891dabad75b9ad1d37c98f1bf8b10c74d69))
703
+ * patrons also work with tribes instead of plain cultures to align with animist powers ([68b857a](https://github.com/elyukai/optolith-database-schema/commit/68b857afbefb0655a842cd86f5321f155054db7a)), closes [#47](https://github.com/elyukai/optolith-database-schema/issues/47)
704
+
705
+
706
+ ### Bug Fixes
707
+
708
+ * always display child instances of activatable entries ([06b5443](https://github.com/elyukai/optolith-database-schema/commit/06b5443531c5b00fbf4b422aac9e2cdc6ea6ff14)), closes [#51](https://github.com/elyukai/optolith-database-schema/issues/51)
709
+ * cantrip note translations should be optional ([490a4eb](https://github.com/elyukai/optolith-database-schema/commit/490a4ebeeb728ec61e83193a6f84cd774625b777))
710
+
711
+ ## [0.20.6](https://github.com/elyukai/optolith-database-schema/compare/v0.20.5...v0.20.6) (2025-11-16)
712
+
713
+
714
+ ### Features
715
+
716
+ * focus rules and optional rules can require other focus rules or optional rules to be active ([797825b](https://github.com/elyukai/optolith-database-schema/commit/797825b6da46517b1f7a9e2f00f34b21c8bae15d))
717
+
718
+ ## [0.20.5](https://github.com/elyukai/optolith-database-schema/compare/v0.20.4...v0.20.5) (2025-11-15)
719
+
720
+
721
+ ### Features
722
+
723
+ * include translations in locales ([15b7d13](https://github.com/elyukai/optolith-database-schema/commit/15b7d13c1c64a62b5c3f6406a980cf6477b211db))
724
+
725
+ ## [0.20.4](https://github.com/elyukai/optolith-database-schema/compare/v0.20.3...v0.20.4) (2025-11-15)
726
+
727
+
728
+ ### Features
729
+
730
+ * generated typescript typings ([ace11a4](https://github.com/elyukai/optolith-database-schema/commit/ace11a4eea93665decc0070267e9a873aa856734))
731
+
732
+ ## [0.20.3](https://github.com/elyukai/optolith-database-schema/compare/v0.20.2...v0.20.3) (2025-11-14)
733
+
734
+
735
+ ### Bug Fixes
736
+
737
+ * enhancement display name ([f76c622](https://github.com/elyukai/optolith-database-schema/commit/f76c6225456d09817bb960ce041dd2bb121047e3))
738
+
739
+ ## [0.20.2](https://github.com/elyukai/optolith-database-schema/compare/v0.20.1...v0.20.2) (2025-11-13)
740
+
741
+
742
+ ### Bug Fixes
743
+
744
+ * wrong newspaper translation name ([278f214](https://github.com/elyukai/optolith-database-schema/commit/278f21449836143440d485ba350a8e60748fc3f1))
745
+
746
+ ## [0.20.1](https://github.com/elyukai/optolith-database-schema/compare/v0.20.0...v0.20.1) (2025-11-13)
747
+
748
+
749
+ ### Features
750
+
751
+ * add "various" case to armor complexity ([23d4294](https://github.com/elyukai/optolith-database-schema/commit/23d429466ac6eb34c8086c63abde93bfec5d354d)), closes [#21](https://github.com/elyukai/optolith-database-schema/issues/21)
752
+ * add newspaper entity ([6503ac1](https://github.com/elyukai/optolith-database-schema/commit/6503ac161b00c980695ea94a87d27ebbfcef7674)), closes [#40](https://github.com/elyukai/optolith-database-schema/issues/40)
753
+ * add supplemental content option to magical traditions to enable trailing tables ([2348130](https://github.com/elyukai/optolith-database-schema/commit/2348130ce28e6ddde64ff6304ae04d01a00573c8)), closes [elyukai/optolith-data#791](https://github.com/elyukai/optolith-data/issues/791)
754
+ * animal poison level may depend on the subtype of animal ([a2fb493](https://github.com/elyukai/optolith-database-schema/commit/a2fb493d251d733c13b1d22034c9b8e917e67d68)), closes [#38](https://github.com/elyukai/optolith-database-schema/issues/38)
755
+
756
+ ## [0.20.0](https://github.com/elyukai/optolith-database-schema/compare/v0.19.1...v0.20.0) (2025-11-02)
757
+
758
+
759
+ ### ⚠ BREAKING CHANGES
760
+
761
+ * align book type/category with official sources
762
+ * use book cost variant with single single costs as well to enable label usage
763
+
764
+ ### Features
765
+
766
+ * add book category ([b3a88fa](https://github.com/elyukai/optolith-database-schema/commit/b3a88fa9ea417930c4c5249869f4153404570393))
767
+
768
+
769
+ ### Bug Fixes
770
+
771
+ * align book type/category with official sources ([b89bda8](https://github.com/elyukai/optolith-database-schema/commit/b89bda8e670d1a46d6a5ea2f094401e458ce62f7))
772
+ * general select option display name customizer ([47b308b](https://github.com/elyukai/optolith-database-schema/commit/47b308b4b93deabb83aaec11b4036b9a70350a83))
773
+ * make definite book cost variant translations optional if label is not used ([79c4daa](https://github.com/elyukai/optolith-database-schema/commit/79c4daa3d50aa3468f0c72ef6a5736779c421039))
774
+ * use book cost variant with single single costs as well to enable label usage ([e3f9138](https://github.com/elyukai/optolith-database-schema/commit/e3f91381fe6d93525366e15c3d4073cda90821b8))
775
+
776
+ ## [0.19.1](https://github.com/elyukai/optolith-database-schema/compare/v0.19.0...v0.19.1) (2025-10-27)
777
+
778
+
779
+ ### Bug Fixes
780
+
781
+ * general special ability options and activatable instances in general should use child entity types instead of reference types ([5952ef2](https://github.com/elyukai/optolith-database-schema/commit/5952ef214d388e328b6a94364384eed712cefb13))
782
+
783
+ ## [0.19.0](https://github.com/elyukai/optolith-database-schema/compare/v0.18.13...v0.19.0) (2025-10-27)
784
+
785
+
786
+ ### ⚠ BREAKING CHANGES
787
+
788
+ * combineable binary math operators to specific adventure points value by active instances instead of fixed functions
789
+
790
+ ### Features
791
+
792
+ * combineable binary math operators to specific adventure points value by active instances instead of fixed functions ([f11c1e1](https://github.com/elyukai/optolith-database-schema/commit/f11c1e1e07318ed5836d9964f3658335bf07d072))
793
+
794
+ ## [0.18.13](https://github.com/elyukai/optolith-database-schema/compare/v0.18.12...v0.18.13) (2025-10-17)
795
+
796
+
797
+ ### Features
798
+
799
+ * add options for adventure point multiplier expression ([7898b2d](https://github.com/elyukai/optolith-database-schema/commit/7898b2da788e386e74f75b9883638026900b3e95))
800
+
801
+ ## [0.18.12](https://github.com/elyukai/optolith-database-schema/compare/v0.18.11...v0.18.12) (2025-10-17)
802
+
803
+
804
+ ### Bug Fixes
805
+
806
+ * allow single range as a possible book cost value ([4e60943](https://github.com/elyukai/optolith-database-schema/commit/4e60943174213defe3ad006f64b18c359cc86469))
807
+
808
+ ## [0.18.11](https://github.com/elyukai/optolith-database-schema/compare/v0.18.10...v0.18.11) (2025-10-17)
809
+
810
+
811
+ ### Bug Fixes
812
+
813
+ * duplicate DefiniteBookCostVariant identifier ([3735381](https://github.com/elyukai/optolith-database-schema/commit/373538121fecbae58dfb02d782d23bbdc9a17029))
814
+
815
+ ## [0.18.10](https://github.com/elyukai/optolith-database-schema/compare/v0.18.9...v0.18.10) (2025-10-17)
816
+
817
+
818
+ ### Features
819
+
820
+ * books may have multiple cost values dependending on the edition or other factors ([bd4507d](https://github.com/elyukai/optolith-database-schema/commit/bd4507d2507e01e363dad831a50f87e691ed6087))
821
+ * trade secrets and activatable entries can have an adventure points value that is based on the number of active instances ([c575ec1](https://github.com/elyukai/optolith-database-schema/commit/c575ec11f7326902348956971bea73cf7e9b2cb9))
822
+ * trade secrets can have explicit select options ([48e5d3f](https://github.com/elyukai/optolith-database-schema/commit/48e5d3f8c688733227a8de5cc629b3878f949fcf))
823
+
824
+ ## [0.18.9](https://github.com/elyukai/optolith-database-schema/compare/v0.18.8...v0.18.9) (2025-10-15)
825
+
826
+
827
+ ### Features
828
+
829
+ * add alternative rule and player type entities ([034a2ed](https://github.com/elyukai/optolith-database-schema/commit/034a2ed6849a5581951fe1757c5c7179509f76bd))
830
+
831
+ ## [0.18.8](https://github.com/elyukai/optolith-database-schema/compare/v0.18.7...v0.18.8) (2025-10-14)
832
+
833
+ ## [0.18.7](https://github.com/elyukai/optolith-database-schema/compare/v0.18.6...v0.18.7) (2025-10-14)
834
+
835
+
836
+ ### Bug Fixes
837
+
838
+ * additionalRules have to be optional ([1b42e26](https://github.com/elyukai/optolith-database-schema/commit/1b42e26383567195fc328fecedb760990b3ca6aa))
839
+
840
+ ## [0.18.6](https://github.com/elyukai/optolith-database-schema/compare/v0.18.5...v0.18.6) (2025-10-14)
841
+
842
+
843
+ ### Features
844
+
845
+ * add additionalRules to optional rules to separate box text from associated main text ([a7b1bed](https://github.com/elyukai/optolith-database-schema/commit/a7b1bed0fadc3d346b4962e1ba808eb2ac05e670))
846
+
847
+ ## [0.18.5](https://github.com/elyukai/optolith-database-schema/compare/v0.18.4...v0.18.5) (2025-10-09)
848
+
849
+
850
+ ### Bug Fixes
851
+
852
+ * duplicate identifier violations and non-existent display name ([0bd47d1](https://github.com/elyukai/optolith-database-schema/commit/0bd47d12b58cf47f804387443927c0d97acc7ce7))
853
+
854
+ ## [0.18.4](https://github.com/elyukai/optolith-database-schema/compare/v0.18.3...v0.18.4) (2025-10-05)
855
+
856
+ ## [0.18.3](https://github.com/elyukai/optolith-database-schema/compare/v0.18.2...v0.18.3) (2025-10-04)
857
+
858
+
859
+ ### Bug Fixes
860
+
861
+ * include new equipment entities top-level in schema ([b3f7344](https://github.com/elyukai/optolith-database-schema/commit/b3f734484bbc52bea1f0a3542f3fccb1edfe66cf))
862
+
863
+ ## [0.18.2](https://github.com/elyukai/optolith-database-schema/compare/v0.18.1...v0.18.2) (2025-10-04)
864
+
865
+
866
+ ### Bug Fixes
867
+
868
+ * adjust for remaining incompatibilities with source data ([00a0efc](https://github.com/elyukai/optolith-database-schema/commit/00a0efc6d090171e83ff01236e8df146a120f71e))
869
+
870
+ ## [0.18.1](https://github.com/elyukai/optolith-database-schema/compare/v0.18.0...v0.18.1) (2025-10-03)
871
+
872
+ ## [0.18.0](https://github.com/elyukai/optolith-database-schema/compare/v0.17.2...v0.18.0) (2025-10-03)
873
+
874
+
875
+ ### ⚠ BREAKING CHANGES
876
+
877
+ * tsondb integration
878
+ * use identifier object instead of plain number for publication prerequisite identifier
879
+ * adjust naming for compiles languages that dont create namespaces per file
880
+ * add blessed tradition type as union type
881
+
882
+ ### Features
883
+
884
+ * add blessed tradition type as union type ([dd999c1](https://github.com/elyukai/optolith-database-schema/commit/dd999c1387d950fd27169c601f4653a1fd0273d6))
885
+ * add skill application identifier as possible select option identifier ([2523228](https://github.com/elyukai/optolith-database-schema/commit/25232282da57baf82d369bc80be703ae69df6f6d))
886
+ * add translation strings for prerequisites ([a031ad9](https://github.com/elyukai/optolith-database-schema/commit/a031ad93ea305c831fbb52498adecec3f9b3b2e1))
887
+ * adjust naming for compiles languages that dont create namespaces per file ([4236fa3](https://github.com/elyukai/optolith-database-schema/commit/4236fa38040bf034d27e942e66647462a1e15f3c))
888
+ * **swift:** add initializers to all structs ([fc79950](https://github.com/elyukai/optolith-database-schema/commit/fc79950428c62f0ca11d56299854f83a37d693c8))
889
+ * **swift:** add set of available locales and documentation for LocaleMap ([c247c06](https://github.com/elyukai/optolith-database-schema/commit/c247c067e4b38cf8b748fe1ab1228ecbf294b8cc))
890
+ * **swift:** do not generate ignored files ([6dd361a](https://github.com/elyukai/optolith-database-schema/commit/6dd361a16cea4488b4d7d34a86edbf673ea97d4b))
891
+ * **swift:** remove generation date header comment ([9db2fd5](https://github.com/elyukai/optolith-database-schema/commit/9db2fd59894a692a8443592e8247251f55913e73))
892
+ * tsondb integration ([619805c](https://github.com/elyukai/optolith-database-schema/commit/619805ccfb3771962cc5e987f80b51a5dcf56c09)), closes [#35](https://github.com/elyukai/optolith-database-schema/issues/35)
893
+
894
+
895
+ ### Bug Fixes
896
+
897
+ * **swift:** add ignored LocaleMap type ([f80bbaa](https://github.com/elyukai/optolith-database-schema/commit/f80bbaa8289c9053ae31867564a072cf7bd506a0))
898
+ * **swift:** identifier objects' initializers must be public ([8f2be47](https://github.com/elyukai/optolith-database-schema/commit/8f2be474440a00c37d4aee8f6eb4cceba2dbf8ee))
899
+ * **swift:** LocaleMap initializer didnt initialize all properties ([f5167bb](https://github.com/elyukai/optolith-database-schema/commit/f5167bb56586e88d970cf893e5ea077bc41e1113))
900
+ * **swift:** remove unnecessary indentation in empty lines ([dbe1902](https://github.com/elyukai/optolith-database-schema/commit/dbe19027a05a9834fc00cc2fcb1892fca1fd74fe))
901
+ * use identifier object instead of plain number for publication prerequisite identifier ([bb7a688](https://github.com/elyukai/optolith-database-schema/commit/bb7a688b019fc95070bb7aaf4246a6d64d0de91a))
902
+
903
+ ### [0.17.2](https://github.com/elyukai/optolith-database-schema/compare/v0.17.1...v0.17.2) (2024-10-06)
904
+
905
+ ### [0.17.1](https://github.com/elyukai/optolith-database-schema/compare/v0.17.0...v0.17.1) (2024-10-06)
906
+
907
+
908
+ ### Features
909
+
910
+ * add minimum and maximum UI strings with placeholders ([1bf8df1](https://github.com/elyukai/optolith-database-schema/commit/1bf8df1575c605b50d2990ed5cd85892d871ecba))
911
+ * add pluralization type definitions ([a8340e6](https://github.com/elyukai/optolith-database-schema/commit/a8340e6dd488945b63347a80de0f54f5eb5050e8))
912
+ * use @optolith/helpers package ([d8324f7](https://github.com/elyukai/optolith-database-schema/commit/d8324f7042f459201452704bffa3c06e1ec582fe))
913
+
914
+ ## [0.17.0](https://github.com/elyukai/optolith-database-schema/compare/v0.16.8...v0.17.0) (2024-10-03)
915
+
916
+
917
+ ### ⚠ BREAKING CHANGES
918
+
919
+ * add translations for library entries of spellworks and liturgical chants
920
+
921
+ ### Features
922
+
923
+ * add translations for library entries of spellworks and liturgical chants ([223a469](https://github.com/elyukai/optolith-database-schema/commit/223a469a63b44d0204d762b17905d622d7b6b9a2))
924
+
925
+ ### [0.16.8](https://github.com/elyukai/optolith-database-schema/compare/v0.16.7...v0.16.8) (2024-03-01)
926
+
927
+
928
+ ### Bug Fixes
929
+
930
+ * add slash to protective and warding circle key ([ef91f89](https://github.com/elyukai/optolith-database-schema/commit/ef91f897ad56db97f93a76958fab8dd69121830c))
931
+
932
+ ### [0.16.7](https://github.com/elyukai/optolith-database-schema/compare/v0.16.6...v0.16.7) (2024-03-01)
933
+
934
+ ### [0.16.6](https://github.com/elyukai/optolith-database-schema/compare/v0.16.5...v0.16.6) (2024-03-01)
935
+
936
+
937
+ ### Features
938
+
939
+ * add special ability group translations ([5b95dd5](https://github.com/elyukai/optolith-database-schema/commit/5b95dd52e1ef9124da51b38bc1263b44f85740fa))
940
+
941
+ ### [0.16.5](https://github.com/elyukai/optolith-database-schema/compare/v0.16.4...v0.16.5) (2024-02-29)
942
+
943
+
944
+ ### Features
945
+
946
+ * add missing activatable and rated identifiers ([a34676b](https://github.com/elyukai/optolith-database-schema/commit/a34676b3c3a7d91621d285447eb913d6888e2c8e))
947
+ * convert many used keys to their english fallback and add some new keys ([ae07fd2](https://github.com/elyukai/optolith-database-schema/commit/ae07fd2b6def34c4a5269202a9ac3a3b8e735b37))
948
+
949
+
950
+ ### Bug Fixes
951
+
952
+ * add missing identifier handling to magical and blessed advantages and disadvantages cache ([eba871a](https://github.com/elyukai/optolith-database-schema/commit/eba871a0e7ea803775a30c01e2d2c278bd60856f))
953
+ * applications and uses for select options ([c21b851](https://github.com/elyukai/optolith-database-schema/commit/c21b8512817204129a9213b330abc811b64dad13))
954
+
955
+ ### [0.16.4](https://github.com/elyukai/optolith-database-schema/compare/v0.16.3...v0.16.4) (2024-01-21)
956
+
957
+
958
+ ### Features
959
+
960
+ * magical and blessed advantages and disadvantages identifier cache ([4dc6e3d](https://github.com/elyukai/optolith-database-schema/commit/4dc6e3dec721019af728db6b68138498da4b1775))
961
+
962
+ ### [0.16.3](https://github.com/elyukai/optolith-database-schema/compare/v0.16.2...v0.16.3) (2024-01-18)
963
+
964
+
965
+ ### Bug Fixes
966
+
967
+ * resolve intersection types ([829da00](https://github.com/elyukai/optolith-database-schema/commit/829da0079a60693dbeec94cbfb02b447c5105da5))
968
+
969
+ ### [0.16.2](https://github.com/elyukai/optolith-database-schema/compare/v0.16.1...v0.16.2) (2024-01-18)
970
+
971
+
972
+ ### Bug Fixes
973
+
974
+ * update build artifacts ([cb11b32](https://github.com/elyukai/optolith-database-schema/commit/cb11b322783236738eee3541e1ac3165ab172c1c))
975
+
976
+ ### [0.16.1](https://github.com/elyukai/optolith-database-schema/compare/v0.16.0...v0.16.1) (2024-01-16)
977
+
978
+ ## [0.16.0](https://github.com/elyukai/optolith-database-schema/compare/v0.15.5...v0.16.0) (2024-01-12)
979
+
980
+
981
+ ### ⚠ BREAKING CHANGES
982
+
983
+ * remove GenericIdentifier in favor of GeneralIdentifier
984
+
985
+ ### Bug Fixes
986
+
987
+ * remove GenericIdentifier in favor of GeneralIdentifier ([aea4586](https://github.com/elyukai/optolith-database-schema/commit/aea4586074ff4d4a1e7441e0149b3671bbb3de00))
988
+
989
+ ### [0.15.5](https://github.com/elyukai/optolith-database-schema/compare/v0.15.4...v0.15.5) (2024-01-12)
990
+
991
+ ### [0.15.4](https://github.com/elyukai/optolith-database-schema/compare/v0.15.3...v0.15.4) (2024-01-12)
992
+
993
+
994
+ ### Features
995
+
996
+ * add possible and requirable select option identifiers ([0ee088a](https://github.com/elyukai/optolith-database-schema/commit/0ee088a01b98e2f8828303d43f40ac8143db1eac))
997
+ * add pre-generated select options for activatable entries as cache ([3fdcaf2](https://github.com/elyukai/optolith-database-schema/commit/3fdcaf2a95623e751993c1e696f2b269acbc7594))
998
+
999
+
1000
+ ### Bug Fixes
1001
+
1002
+ * add missing vampiric gift identifier to activatable identifier group ([98316b6](https://github.com/elyukai/optolith-database-schema/commit/98316b63a9b9e7dd00939d596621a3b5782e2d2e))
1003
+ * wrong identifier references in select option config ([a70a7ea](https://github.com/elyukai/optolith-database-schema/commit/a70a7ea4a02ecbcb5167ab13b1e3a1d75c327e3f))
1004
+
1005
+ ### [0.15.3](https://github.com/elyukai/optolith-database-schema/compare/v0.15.2...v0.15.3) (2024-01-09)
1006
+
1007
+
1008
+ ### Features
1009
+
1010
+ * **cache:** add ancestor blood advantages list as cache ([8f06497](https://github.com/elyukai/optolith-database-schema/commit/8f0649704670264a10acd4985311345b8f80c45a))
1011
+
1012
+ ### [0.15.2](https://github.com/elyukai/optolith-database-schema/compare/v0.15.1...v0.15.2) (2024-01-08)
1013
+
1014
+
1015
+ ### Bug Fixes
1016
+
1017
+ * rated sum targets should only be skill identifiers ([7247292](https://github.com/elyukai/optolith-database-schema/commit/7247292c9e8f47bca7d0e96e139b77eeeaa6a08a))
1018
+
1019
+ ### [0.15.1](https://github.com/elyukai/optolith-database-schema/compare/v0.15.0...v0.15.1) (2024-01-06)
1020
+
1021
+
1022
+ ### Features
1023
+
1024
+ * group abbreviated and full adventure points translations with and without preceding value ([b0e0bdd](https://github.com/elyukai/optolith-database-schema/commit/b0e0bddf32326bd3529f7ed15e7a416ba6da21ea))
1025
+
1026
+ ## [0.15.0](https://github.com/elyukai/optolith-database-schema/compare/v0.14.0...v0.15.0) (2023-12-29)
1027
+
1028
+
1029
+ ### ⚠ BREAKING CHANGES
1030
+
1031
+ * convert core rule identifier to plain integer
1032
+
1033
+ ### Features
1034
+
1035
+ * type config type includes type name literal ([04a57e8](https://github.com/elyukai/optolith-database-schema/commit/04a57e8bc4063444c66d118938fe9b011a0b7448))
1036
+
1037
+
1038
+ * convert core rule identifier to plain integer ([d6395ea](https://github.com/elyukai/optolith-database-schema/commit/d6395ea8f5c105596e3ce68f5212e0e44550bfe2))
1039
+
1040
+ ## [0.14.0](https://github.com/elyukai/optolith-database-schema/compare/v0.13.8...v0.14.0) (2023-12-27)
1041
+
1042
+
1043
+ ### ⚠ BREAKING CHANGES
1044
+
1045
+ * remove equipment category Alchemicum
1046
+
1047
+ ### Features
1048
+
1049
+ * add optional "notes" field to poison translation ([0cf9d98](https://github.com/elyukai/optolith-database-schema/commit/0cf9d988907734b89119cf6d9e3a3d480199128f)), closes [#28](https://github.com/elyukai/optolith-database-schema/issues/28)
1050
+ * add poison duration type "instant" ([0581049](https://github.com/elyukai/optolith-database-schema/commit/0581049f282988ca5a24ff4ba219310003061d59))
1051
+
1052
+
1053
+ ### Bug Fixes
1054
+
1055
+ * add elixir identifier ([98993f7](https://github.com/elyukai/optolith-database-schema/commit/98993f7c351fc647cbe6982276cebab0e014ec44))
1056
+ * remove equipment category Alchemicum ([95768f3](https://github.com/elyukai/optolith-database-schema/commit/95768f30131b9c4e3f66f01950b6c7ea6f9ccfff)), closes [#32](https://github.com/elyukai/optolith-database-schema/issues/32)
1057
+ * weapons should require a complexity ([7ad54e1](https://github.com/elyukai/optolith-database-schema/commit/7ad54e1c16e8782072d543450a27a5572ab875ed))
1058
+
1059
+ ### [0.13.8](https://github.com/elyukai/optolith-database-schema/compare/v0.13.7...v0.13.8) (2023-12-07)
1060
+
1061
+ ### [0.13.7](https://github.com/elyukai/optolith-database-schema/compare/v0.13.6...v0.13.7) (2023-12-05)
1062
+
1063
+ ### [0.13.6](https://github.com/elyukai/optolith-database-schema/compare/v0.13.5...v0.13.6) (2023-12-05)
1064
+
1065
+ ### [0.13.5](https://github.com/elyukai/optolith-database-schema/compare/v0.13.4...v0.13.5) (2023-12-05)
1066
+
1067
+ ### [0.13.4](https://github.com/elyukai/optolith-database-schema/compare/v0.13.3...v0.13.4) (2023-12-01)
1068
+
1069
+
1070
+ ### Bug Fixes
1071
+
1072
+ * make complexity optional for natural weapons ([13a3b53](https://github.com/elyukai/optolith-database-schema/commit/13a3b530f4cabf4c644c7ded8b020cef21df9013))
1073
+ * musical instruments may have a complexity and combat use ([8e6dab0](https://github.com/elyukai/optolith-database-schema/commit/8e6dab0907af7d11f32631c00f8abc4178157492))
1074
+
1075
+ ### [0.13.3](https://github.com/elyukai/optolith-database-schema/compare/v0.13.2...v0.13.3) (2023-11-01)
1076
+
1077
+
1078
+ ### Features
1079
+
1080
+ * ajv configuration options ([0c5ba39](https://github.com/elyukai/optolith-database-schema/commit/0c5ba3981e44edc120fcab237ecf8aa31af7a5ad))
1081
+
1082
+ ### [0.13.2](https://github.com/elyukai/optolith-database-schema/compare/v0.13.1...v0.13.2) (2023-10-31)
1083
+
1084
+ ### [0.13.1](https://github.com/elyukai/optolith-database-schema/compare/v0.13.0...v0.13.1) (2023-10-31)
1085
+
1086
+
1087
+ ### Features
1088
+
1089
+ * add strings for main window and spellwork/magical action categories ([0fe96bc](https://github.com/elyukai/optolith-database-schema/commit/0fe96bcb9f300dddd21f8f9d02826e4c7e2cee31))
1090
+ * translation strings can vary by operating system ([952a0aa](https://github.com/elyukai/optolith-database-schema/commit/952a0aa5bcc8296f15837270d54456e08b2d89b2))
1091
+
1092
+ ## [0.13.0](https://github.com/elyukai/optolith-database-schema/compare/v0.12.1...v0.13.0) (2023-10-03)
1093
+
1094
+
1095
+ ### ⚠ BREAKING CHANGES
1096
+
1097
+ * change and add lots of new translations with new key format
1098
+ * replace all enums with union types to enable type-only usage
1099
+
1100
+ ### Features
1101
+
1102
+ * cache capability ([45cf7bf](https://github.com/elyukai/optolith-database-schema/commit/45cf7bfd3e43f2786926633b0c5e2eee8982d965))
1103
+ * change and add lots of new translations with new key format ([3068ee9](https://github.com/elyukai/optolith-database-schema/commit/3068ee94ed6a6d0a021704f92af18984d33bb53b))
1104
+
1105
+
1106
+ ### Bug Fixes
1107
+
1108
+ * typo in getFilenamePrefixAsNumericId ([802349e](https://github.com/elyukai/optolith-database-schema/commit/802349ea5b566682e0fb7bbd45811bda1800a686))
1109
+
1110
+
1111
+ * replace all enums with union types to enable type-only usage ([fe5aa11](https://github.com/elyukai/optolith-database-schema/commit/fe5aa116f8fc922c3b6150d2bc663ddde5e8f104))
1112
+
1113
+ ### [0.12.1](https://github.com/elyukai/optolith-database-schema/compare/v0.12.0...v0.12.1) (2023-06-11)
1114
+
1115
+
1116
+ ### Features
1117
+
1118
+ * provide function to get raw validation results ([c4bf451](https://github.com/elyukai/optolith-database-schema/commit/c4bf451195f7b754edf15ef43cd5363baafdd1d4))
1119
+
1120
+
1121
+ ### Bug Fixes
1122
+
1123
+ * use different file name validation patterns per type ([8e3915f](https://github.com/elyukai/optolith-database-schema/commit/8e3915f716823b971068018acba196b900fc390c))
1124
+
1125
+ ## [0.12.0](https://github.com/elyukai/optolith-database-schema/compare/v0.11.9...v0.12.0) (2023-06-03)
1126
+
1127
+
1128
+ ### ⚠ BREAKING CHANGES
1129
+
1130
+ * rename header tab keys and add button names
1131
+
1132
+ ### Features
1133
+
1134
+ * rename header tab keys and add button names ([79d8381](https://github.com/elyukai/optolith-database-schema/commit/79d8381c1b7dc4571edf8920a6e8db47dc560431))
1135
+
1136
+ ### [0.11.9](https://github.com/elyukai/optolith-database-schema/compare/v0.11.8...v0.11.9) (2023-05-31)
1137
+
1138
+
1139
+ ### Bug Fixes
1140
+
1141
+ * move TypeId declaration to exported file ([940f567](https://github.com/elyukai/optolith-database-schema/commit/940f5674f64547c277f479e43df4d3b193e5489c))
1142
+
1143
+ ### [0.11.8](https://github.com/elyukai/optolith-database-schema/compare/v0.11.7...v0.11.8) (2023-05-31)
1144
+
1145
+
1146
+ ### Bug Fixes
1147
+
1148
+ * **exports:** config exports did not match new folder structure ([dcb95e8](https://github.com/elyukai/optolith-database-schema/commit/dcb95e8ee0bd95006382bc6e62da245cc391986a))
1149
+
1150
+ ### [0.11.7](https://github.com/elyukai/optolith-database-schema/compare/v0.11.6...v0.11.7) (2023-05-30)
1151
+
1152
+
1153
+ ### Bug Fixes
1154
+
1155
+ * restrict ValidResults types to each entity's type ([62b0eb0](https://github.com/elyukai/optolith-database-schema/commit/62b0eb0fda08b9885a1c8598cf653a168cfa93a8))
1156
+
1157
+ ### [0.11.6](https://github.com/elyukai/optolith-database-schema/compare/v0.11.5...v0.11.6) (2023-05-28)
1158
+
1159
+ ### [0.11.5](https://github.com/elyukai/optolith-database-schema/compare/v0.11.4...v0.11.5) (2023-05-27)
1160
+
1161
+ ### [0.11.4](https://github.com/elyukai/optolith-database-schema/compare/v0.11.3...v0.11.4) (2023-05-27)
1162
+
1163
+ ### [0.11.3](https://github.com/elyukai/optolith-database-schema/compare/v0.11.2...v0.11.3) (2023-05-27)
1164
+
1165
+ ### [0.11.2](https://github.com/elyukai/optolith-database-schema/compare/v0.11.1...v0.11.2) (2023-05-27)
1166
+
1167
+ ### [0.11.1](https://github.com/elyukai/optolith-database-schema/compare/v0.11.0...v0.11.1) (2023-05-27)
1168
+
1169
+ ## [0.11.0](https://github.com/elyukai/optolith-database-schema/compare/v0.10.1...v0.11.0) (2023-05-27)
1170
+
1171
+
1172
+ ### ⚠ BREAKING CHANGES
1173
+
1174
+ * add integrity validation capabilities
1175
+ * use exports field in package.json
1176
+
1177
+ ### Features
1178
+
1179
+ * add integrity validation capabilities ([d39110e](https://github.com/elyukai/optolith-database-schema/commit/d39110ea320348260d690bdf9f8d19734709c10c))
1180
+
1181
+
1182
+ ### build
1183
+
1184
+ * use exports field in package.json ([771682a](https://github.com/elyukai/optolith-database-schema/commit/771682abca14539ead8b714c2f931be570426f85))
1185
+
1186
+ ### [0.10.1](https://github.com/elyukai/optolith-database-schema/compare/v0.10.0...v0.10.1) (2023-05-01)
1187
+
1188
+ ## [0.10.0](https://github.com/elyukai/optolith-database-schema/compare/v0.9.0...v0.10.0) (2023-05-01)
1189
+
1190
+
1191
+ ### ⚠ BREAKING CHANGES
1192
+
1193
+ * finish schema
1194
+
1195
+ ### Features
1196
+
1197
+ * finish schema ([0ea6a83](https://github.com/elyukai/optolith-database-schema/commit/0ea6a838e22651b0e24708dcb10143db3c4300ca))
1198
+ * sort errors by file path, with numbers in ascending order ([abc0bb1](https://github.com/elyukai/optolith-database-schema/commit/abc0bb13fd1d8d72237725ea37031c5697adaab9))
1199
+
1200
+
1201
+ ### Bug Fixes
1202
+
1203
+ * allow numbers in names ([4f6b2ae](https://github.com/elyukai/optolith-database-schema/commit/4f6b2aea2dba9a92a77b2667ed98617c233bbef1))
1204
+ * ignore hidden files ([230326f](https://github.com/elyukai/optolith-database-schema/commit/230326ff25c3faee88f614c3380396070efb1516))
1205
+ * the file name id may be 0 for custom entries ([8b1144e](https://github.com/elyukai/optolith-database-schema/commit/8b1144e6f13b46a9ef5aa1824d987ab70cfb8a95))
1206
+ * uppercase letters should be allowed after the first letter ([50b2020](https://github.com/elyukai/optolith-database-schema/commit/50b2020bd6ed81c44d944cb8048b966c72b8fb38))
1207
+
1208
+ ## [0.9.0](https://github.com/elyukai/optolith-database-schema/compare/v0.8.1...v0.9.0) (2023-01-14)
1209
+
1210
+
1211
+ ### ⚠ BREAKING CHANGES
1212
+
1213
+ * make protective/warding circle cost language-independent
1214
+ * change magical rune options to explicit options
1215
+
1216
+ ### Features
1217
+
1218
+ * add trinkhornzauber identifier to applying identifier groups ([f6671e3](https://github.com/elyukai/optolith-database-schema/commit/f6671e31bd94a8a6600e17dc448e619be2e30d74))
1219
+ * change magical rune options to explicit options ([a8c45d1](https://github.com/elyukai/optolith-database-schema/commit/a8c45d148d8ad5060b3d60536b11c39673fb01ab))
1220
+ * magical signs ([4517d64](https://github.com/elyukai/optolith-database-schema/commit/4517d64bdafd1800074bac684053abbdc104518e))
1221
+ * make protective/warding circle cost language-independent ([27640a6](https://github.com/elyukai/optolith-database-schema/commit/27640a695050597ba910331ab1e35094a0f827f2))
1222
+
1223
+
1224
+ ### Bug Fixes
1225
+
1226
+ * advanced special ability OneOf option should allow and required multiple options ([0e5bbd4](https://github.com/elyukai/optolith-database-schema/commit/0e5bbd485da7843f810e092883c03c12dced1e57))
1227
+ * make cost optional for all tradition arfifact enchantments ([6025485](https://github.com/elyukai/optolith-database-schema/commit/60254855e2e236f328d1f1480b009f322b0881d9))
1228
+ * some tradition properties have to be optional ([687665d](https://github.com/elyukai/optolith-database-schema/commit/687665d0a0699e8ee25d2f378cb3b041384173bb))
1229
+ * translation was not embedded in locale map ([a395778](https://github.com/elyukai/optolith-database-schema/commit/a39577830351b36595a06c247234fac3a3d499b1))
1230
+ * wand enchantments dont use volume ([1a3f34a](https://github.com/elyukai/optolith-database-schema/commit/1a3f34a3880fb19ab6fbe7cc7a481e2deb7bab9a))
1231
+
1232
+ ### [0.8.1](https://github.com/elyukai/optolith-database-schema/compare/v0.8.0...v0.8.1) (2023-01-08)
1233
+
1234
+
1235
+ ### Features
1236
+
1237
+ * allow minimum total for countable cost for sustained skills ([448978f](https://github.com/elyukai/optolith-database-schema/commit/448978f3815e721bb69e5315b61f5d5b0e3854e2))
1238
+ * allow only casting time during lovemaking to be present ([9be75fe](https://github.com/elyukai/optolith-database-schema/commit/9be75fe9372c9ef40bca914d2659b3b026f543d9))
1239
+ * allow to restrict advanced special ability to aspect option ([21289fe](https://github.com/elyukai/optolith-database-schema/commit/21289fe81d3b81648eb65e8d459a3d6f71d984ab))
1240
+ * use summoning and creation difficulty as possible skill check penalties ([5756ecd](https://github.com/elyukai/optolith-database-schema/commit/5756ecd33fe1c32f28b31d0afa88e1f45658a0be))
1241
+
1242
+
1243
+ ### Bug Fixes
1244
+
1245
+ * optional language specializations ([2ead215](https://github.com/elyukai/optolith-database-schema/commit/2ead215fc1bcb870ecec8a7f88a48bc7d09136b3))
1246
+
1247
+ ## [0.8.0](https://github.com/elyukai/optolith-database-schema/compare/v0.7.0...v0.8.0) (2023-01-03)
1248
+
1249
+
1250
+ ### ⚠ BREAKING CHANGES
1251
+
1252
+ * remove none option from cost, do not use property instead
1253
+ * use simple boolean to indicate implementation availability
1254
+
1255
+ ### Features
1256
+
1257
+ * add interval cost option ([6643594](https://github.com/elyukai/optolith-database-schema/commit/66435948fb567e161e6ab3ecc8e416e9cbef3441))
1258
+
1259
+
1260
+ ### Bug Fixes
1261
+
1262
+ * add missing KrallenkettenzauberIdentifier and add to associated groups ([2f18a75](https://github.com/elyukai/optolith-database-schema/commit/2f18a75e4bd61f31e8cf0f62de46685c18cc603b))
1263
+ * RatedIdentifier used wrong SkillIdentifier ([c528f34](https://github.com/elyukai/optolith-database-schema/commit/c528f34f10bda702d5adf5f2e6fd4948a98b9f62))
1264
+
1265
+
1266
+ * remove none option from cost, do not use property instead ([4a1cc06](https://github.com/elyukai/optolith-database-schema/commit/4a1cc062aaa47715d54922545cb1477567416cf0))
1267
+ * use simple boolean to indicate implementation availability ([4282ef3](https://github.com/elyukai/optolith-database-schema/commit/4282ef3d7567919012f65197b4bc9c94176e5720))
1268
+
1269
+ ## [0.7.0](https://github.com/elyukai/optolith-database-schema/compare/v0.6.0...v0.7.0) (2022-12-25)
1270
+
1271
+
1272
+ ### ⚠ BREAKING CHANGES
1273
+
1274
+ * `restricted_to_traditions` should only apply to magical traditions
1275
+ * familiar's tricks may have life point cost
1276
+
1277
+ ### Features
1278
+
1279
+ * familiar's tricks may have life point cost ([d428bd3](https://github.com/elyukai/optolith-database-schema/commit/d428bd3384a3d707f95f842198d86d6d6e5a7a6c))
1280
+ * sustained familiar's tricks may not have a sustaining interval ([178374d](https://github.com/elyukai/optolith-database-schema/commit/178374df2742aae7f7efd6bfdd13d61402e16b88))
1281
+
1282
+
1283
+ ### Bug Fixes
1284
+
1285
+ * missing item cost variants ([608fd16](https://github.com/elyukai/optolith-database-schema/commit/608fd16379484de96d2b6d49ea01f570ead946dd))
1286
+ * wrong tag-complementing property for subject identifier ([036a219](https://github.com/elyukai/optolith-database-schema/commit/036a2192f2aff4698d4df25315a9c46babf6881f))
1287
+
1288
+
1289
+ * `restricted_to_traditions` should only apply to magical traditions ([a182e6c](https://github.com/elyukai/optolith-database-schema/commit/a182e6ccf9bdf5da327b48ff43e88375517da90f))
1290
+
1291
+ ## [0.6.0](https://github.com/elyukai/optolith-database-schema/compare/v0.5.4...v0.6.0) (2022-12-10)
1292
+
1293
+
1294
+ ### ⚠ BREAKING CHANGES
1295
+
1296
+ * rename common ingredients to typical ingredients
1297
+
1298
+ ### Features
1299
+
1300
+ * prerequisite disjunctions may have a display option ([36e9ceb](https://github.com/elyukai/optolith-database-schema/commit/36e9ceb26b52f673e13ea2323cb9a3283dc21586))
1301
+ * weapons can be restricted to traditions during character creation ([5e085d2](https://github.com/elyukai/optolith-database-schema/commit/5e085d2258e6232e829f9e21cc7823d14ef42322))
1302
+
1303
+
1304
+ ### Bug Fixes
1305
+
1306
+ * duration variant key convention ([dc1a05e](https://github.com/elyukai/optolith-database-schema/commit/dc1a05ed27e3f97b2cfc2ccfdbe4c20160b0b711))
1307
+ * fixed cost countable translation might not be compressable ([561b4ad](https://github.com/elyukai/optolith-database-schema/commit/561b4ad0f9b938539826f734f8c84d45cc1c4543))
1308
+ * missing equipment packages source references ([ff3ae6c](https://github.com/elyukai/optolith-database-schema/commit/ff3ae6cbb52902e00ea13179a88bb9abd19d6663))
1309
+
1310
+
1311
+ * rename common ingredients to typical ingredients ([aa7fb6e](https://github.com/elyukai/optolith-database-schema/commit/aa7fb6ed41a756d65637520095b58b6226f410c9))
1312
+
1313
+ ### [0.5.4](https://github.com/elyukai/optolith-database-schema/compare/v0.5.3...v0.5.4) (2022-12-03)
1314
+
1315
+
1316
+ ### Bug Fixes
1317
+
1318
+ * elective spellwork restriction structure ([3ceb624](https://github.com/elyukai/optolith-database-schema/commit/3ceb6244ec433bb60fe292dde32d99ac93edccb2))
1319
+ * grouped common profession for cultures ([df66943](https://github.com/elyukai/optolith-database-schema/commit/df66943aadfd297d773dda7d4a0a65c8b79095ce))
1320
+
1321
+ ### [0.5.3](https://github.com/elyukai/optolith-database-schema/compare/v0.5.2...v0.5.3) (2022-12-03)
1322
+
1323
+
1324
+ ### Bug Fixes
1325
+
1326
+ * escaping curly braces in regular expression ([4f59611](https://github.com/elyukai/optolith-database-schema/commit/4f59611827d0948df7de32e73623cef858ad89c7))
1327
+ * import resolving of types used in generic types ([592ade9](https://github.com/elyukai/optolith-database-schema/commit/592ade94fddc14bdda5bfcf8b3dc51c33f36f509))
1328
+
1329
+ ### [0.5.2](https://github.com/elyukai/optolith-database-schema/compare/v0.5.1...v0.5.2) (2022-12-02)
1330
+
1331
+
1332
+ ### Bug Fixes
1333
+
1334
+ * validation error output type did not match type for error printing ([709f2f4](https://github.com/elyukai/optolith-database-schema/commit/709f2f46a68ff438cd158defddf93f508871eef9))
1335
+
1336
+ ### [0.5.1](https://github.com/elyukai/optolith-database-schema/compare/v0.5.0...v0.5.1) (2022-12-02)
1337
+
1338
+
1339
+ ### Features
1340
+
1341
+ * explicit verbose error-printing option ([ebf055c](https://github.com/elyukai/optolith-database-schema/commit/ebf055c92302c5cfd80493dff1fd38276d05aa30))
1342
+
1343
+ ## [0.5.0](https://github.com/elyukai/optolith-database-schema/compare/v0.4.1...v0.5.0) (2022-12-01)
1344
+
1345
+
1346
+ ### ⚠ BREAKING CHANGES
1347
+
1348
+ * explicit identifier tags, simpler prerequisites, multiple small changes
1349
+
1350
+ ### Features
1351
+
1352
+ * equipment of blessed ones may be for multiple traditions ([3ffbfa2](https://github.com/elyukai/optolith-database-schema/commit/3ffbfa20cd40279091c71e7ef22496f6eab0f501))
1353
+ * explicit identifier tags, simpler prerequisites, multiple small changes ([89ab7dd](https://github.com/elyukai/optolith-database-schema/commit/89ab7dd343db1027672b24c63216aba44f2db855))
1354
+ * poisons and elixirs ([2552156](https://github.com/elyukai/optolith-database-schema/commit/2552156860ec527b568621dffa9ad6ebef1ae3e3))
1355
+
1356
+
1357
+ ### Bug Fixes
1358
+
1359
+ * import specifiers ([fddea8b](https://github.com/elyukai/optolith-database-schema/commit/fddea8bc62a6ab4ddfef0fcea082a73749152ad4))
1360
+
1361
+ ### [0.4.1](https://github.com/elyukai/optolith-database-schema/compare/v0.4.0...v0.4.1) (2022-08-01)
1362
+
1363
+
1364
+ ### Bug Fixes
1365
+
1366
+ * not all ceremonial item special abilities have an aspect ([d99fc59](https://github.com/elyukai/optolith-database-schema/commit/d99fc59d786bef8951edd45db0a0c2d43c4a5ac3))
1367
+ * require nested properties of enums with associated values ([ed8046e](https://github.com/elyukai/optolith-database-schema/commit/ed8046ea07acd5ae2b98bc901f688b4612d45ba6))
1368
+
1369
+ ## [0.4.0](https://github.com/elyukai/optolith-database-schema/compare/v0.3.0...v0.4.0) (2022-08-01)
1370
+
1371
+
1372
+ ### ⚠ BREAKING CHANGES
1373
+
1374
+ * streamline enums with and without associated values
1375
+
1376
+ ### Features
1377
+
1378
+ * adjust equipment item schemes based on example files ([a7344f2](https://github.com/elyukai/optolith-database-schema/commit/a7344f2faa8a414ca62586b884e7eb5892645fef))
1379
+
1380
+
1381
+ * streamline enums with and without associated values ([a4685e3](https://github.com/elyukai/optolith-database-schema/commit/a4685e34999ada051117834fc17d19b41f5f3304))
1382
+
1383
+ ## [0.3.0](https://github.com/elyukai/optolith-database-schema/compare/v0.2.4...v0.3.0) (2022-07-23)
1384
+
1385
+
1386
+ ### ⚠ BREAKING CHANGES
1387
+
1388
+ * rework equipment item data types
1389
+ * rework tradition artifact enchantment data types
1390
+ * rework special ability data types
1391
+ * rename profession versions key and associated types
1392
+ * rework magical actions data types
1393
+ * rework prerequisite data types
1394
+ * rework rule and source data types
1395
+ * rework "top-level" data types
1396
+
1397
+ ### Features
1398
+
1399
+ * add check for data file base name pattern ([45337c7](https://github.com/elyukai/optolith-database-schema/commit/45337c7d30cfc49b579b74aec1a4d99885ce5d29))
1400
+ * add equipment item types to config ([9d68865](https://github.com/elyukai/optolith-database-schema/commit/9d688658224dcd225b617b7c83628180bf024af5))
1401
+ * add printing file name errors ([7d97c65](https://github.com/elyukai/optolith-database-schema/commit/7d97c658ec0867e6bf06fc4011c58e176cd8d804))
1402
+ * armor sturdiness rating ([a9be0ad](https://github.com/elyukai/optolith-database-schema/commit/a9be0ad34b1dd6b379d7929e2d453b535be46c24))
1403
+ * differenciate between general animal care and animal feed ([fc813a0](https://github.com/elyukai/optolith-database-schema/commit/fc813a0325b5e90346958e3b0c1e8d44900d9e1f))
1404
+ * include more rules for value presence in items into combat techniques ([5d7b4f7](https://github.com/elyukai/optolith-database-schema/commit/5d7b4f74518dfa7b4d3862d1388f586934d11c71))
1405
+ * upgrade to json schema 2020-12 ([4131750](https://github.com/elyukai/optolith-database-schema/commit/413175042b009301e754f7cbe2c66029e74daddc))
1406
+ * use json schema draft 2020-12 ([6d3781b](https://github.com/elyukai/optolith-database-schema/commit/6d3781b3ca24dc9ce9fb1f5db0b71781bf52d0ad))
1407
+
1408
+
1409
+ ### Bug Fixes
1410
+
1411
+ * attribute reference identifier maximum ([edc5447](https://github.com/elyukai/optolith-database-schema/commit/edc5447554ce2b897fa4ff89a19099f9112100cb))
1412
+ * minor errors that surfaced during database conversion for dis/advantages, professions and talismans ([0b43558](https://github.com/elyukai/optolith-database-schema/commit/0b435585522b0d0f2760f75698660a25b488ab93))
1413
+ * use json schema draft 2019-09 due to issues with yaml language server in vscode ([c406f15](https://github.com/elyukai/optolith-database-schema/commit/c406f15d284e86168eb2a5efccf43d66982171c8))
1414
+
1415
+
1416
+ * rename profession versions key and associated types ([1c7a2bf](https://github.com/elyukai/optolith-database-schema/commit/1c7a2bf85a59a9a459502e0f119315c218e23688))
1417
+ * rework "top-level" data types ([0f3d815](https://github.com/elyukai/optolith-database-schema/commit/0f3d815ea11fc1a9ff51fd376abfe463a110b322))
1418
+ * rework equipment item data types ([0bb3a24](https://github.com/elyukai/optolith-database-schema/commit/0bb3a24af01e8869249ecd5a3c950e0f0855ca02))
1419
+ * rework magical actions data types ([1e953f3](https://github.com/elyukai/optolith-database-schema/commit/1e953f304d16cd1228010a2523c1fbc4f45d1a31))
1420
+ * rework prerequisite data types ([bdebfc3](https://github.com/elyukai/optolith-database-schema/commit/bdebfc3e1f538e33a70453c3125306b8433c88e5))
1421
+ * rework rule and source data types ([cc2482f](https://github.com/elyukai/optolith-database-schema/commit/cc2482f9b67968f3ea16d4faf9944caebe14e15c))
1422
+ * rework special ability data types ([b630525](https://github.com/elyukai/optolith-database-schema/commit/b630525b09f473b73b1550a5f3cf459ab61f682d))
1423
+ * rework tradition artifact enchantment data types ([5346e17](https://github.com/elyukai/optolith-database-schema/commit/5346e1772e425c88269fee7e93b95af61668753d))
1424
+
1425
+ ### [0.2.4](https://github.com/elyukai/optolith-database-schema/compare/v0.2.3...v0.2.4) (2022-03-30)
1426
+
1427
+
1428
+ ### Features
1429
+
1430
+ * add actions as duration unit ([5e64e38](https://github.com/elyukai/optolith-database-schema/commit/5e64e38dbbcda2980bb70a2b1c1b8d01b3a31324))
1431
+ * add cantrips as target category ([ac4cf38](https://github.com/elyukai/optolith-database-schema/commit/ac4cf380bc96ea20c214938fd96eca1af28b3952))
1432
+ * add notes to tradition notes of cantrips ([7b37327](https://github.com/elyukai/optolith-database-schema/commit/7b373271312324064b0bac824511248d07f4ffbe))
1433
+ * guild mages tradition can be noted as common for in general ([df175d1](https://github.com/elyukai/optolith-database-schema/commit/df175d1f523fb9f09c0e672b4bc71437763f34b1))
1434
+ * remove compressed paramater description option ([7897b72](https://github.com/elyukai/optolith-database-schema/commit/7897b723258d97c1c71dcfef422821657c8efea2))
1435
+
1436
+
1437
+ ### Bug Fixes
1438
+
1439
+ * compressed name should be optional ([7281f6a](https://github.com/elyukai/optolith-database-schema/commit/7281f6ae055588511dfdb4ebc186f5e492e823c8))
1440
+ * cost needs to be required ([05fd208](https://github.com/elyukai/optolith-database-schema/commit/05fd2086642ee8781f1a33021f98333685234b50))
1441
+
1442
+ ### [0.2.3](https://github.com/elyukai/optolith-database-schema/compare/v0.2.2...v0.2.3) (2022-03-29)
1443
+
1444
+
1445
+ ### Features
1446
+
1447
+ * allow dis-/advantages to not contribute to maximum AP value ([9e401d0](https://github.com/elyukai/optolith-database-schema/commit/9e401d0be40797a5758220233af6c162d1ce76fb))
1448
+
1449
+
1450
+ ### Bug Fixes
1451
+
1452
+ * state prerequisite should have unique tag ([7710fd5](https://github.com/elyukai/optolith-database-schema/commit/7710fd538582b85cd67cb81b2f791774102d17db))
1453
+
1454
+ ### [0.2.2](https://github.com/elyukai/optolith-database-schema/compare/v0.2.1...v0.2.2) (2022-03-29)
1455
+
1456
+
1457
+ ### Features
1458
+
1459
+ * add offset option for deriving AP value from improvement cost ([f556207](https://github.com/elyukai/optolith-database-schema/commit/f55620751b7a68383c74ba8c4256d11802ab99c7))
1460
+
1461
+ ### [0.2.1](https://github.com/elyukai/optolith-database-schema/compare/v0.2.0...v0.2.1) (2022-03-29)
1462
+
1463
+
1464
+ ### Bug Fixes
1465
+
1466
+ * category names and prerequisites should be defined separately ([eb312fe](https://github.com/elyukai/optolith-database-schema/commit/eb312fe2fc9973ef6be36937ebd8af8c8bf30e60))
1467
+
1468
+ ## [0.2.0](https://github.com/elyukai/optolith-database-schema/compare/v0.1.28...v0.2.0) (2022-03-29)
1469
+
1470
+
1471
+ ### ⚠ BREAKING CHANGES
1472
+
1473
+ * derived select options are not a list anymore
1474
+
1475
+ * derived select options are not a list anymore ([fa64a60](https://github.com/elyukai/optolith-database-schema/commit/fa64a60670f0cdf5567a168f3a4eccd7ea71d367))
1476
+
1477
+ ### [0.1.28](https://github.com/elyukai/optolith-database-schema/compare/v0.1.27...v0.1.28) (2022-03-25)
1478
+
1479
+
1480
+ ### Features
1481
+
1482
+ * allow skills in advanced special ability restrictions ([237dbbd](https://github.com/elyukai/optolith-database-schema/commit/237dbbdeddcc0df07387196ae2537a19c1deab16))
1483
+ * items status quo ([c4b349b](https://github.com/elyukai/optolith-database-schema/commit/c4b349bf10fca92286c0510cab8ccb67563f0532))
1484
+
1485
+ ### [0.1.27](https://github.com/elyukai/optolith-database-schema/compare/v0.1.26...v0.1.27) (2022-03-24)
1486
+
1487
+
1488
+ ### Bug Fixes
1489
+
1490
+ * maximum call stack size exceeded with ui schema ([a752342](https://github.com/elyukai/optolith-database-schema/commit/a752342708b2a3e4b98e57a0adcbfd9b449d02fe))
1491
+
1492
+ ### [0.1.26](https://github.com/elyukai/optolith-database-schema/compare/v0.1.25...v0.1.26) (2022-03-24)
1493
+
1494
+
1495
+ ### Features
1496
+
1497
+ * animal diseases ([b7d2639](https://github.com/elyukai/optolith-database-schema/commit/b7d263942c14c76b6a3bfda780ecadf6cb7a60df))
1498
+ * armor types ([c5b9a22](https://github.com/elyukai/optolith-database-schema/commit/c5b9a22e5c277a28a8bc0c8cbe3b0cc41235087d))
1499
+ * diseases ([5e7c8a6](https://github.com/elyukai/optolith-database-schema/commit/5e7c8a6f83ce0b3f7c3854e759b8f042ed7451c8))
1500
+ * item groups ([b2678ac](https://github.com/elyukai/optolith-database-schema/commit/b2678aca250d4666f7a894ddfc0fc9c3f6a22bcf))
1501
+ * poisons ([fb9898f](https://github.com/elyukai/optolith-database-schema/commit/fb9898fbce8fcaaed0f83f8afe8fafeab8294a28))
1502
+ * reaches ([9ed3937](https://github.com/elyukai/optolith-database-schema/commit/9ed39370410a3af29c585a3321c59e794dad70ae))
1503
+ * ui status quo ([5cb5058](https://github.com/elyukai/optolith-database-schema/commit/5cb50581de6bb3c9a4ee7a89ae52a1dea957c8d8))
1504
+
1505
+ ### [0.1.25](https://github.com/elyukai/optolith-database-schema/compare/v0.1.24...v0.1.25) (2022-03-23)
1506
+
1507
+
1508
+ ### Features
1509
+
1510
+ * add missing json schema definitions as placeholders ([28d2c6f](https://github.com/elyukai/optolith-database-schema/commit/28d2c6f2758fc090b4854eb8656613932841b252))
1511
+
1512
+ ### [0.1.24](https://github.com/elyukai/optolith-database-schema/compare/v0.1.23...v0.1.24) (2022-03-23)
1513
+
1514
+
1515
+ ### Features
1516
+
1517
+ * add curriculum references and name additions ([468f96c](https://github.com/elyukai/optolith-database-schema/commit/468f96ce9af3b6f3135f959c9dc5d2646ea46e41))
1518
+
1519
+ ### [0.1.23](https://github.com/elyukai/optolith-database-schema/compare/v0.1.22...v0.1.23) (2022-03-23)
1520
+
1521
+
1522
+ ### Features
1523
+
1524
+ * church influences ([81b96c4](https://github.com/elyukai/optolith-database-schema/commit/81b96c49bb365527bbbededc02afb227b80bff98))
1525
+ * core rules ([3be09e3](https://github.com/elyukai/optolith-database-schema/commit/3be09e3707a198ff0697ccf9325e83037ebd6e32))
1526
+ * equipment packages ([8fc29ef](https://github.com/elyukai/optolith-database-schema/commit/8fc29ef67ab8679f95234e30e19a49486a05b6fc))
1527
+ * magical tradition placeholders# ([bfa1e18](https://github.com/elyukai/optolith-database-schema/commit/bfa1e18195b847925a8fd8d3e56b8ff130d8a584))
1528
+ * profession male/female names and groups ([a38b0f4](https://github.com/elyukai/optolith-database-schema/commit/a38b0f4401444318b57bb163eb7192dd58b83d3d))
1529
+ * talismans ([22a1a4f](https://github.com/elyukai/optolith-database-schema/commit/22a1a4f00985f70dba7d5b38f2f583263cf0389d))
1530
+ * talismans support multiple traditions ([480779e](https://github.com/elyukai/optolith-database-schema/commit/480779e9c41efc6e5685b52cc45339bb04e94c97))
1531
+ * update validation config to include latest new definitions ([bb9d856](https://github.com/elyukai/optolith-database-schema/commit/bb9d85685edee1eb3ac30589eb25e09c02bc36da))
1532
+
1533
+ ### [0.1.22](https://github.com/elyukai/optolith-database-schema/compare/v0.1.21...v0.1.22) (2022-03-23)
1534
+
1535
+
1536
+ ### Features
1537
+
1538
+ * professions ([0b6ec67](https://github.com/elyukai/optolith-database-schema/commit/0b6ec6718daae4d09ad0ce562ca69fe55cca5d4c))
1539
+
1540
+ ### [0.1.21](https://github.com/elyukai/optolith-database-schema/compare/v0.1.20...v0.1.21) (2022-03-22)
1541
+
1542
+
1543
+ ### Features
1544
+
1545
+ * personality traits ([d800133](https://github.com/elyukai/optolith-database-schema/commit/d80013327924376a13fdee0efcc7efdf6d84e616))
1546
+
1547
+ ### [0.1.20](https://github.com/elyukai/optolith-database-schema/compare/v0.1.19...v0.1.20) (2022-03-22)
1548
+
1549
+
1550
+ ### Features
1551
+
1552
+ * services can be for multiple creature types ([1853485](https://github.com/elyukai/optolith-database-schema/commit/1853485aea88c38339b5ad5d3396aef7dc263888))
1553
+
1554
+ ### [0.1.19](https://github.com/elyukai/optolith-database-schema/compare/v0.1.18...v0.1.19) (2022-03-21)
1555
+
1556
+
1557
+ ### Features
1558
+
1559
+ * add maximum and radius options to ranges ([2b7b579](https://github.com/elyukai/optolith-database-schema/commit/2b7b579e1ee3b82bb7d779e19c373935816ff8d8))
1560
+
1561
+ ### [0.1.18](https://github.com/elyukai/optolith-database-schema/compare/v0.1.17...v0.1.18) (2022-03-21)
1562
+
1563
+
1564
+ ### Features
1565
+
1566
+ * animist powers can have prerequisites ([3fa06f4](https://github.com/elyukai/optolith-database-schema/commit/3fa06f41cbf84a0fbe54d51b5c2adb78d8c74129))
1567
+ * derived animist power costs can have notes ([3ca4f3e](https://github.com/elyukai/optolith-database-schema/commit/3ca4f3edb30847fdf1878a8ed56943930be30d9d))
1568
+
1569
+
1570
+ ### Bug Fixes
1571
+
1572
+ * wrong discriminator for race prerequisite ([dea373f](https://github.com/elyukai/optolith-database-schema/commit/dea373f141a1a64f95dc8f33a3ecbfb0f7d51993))
1573
+
1574
+ ### [0.1.17](https://github.com/elyukai/optolith-database-schema/compare/v0.1.16...v0.1.17) (2022-03-21)
1575
+
1576
+
1577
+ ### Bug Fixes
1578
+
1579
+ * duration value can be 1 ([9be3bdb](https://github.com/elyukai/optolith-database-schema/commit/9be3bdbc0e0b8502e7d0424f94eaf1b7b57091eb))
1580
+ * zibilja rituals need their own custom parameters ([d60ee69](https://github.com/elyukai/optolith-database-schema/commit/d60ee693dda449d2b00d4f77dbef8d0a9e1e1e8b))
1581
+
1582
+ ### [0.1.16](https://github.com/elyukai/optolith-database-schema/compare/v0.1.15...v0.1.16) (2022-03-17)
1583
+
1584
+
1585
+ ### Features
1586
+
1587
+ * support countable entities for ae cost of elven magical songs ([2feb0de](https://github.com/elyukai/optolith-database-schema/commit/2feb0deed85b7e823597560fd83523556a283642))
1588
+
1589
+
1590
+ ### Bug Fixes
1591
+
1592
+ * sex restriction of a name group from a culture should be optional ([e09f0b4](https://github.com/elyukai/optolith-database-schema/commit/e09f0b43d8b193303d67247a060fcaad8495a99f))
1593
+
1594
+ ### [0.1.15](https://github.com/elyukai/optolith-database-schema/compare/v0.1.14...v0.1.15) (2022-03-16)
1595
+
1596
+
1597
+ ### Bug Fixes
1598
+
1599
+ * remove fields not present in cantrip ([132f37b](https://github.com/elyukai/optolith-database-schema/commit/132f37b211732c039f784e1279ff997f998d0be7))
1600
+
1601
+ ### [0.1.14](https://github.com/elyukai/optolith-database-schema/compare/v0.1.13...v0.1.14) (2022-03-16)
1602
+
1603
+
1604
+ ### Bug Fixes
1605
+
1606
+ * multiple cantrip field definitions ([db26bb4](https://github.com/elyukai/optolith-database-schema/commit/db26bb4d540cc4eb497020302dde9cfdbe5c3950))
1607
+
1608
+ ### [0.1.13](https://github.com/elyukai/optolith-database-schema/compare/v0.1.12...v0.1.13) (2022-03-16)
1609
+
1610
+
1611
+ ### Bug Fixes
1612
+
1613
+ * cantrip effects cannot have effects based on quality level ([2193205](https://github.com/elyukai/optolith-database-schema/commit/21932059554078f89e2322242cdfd44d7a956db0))
1614
+
1615
+ ### [0.1.12](https://github.com/elyukai/optolith-database-schema/compare/v0.1.11...v0.1.12) (2022-03-16)
1616
+
1617
+ ### [0.1.11](https://github.com/elyukai/optolith-database-schema/compare/v0.1.10...v0.1.11) (2022-03-16)
1618
+
1619
+
1620
+ ### Features
1621
+
1622
+ * add numeric ae cost field to ancestor glyphs ([d8e36d9](https://github.com/elyukai/optolith-database-schema/commit/d8e36d9a8a583cb57f72bbb4224ab8e10d7943c8))
1623
+
1624
+ ### [0.1.10](https://github.com/elyukai/optolith-database-schema/compare/v0.1.9...v0.1.10) (2022-03-16)
1625
+
1626
+
1627
+ ### Bug Fixes
1628
+
1629
+ * main type refs and titles ([3abec4e](https://github.com/elyukai/optolith-database-schema/commit/3abec4e47ec3356d770d45c1e47ddb5c2e0fb9e4))
1630
+
1631
+ ### [0.1.9](https://github.com/elyukai/optolith-database-schema/compare/v0.1.8...v0.1.9) (2022-03-16)
1632
+
1633
+
1634
+ ### Bug Fixes
1635
+
1636
+ * generator script should use new directories config location ([b83532b](https://github.com/elyukai/optolith-database-schema/commit/b83532bd9a84a20939dcbfd4d3f5fde060558f57))
1637
+
1638
+ ### [0.1.8](https://github.com/elyukai/optolith-database-schema/compare/v0.1.7...v0.1.8) (2022-03-16)
1639
+
1640
+
1641
+ ### Bug Fixes
1642
+
1643
+ * **npm:** ship package directory config with npm ([dbf196c](https://github.com/elyukai/optolith-database-schema/commit/dbf196c105bad7d06d016af56242adbd867de20d))
1644
+
1645
+ ### [0.1.7](https://github.com/elyukai/optolith-database-schema/compare/v0.1.6...v0.1.7) (2022-03-16)
1646
+
1647
+
1648
+ ### Features
1649
+
1650
+ * add basic validation utilities ([5676d39](https://github.com/elyukai/optolith-database-schema/commit/5676d39a3285901b750314832d7978692b1d26de))
1651
+ * add validation by schema for all types ([b3578ef](https://github.com/elyukai/optolith-database-schema/commit/b3578ef7914db35dbdfda87e1ccf95d37f61e9d7))
1652
+ * read magical actions ([543ef8e](https://github.com/elyukai/optolith-database-schema/commit/543ef8ee3567d4ec946f1be2492056d74de54976))
1653
+
1654
+
1655
+ ### Bug Fixes
1656
+
1657
+ * add extension to all relative module specifiers ([1a0b029](https://github.com/elyukai/optolith-database-schema/commit/1a0b029de43ce2026d9134b0f6dd3ee1f106afa2))
1658
+ * relative links to top-level schema documents ([065efab](https://github.com/elyukai/optolith-database-schema/commit/065efab03a5b4547a9bdc2c1fcf4a3ad010d858e))
1659
+
1660
+ ### [0.1.6](https://github.com/elyukai/optolith-database-schema/compare/v0.1.5...v0.1.6) (2022-03-11)
1661
+
1662
+ ### [0.1.5](https://github.com/elyukai/optolith-database-schema/compare/v0.1.4...v0.1.5) (2022-03-10)
1663
+
1664
+
1665
+ ### Features
1666
+
1667
+ * prerequisites ([148ffd4](https://github.com/elyukai/optolith-database-schema/commit/148ffd47a70b9fb3a1bad540de8b89319a4f8c7d))
1668
+ * select options for activatable entries ([9af975b](https://github.com/elyukai/optolith-database-schema/commit/9af975bcd1425f2a252ea41930233c3531376615))
1669
+
1670
+
1671
+ ### Bug Fixes
1672
+
1673
+ * exported name of select options ([5ecef02](https://github.com/elyukai/optolith-database-schema/commit/5ecef02d0178c7252f3b4a11d5ca0373908d6b87))
1674
+ * keep deprecated penalty translation strings ([e4a8d91](https://github.com/elyukai/optolith-database-schema/commit/e4a8d910dd561255d21801616b2c44fcdd28a30f))
1675
+ * keep deprecated translation strings for tradition artifact enchantments ([351146e](https://github.com/elyukai/optolith-database-schema/commit/351146ef87691d645a74d8f538d060095b8f7ac5))
1676
+
1677
+ ### [0.1.4](https://github.com/elyukai/optolith-database-schema/compare/v0.1.3...v0.1.4) (2022-03-09)
1678
+
1679
+
1680
+ ### Features
1681
+
1682
+ * maximum activatable activations ([1750796](https://github.com/elyukai/optolith-database-schema/commit/175079672da1a692a2a2c49df86d818257af771a))
1683
+ * tradition artifact enchantment arcane energy cost ([f71916c](https://github.com/elyukai/optolith-database-schema/commit/f71916cfa9fe5f32ad75cd7d9341c9fdef4cfba6))
1684
+ * tradition artifact enchantment binding cost ([07c25fe](https://github.com/elyukai/optolith-database-schema/commit/07c25fe1b6330bba1698794d47abc6cb0dfae402))
1685
+ * tradition artifact enchantment volume points ([5cc8ce6](https://github.com/elyukai/optolith-database-schema/commit/5cc8ce63c4eb6928faca5c6ed58cd7da9abb27cd))
1686
+
1687
+ ### [0.1.3](https://github.com/elyukai/optolith-database-schema/compare/v0.1.2...v0.1.3) (2022-03-09)
1688
+
1689
+
1690
+ ### Features
1691
+
1692
+ * first concept of penalties for combat-related special abilities ([d79d3b3](https://github.com/elyukai/optolith-database-schema/commit/d79d3b3752252342795400c905e2944d1234bd37))
1693
+
1694
+
1695
+ ### Bug Fixes
1696
+
1697
+ * remove generic numeric identifier maximum ([e121081](https://github.com/elyukai/optolith-database-schema/commit/e1210810f9cdbf8a720d0e12d5ec6ac21010a8dd))
1698
+
1699
+ ### [0.1.2](https://github.com/elyukai/optolith-database-schema/compare/v0.1.1...v0.1.2) (2022-03-09)
1700
+
1701
+
1702
+ ### Bug Fixes
1703
+
1704
+ * output for namespaced imports ([0bf0c9d](https://github.com/elyukai/optolith-database-schema/commit/0bf0c9d8713e0449342b2b01309eb38b3b1013a7))
1705
+
1706
+ ### [0.1.1](https://github.com/elyukai/optolith-database-schema/compare/v0.1.0...v0.1.1) (2022-03-09)
1707
+
1708
+
1709
+ ### Features
1710
+
1711
+ * familiar's tricks ([f8f88c9](https://github.com/elyukai/optolith-database-schema/commit/f8f88c9ab3c3339c4e26830623052d09924c4102))
1712
+ * trade secrets ([c834c31](https://github.com/elyukai/optolith-database-schema/commit/c834c31de87ce830d34c4cf9c0f60dcfb5a4d3ca))
1713
+
1714
+ ## [0.1.0](https://github.com/elyukai/optolith-database-schema/compare/v0.0.4...v0.1.0) (2022-03-08)
1715
+
1716
+
1717
+ ### ⚠ BREAKING CHANGES
1718
+
1719
+ * extract tradition artifact enchantments and rituals
1720
+ * export all prerequisites in another namespace
1721
+
1722
+ ### Features
1723
+
1724
+ * advantages and disadvantages base ([c025bb6](https://github.com/elyukai/optolith-database-schema/commit/c025bb6b8ee6dc3007c0af3b691852a864ebdea6))
1725
+ * animal shapes ([56b00f9](https://github.com/elyukai/optolith-database-schema/commit/56b00f90aff28f7cc8e8182f3f049d4593430113))
1726
+ * brews ([03a785d](https://github.com/elyukai/optolith-database-schema/commit/03a785d3cfa8fab2da0a8fe1ddb402b2b5a3ab7d))
1727
+ * continents ([95482db](https://github.com/elyukai/optolith-database-schema/commit/95482db5671440e24156c651ab094b4a10790223))
1728
+ * languages ([b85c4f1](https://github.com/elyukai/optolith-database-schema/commit/b85c4f1bcaf5199cd1501051c17b05a8b5178345))
1729
+ * patrons ([c7e9b6c](https://github.com/elyukai/optolith-database-schema/commit/c7e9b6cabdfdfca7d51eb6891bfb8b8b2973bbff))
1730
+ * pluralization categories type for user interface ([a434d53](https://github.com/elyukai/optolith-database-schema/commit/a434d53a47e0e50b129855aee8e0a5bc4b634d79))
1731
+ * scripts ([78a2e92](https://github.com/elyukai/optolith-database-schema/commit/78a2e92d72c0e2616948e9e2ccc1b51752be3b87))
1732
+ * special abilities base ([f935264](https://github.com/elyukai/optolith-database-schema/commit/f935264328d19b29b0e30a0b1907501c30a2d4c5))
1733
+
1734
+
1735
+ * export all prerequisites in another namespace ([4c09c3e](https://github.com/elyukai/optolith-database-schema/commit/4c09c3e3371beff4587327e40564866b397e311b))
1736
+ * extract tradition artifact enchantments and rituals ([58e06c6](https://github.com/elyukai/optolith-database-schema/commit/58e06c6925bb56ea854ad211efcf89f981e715b7))
1737
+
1738
+ ### [0.0.4](https://github.com/elyukai/optolith-database-schema/compare/v0.0.3...v0.0.4) (2022-03-06)
1739
+
1740
+
1741
+ ### Bug Fixes
1742
+
1743
+ * broken markdown newlines ([87c5ff2](https://github.com/elyukai/optolith-database-schema/commit/87c5ff243c6df1a9dd966167c85dd41b45c36369))
1744
+ * cost map should allow different translations ([f65683f](https://github.com/elyukai/optolith-database-schema/commit/f65683fc45f2c9f16d1571ec9fcbc449eee042b1))
1745
+
1746
+ ### [0.0.3](https://github.com/elyukai/optolith-database-schema/compare/v0.0.2...v0.0.3) (2022-03-05)
1747
+
1748
+
1749
+ ### Features
1750
+
1751
+ * blessings ([8586a40](https://github.com/elyukai/optolith-database-schema/commit/8586a4026615ff6ebdc6cfb1e988d71828e5cd23))
1752
+ * cantrips ([50397e8](https://github.com/elyukai/optolith-database-schema/commit/50397e83c9322dd36ef0cd28d2924128a6133a27))
1753
+ * pact categories ([7b9cbc6](https://github.com/elyukai/optolith-database-schema/commit/7b9cbc66a5f13b40536d03a90f726fd9aff8c15a))
1754
+
1755
+
1756
+ ### Bug Fixes
1757
+
1758
+ * liturgies do not have properties ([9b2c41d](https://github.com/elyukai/optolith-database-schema/commit/9b2c41dd9996abeac627b652cdb6ce0226760f2a))
1759
+
1760
+ ### [0.0.2](https://github.com/elyukai/optolith-database-schema/compare/v0.0.1...v0.0.2) (2022-03-05)
1761
+
1762
+
1763
+ ### Features
1764
+
1765
+ * finish basic activatable skills ([ede33df](https://github.com/elyukai/optolith-database-schema/commit/ede33df9e897cb58f19f58c4e8d5619c2f9be0e0))
1766
+
1767
+ ### 0.0.1 (2022-03-05)
1768
+
1769
+
1770
+ ### Features
1771
+
1772
+ * add combat techniques ([1fcfbbd](https://github.com/elyukai/optolith-database-schema/commit/1fcfbbd1ae7504c2f8d8d12e58aa77883c987bd3))
1773
+ * add Condition ([eeb00eb](https://github.com/elyukai/optolith-database-schema/commit/eeb00eb5b349c3833bee9391996d3dfabd07cd95))
1774
+ * add culture ([875afba](https://github.com/elyukai/optolith-database-schema/commit/875afba4b05a5ffbc0a2763ed69c53d6e6f2ac83))
1775
+ * add derived characteristics ([c97f993](https://github.com/elyukai/optolith-database-schema/commit/c97f9932b4a329dd8620d7b61ff995e61e26f7ea))
1776
+ * add ImprovementCost ([fb68fca](https://github.com/elyukai/optolith-database-schema/commit/fb68fcab306e07905bfc3d26e35f2740c5aaf9b3))
1777
+ * add initial set of types and output ([0d379b5](https://github.com/elyukai/optolith-database-schema/commit/0d379b5123534f4439a0d5fdbc7358d074e64972))
1778
+ * add locale and publication entities ([651a824](https://github.com/elyukai/optolith-database-schema/commit/651a824dc28b1bb90bb5c7d6227cba6dde57a27f))
1779
+ * add markdown annotations ([a6440d9](https://github.com/elyukai/optolith-database-schema/commit/a6440d97b9ad83f2c7bce7f94014ab2a1efb442c))
1780
+ * add Markdown availability hints in documentation ([3e2190f](https://github.com/elyukai/optolith-database-schema/commit/3e2190f5bc96fd0bf632fbcac19619ea67fd2c13))
1781
+ * add prerequisites ([4c44130](https://github.com/elyukai/optolith-database-schema/commit/4c44130326cb8d2b90edf349bbb631a70c53eef1))
1782
+ * add race ([e2d1c52](https://github.com/elyukai/optolith-database-schema/commit/e2d1c52a0aed49b3770b5e973a90dd21362fcdea))
1783
+ * add simple referencial integrity utilities ([fbb0f88](https://github.com/elyukai/optolith-database-schema/commit/fbb0f887f3a1a02f1ee3d8b44fefc4e45bc90931))
1784
+ * first iteration of magical actions ([794824b](https://github.com/elyukai/optolith-database-schema/commit/794824b643ec4ddd2ff279aca15c4f1edb61e3db))
1785
+
1786
+
1787
+ ### Bug Fixes
1788
+
1789
+ * nested types and property paths ([e51cc15](https://github.com/elyukai/optolith-database-schema/commit/e51cc154caf4b4e7bedb66a7baff533bdc313d14))