optolith-database-schema 0.18.8 → 0.18.11
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 +23 -0
- package/lib/main.js +3 -1
- package/lib/types/Advantage.d.ts +10 -0
- package/lib/types/Disadvantage.d.ts +10 -0
- package/lib/types/_Activatable.d.ts +187 -1
- package/lib/types/_Activatable.js +47 -4
- package/lib/types/_Identifier.d.ts +2 -0
- package/lib/types/_Identifier.js +4 -0
- package/lib/types/_IdentifierGroup.d.ts +53 -0
- package/lib/types/_IdentifierGroup.js +58 -0
- package/lib/types/equipment/item/Book.d.ts +69 -53
- package/lib/types/equipment/item/Book.js +61 -2
- package/lib/types/index.d.ts +2 -0
- package/lib/types/index.js +2 -0
- package/lib/types/rule/AlternativeRule.d.ts +53 -0
- package/lib/types/rule/AlternativeRule.js +34 -0
- package/lib/types/rule/AlternativeRule_PlayerType.d.ts +6 -0
- package/lib/types/rule/AlternativeRule_PlayerType.js +16 -0
- package/lib/types/specialAbility/AdvancedCombatSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/AdvancedKarmaSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/AdvancedMagicalSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/AdvancedSkillSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/AncestorGlyph.d.ts +10 -0
- package/lib/types/specialAbility/BlessedTradition.d.ts +10 -0
- package/lib/types/specialAbility/BrawlingSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/CeremonialItemSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/CombatSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/CommandSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/FamiliarSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/FatePointSexSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/FatePointSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/GeneralSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/KarmaSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/LycantropicGift.d.ts +10 -0
- package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/MagicalSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/MagicalTradition.d.ts +10 -0
- package/lib/types/specialAbility/PactGift.d.ts +10 -0
- package/lib/types/specialAbility/ProtectiveWardingCircleSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/Sermon.d.ts +10 -0
- package/lib/types/specialAbility/SexSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/SikaryanDrainSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +10 -0
- package/lib/types/specialAbility/VampiricGift.d.ts +10 -0
- package/lib/types/specialAbility/Vision.d.ts +10 -0
- package/lib/types/specialAbility/sub/TradeSecret.d.ts +219 -41
- package/lib/types/specialAbility/sub/TradeSecret.js +31 -3
- package/lib/types/traditionArtifacts/ArcaneOrbEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/AttireEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/BowlEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/CauldronEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/ChronicleEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/DaggerRitual.d.ts +10 -0
- package/lib/types/traditionArtifacts/FoolsHatEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/InstrumentEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/Krallenkettenzauber.d.ts +10 -0
- package/lib/types/traditionArtifacts/OrbEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/RingEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/SickleRitual.d.ts +10 -0
- package/lib/types/traditionArtifacts/SpellSwordEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/StaffEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/ToyEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/Trinkhornzauber.d.ts +10 -0
- package/lib/types/traditionArtifacts/WandEnchantment.d.ts +10 -0
- package/lib/types/traditionArtifacts/WeaponEnchantment.d.ts +10 -0
- package/package.json +3 -3
|
@@ -1,70 +1,86 @@
|
|
|
1
|
-
import { Entity, IncludeIdentifier, Object, String } from "tsondb/schema/def";
|
|
1
|
+
import { Array, Entity, Enum, EnumCase, IncludeIdentifier, Integer, Object, String, TypeAlias } from "tsondb/schema/def";
|
|
2
2
|
export declare const Book: Entity<"Book", {
|
|
3
|
-
cost: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
3
|
+
cost: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"BookCost", {
|
|
4
|
+
Constant: EnumCase<Integer>;
|
|
5
|
+
Variable: EnumCase<Array<IncludeIdentifier<[], Enum<"BookCostVariant", {
|
|
6
|
+
Definite: EnumCase<IncludeIdentifier<[], TypeAlias<"DefiniteBookCostVariant", Object<{
|
|
7
|
+
cost: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"Cost", {
|
|
8
|
+
Free: EnumCase<null>;
|
|
9
|
+
Various: EnumCase<null>;
|
|
10
|
+
Invaluable: EnumCase<null>;
|
|
11
|
+
Fixed: EnumCase<IncludeIdentifier<[], TypeAlias<"FixedCost", Object<{
|
|
12
|
+
value: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").FloatType, true>;
|
|
13
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"FixedCostTranslation", {
|
|
14
|
+
wrap_in_text: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
15
|
+
}>, false>;
|
|
16
|
+
}>, []>>>;
|
|
17
|
+
Range: EnumCase<IncludeIdentifier<[], TypeAlias<"CostRange", Object<{
|
|
18
|
+
from: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").FloatType, true>;
|
|
19
|
+
to: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").FloatType, true>;
|
|
20
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"CostRangeTranslation", {
|
|
21
|
+
wrap_in_text: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
22
|
+
}>, false>;
|
|
23
|
+
}>, []>>>;
|
|
24
|
+
}, []>>, true>;
|
|
25
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"DefiniteBookCostVariantTranslation", {
|
|
26
|
+
label: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
27
|
+
}>, true>;
|
|
28
|
+
}>, []>>>;
|
|
29
|
+
Indefinite: EnumCase<IncludeIdentifier<[], TypeAlias<"IndefiniteBookCostVariant", Object<{
|
|
30
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"IndefiniteBookCostVariantTranslation", {
|
|
31
|
+
label: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
32
|
+
description: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
33
|
+
}>, true>;
|
|
34
|
+
}>, []>>>;
|
|
35
|
+
}, []>>>>;
|
|
20
36
|
}, []>>, true>;
|
|
21
|
-
weight: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
22
|
-
complexity: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
23
|
-
Primitive:
|
|
24
|
-
Simple:
|
|
25
|
-
Complex:
|
|
26
|
-
ap_value: import("tsondb/schema/def").MemberDecl<
|
|
37
|
+
weight: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"Weight", import("tsondb/schema/def").FloatType, []>>, false>;
|
|
38
|
+
complexity: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"Complexity", {
|
|
39
|
+
Primitive: EnumCase<null>;
|
|
40
|
+
Simple: EnumCase<null>;
|
|
41
|
+
Complex: EnumCase<IncludeIdentifier<[], TypeAlias<"ComplexComplexity", Object<{
|
|
42
|
+
ap_value: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
27
43
|
}>, []>>>;
|
|
28
44
|
}, []>>, false>;
|
|
29
|
-
structure_points: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
30
|
-
points: import("tsondb/schema/def").MemberDecl<
|
|
45
|
+
structure_points: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"StructurePoints", Array<IncludeIdentifier<[], TypeAlias<"StructurePointsComponent", Object<{
|
|
46
|
+
points: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
31
47
|
}>, []>>>, []>>, false>;
|
|
32
|
-
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
48
|
+
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"PublicationRefs", Array<IncludeIdentifier<[], TypeAlias<"PublicationRef", Object<{
|
|
33
49
|
id: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
34
50
|
occurrences: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<string, {
|
|
35
|
-
initial: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
36
|
-
printing: import("tsondb/schema/def").MemberDecl<
|
|
37
|
-
pages: import("tsondb/schema/def").MemberDecl<
|
|
38
|
-
first_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
39
|
-
InsideCoverFront:
|
|
40
|
-
InsideCoverBack:
|
|
41
|
-
Numbered:
|
|
51
|
+
initial: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"InitialOccurrence", Object<{
|
|
52
|
+
printing: import("tsondb/schema/def").MemberDecl<Integer, false>;
|
|
53
|
+
pages: import("tsondb/schema/def").MemberDecl<Array<IncludeIdentifier<[], TypeAlias<"PageRange", Object<{
|
|
54
|
+
first_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"Page", {
|
|
55
|
+
InsideCoverFront: EnumCase<null>;
|
|
56
|
+
InsideCoverBack: EnumCase<null>;
|
|
57
|
+
Numbered: EnumCase<Integer>;
|
|
42
58
|
}, []>>, true>;
|
|
43
|
-
last_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
44
|
-
InsideCoverFront:
|
|
45
|
-
InsideCoverBack:
|
|
46
|
-
Numbered:
|
|
59
|
+
last_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"Page", {
|
|
60
|
+
InsideCoverFront: EnumCase<null>;
|
|
61
|
+
InsideCoverBack: EnumCase<null>;
|
|
62
|
+
Numbered: EnumCase<Integer>;
|
|
47
63
|
}, []>>, false>;
|
|
48
64
|
}>, []>>>, true>;
|
|
49
65
|
}>, []>>, true>;
|
|
50
|
-
revisions: import("tsondb/schema/def").MemberDecl<
|
|
51
|
-
Since:
|
|
52
|
-
printing: import("tsondb/schema/def").MemberDecl<
|
|
53
|
-
pages: import("tsondb/schema/def").MemberDecl<
|
|
54
|
-
first_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
55
|
-
InsideCoverFront:
|
|
56
|
-
InsideCoverBack:
|
|
57
|
-
Numbered:
|
|
66
|
+
revisions: import("tsondb/schema/def").MemberDecl<Array<IncludeIdentifier<[], Enum<"Revision", {
|
|
67
|
+
Since: EnumCase<IncludeIdentifier<[], TypeAlias<"Since", Object<{
|
|
68
|
+
printing: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
69
|
+
pages: import("tsondb/schema/def").MemberDecl<Array<IncludeIdentifier<[], TypeAlias<"PageRange", Object<{
|
|
70
|
+
first_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"Page", {
|
|
71
|
+
InsideCoverFront: EnumCase<null>;
|
|
72
|
+
InsideCoverBack: EnumCase<null>;
|
|
73
|
+
Numbered: EnumCase<Integer>;
|
|
58
74
|
}, []>>, true>;
|
|
59
|
-
last_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
60
|
-
InsideCoverFront:
|
|
61
|
-
InsideCoverBack:
|
|
62
|
-
Numbered:
|
|
75
|
+
last_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], Enum<"Page", {
|
|
76
|
+
InsideCoverFront: EnumCase<null>;
|
|
77
|
+
InsideCoverBack: EnumCase<null>;
|
|
78
|
+
Numbered: EnumCase<Integer>;
|
|
63
79
|
}, []>>, false>;
|
|
64
80
|
}>, []>>>, true>;
|
|
65
81
|
}>, []>>>;
|
|
66
|
-
Deprecated:
|
|
67
|
-
printing: import("tsondb/schema/def").MemberDecl<
|
|
82
|
+
Deprecated: EnumCase<IncludeIdentifier<[], TypeAlias<"Deprecation", Object<{
|
|
83
|
+
printing: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
68
84
|
}>, []>>>;
|
|
69
85
|
}, []>>>, false>;
|
|
70
86
|
}>, true>;
|
|
@@ -76,7 +92,7 @@ export declare const Book: Entity<"Book", {
|
|
|
76
92
|
script: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
77
93
|
note: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
78
94
|
rules: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
79
|
-
errata: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[],
|
|
95
|
+
errata: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"Errata", Array<IncludeIdentifier<[], TypeAlias<"Erratum", Object<{
|
|
80
96
|
date: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").DateType, true>;
|
|
81
97
|
description: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
82
98
|
}>, []>>>, []>>, false>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Entity, IncludeIdentifier, Object, Optional, Required, String } from "tsondb/schema/def";
|
|
1
|
+
import { Array, Entity, Enum, EnumCase, IncludeIdentifier, Integer, Object, Optional, Required, String, TypeAlias, } from "tsondb/schema/def";
|
|
2
2
|
import { NestedTranslationMap } from "../../Locale.js";
|
|
3
3
|
import { Errata } from "../../source/_Erratum.js";
|
|
4
4
|
import { src } from "../../source/_PublicationRef.js";
|
|
@@ -9,7 +9,7 @@ export const Book = Entity(import.meta.url, {
|
|
|
9
9
|
type: () => Object({
|
|
10
10
|
cost: Required({
|
|
11
11
|
comment: "The cost in silverthalers.",
|
|
12
|
-
type: IncludeIdentifier(
|
|
12
|
+
type: IncludeIdentifier(BookCost),
|
|
13
13
|
}),
|
|
14
14
|
weight: Optional({
|
|
15
15
|
comment: "The weight in kg.",
|
|
@@ -56,3 +56,62 @@ export const Book = Entity(import.meta.url, {
|
|
|
56
56
|
}),
|
|
57
57
|
displayName: {},
|
|
58
58
|
});
|
|
59
|
+
const BookCost = Enum(import.meta.url, {
|
|
60
|
+
name: "BookCost",
|
|
61
|
+
values: () => ({
|
|
62
|
+
Constant: EnumCase({
|
|
63
|
+
comment: "The book has a fixed cost.",
|
|
64
|
+
type: Integer({ minimum: 0 }),
|
|
65
|
+
}),
|
|
66
|
+
Variable: EnumCase({
|
|
67
|
+
comment: "The book’s cost varies by edition or other factors.",
|
|
68
|
+
type: Array(IncludeIdentifier(BookCostVariant), { minItems: 2 }),
|
|
69
|
+
}),
|
|
70
|
+
}),
|
|
71
|
+
});
|
|
72
|
+
const BookCostVariant = Enum(import.meta.url, {
|
|
73
|
+
name: "BookCostVariant",
|
|
74
|
+
comment: "A variant for the book’s cost.",
|
|
75
|
+
values: () => ({
|
|
76
|
+
Definite: EnumCase({
|
|
77
|
+
comment: "A definite cost value.",
|
|
78
|
+
type: IncludeIdentifier(DefiniteBookCostVariant),
|
|
79
|
+
}),
|
|
80
|
+
Indefinite: EnumCase({
|
|
81
|
+
comment: "An indefinite cost value.",
|
|
82
|
+
type: IncludeIdentifier(IndefiniteBookCostVariant),
|
|
83
|
+
}),
|
|
84
|
+
}),
|
|
85
|
+
});
|
|
86
|
+
const DefiniteBookCostVariant = TypeAlias(import.meta.url, {
|
|
87
|
+
name: "DefiniteBookCostVariant",
|
|
88
|
+
comment: "A definite cost value for the book, such as a specific cost or cost range.",
|
|
89
|
+
type: () => Object({
|
|
90
|
+
cost: Required({
|
|
91
|
+
comment: "The cost in silverthalers.",
|
|
92
|
+
type: IncludeIdentifier(Cost),
|
|
93
|
+
}),
|
|
94
|
+
translations: NestedTranslationMap(Required, "DefiniteBookCostVariant", Object({
|
|
95
|
+
label: Optional({
|
|
96
|
+
comment: "The label for the cost variant, e.g. “Original script”.",
|
|
97
|
+
type: String({ minLength: 1, isMarkdown: true }),
|
|
98
|
+
}),
|
|
99
|
+
})),
|
|
100
|
+
}),
|
|
101
|
+
});
|
|
102
|
+
const IndefiniteBookCostVariant = TypeAlias(import.meta.url, {
|
|
103
|
+
name: "IndefiniteBookCostVariant",
|
|
104
|
+
comment: "An indefinite cost value for the book, which means it is impossible to narrow the range of the cost value by any numbers.",
|
|
105
|
+
type: () => Object({
|
|
106
|
+
translations: NestedTranslationMap(Required, "IndefiniteBookCostVariant", Object({
|
|
107
|
+
label: Optional({
|
|
108
|
+
comment: "The label for the cost variant, e.g. “Original script”.",
|
|
109
|
+
type: String({ minLength: 1, isMarkdown: true }),
|
|
110
|
+
}),
|
|
111
|
+
description: Required({
|
|
112
|
+
comment: "The description of the cost variant, e.g. “Original script”.",
|
|
113
|
+
type: String({ minLength: 1, isMarkdown: true }),
|
|
114
|
+
}),
|
|
115
|
+
})),
|
|
116
|
+
}),
|
|
117
|
+
});
|
package/lib/types/index.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ export { Property } from "./Property.js";
|
|
|
78
78
|
export { Race } from "./Race.js";
|
|
79
79
|
export { Region } from "./Region.js";
|
|
80
80
|
export { Ritual } from "./Ritual.js";
|
|
81
|
+
export { AlternativeRule } from "./rule/AlternativeRule.js";
|
|
82
|
+
export { PlayerType } from "./rule/AlternativeRule_PlayerType.js";
|
|
81
83
|
export { CoreRule } from "./rule/CoreRule.js";
|
|
82
84
|
export { FocusRule } from "./rule/FocusRule.js";
|
|
83
85
|
export { Subject } from "./rule/FocusRule_Subject.js";
|
package/lib/types/index.js
CHANGED
|
@@ -78,6 +78,8 @@ export { Property } from "./Property.js";
|
|
|
78
78
|
export { Race } from "./Race.js";
|
|
79
79
|
export { Region } from "./Region.js";
|
|
80
80
|
export { Ritual } from "./Ritual.js";
|
|
81
|
+
export { AlternativeRule } from "./rule/AlternativeRule.js";
|
|
82
|
+
export { PlayerType } from "./rule/AlternativeRule_PlayerType.js";
|
|
81
83
|
export { CoreRule } from "./rule/CoreRule.js";
|
|
82
84
|
export { FocusRule } from "./rule/FocusRule.js";
|
|
83
85
|
export { Subject } from "./rule/FocusRule_Subject.js";
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Array, Boolean, Entity, IncludeIdentifier, Object, String } from "tsondb/schema/def";
|
|
2
|
+
export declare const AlternativeRule: Entity<"AlternativeRule", {
|
|
3
|
+
playerTypes: import("tsondb/schema/def").MemberDecl<Array<import("tsondb/schema/def").ReferenceIdentifierType>, true>;
|
|
4
|
+
isMissingImplementation: import("tsondb/schema/def").MemberDecl<Boolean, true>;
|
|
5
|
+
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", Array<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
6
|
+
id: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").ReferenceIdentifierType, true>;
|
|
7
|
+
occurrences: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<string, {
|
|
8
|
+
initial: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"InitialOccurrence", Object<{
|
|
9
|
+
printing: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, false>;
|
|
10
|
+
pages: import("tsondb/schema/def").MemberDecl<Array<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PageRange", Object<{
|
|
11
|
+
first_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"Page", {
|
|
12
|
+
InsideCoverFront: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
13
|
+
InsideCoverBack: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
14
|
+
Numbered: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").IntegerType>;
|
|
15
|
+
}, []>>, true>;
|
|
16
|
+
last_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"Page", {
|
|
17
|
+
InsideCoverFront: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
18
|
+
InsideCoverBack: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
19
|
+
Numbered: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").IntegerType>;
|
|
20
|
+
}, []>>, false>;
|
|
21
|
+
}>, []>>>, true>;
|
|
22
|
+
}>, []>>, true>;
|
|
23
|
+
revisions: import("tsondb/schema/def").MemberDecl<Array<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"Revision", {
|
|
24
|
+
Since: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"Since", Object<{
|
|
25
|
+
printing: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
26
|
+
pages: import("tsondb/schema/def").MemberDecl<Array<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PageRange", Object<{
|
|
27
|
+
first_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"Page", {
|
|
28
|
+
InsideCoverFront: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
29
|
+
InsideCoverBack: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
30
|
+
Numbered: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").IntegerType>;
|
|
31
|
+
}, []>>, true>;
|
|
32
|
+
last_page: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"Page", {
|
|
33
|
+
InsideCoverFront: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
34
|
+
InsideCoverBack: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
35
|
+
Numbered: import("tsondb/schema/def").EnumCaseDecl<import("tsondb/schema/def").IntegerType>;
|
|
36
|
+
}, []>>, false>;
|
|
37
|
+
}>, []>>>, true>;
|
|
38
|
+
}>, []>>>;
|
|
39
|
+
Deprecated: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"Deprecation", Object<{
|
|
40
|
+
printing: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
41
|
+
}>, []>>>;
|
|
42
|
+
}, []>>>, false>;
|
|
43
|
+
}>, true>;
|
|
44
|
+
}>, []>>>, []>>, true>;
|
|
45
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"AlternativeRuleTranslation", {
|
|
46
|
+
name: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
47
|
+
description: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
48
|
+
errata: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"Errata", Array<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"Erratum", Object<{
|
|
49
|
+
date: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").DateType, true>;
|
|
50
|
+
description: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
51
|
+
}>, []>>>, []>>, false>;
|
|
52
|
+
}>, true>;
|
|
53
|
+
}, undefined>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Array, Boolean, Entity, IncludeIdentifier, Object, Optional, Required, String, } from "tsondb/schema/def";
|
|
2
|
+
import { PlayerTypeIdentifier } from "../_Identifier.js";
|
|
3
|
+
import { NestedTranslationMap } from "../Locale.js";
|
|
4
|
+
import { Errata } from "../source/_Erratum.js";
|
|
5
|
+
import { src } from "../source/_PublicationRef.js";
|
|
6
|
+
export const AlternativeRule = Entity(import.meta.url, {
|
|
7
|
+
name: "AlternativeRule",
|
|
8
|
+
namePlural: "AlternativeRules",
|
|
9
|
+
type: () => Object({
|
|
10
|
+
playerTypes: Required({
|
|
11
|
+
comment: "The player types this alternative rule is suitable for.",
|
|
12
|
+
type: Array(PlayerTypeIdentifier(), { minItems: 1, uniqueItems: true }),
|
|
13
|
+
}),
|
|
14
|
+
isMissingImplementation: Required({
|
|
15
|
+
comment: "Has the alternative rule not been implemented in Optolith yet? This is also true if the alternative rule does not (currently) apply to any Optolith feature.",
|
|
16
|
+
type: Boolean(),
|
|
17
|
+
}),
|
|
18
|
+
src,
|
|
19
|
+
translations: NestedTranslationMap(Required, "AlternativeRule", Object({
|
|
20
|
+
name: Required({
|
|
21
|
+
comment: "The alternative rule’s name.",
|
|
22
|
+
type: String({ minLength: 1 }),
|
|
23
|
+
}),
|
|
24
|
+
description: Required({
|
|
25
|
+
comment: "The description of the alternative rule.",
|
|
26
|
+
type: String({ minLength: 1, isMarkdown: true }),
|
|
27
|
+
}),
|
|
28
|
+
errata: Optional({
|
|
29
|
+
type: IncludeIdentifier(Errata),
|
|
30
|
+
}),
|
|
31
|
+
})),
|
|
32
|
+
}),
|
|
33
|
+
displayName: {},
|
|
34
|
+
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Entity, String } from "tsondb/schema/def";
|
|
2
|
+
export declare const PlayerType: Entity<"PlayerType", {
|
|
3
|
+
translations: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").NestedEntityMapType<"PlayerTypeTranslation", {
|
|
4
|
+
name: import("tsondb/schema/def").MemberDecl<String, true>;
|
|
5
|
+
}>, true>;
|
|
6
|
+
}, undefined>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Entity, Object, Required, String } from "tsondb/schema/def";
|
|
2
|
+
import { NestedTranslationMap } from "../Locale.js";
|
|
3
|
+
export const PlayerType = Entity(import.meta.url, {
|
|
4
|
+
name: "PlayerType",
|
|
5
|
+
namePlural: "PlayerTypes",
|
|
6
|
+
comment: "Player types describe different playing styles, expectations and wishes of players.",
|
|
7
|
+
type: () => Object({
|
|
8
|
+
translations: NestedTranslationMap(Required, "PlayerType", Object({
|
|
9
|
+
name: Required({
|
|
10
|
+
comment: "The player type.",
|
|
11
|
+
type: String({ minLength: 1 }),
|
|
12
|
+
}),
|
|
13
|
+
})),
|
|
14
|
+
}),
|
|
15
|
+
displayName: {},
|
|
16
|
+
});
|
|
@@ -978,6 +978,16 @@ export declare const AdvancedCombatSpecialAbility: Entity<"AdvancedCombatSpecial
|
|
|
978
978
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
979
979
|
}>, false>;
|
|
980
980
|
}>, []>>>;
|
|
981
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
982
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
983
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
984
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
985
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
986
|
+
}>, []>>>;
|
|
987
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
988
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
989
|
+
}>, []>>>;
|
|
990
|
+
}, []>>>;
|
|
981
991
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
982
992
|
}, []>>, true>;
|
|
983
993
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -861,6 +861,16 @@ export declare const AdvancedKarmaSpecialAbility: Entity<"AdvancedKarmaSpecialAb
|
|
|
861
861
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
862
862
|
}>, false>;
|
|
863
863
|
}>, []>>>;
|
|
864
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
865
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
866
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
867
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
868
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
869
|
+
}>, []>>>;
|
|
870
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
871
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
872
|
+
}>, []>>>;
|
|
873
|
+
}, []>>>;
|
|
864
874
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
865
875
|
}, []>>, true>;
|
|
866
876
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -861,6 +861,16 @@ export declare const AdvancedMagicalSpecialAbility: Entity<"AdvancedMagicalSpeci
|
|
|
861
861
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
862
862
|
}>, false>;
|
|
863
863
|
}>, []>>>;
|
|
864
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
865
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
866
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
867
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
868
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
869
|
+
}>, []>>>;
|
|
870
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
871
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
872
|
+
}>, []>>>;
|
|
873
|
+
}, []>>>;
|
|
864
874
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
865
875
|
}, []>>, true>;
|
|
866
876
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -861,6 +861,16 @@ export declare const AdvancedSkillSpecialAbility: Entity<"AdvancedSkillSpecialAb
|
|
|
861
861
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
862
862
|
}>, false>;
|
|
863
863
|
}>, []>>>;
|
|
864
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
865
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
866
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
867
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
868
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
869
|
+
}>, []>>>;
|
|
870
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
871
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
872
|
+
}>, []>>>;
|
|
873
|
+
}, []>>>;
|
|
864
874
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
865
875
|
}, []>>, true>;
|
|
866
876
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -860,6 +860,16 @@ export declare const AncestorGlyph: Entity<"AncestorGlyph", {
|
|
|
860
860
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
861
861
|
}>, false>;
|
|
862
862
|
}>, []>>>;
|
|
863
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
864
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
865
|
+
normal: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
866
|
+
threshold: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
867
|
+
alternative: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
868
|
+
}>, []>>>;
|
|
869
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
870
|
+
base: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
871
|
+
}>, []>>>;
|
|
872
|
+
}, []>>>;
|
|
863
873
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
864
874
|
}, []>>, true>;
|
|
865
875
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -888,6 +888,16 @@ export declare const BlessedTradition: Entity<"BlessedTradition", {
|
|
|
888
888
|
replacement: import("tsondb/schema/def").MemberDecl<String, false>;
|
|
889
889
|
}>, false>;
|
|
890
890
|
}>, []>>>;
|
|
891
|
+
DependingOnActiveInstances: EnumCase<IncludeIdentifier<[], Enum<"AdventurePointsDependingOnActiveInstances", {
|
|
892
|
+
Threshold: EnumCase<IncludeIdentifier<[], TypeAlias<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
893
|
+
normal: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
894
|
+
threshold: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
895
|
+
alternative: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
896
|
+
}>, []>>>;
|
|
897
|
+
Multiplier: EnumCase<IncludeIdentifier<[], TypeAlias<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
898
|
+
base: import("tsondb/schema/def").MemberDecl<Integer, true>;
|
|
899
|
+
}>, []>>>;
|
|
900
|
+
}, []>>>;
|
|
891
901
|
Indefinite: EnumCase<null>;
|
|
892
902
|
}, []>>, true>;
|
|
893
903
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], TypeAlias<"PublicationRefs", Array<IncludeIdentifier<[], TypeAlias<"PublicationRef", Object<{
|
|
@@ -924,6 +924,16 @@ export declare const BrawlingSpecialAbility: Entity<"BrawlingSpecialAbility", {
|
|
|
924
924
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
925
925
|
}>, false>;
|
|
926
926
|
}>, []>>>;
|
|
927
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
928
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
929
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
930
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
931
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
932
|
+
}>, []>>>;
|
|
933
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
934
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
935
|
+
}>, []>>>;
|
|
936
|
+
}, []>>>;
|
|
927
937
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
928
938
|
}, []>>, true>;
|
|
929
939
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -862,6 +862,16 @@ export declare const CeremonialItemSpecialAbility: Entity<"CeremonialItemSpecial
|
|
|
862
862
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
863
863
|
}>, false>;
|
|
864
864
|
}>, []>>>;
|
|
865
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
866
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
867
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
868
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
869
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
870
|
+
}>, []>>>;
|
|
871
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
872
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
873
|
+
}>, []>>>;
|
|
874
|
+
}, []>>>;
|
|
865
875
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
866
876
|
}, []>>, true>;
|
|
867
877
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -978,6 +978,16 @@ export declare const CombatSpecialAbility: Entity<"CombatSpecialAbility", {
|
|
|
978
978
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
979
979
|
}>, false>;
|
|
980
980
|
}>, []>>>;
|
|
981
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
982
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
983
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
984
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
985
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
986
|
+
}>, []>>>;
|
|
987
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
988
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
989
|
+
}>, []>>>;
|
|
990
|
+
}, []>>>;
|
|
981
991
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
982
992
|
}, []>>, true>;
|
|
983
993
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -979,6 +979,16 @@ export declare const CombatStyleSpecialAbility: Entity<"CombatStyleSpecialAbilit
|
|
|
979
979
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
980
980
|
}>, false>;
|
|
981
981
|
}>, []>>>;
|
|
982
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
983
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
984
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
985
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
986
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
987
|
+
}>, []>>>;
|
|
988
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
989
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
990
|
+
}>, []>>>;
|
|
991
|
+
}, []>>>;
|
|
982
992
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
983
993
|
}, []>>, true>;
|
|
984
994
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|
|
@@ -924,6 +924,16 @@ export declare const CommandSpecialAbility: Entity<"CommandSpecialAbility", {
|
|
|
924
924
|
replacement: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").StringType, false>;
|
|
925
925
|
}>, false>;
|
|
926
926
|
}>, []>>>;
|
|
927
|
+
DependingOnActiveInstances: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").EnumDecl<"AdventurePointsDependingOnActiveInstances", {
|
|
928
|
+
Threshold: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesThreshold", Object<{
|
|
929
|
+
normal: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
930
|
+
threshold: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
931
|
+
alternative: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
932
|
+
}>, []>>>;
|
|
933
|
+
Multiplier: import("tsondb/schema/def").EnumCaseDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"AdventurePointsDependingOnActiveInstancesMultiplier", Object<{
|
|
934
|
+
base: import("tsondb/schema/def").MemberDecl<import("tsondb/schema/def").IntegerType, true>;
|
|
935
|
+
}>, []>>>;
|
|
936
|
+
}, []>>>;
|
|
927
937
|
Indefinite: import("tsondb/schema/def").EnumCaseDecl<null>;
|
|
928
938
|
}, []>>, true>;
|
|
929
939
|
src: import("tsondb/schema/def").MemberDecl<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRefs", import("tsondb/schema/def").ArrayType<IncludeIdentifier<[], import("tsondb/schema/def").TypeAliasDecl<"PublicationRef", Object<{
|