@mtgame/core 0.2.118 → 0.2.119

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.
@@ -28,4 +28,9 @@ export declare const FootballGameLogTypeLocalization: {
28
28
  28: string;
29
29
  27: string;
30
30
  29: string;
31
+ 30: string;
32
+ 31: string;
33
+ 32: string;
34
+ 33: string;
35
+ 34: string;
31
36
  };
@@ -30,7 +30,12 @@ export declare enum FootballGameLogTypes {
30
30
  auto_goal = 26,
31
31
  end_game_penalty_miss = 27,
32
32
  end_game_penalty_goal = 28,
33
- end_game_penalty_save = 29
33
+ end_game_penalty_save = 29,
34
+ duel_won = 30,
35
+ duel_lost = 31,
36
+ double_goal = 32,
37
+ super_game = 33,
38
+ color_ball = 34
34
39
  }
35
40
  export declare class FootballGameLog extends BaseModel implements GameLogBase {
36
41
  id: number;
@@ -37,6 +37,10 @@ export declare class FootballGameStatistic extends BaseModel implements GameStat
37
37
  endGamePenaltyGoals: number;
38
38
  endGamePenaltyMisses: number;
39
39
  endGamePenaltySaves: number;
40
+ duelsWon: number;
41
+ duelsLost: number;
42
+ doubleGoals: number;
43
+ doubleGoalsAgainst: number;
40
44
  get id(): number;
41
45
  get shots(): number;
42
46
  get totalGoals(): number;
@@ -74,6 +74,10 @@ export declare class FootballStatistic extends BaseModel implements BaseStatisti
74
74
  endGamePenaltySaves: number;
75
75
  shutout: number;
76
76
  shutoutPercent: number;
77
+ duelsWon: number;
78
+ duelsLost: number;
79
+ doubleGoals: number;
80
+ doubleGoalsAgainst: number;
77
81
  get teamPlusMinus(): number;
78
82
  get userMinutes(): string;
79
83
  get penalties(): number;