arkham-investigator-data 2.2.2 → 2.3.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/build/src/components/signatures/getSignatureBase.d.ts +10 -0
- package/build/src/components/signatures/special/getCardSpecial.d.ts +5 -0
- package/build/src/data/signatures/custom/side/zcu/JanePublic.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zcu/JaneSmith.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zcu/JohnDoe.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zcu/JohnnyAnybody.d.ts +2 -0
- package/build/src/data/signatures/custom/side/zcu/index.d.ts +2 -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/image.d.ts +1 -0
- package/build/src/model/game/investigator/signature.d.ts +1 -0
- package/package.json +1 -1
@@ -1,12 +1,14 @@
|
|
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: {
|
7
8
|
id: string;
|
8
9
|
width: number;
|
9
10
|
height: number;
|
11
|
+
version?: number;
|
10
12
|
face: import("../../model").InvestigatorImageBox;
|
11
13
|
media?: import("../../model").InvestigatorImageMedia[];
|
12
14
|
};
|
@@ -32,12 +34,14 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
32
34
|
skill_willpower: number;
|
33
35
|
} | {
|
34
36
|
taboo: boolean;
|
37
|
+
custom: boolean;
|
35
38
|
canonical: boolean;
|
36
39
|
official: boolean;
|
37
40
|
image: {
|
38
41
|
id: string;
|
39
42
|
width: number;
|
40
43
|
height: number;
|
44
|
+
version?: number;
|
41
45
|
face: import("../../model").InvestigatorImageBox;
|
42
46
|
media?: import("../../model").InvestigatorImageMedia[];
|
43
47
|
};
|
@@ -61,12 +65,14 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
61
65
|
spoiler: boolean;
|
62
66
|
} | {
|
63
67
|
taboo: boolean;
|
68
|
+
custom: boolean;
|
64
69
|
canonical: boolean;
|
65
70
|
official: boolean;
|
66
71
|
image: {
|
67
72
|
id: string;
|
68
73
|
width: number;
|
69
74
|
height: number;
|
75
|
+
version?: number;
|
70
76
|
face: import("../../model").InvestigatorImageBox;
|
71
77
|
media?: import("../../model").InvestigatorImageMedia[];
|
72
78
|
};
|
@@ -90,12 +96,14 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
90
96
|
spoiler: boolean;
|
91
97
|
} | {
|
92
98
|
taboo: boolean;
|
99
|
+
custom: boolean;
|
93
100
|
canonical: boolean;
|
94
101
|
official: boolean;
|
95
102
|
image: {
|
96
103
|
id: string;
|
97
104
|
width: number;
|
98
105
|
height: number;
|
106
|
+
version?: number;
|
99
107
|
face: import("../../model").InvestigatorImageBox;
|
100
108
|
media?: import("../../model").InvestigatorImageMedia[];
|
101
109
|
};
|
@@ -119,12 +127,14 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
119
127
|
spoiler: boolean;
|
120
128
|
} | {
|
121
129
|
taboo: boolean;
|
130
|
+
custom: boolean;
|
122
131
|
canonical: boolean;
|
123
132
|
official: boolean;
|
124
133
|
image: {
|
125
134
|
id: string;
|
126
135
|
width: number;
|
127
136
|
height: number;
|
137
|
+
version?: number;
|
128
138
|
face: import("../../model").InvestigatorImageBox;
|
129
139
|
media?: import("../../model").InvestigatorImageMedia[];
|
130
140
|
};
|
@@ -4,6 +4,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
4
4
|
id: string;
|
5
5
|
width: number;
|
6
6
|
height: number;
|
7
|
+
version?: number;
|
7
8
|
face: import("../../../model").InvestigatorImageBox;
|
8
9
|
media?: import("../../../model").InvestigatorImageMedia[];
|
9
10
|
};
|
@@ -21,6 +22,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
21
22
|
id: string;
|
22
23
|
width: number;
|
23
24
|
height: number;
|
25
|
+
version?: number;
|
24
26
|
face: import("../../../model").InvestigatorImageBox;
|
25
27
|
media?: import("../../../model").InvestigatorImageMedia[];
|
26
28
|
};
|
@@ -35,6 +37,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
35
37
|
id: string;
|
36
38
|
width: number;
|
37
39
|
height: number;
|
40
|
+
version?: number;
|
38
41
|
face: import("../../../model").InvestigatorImageBox;
|
39
42
|
media?: import("../../../model").InvestigatorImageMedia[];
|
40
43
|
};
|
@@ -49,6 +52,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
49
52
|
id: string;
|
50
53
|
width: number;
|
51
54
|
height: number;
|
55
|
+
version?: number;
|
52
56
|
face: import("../../../model").InvestigatorImageBox;
|
53
57
|
media?: import("../../../model").InvestigatorImageMedia[];
|
54
58
|
};
|
@@ -63,6 +67,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
63
67
|
id: string;
|
64
68
|
width: number;
|
65
69
|
height: number;
|
70
|
+
version?: number;
|
66
71
|
face: import("../../../model").InvestigatorImageBox;
|
67
72
|
media?: import("../../../model").InvestigatorImageMedia[];
|
68
73
|
};
|
@@ -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;
|