arkham-investigator-data 1.1.11 → 1.2.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.
@@ -1,14 +1,14 @@
|
|
1
1
|
import type { ChaosBagToken } from "./chaosBag";
|
2
2
|
import type { Stat } from "./entities";
|
3
|
-
export declare type LimitType =
|
3
|
+
export declare type LimitType = "round" | "turn" | "phase" | "ability" | "test" | "game";
|
4
4
|
export declare type InvestigatorAbilityType = {
|
5
|
-
type:
|
5
|
+
type: "reaction" | "fast" | "permanent";
|
6
6
|
} | {
|
7
|
-
|
8
|
-
type: 'action';
|
7
|
+
type: "action";
|
9
8
|
icon: string;
|
10
9
|
};
|
11
10
|
export declare type InvestigatorAbility = InvestigatorAbilityType & {
|
11
|
+
id: string;
|
12
12
|
limitPer?: LimitType | LimitType[];
|
13
13
|
perInvestigator?: boolean;
|
14
14
|
limitCount?: number;
|
@@ -16,7 +16,7 @@ export declare type InvestigatorAbility = InvestigatorAbilityType & {
|
|
16
16
|
onUse?: InvestigatorAbilityUse[];
|
17
17
|
};
|
18
18
|
export declare type InvestigatorAbilityUse = {
|
19
|
-
phase?:
|
19
|
+
phase?: "upkeep";
|
20
20
|
script: InvestigatorAbilityScript;
|
21
21
|
};
|
22
22
|
export declare type InvestigatorAbilityScript = Partial<Record<Stat, string>> & {
|