arkham-investigator-data 2.2.1 → 2.3.0
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/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/model/game/investigator/image.d.ts +1 -0
- package/build/src/model/game/story/reference.d.ts +1 -1
- package/package.json +1 -1
@@ -7,6 +7,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
7
7
|
id: string;
|
8
8
|
width: number;
|
9
9
|
height: number;
|
10
|
+
version?: number;
|
10
11
|
face: import("../../model").InvestigatorImageBox;
|
11
12
|
media?: import("../../model").InvestigatorImageMedia[];
|
12
13
|
};
|
@@ -38,6 +39,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
38
39
|
id: string;
|
39
40
|
width: number;
|
40
41
|
height: number;
|
42
|
+
version?: number;
|
41
43
|
face: import("../../model").InvestigatorImageBox;
|
42
44
|
media?: import("../../model").InvestigatorImageMedia[];
|
43
45
|
};
|
@@ -67,6 +69,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
67
69
|
id: string;
|
68
70
|
width: number;
|
69
71
|
height: number;
|
72
|
+
version?: number;
|
70
73
|
face: import("../../model").InvestigatorImageBox;
|
71
74
|
media?: import("../../model").InvestigatorImageMedia[];
|
72
75
|
};
|
@@ -96,6 +99,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
96
99
|
id: string;
|
97
100
|
width: number;
|
98
101
|
height: number;
|
102
|
+
version?: number;
|
99
103
|
face: import("../../model").InvestigatorImageBox;
|
100
104
|
media?: import("../../model").InvestigatorImageMedia[];
|
101
105
|
};
|
@@ -125,6 +129,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
125
129
|
id: string;
|
126
130
|
width: number;
|
127
131
|
height: number;
|
132
|
+
version?: number;
|
128
133
|
face: import("../../model").InvestigatorImageBox;
|
129
134
|
media?: import("../../model").InvestigatorImageMedia[];
|
130
135
|
};
|
@@ -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
|
};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { ArkhamCardsReferenceTranslation } from "../../../api/arkhamCards";
|
2
|
-
export type ReferenceCard =
|
2
|
+
export type ReferenceCard = ArkhamCardsReferenceTranslation & {
|
3
3
|
code: string;
|
4
4
|
encounter_code: string;
|
5
5
|
icon?: string;
|