@optolith/database-schema 0.47.1 → 0.47.2
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
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.47.2](https://github.com/Optolith/database-schema/compare/v0.47.1...v0.47.2) (2026-06-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* optional target category for animist powers ([aa556a4](https://github.com/Optolith/database-schema/commit/aa556a48c842fabc80b2564c15743fc68b730668))
|
|
11
|
+
|
|
5
12
|
## [0.47.1](https://github.com/Optolith/database-schema/compare/v0.47.0...v0.47.1) (2026-06-08)
|
|
6
13
|
|
|
7
14
|
|
package/gen/types.d.ts
CHANGED
|
@@ -18662,6 +18662,11 @@ export interface AnimistPower {
|
|
|
18662
18662
|
*/
|
|
18663
18663
|
parameters: AnimistPowerPerformanceParameters
|
|
18664
18664
|
|
|
18665
|
+
/**
|
|
18666
|
+
* The target category – the kind of creature or object – the skill affects.
|
|
18667
|
+
*/
|
|
18668
|
+
target?: AffectedTargetCategories
|
|
18669
|
+
|
|
18665
18670
|
/**
|
|
18666
18671
|
* The associated property.
|
|
18667
18672
|
*/
|
|
@@ -153,6 +153,19 @@ export declare const AnimistPower: DB.Entity<"AnimistPower", {
|
|
|
153
153
|
}, []>>, true>;
|
|
154
154
|
}>, []>>>;
|
|
155
155
|
}, []>>, true>;
|
|
156
|
+
target: DB.MemberDecl<DB.IncludeIdentifier<[], DB.TypeAlias<"AffectedTargetCategories", DB.Array<DB.IncludeIdentifier<[], DB.TypeAlias<"SpecificAffectedTargetCategory", DB.Object<{
|
|
157
|
+
id: DB.MemberDecl<DB.IncludeIdentifier<[], DB.Enum<"SpecificAffectedTargetCategoryIdentifier", {
|
|
158
|
+
Self: DB.EnumCase<null>;
|
|
159
|
+
Zone: DB.EnumCase<null>;
|
|
160
|
+
LiturgicalChantsAndCeremonies: DB.EnumCase<null>;
|
|
161
|
+
Cantrips: DB.EnumCase<null>;
|
|
162
|
+
Spellworks: DB.EnumCase<null>;
|
|
163
|
+
Predefined: DB.EnumCase<DB.ReferenceIdentifier>;
|
|
164
|
+
}, []>>, true>;
|
|
165
|
+
translations: DB.MemberDecl<DB.NestedEntityMap<"SpecificAffectedTargetCategoryTranslation", {
|
|
166
|
+
note: DB.MemberDecl<DB.String, true>;
|
|
167
|
+
}>, false>;
|
|
168
|
+
}>, []>>>, []>>, false>;
|
|
156
169
|
property: DB.MemberDecl<DB.ReferenceIdentifier, true>;
|
|
157
170
|
tribe_tradition: DB.MemberDecl<DB.Array<DB.ReferenceIdentifier>, true>;
|
|
158
171
|
improvement_cost: DB.MemberDecl<DB.IncludeIdentifier<[], DB.Enum<"AnimistPowerImprovementCost", {
|
|
@@ -3,6 +3,7 @@ import { name_in_library } from "../_Activatable.js";
|
|
|
3
3
|
import { OldParameter } from "../_ActivatableSkill.js";
|
|
4
4
|
import { CheckResultBasedDuration, DurationUnitValue } from "../_ActivatableSkillDuration.js";
|
|
5
5
|
import { ActivatableSkillEffect } from "../_ActivatableSkillEffect.js";
|
|
6
|
+
import { AffectedTargetCategories } from "../_ActivatableSkillTargetCategory.js";
|
|
6
7
|
import { PropertyIdentifier, TribeIdentifier } from "../_Identifier.js";
|
|
7
8
|
import { ImprovementCost } from "../_ImprovementCost.js";
|
|
8
9
|
import { AnimistPowerPrerequisites } from "../_Prerequisite.js";
|
|
@@ -27,6 +28,10 @@ export const AnimistPower = DB.Entity(import.meta.url, {
|
|
|
27
28
|
comment: "Measurable parameters of an animist power.",
|
|
28
29
|
type: DB.IncludeIdentifier(AnimistPowerPerformanceParameters),
|
|
29
30
|
}),
|
|
31
|
+
target: DB.Optional({
|
|
32
|
+
comment: "The target category – the kind of creature or object – the skill affects.",
|
|
33
|
+
type: DB.IncludeIdentifier(AffectedTargetCategories),
|
|
34
|
+
}),
|
|
30
35
|
property: DB.Required({
|
|
31
36
|
comment: "The associated property.",
|
|
32
37
|
type: PropertyIdentifier(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optolith/database-schema",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.2",
|
|
4
4
|
"description": "Definitions and utilities for the flat-file database of Optolith, a character creation tool for the Pen and Paper RPG “The Dark Eye 5”, and its external integrations into other software.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tde",
|