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.
- package/build/src/components/signatures/getSignatureBase.d.ts +0 -1
- package/build/src/components/signatures/special/getCardSpecial.d.ts +0 -1
- package/build/src/data/i18n/declension.d.ts +3 -0
- package/build/src/data/i18n/index.d.ts +1 -0
- package/build/src/model/game/chaosBag.d.ts +4 -0
- package/build/src/model/game/investigator/common.d.ts +0 -1
- package/build/src/model/game/investigator/signature.d.ts +1 -0
- package/build/src/model/game/story/reference.d.ts +1 -0
- package/package.json +1 -1
- package/build/src/data/chaos-bag/index.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/core.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/dwl.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/eoe.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/fhv.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/index.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/ptc.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/tcu.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/tdc.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/tde.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/tfa.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/tic.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/campaigns/tsk.d.ts +0 -0
- package/build/src/data/chaos-bag/scenarios/custom/index.d.ts +0 -0
- 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 @@
|
|
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
|
+
};
|
@@ -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
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|