optolith-database-schema 0.34.12 → 0.34.13
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.34.13](https://github.com/elyukai/optolith-database-schema/compare/v0.34.12...v0.34.13) (2026-03-11)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* alchemical poison can be demonic as well ([21e033e](https://github.com/elyukai/optolith-database-schema/commit/21e033e0169c051baf5f3167e070adcde9da76b3))
|
|
11
|
+
|
|
5
12
|
## [0.34.12](https://github.com/elyukai/optolith-database-schema/compare/v0.34.11...v0.34.12) (2026-03-10)
|
|
6
13
|
|
|
7
14
|
|
package/gen/types.d.ts
CHANGED
|
@@ -22392,6 +22392,11 @@ export interface AlchemicalPoison {
|
|
|
22392
22392
|
*/
|
|
22393
22393
|
intoxicant?: Intoxicant
|
|
22394
22394
|
|
|
22395
|
+
/**
|
|
22396
|
+
* Whether the poison is of demonic nature or not.
|
|
22397
|
+
*/
|
|
22398
|
+
isDemonic?: boolean
|
|
22399
|
+
|
|
22395
22400
|
/**
|
|
22396
22401
|
* All translations for the entry, identified by IETF language tag (BCP47).
|
|
22397
22402
|
*/
|
|
@@ -128,6 +128,7 @@ export declare const Poison: DB.Entity<"Poison", {
|
|
|
128
128
|
special: DB.MemberDecl<DB.String, false>;
|
|
129
129
|
}>, true>;
|
|
130
130
|
}>, []>>, false>;
|
|
131
|
+
isDemonic: DB.MemberDecl<DB.Boolean, false>;
|
|
131
132
|
translations: DB.MemberDecl<DB.NestedEntityMap<"AlchemicalPoisonTranslation", {
|
|
132
133
|
typical_ingredients: DB.MemberDecl<DB.Array<DB.String>, true>;
|
|
133
134
|
brewing_process_prerequisites: DB.MemberDecl<DB.String, false>;
|
|
@@ -492,6 +493,7 @@ export declare const AlchemicalPoison: DB.TypeAlias<"AlchemicalPoison", DB.Objec
|
|
|
492
493
|
special: DB.MemberDecl<DB.String, false>;
|
|
493
494
|
}>, true>;
|
|
494
495
|
}>, []>>, false>;
|
|
496
|
+
isDemonic: DB.MemberDecl<DB.Boolean, false>;
|
|
495
497
|
translations: DB.MemberDecl<DB.NestedEntityMap<"AlchemicalPoisonTranslation", {
|
|
496
498
|
typical_ingredients: DB.MemberDecl<DB.Array<DB.String>, true>;
|
|
497
499
|
brewing_process_prerequisites: DB.MemberDecl<DB.String, false>;
|
|
@@ -305,6 +305,11 @@ export const AlchemicalPoison = DB.TypeAlias(import.meta.url, {
|
|
|
305
305
|
comment: "Additional information if the poison is an intoxicant.",
|
|
306
306
|
type: DB.IncludeIdentifier(Intoxicant),
|
|
307
307
|
}),
|
|
308
|
+
isDemonic: DB.Optional({
|
|
309
|
+
displayName: "Is demonic?",
|
|
310
|
+
comment: "Whether the poison is of demonic nature or not.",
|
|
311
|
+
type: DB.Boolean(),
|
|
312
|
+
}),
|
|
308
313
|
translations: NestedTranslationMap(DB.Required, "AlchemicalPoison", DB.Object({
|
|
309
314
|
typical_ingredients: DB.Required({
|
|
310
315
|
comment: "A list of typical ingredients.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.13",
|
|
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",
|