optolith-database-schema 0.41.0 → 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.
- package/CHANGELOG.md +26 -0
- package/gen/types.d.ts +521 -9
- package/lib/main.js +2 -0
- package/lib/types/Ceremony.d.ts +3 -0
- package/lib/types/FamiliarsTrick.d.ts +1 -0
- package/lib/types/FamiliarsTrick.js +8 -2
- package/lib/types/LiturgicalChant.d.ts +3 -0
- package/lib/types/Locale.d.ts +10 -6
- package/lib/types/Locale.js +10 -6
- package/lib/types/Profession.d.ts +14 -0
- package/lib/types/Race.d.ts +6 -4
- package/lib/types/Race.js +10 -2
- package/lib/types/Ritual.d.ts +3 -0
- package/lib/types/Spell.d.ts +3 -0
- package/lib/types/_ActivatableSkill.d.ts +8 -0
- package/lib/types/_ActivatableSkillCheckResultBased.d.ts +2 -0
- package/lib/types/_ActivatableSkillCheckResultBased.js +1 -0
- package/lib/types/_ActivatableSkillCost.d.ts +48 -0
- package/lib/types/_ActivatableSkillCost.js +2 -2
- package/lib/types/_ActivatableSkillDuration.d.ts +2 -0
- package/lib/types/_ActivatableSkillRange.d.ts +1 -0
- package/lib/types/_Identifier.d.ts +2 -0
- package/lib/types/_Identifier.js +4 -0
- package/lib/types/_IdentifierGroup.d.ts +2 -0
- package/lib/types/_IdentifierGroup.js +3 -1
- package/lib/types/index.d.ts +2 -0
- package/lib/types/index.js +2 -0
- package/lib/types/magicalActions/AnimistPower.d.ts +1 -0
- package/lib/types/magicalActions/Bannzeichen.d.ts +244 -0
- package/lib/types/magicalActions/Bannzeichen.js +231 -0
- package/lib/types/magicalActions/Curse.d.ts +2 -0
- package/lib/types/magicalActions/DominationRitual.d.ts +2 -0
- package/lib/types/magicalActions/GeodeRitual.d.ts +1 -0
- package/lib/types/magicalActions/GoblinRitual.d.ts +286 -0
- package/lib/types/magicalActions/GoblinRitual.js +196 -0
- package/lib/types/magicalActions/JesterTrick.d.ts +3 -0
- package/lib/types/magicalActions/MagicalRune.d.ts +2 -0
- package/lib/types/magicalActions/ZibiljaRitual.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
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.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
|
+
|
|
5
31
|
## [0.41.0](https://github.com/elyukai/optolith-database-schema/compare/v0.40.0...v0.41.0) (2026-03-21)
|
|
6
32
|
|
|
7
33
|
|