arkham-investigator-data 2.0.10 → 2.0.16

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/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # Arkham Investigator Data Repository
2
+
3
+ ## How to add new image
4
+
5
+ Create base versions:
6
+
7
+ ### full
8
+
9
+ 1. Recommended size: 2000x2000
10
+ 2. It's good if investigator face will be in center of the image
11
+ 3. Make the face height as minimum 10-15% of the image height
12
+
13
+ ### mimi, square
14
+
15
+ 1. Mini size: 484x744
16
+ 2. Square size: 484x484
17
+
18
+ ### grayscale
19
+
20
+ Make grayscale version of all sizes
@@ -7,7 +7,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
7
7
  id: string;
8
8
  width: number;
9
9
  height: number;
10
- face?: import("../../model").InvestigatorImageBox;
10
+ face: import("../../model").InvestigatorImageBox;
11
11
  media?: import("../../model").InvestigatorImageMedia[];
12
12
  };
13
13
  type: "default";
@@ -38,7 +38,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
38
38
  id: string;
39
39
  width: number;
40
40
  height: number;
41
- face?: import("../../model").InvestigatorImageBox;
41
+ face: import("../../model").InvestigatorImageBox;
42
42
  media?: import("../../model").InvestigatorImageMedia[];
43
43
  };
44
44
  code: string;
@@ -66,7 +66,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
66
66
  id: string;
67
67
  width: number;
68
68
  height: number;
69
- face?: import("../../model").InvestigatorImageBox;
69
+ face: import("../../model").InvestigatorImageBox;
70
70
  media?: import("../../model").InvestigatorImageMedia[];
71
71
  };
72
72
  code: string;
@@ -94,7 +94,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
94
94
  id: string;
95
95
  width: number;
96
96
  height: number;
97
- face?: import("../../model").InvestigatorImageBox;
97
+ face: import("../../model").InvestigatorImageBox;
98
98
  media?: import("../../model").InvestigatorImageMedia[];
99
99
  };
100
100
  type: "custom";
@@ -122,7 +122,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
122
122
  id: string;
123
123
  width: number;
124
124
  height: number;
125
- face?: import("../../model").InvestigatorImageBox;
125
+ face: import("../../model").InvestigatorImageBox;
126
126
  media?: import("../../model").InvestigatorImageMedia[];
127
127
  };
128
128
  type: "taboo";
@@ -4,7 +4,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
4
4
  id: string;
5
5
  width: number;
6
6
  height: number;
7
- face?: import("../../../model").InvestigatorImageBox;
7
+ face: import("../../../model").InvestigatorImageBox;
8
8
  media?: import("../../../model").InvestigatorImageMedia[];
9
9
  };
10
10
  type: "default";
@@ -21,7 +21,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
21
21
  id: string;
22
22
  width: number;
23
23
  height: number;
24
- face?: import("../../../model").InvestigatorImageBox;
24
+ face: import("../../../model").InvestigatorImageBox;
25
25
  media?: import("../../../model").InvestigatorImageMedia[];
26
26
  };
27
27
  code: string;
@@ -34,7 +34,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
34
34
  id: string;
35
35
  width: number;
36
36
  height: number;
37
- face?: import("../../../model").InvestigatorImageBox;
37
+ face: import("../../../model").InvestigatorImageBox;
38
38
  media?: import("../../../model").InvestigatorImageMedia[];
39
39
  };
40
40
  code: string;
@@ -47,7 +47,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
47
47
  id: string;
48
48
  width: number;
49
49
  height: number;
50
- face?: import("../../../model").InvestigatorImageBox;
50
+ face: import("../../../model").InvestigatorImageBox;
51
51
  media?: import("../../../model").InvestigatorImageMedia[];
52
52
  };
53
53
  type: "custom";
@@ -60,7 +60,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
60
60
  id: string;
61
61
  width: number;
62
62
  height: number;
63
- face?: import("../../../model").InvestigatorImageBox;
63
+ face: import("../../../model").InvestigatorImageBox;
64
64
  media?: import("../../../model").InvestigatorImageMedia[];
65
65
  };
66
66
  type: "taboo";
@@ -15,6 +15,6 @@ export type InvestigatorImageMedia = InvestigatorImageBox & {
15
15
  };
16
16
  export type InvestigatorImage = Box & {
17
17
  id?: string;
18
- face?: InvestigatorImageBox;
18
+ face: InvestigatorImageBox;
19
19
  media?: InvestigatorImageMedia[];
20
20
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkham-investigator-data",
3
- "version": "2.0.10",
3
+ "version": "2.0.16",
4
4
  "main": "index.js",
5
5
  "types": "build/src/types.d.ts",
6
6
  "scripts": {