arkham-investigator-data 2.3.0 → 2.3.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/build/src/components/signatures/getSignatureBase.d.ts +5 -0
- package/build/src/data/signatures/custom/side/zhm/Yithian.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zhm/YithianB.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zhm/YithianG.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zhm/YithianR.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zhm/index.d.ts +2 -0
- package/build/src/model/game/investigator/signature.d.ts +2 -0
- package/package.json +1 -1
@@ -1,6 +1,7 @@
|
|
1
1
|
import type { ArkhamCardsInvestigator } from "../../api/arkhamCards";
|
2
2
|
export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
3
3
|
taboo: boolean;
|
4
|
+
custom: boolean;
|
4
5
|
canonical: boolean;
|
5
6
|
official: boolean;
|
6
7
|
image: {
|
@@ -33,6 +34,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
33
34
|
skill_willpower: number;
|
34
35
|
} | {
|
35
36
|
taboo: boolean;
|
37
|
+
custom: boolean;
|
36
38
|
canonical: boolean;
|
37
39
|
official: boolean;
|
38
40
|
image: {
|
@@ -63,6 +65,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
63
65
|
spoiler: boolean;
|
64
66
|
} | {
|
65
67
|
taboo: boolean;
|
68
|
+
custom: boolean;
|
66
69
|
canonical: boolean;
|
67
70
|
official: boolean;
|
68
71
|
image: {
|
@@ -93,6 +96,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
93
96
|
spoiler: boolean;
|
94
97
|
} | {
|
95
98
|
taboo: boolean;
|
99
|
+
custom: boolean;
|
96
100
|
canonical: boolean;
|
97
101
|
official: boolean;
|
98
102
|
image: {
|
@@ -123,6 +127,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
123
127
|
spoiler: boolean;
|
124
128
|
} | {
|
125
129
|
taboo: boolean;
|
130
|
+
custom: boolean;
|
126
131
|
canonical: boolean;
|
127
132
|
official: boolean;
|
128
133
|
image: {
|
@@ -16,6 +16,7 @@ export type InvestigatorSignature = Omit<ArkhamCardsInvestigator, "real_name" |
|
|
16
16
|
taboo: boolean;
|
17
17
|
taboo_original_text: string | null;
|
18
18
|
taboo_text_change: string | null;
|
19
|
+
custom: boolean;
|
19
20
|
official: boolean;
|
20
21
|
canonical: boolean;
|
21
22
|
pack: InvestigatorSignaturePack;
|
@@ -47,6 +48,7 @@ export type InvestigatorSignatureGroup = {
|
|
47
48
|
official: boolean;
|
48
49
|
canonical: boolean;
|
49
50
|
spoiler: boolean;
|
51
|
+
custom: boolean;
|
50
52
|
faction_code: InvestigatorFaction;
|
51
53
|
multiselect: boolean;
|
52
54
|
};
|