@firestone-hs/reference-data 2.0.67 → 2.0.68
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.
|
@@ -2,6 +2,12 @@ export interface CardRules {
|
|
|
2
2
|
[cardId: string]: CardRule;
|
|
3
3
|
}
|
|
4
4
|
export interface CardRule {
|
|
5
|
-
readonly
|
|
6
|
-
|
|
5
|
+
readonly bgsMinionTypesRules?: BgsMinionTypesRules;
|
|
6
|
+
}
|
|
7
|
+
export interface BgsMinionTypesRules {
|
|
8
|
+
readonly bannedWithTypesInLobby?: readonly string[];
|
|
9
|
+
readonly needTypesInLobby?: readonly string[];
|
|
10
|
+
readonly needBoardTypes?: readonly string[];
|
|
11
|
+
readonly needMenagerie?: boolean;
|
|
12
|
+
readonly requireTavernTier3?: boolean;
|
|
7
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card-rules.js","sourceRoot":"","sources":["../../../src/models/reference-cards/card-rules.ts"],"names":[],"mappings":"","sourcesContent":["export interface CardRules {\r\n\t[cardId: string]: CardRule;\r\n}\r\nexport interface CardRule {\r\n\treadonly
|
|
1
|
+
{"version":3,"file":"card-rules.js","sourceRoot":"","sources":["../../../src/models/reference-cards/card-rules.ts"],"names":[],"mappings":"","sourcesContent":["export interface CardRules {\r\n\t[cardId: string]: CardRule;\r\n}\r\nexport interface CardRule {\r\n\treadonly bgsMinionTypesRules?: BgsMinionTypesRules;\r\n}\r\n\r\nexport interface BgsMinionTypesRules {\r\n\treadonly bannedWithTypesInLobby?: readonly string[];\r\n\treadonly needTypesInLobby?: readonly string[];\r\n\treadonly needBoardTypes?: readonly string[];\r\n\treadonly needMenagerie?: boolean;\r\n\treadonly requireTavernTier3?: boolean;\r\n}\r\n"]}
|