game_client_logic_deb 1.3.85 → 1.3.101

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.
@@ -89,10 +89,11 @@ export namespace com.logic.data.models.player {
89
89
  }
90
90
  export namespace com.logic.data.models.rules {
91
91
  class Rules {
92
- constructor(needToPutHigherTrump: boolean, distributePoints: boolean, protectBella: boolean, enableFourSevensCombination: boolean, enableTrumpSevenCombination: boolean, enableTrumpSevenCombinationAfterDistribution: boolean, playerWhoChooseSuitGoFirst: boolean, winnerShuffleCards: boolean, playWithoutLiabilities: boolean, trumpCardGoToPlayerWhoShuffleCards: boolean, enableFineIfNoBribes: boolean, fineIfNoBribes: number, enableFineAfterThirdByte: boolean, checkTrumpCombination: boolean, checkOnlyTrumpDebertz: boolean, tenCardsInHand: boolean);
92
+ constructor(needToPutHigherTrump: boolean, distributePoints: boolean, protectBella: boolean, oneTryToProtectBella: boolean, enableFourSevensCombination: boolean, enableTrumpSevenCombination: boolean, enableTrumpSevenCombinationAfterDistribution: boolean, playerWhoChooseSuitGoFirst: boolean, winnerShuffleCards: boolean, playWithoutLiabilities: boolean, trumpCardGoToPlayerWhoShuffleCards: boolean, enableFineIfNoBribes: boolean, fineIfNoBribes: number, enableFineAfterThirdByte: boolean, checkTrumpCombination: boolean, checkOnlyTrumpDebertz: boolean, tenCardsInHand: boolean);
93
93
  get needToPutHigherTrump(): boolean;
94
94
  get distributePoints(): boolean;
95
95
  get protectBella(): boolean;
96
+ get oneTryToProtectBella(): boolean;
96
97
  get enableFourSevensCombination(): boolean;
97
98
  get enableTrumpSevenCombination(): boolean;
98
99
  get enableTrumpSevenCombinationAfterDistribution(): boolean;
@@ -117,12 +118,13 @@ export namespace com.logic.data.models.rules {
117
118
  component9(): boolean;
118
119
  component10(): boolean;
119
120
  component11(): boolean;
120
- component12(): number;
121
- component13(): boolean;
121
+ component12(): boolean;
122
+ component13(): number;
122
123
  component14(): boolean;
123
124
  component15(): boolean;
124
125
  component16(): boolean;
125
- copy(needToPutHigherTrump?: boolean, distributePoints?: boolean, protectBella?: boolean, enableFourSevensCombination?: boolean, enableTrumpSevenCombination?: boolean, enableTrumpSevenCombinationAfterDistribution?: boolean, playerWhoChooseSuitGoFirst?: boolean, winnerShuffleCards?: boolean, playWithoutLiabilities?: boolean, trumpCardGoToPlayerWhoShuffleCards?: boolean, enableFineIfNoBribes?: boolean, fineIfNoBribes?: number, enableFineAfterThirdByte?: boolean, checkTrumpCombination?: boolean, checkOnlyTrumpDebertz?: boolean, tenCardsInHand?: boolean): com.logic.data.models.rules.Rules;
126
+ component17(): boolean;
127
+ copy(needToPutHigherTrump?: boolean, distributePoints?: boolean, protectBella?: boolean, oneTryToProtectBella?: boolean, enableFourSevensCombination?: boolean, enableTrumpSevenCombination?: boolean, enableTrumpSevenCombinationAfterDistribution?: boolean, playerWhoChooseSuitGoFirst?: boolean, winnerShuffleCards?: boolean, playWithoutLiabilities?: boolean, trumpCardGoToPlayerWhoShuffleCards?: boolean, enableFineIfNoBribes?: boolean, fineIfNoBribes?: number, enableFineAfterThirdByte?: boolean, checkTrumpCombination?: boolean, checkOnlyTrumpDebertz?: boolean, tenCardsInHand?: boolean): com.logic.data.models.rules.Rules;
126
128
  toString(): string;
127
129
  hashCode(): number;
128
130
  equals(other: Nullable<any>): boolean;
@@ -583,8 +585,9 @@ export namespace com.debertz.logic.redux.actions.mechanic {
583
585
  get actionTag(): string;
584
586
  readonly __doNotUseIt: __doNotImplementIt;
585
587
  }
586
- interface TerminatedAction {
588
+ interface TerminatedAction extends com.logic.domain.engine.definitions.Action {
587
589
  readonly reason: com.logic.data.models.TerminationGameReason;
590
+ readonly actionTag: string;
588
591
  readonly __doNotUseIt: __doNotImplementIt;
589
592
  }
590
593
  class PlayerConnectionChangedMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {