optolith-database-schema 0.25.0 → 0.26.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 (89) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/gen/types.d.ts +390 -300
  3. package/lib/main.d.ts +7 -0
  4. package/lib/types/Advantage.d.ts +11 -0
  5. package/lib/types/CombatTechnique.d.ts +79 -55
  6. package/lib/types/CombatTechnique.js +25 -7
  7. package/lib/types/Disadvantage.d.ts +11 -0
  8. package/lib/types/HomunculusType.d.ts +6 -0
  9. package/lib/types/HomunculusType.js +15 -0
  10. package/lib/types/Profession.d.ts +25 -0
  11. package/lib/types/Profession.js +18 -2
  12. package/lib/types/_ActivatableAdventurePointsValue.d.ts +1 -0
  13. package/lib/types/_ActivatableAdventurePointsValue.js +4 -0
  14. package/lib/types/_ActivatableNonMundane.d.ts +10 -2
  15. package/lib/types/_ActivatableNonMundane.js +11 -1
  16. package/lib/types/_ActivatableSelectOptionCategory.d.ts +699 -0
  17. package/lib/types/_ActivatableSelectOptionCategory.js +73 -0
  18. package/lib/types/_ActivatableSelectOptions.d.ts +10 -0
  19. package/lib/types/equipment/item/BandageOrRemedy.js +10 -0
  20. package/lib/types/equipment/item/CeremonialItem.js +10 -0
  21. package/lib/types/equipment/item/Clothes.js +10 -0
  22. package/lib/types/equipment/item/Container.js +10 -0
  23. package/lib/types/equipment/item/EquipmentOfBlessedOnes.js +10 -0
  24. package/lib/types/equipment/item/IlluminationLightSource.js +10 -0
  25. package/lib/types/equipment/item/IlluminationRefillOrSupply.js +10 -0
  26. package/lib/types/equipment/item/Liebesspielzeug.js +10 -0
  27. package/lib/types/equipment/item/LuxuryGood.js +10 -0
  28. package/lib/types/equipment/item/MagicalArtifact.js +10 -0
  29. package/lib/types/equipment/item/MusicalInstrument.js +10 -0
  30. package/lib/types/equipment/item/TravelGearOrTool.js +10 -0
  31. package/lib/types/equipment/item/Weapon.d.ts +45 -45
  32. package/lib/types/equipment/item/Weapon.js +7 -5
  33. package/lib/types/equipment/item/WeaponAccessory.js +10 -0
  34. package/lib/types/equipment/item/_Item.js +13 -1
  35. package/lib/types/equipment/item/_Weapon.d.ts +13 -4
  36. package/lib/types/equipment/item/_Weapon.js +32 -4
  37. package/lib/types/specialAbility/AdvancedCombatSpecialAbility.d.ts +11 -0
  38. package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.d.ts +11 -0
  39. package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.d.ts +11 -0
  40. package/lib/types/specialAbility/AdvancedSkillSpecialAbility.d.ts +11 -0
  41. package/lib/types/specialAbility/AncestorGlyph.d.ts +11 -0
  42. package/lib/types/specialAbility/BlessedTradition.d.ts +11 -0
  43. package/lib/types/specialAbility/BrawlingSpecialAbility.d.ts +11 -0
  44. package/lib/types/specialAbility/CeremonialItemSpecialAbility.d.ts +11 -0
  45. package/lib/types/specialAbility/CombatSpecialAbility.d.ts +11 -0
  46. package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +11 -0
  47. package/lib/types/specialAbility/CommandSpecialAbility.d.ts +11 -0
  48. package/lib/types/specialAbility/FamiliarSpecialAbility.d.ts +11 -0
  49. package/lib/types/specialAbility/FatePointSexSpecialAbility.d.ts +11 -0
  50. package/lib/types/specialAbility/FatePointSpecialAbility.d.ts +11 -0
  51. package/lib/types/specialAbility/GeneralSpecialAbility.d.ts +11 -0
  52. package/lib/types/specialAbility/KarmaSpecialAbility.d.ts +11 -0
  53. package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +11 -0
  54. package/lib/types/specialAbility/LycantropicGift.d.ts +11 -0
  55. package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +11 -0
  56. package/lib/types/specialAbility/MagicalSpecialAbility.d.ts +11 -0
  57. package/lib/types/specialAbility/MagicalTradition.d.ts +11 -0
  58. package/lib/types/specialAbility/PactGift.d.ts +11 -0
  59. package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.d.ts +11 -0
  60. package/lib/types/specialAbility/Sermon.d.ts +11 -0
  61. package/lib/types/specialAbility/SexSpecialAbility.d.ts +11 -0
  62. package/lib/types/specialAbility/SikaryanDrainSpecialAbility.d.ts +11 -0
  63. package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +11 -0
  64. package/lib/types/specialAbility/VampiricGift.d.ts +11 -0
  65. package/lib/types/specialAbility/Vision.d.ts +11 -0
  66. package/lib/types/specialAbility/sub/TradeSecret.d.ts +880 -161
  67. package/lib/types/specialAbility/sub/TradeSecret.js +9 -5
  68. package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.d.ts +16 -1
  69. package/lib/types/traditionArtifacts/AttireEnchantment.d.ts +16 -1
  70. package/lib/types/traditionArtifacts/Beutelzauber.d.ts +16 -1
  71. package/lib/types/traditionArtifacts/BowlEnchantment.d.ts +16 -1
  72. package/lib/types/traditionArtifacts/CauldronEnchantment.d.ts +16 -1
  73. package/lib/types/traditionArtifacts/ChronicleEnchantment.d.ts +16 -1
  74. package/lib/types/traditionArtifacts/DaggerRitual.d.ts +16 -1
  75. package/lib/types/traditionArtifacts/FoolsHatEnchantment.d.ts +16 -1
  76. package/lib/types/traditionArtifacts/Haubenzauber.d.ts +16 -1
  77. package/lib/types/traditionArtifacts/InstrumentEnchantment.d.ts +16 -1
  78. package/lib/types/traditionArtifacts/Krallenkettenzauber.d.ts +16 -1
  79. package/lib/types/traditionArtifacts/Kristallkugelzauber.d.ts +16 -1
  80. package/lib/types/traditionArtifacts/OrbEnchantment.d.ts +16 -1
  81. package/lib/types/traditionArtifacts/RingEnchantment.d.ts +16 -1
  82. package/lib/types/traditionArtifacts/SickleRitual.d.ts +16 -1
  83. package/lib/types/traditionArtifacts/SpellSwordEnchantment.d.ts +16 -1
  84. package/lib/types/traditionArtifacts/StaffEnchantment.d.ts +16 -1
  85. package/lib/types/traditionArtifacts/ToyEnchantment.d.ts +16 -1
  86. package/lib/types/traditionArtifacts/Trinkhornzauber.d.ts +16 -1
  87. package/lib/types/traditionArtifacts/WandEnchantment.d.ts +16 -1
  88. package/lib/types/traditionArtifacts/WeaponEnchantment.d.ts +16 -1
  89. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,36 @@
2
2
 
3
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
4
 
5
+ ## [0.26.1](https://github.com/elyukai/optolith-database-schema/compare/v0.26.0...v0.26.1) (2025-12-23)
6
+
7
+
8
+ ### Features
9
+
10
+ * add homunculus type entity ([4fb42d3](https://github.com/elyukai/optolith-database-schema/commit/4fb42d3f8497fa1b06a4e7ba2a0853ef5844fd8e))
11
+ * allow homunculus types as derived select options ([8062836](https://github.com/elyukai/optolith-database-schema/commit/8062836e9c2ebc290da58842b6acf17679451514))
12
+ * customize AP value string generation ([2dc62b5](https://github.com/elyukai/optolith-database-schema/commit/2dc62b5907a178e450b831b92b8e8788de832cd1))
13
+ * streamline trade secret select options ([8eaab37](https://github.com/elyukai/optolith-database-schema/commit/8eaab37e9b92f0dfca1bab67a5ebbb6dcf30003d))
14
+ * support binding cost generation for select options ([c8de5a7](https://github.com/elyukai/optolith-database-schema/commit/c8de5a74bd7e7277b4d141b5abd5e1e949634f5e))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * 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)
20
+ * require binding cost map option translations ([b2c23c7](https://github.com/elyukai/optolith-database-schema/commit/b2c23c7099809ff96ba4b3ee9ad24fde710e05c2))
21
+
22
+ ## [0.26.0](https://github.com/elyukai/optolith-database-schema/compare/v0.25.0...v0.26.0) (2025-12-15)
23
+
24
+
25
+ ### ⚠ BREAKING CHANGES
26
+
27
+ * Combat techniques need to specify special rules
28
+ differently.
29
+
30
+ ### Features
31
+
32
+ * 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)
33
+ * custom constraint for weapon values ([02be29d](https://github.com/elyukai/optolith-database-schema/commit/02be29dab7bca40fb4c370c48a9f775ccf8aaf7d))
34
+
5
35
  ## [0.25.0](https://github.com/elyukai/optolith-database-schema/compare/v0.24.3...v0.25.0) (2025-12-14)
6
36
 
7
37