valtech-components 4.0.567 → 4.0.569
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/esm2022/lib/components/organisms/mini-games/chessimals-engine.mjs +25 -1
- package/esm2022/lib/components/organisms/mini-games/chessimals-game.component.mjs +75 -15
- package/esm2022/lib/components/organisms/mini-games/mini-games.i18n.mjs +13 -3
- package/esm2022/lib/components/organisms/mini-games/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +111 -17
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/mini-games/chessimals-game.component.d.ts +1 -1
- package/lib/components/organisms/mini-games/types.d.ts +2 -2
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/assets/games/chessimals/challenge-avatars/nightmare-hunt.png +0 -0
- package/src/lib/assets/games/chessimals/challenge-avatars/nightmare-magnus.png +0 -0
- package/src/lib/assets/games/chessimals/challenge-avatars/nightmare-pride.png +0 -0
|
@@ -122,7 +122,7 @@ export declare class ChessimalsGameComponent implements OnInit, OnDestroy {
|
|
|
122
122
|
readonly botProfiles: ChessimalsBotProfile[];
|
|
123
123
|
readonly challengeLadder: ChessimalsChallengeBot[];
|
|
124
124
|
readonly animals: ChessimalsAnimalView[];
|
|
125
|
-
readonly valtechComponentsVersion = "4.0.
|
|
125
|
+
readonly valtechComponentsVersion = "4.0.569";
|
|
126
126
|
readonly screen: import("@angular/core").WritableSignal<"home" | "challenge" | "path" | "game">;
|
|
127
127
|
readonly selectedBoardSize: import("@angular/core").WritableSignal<ChessimalsBoardSize>;
|
|
128
128
|
readonly selectedLocalMode: import("@angular/core").WritableSignal<ChessimalsLocalMode>;
|
|
@@ -52,8 +52,8 @@ export type ChessimalsWinReason = 'promotion' | 'elimination' | 'resignation' |
|
|
|
52
52
|
export type ChessimalsGameMode = 'local' | 'online';
|
|
53
53
|
export type ChessimalsLocalMode = 'one-device' | 'bot';
|
|
54
54
|
export type ChessimalsBotDifficulty = 'easy' | 'normal' | 'hard';
|
|
55
|
-
export type ChessimalsNightmareMode = 'none' | 'hunt' | 'pride';
|
|
56
|
-
export type ChessimalsBotProfileId = 'explorer' | 'impulsive' | 'runner' | 'hunter' | 'guardian' | 'jumper' | 'strategist' | 'predator' | 'sprinter' | 'sentinel' | 'oracle' | 'ambusher' | 'locksmith' | 'storm' | 'matriarch' | 'endgame';
|
|
55
|
+
export type ChessimalsNightmareMode = 'none' | 'hunt' | 'pride' | 'magnus';
|
|
56
|
+
export type ChessimalsBotProfileId = 'explorer' | 'impulsive' | 'runner' | 'hunter' | 'guardian' | 'jumper' | 'strategist' | 'predator' | 'sprinter' | 'sentinel' | 'oracle' | 'ambusher' | 'locksmith' | 'storm' | 'matriarch' | 'endgame' | 'magnus';
|
|
57
57
|
export type ChessimalsGameStatus = 'waiting' | 'in_progress' | 'finished' | 'expired';
|
|
58
58
|
export interface ChessimalsBotProfile {
|
|
59
59
|
id: ChessimalsBotProfileId;
|
package/lib/version.d.ts
CHANGED
package/package.json
CHANGED