arkham-investigator-data 2.0.16 → 2.1.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/api/arkhamCards/format/keepLastTabooSignature.d.ts +1 -1
- package/build/src/components/signatures/getSignatureBase.d.ts +4 -0
- package/build/src/components/signatures/special/getCardSpecial.d.ts +4 -0
- package/build/src/model/game/abilities.d.ts +1 -0
- package/build/src/model/game/options.d.ts +2 -0
- package/package.json +1 -1
@@ -1,2 +1,2 @@
|
|
1
|
-
import { ArkhamCardsInvestigator } from "../arkhamCards.types";
|
1
|
+
import type { ArkhamCardsInvestigator } from "../arkhamCards.types";
|
2
2
|
export declare const keepLastTabooSignature: (data: ArkhamCardsInvestigator[]) => ArkhamCardsInvestigator[];
|
@@ -46,6 +46,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
46
46
|
name: string;
|
47
47
|
additionalAction?: boolean;
|
48
48
|
abilities?: import("../../model").InvestigatorAbility[];
|
49
|
+
roles?: import("../../model").InvestigatorFaction[];
|
49
50
|
id: string;
|
50
51
|
health: number;
|
51
52
|
sanity: number;
|
@@ -74,6 +75,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
74
75
|
name: string;
|
75
76
|
additionalAction?: boolean;
|
76
77
|
abilities?: import("../../model").InvestigatorAbility[];
|
78
|
+
roles?: import("../../model").InvestigatorFaction[];
|
77
79
|
id: string;
|
78
80
|
health: number;
|
79
81
|
sanity: number;
|
@@ -102,6 +104,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
102
104
|
name: string;
|
103
105
|
additionalAction?: boolean;
|
104
106
|
abilities?: import("../../model").InvestigatorAbility[];
|
107
|
+
roles?: import("../../model").InvestigatorFaction[];
|
105
108
|
id: string;
|
106
109
|
health: number;
|
107
110
|
sanity: number;
|
@@ -130,6 +133,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
|
|
130
133
|
name: string;
|
131
134
|
additionalAction?: boolean;
|
132
135
|
abilities?: import("../../model").InvestigatorAbility[];
|
136
|
+
roles?: import("../../model").InvestigatorFaction[];
|
133
137
|
id: string;
|
134
138
|
health: number;
|
135
139
|
sanity: number;
|
@@ -29,6 +29,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
29
29
|
name: string;
|
30
30
|
additionalAction?: boolean;
|
31
31
|
abilities?: import("../../../model").InvestigatorAbility[];
|
32
|
+
roles?: import("../../../model").InvestigatorFaction[];
|
32
33
|
} | {
|
33
34
|
image: {
|
34
35
|
id: string;
|
@@ -42,6 +43,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
42
43
|
name: string;
|
43
44
|
additionalAction?: boolean;
|
44
45
|
abilities?: import("../../../model").InvestigatorAbility[];
|
46
|
+
roles?: import("../../../model").InvestigatorFaction[];
|
45
47
|
} | {
|
46
48
|
image: {
|
47
49
|
id: string;
|
@@ -55,6 +57,7 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
55
57
|
name: string;
|
56
58
|
additionalAction?: boolean;
|
57
59
|
abilities?: import("../../../model").InvestigatorAbility[];
|
60
|
+
roles?: import("../../../model").InvestigatorFaction[];
|
58
61
|
} | {
|
59
62
|
image: {
|
60
63
|
id: string;
|
@@ -68,4 +71,5 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
|
|
68
71
|
name: string;
|
69
72
|
additionalAction?: boolean;
|
70
73
|
abilities?: import("../../../model").InvestigatorAbility[];
|
74
|
+
roles?: import("../../../model").InvestigatorFaction[];
|
71
75
|
};
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import type { InvestigatorAbility } from "./abilities";
|
2
|
+
import type { InvestigatorFaction } from "./common";
|
2
3
|
import type { InvestigatorImage } from "./image";
|
3
4
|
export type InvestigatorSkin = {
|
4
5
|
id: string;
|
@@ -9,6 +10,7 @@ export type InvestigatorVariant = InvestigatorVariantIdentity & {
|
|
9
10
|
name: string;
|
10
11
|
additionalAction?: boolean;
|
11
12
|
abilities?: InvestigatorAbility[];
|
13
|
+
roles?: InvestigatorFaction[];
|
12
14
|
};
|
13
15
|
export type InvestigatorVariantIdentity = InvestigatorVariantWithPack | InvestigatorCustomVariant | InvestigatorDefaultVariant;
|
14
16
|
export type InvestigatorDefaultVariant = {
|