arkham-investigator-data 2.9.2 → 2.9.4

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.
Files changed (24) hide show
  1. package/build/src/components/signatures/getSignatureBase.d.ts +0 -1
  2. package/build/src/components/signatures/special/getCardSpecial.d.ts +0 -1
  3. package/build/src/data/i18n/declension.d.ts +3 -0
  4. package/build/src/data/i18n/index.d.ts +1 -0
  5. package/build/src/model/game/chaosBag.d.ts +4 -0
  6. package/build/src/model/game/investigator/common.d.ts +0 -1
  7. package/build/src/model/game/investigator/signature.d.ts +1 -0
  8. package/build/src/model/game/story/reference.d.ts +1 -0
  9. package/package.json +1 -1
  10. package/build/src/data/chaos-bag/index.d.ts +0 -0
  11. package/build/src/data/chaos-bag/scenarios/campaigns/core.d.ts +0 -0
  12. package/build/src/data/chaos-bag/scenarios/campaigns/dwl.d.ts +0 -0
  13. package/build/src/data/chaos-bag/scenarios/campaigns/eoe.d.ts +0 -0
  14. package/build/src/data/chaos-bag/scenarios/campaigns/fhv.d.ts +0 -0
  15. package/build/src/data/chaos-bag/scenarios/campaigns/index.d.ts +0 -0
  16. package/build/src/data/chaos-bag/scenarios/campaigns/ptc.d.ts +0 -0
  17. package/build/src/data/chaos-bag/scenarios/campaigns/tcu.d.ts +0 -0
  18. package/build/src/data/chaos-bag/scenarios/campaigns/tdc.d.ts +0 -0
  19. package/build/src/data/chaos-bag/scenarios/campaigns/tde.d.ts +0 -0
  20. package/build/src/data/chaos-bag/scenarios/campaigns/tfa.d.ts +0 -0
  21. package/build/src/data/chaos-bag/scenarios/campaigns/tic.d.ts +0 -0
  22. package/build/src/data/chaos-bag/scenarios/campaigns/tsk.d.ts +0 -0
  23. package/build/src/data/chaos-bag/scenarios/custom/index.d.ts +0 -0
  24. package/build/src/data/chaos-bag/scenarios/index.d.ts +0 -0
@@ -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";
@@ -1 +1,5 @@
1
1
  export type ChaosBagToken = "+1" | "0" | "-1" | "-2" | "-3" | "-4" | "-5" | "-6" | "-7" | "-8" | "bless" | "curse" | "elderSign" | "skull" | "cultist" | "autoFail" | "tablet" | "frost" | "elderThing";
2
+ export type ScenarioChaosBag = {
3
+ scenario_id: string;
4
+ tokens: ChaosBagToken[];
5
+ };
@@ -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 = {
@@ -32,6 +32,7 @@ export type ReferenceCardToken = {
32
32
  type: "counter";
33
33
  min?: number;
34
34
  max?: number;
35
+ step: number;
35
36
  } | {
36
37
  type: "select";
37
38
  values?: number[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkham-investigator-data",
3
- "version": "2.9.2",
3
+ "version": "2.9.4",
4
4
  "main": "index.js",
5
5
  "types": "build/src/types.d.ts",
6
6
  "scripts": {
File without changes
File without changes