arkham-investigator-data 2.9.3 → 2.9.5

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.
@@ -30,7 +30,6 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
30
30
  multiselect?: boolean;
31
31
  abilities?: import("../../model").InvestigatorAbility[];
32
32
  roles?: import("../../model").InvestigatorFaction[];
33
- nameless?: boolean;
34
33
  id: string;
35
34
  alternate_of_code: string | null;
36
35
  faction_code: import("../../model").InvestigatorFaction;
@@ -23,7 +23,6 @@ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
23
23
  multiselect?: boolean;
24
24
  abilities?: import("../../../model").InvestigatorAbility[];
25
25
  roles?: import("../../../model").InvestigatorFaction[];
26
- nameless?: boolean;
27
26
  } | {
28
27
  image: {
29
28
  id: string;
@@ -0,0 +1,3 @@
1
+ type NameDeclension = Record<string, string>;
2
+ export declare const dativeNameDeclension: Record<string, NameDeclension>;
3
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./declension";
@@ -11,6 +11,7 @@ export type InvestigatorAbilityType = {
11
11
  icon: string;
12
12
  } | {
13
13
  type: "counter";
14
+ direction: "increase" | "decrease";
14
15
  name: string;
15
16
  icon?: string;
16
17
  defaultValue?: number;
@@ -13,7 +13,6 @@ export type Investigator = InvestigatorStats & {
13
13
  abilities?: InvestigatorAbility[];
14
14
  roles?: InvestigatorFaction[];
15
15
  spoiler?: boolean;
16
- nameless?: boolean;
17
16
  };
18
17
  export type InvestigatorStats = {
19
18
  health?: number;
@@ -26,6 +26,7 @@ export type InvestigatorSignature = Omit<ArkhamCardsInvestigator, "real_name" |
26
26
  gender: InvestigatorSignatureGender;
27
27
  tokens_reference: ReferencePart[];
28
28
  tokens: ReferenceCardToken[];
29
+ dative_name?: string;
29
30
  };
30
31
  export type InvestigatorSignatureType = "default" | "custom" | "parallel" | "book" | "taboo";
31
32
  export type InvestigatorSignaturePack = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkham-investigator-data",
3
- "version": "2.9.3",
3
+ "version": "2.9.5",
4
4
  "main": "index.js",
5
5
  "types": "build/src/types.d.ts",
6
6
  "scripts": {