@optolith/database-schema 0.47.0 → 0.47.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
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.1](https://github.com/Optolith/database-schema/compare/v0.47.0...v0.47.1) (2026-06-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* skill check penalty for animist powers ([9ed6e70](https://github.com/Optolith/database-schema/commit/9ed6e7064587aaf3ac297c31f116b4eb64889b61))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* personality trait effect supports markdown ([af43af8](https://github.com/Optolith/database-schema/commit/af43af87de963623527e5f0e6d0071d2cd09d7bc))
|
|
16
|
+
|
|
5
17
|
## [0.47.0](https://github.com/Optolith/database-schema/compare/v0.46.0...v0.47.0) (2026-06-07)
|
|
6
18
|
|
|
7
19
|
|
package/gen/types.d.ts
CHANGED
|
@@ -18652,6 +18652,11 @@ export interface AnimistPower {
|
|
|
18652
18652
|
*/
|
|
18653
18653
|
check: SkillCheck
|
|
18654
18654
|
|
|
18655
|
+
/**
|
|
18656
|
+
* In some cases, the target's Spirit or Toughness is applied as a penalty.
|
|
18657
|
+
*/
|
|
18658
|
+
check_penalty?: SkillCheckPenalty
|
|
18659
|
+
|
|
18655
18660
|
/**
|
|
18656
18661
|
* Measurable parameters of an animist power.
|
|
18657
18662
|
*/
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import * as DB from "tsondb/schema/dsl";
|
|
2
2
|
export declare const AnimistPower: DB.Entity<"AnimistPower", {
|
|
3
3
|
check: DB.MemberDecl<DB.IncludeIdentifier<[], DB.TypeAlias<"SkillCheck", DB.Array<DB.ReferenceIdentifier>, []>>, true>;
|
|
4
|
+
check_penalty: DB.MemberDecl<DB.IncludeIdentifier<[], DB.Enum<"SkillCheckPenalty", {
|
|
5
|
+
Spirit: DB.EnumCase<null>;
|
|
6
|
+
HalfOfSpirit: DB.EnumCase<null>;
|
|
7
|
+
Toughness: DB.EnumCase<null>;
|
|
8
|
+
HigherOfSpiritAndToughness: DB.EnumCase<null>;
|
|
9
|
+
SummoningDifficulty: DB.EnumCase<null>;
|
|
10
|
+
CreationDifficulty: DB.EnumCase<null>;
|
|
11
|
+
Object: DB.EnumCase<null>;
|
|
12
|
+
}, []>>, false>;
|
|
4
13
|
parameters: DB.MemberDecl<DB.IncludeIdentifier<[], DB.Enum<"AnimistPowerPerformanceParameters", {
|
|
5
14
|
OneTime: DB.EnumCase<DB.IncludeIdentifier<[], DB.TypeAlias<"OneTimeAnimistPowerPerformanceParameters", DB.Object<{
|
|
6
15
|
cost: DB.MemberDecl<DB.IncludeIdentifier<[], DB.Enum<"OneTimeAnimistPowerCost", {
|
|
@@ -7,7 +7,7 @@ import { PropertyIdentifier, TribeIdentifier } from "../_Identifier.js";
|
|
|
7
7
|
import { ImprovementCost } from "../_ImprovementCost.js";
|
|
8
8
|
import { AnimistPowerPrerequisites } from "../_Prerequisite.js";
|
|
9
9
|
import { ResponsiveTextOptional } from "../_ResponsiveText.js";
|
|
10
|
-
import { SkillCheck } from "../_SkillCheck.js";
|
|
10
|
+
import { SkillCheck, SkillCheckPenalty } from "../_SkillCheck.js";
|
|
11
11
|
import { NestedTranslationMap } from "../Locale.js";
|
|
12
12
|
import { Errata } from "../source/_Erratum.js";
|
|
13
13
|
import { PublicationRefs, src } from "../source/_PublicationRef.js";
|
|
@@ -19,6 +19,10 @@ export const AnimistPower = DB.Entity(import.meta.url, {
|
|
|
19
19
|
comment: "Lists the linked three attributes used to make a skill check.",
|
|
20
20
|
type: DB.IncludeIdentifier(SkillCheck),
|
|
21
21
|
}),
|
|
22
|
+
check_penalty: DB.Optional({
|
|
23
|
+
comment: "In some cases, the target's Spirit or Toughness is applied as a penalty.",
|
|
24
|
+
type: DB.IncludeIdentifier(SkillCheckPenalty),
|
|
25
|
+
}),
|
|
22
26
|
parameters: DB.Required({
|
|
23
27
|
comment: "Measurable parameters of an animist power.",
|
|
24
28
|
type: DB.IncludeIdentifier(AnimistPowerPerformanceParameters),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@optolith/database-schema",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.1",
|
|
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",
|