@mtgame/core 0.1.44 → 0.1.46

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.
Files changed (37) hide show
  1. package/bundles/mtgame-core.umd.js +92 -61
  2. package/bundles/mtgame-core.umd.js.map +1 -1
  3. package/bundles/mtgame-core.umd.min.js +1 -1
  4. package/bundles/mtgame-core.umd.min.js.map +1 -1
  5. package/esm2015/localization/football-game-log-types.js +5 -2
  6. package/esm2015/localization/rugby-game-log-types.js +10 -11
  7. package/esm2015/models/football-game-config.js +10 -1
  8. package/esm2015/models/football-game-log.js +4 -1
  9. package/esm2015/models/football-game-statistic.js +5 -2
  10. package/esm2015/models/football-statistic.js +4 -1
  11. package/esm2015/models/rugby-game-log.js +34 -34
  12. package/esm2015/models/rugby-game-statistic.js +4 -6
  13. package/esm2015/models/rugby-statistic.js +22 -13
  14. package/esm5/localization/football-game-log-types.js +4 -1
  15. package/esm5/localization/rugby-game-log-types.js +10 -11
  16. package/esm5/models/football-game-config.js +14 -1
  17. package/esm5/models/football-game-log.js +4 -1
  18. package/esm5/models/football-game-statistic.js +5 -2
  19. package/esm5/models/football-statistic.js +4 -1
  20. package/esm5/models/rugby-game-log.js +34 -34
  21. package/esm5/models/rugby-game-statistic.js +4 -6
  22. package/esm5/models/rugby-statistic.js +22 -13
  23. package/fesm2015/mtgame-core.js +89 -62
  24. package/fesm2015/mtgame-core.js.map +1 -1
  25. package/fesm5/mtgame-core.js +92 -61
  26. package/fesm5/mtgame-core.js.map +1 -1
  27. package/localization/football-game-log-types.d.ts +3 -0
  28. package/localization/rugby-game-log-types.d.ts +2 -3
  29. package/models/football-game-config.d.ts +4 -0
  30. package/models/football-game-log.d.ts +4 -1
  31. package/models/football-game-statistic.d.ts +3 -0
  32. package/models/football-statistic.d.ts +3 -0
  33. package/models/rugby-game-log.d.ts +30 -31
  34. package/models/rugby-game-statistic.d.ts +4 -6
  35. package/models/rugby-statistic.d.ts +20 -11
  36. package/mtgame-core.metadata.json +1 -1
  37. package/package.json +1 -1
@@ -1791,6 +1791,16 @@
1791
1791
  function FootballGameConfig() {
1792
1792
  return _super !== null && _super.apply(this, arguments) || this;
1793
1793
  }
1794
+ Object.defineProperty(FootballGameConfig.prototype, "penaltyPeriod", {
1795
+ get: function () {
1796
+ if (this.overtimeType !== exports.OvertimeTypes.time_and_penalties) {
1797
+ return +this.periodsCount + 1;
1798
+ }
1799
+ return +this.periodsCount + this.overtimePeriods + 1;
1800
+ },
1801
+ enumerable: true,
1802
+ configurable: true
1803
+ });
1794
1804
  FootballGameConfig.toFront = function (data) { };
1795
1805
  FootballGameConfig.toBack = function (data) { };
1796
1806
  __decorate([
@@ -1806,11 +1816,14 @@
1806
1816
  period_time: 'periodTime',
1807
1817
  overtime_type: 'overtimeType',
1808
1818
  overtime_time: 'overtimeTime',
1819
+ overtime_periods: 'overtimePeriods',
1809
1820
  max_game_players: 'maxGamePlayers',
1810
1821
  timeout_count: 'timeoutCount',
1811
1822
  overtime_timeout_count: 'overtimeTimeoutCount',
1812
1823
  timeout_time: 'timeoutTime',
1813
1824
  game_time_type: 'gameTimeType',
1825
+ substitute_count: 'substituteCount',
1826
+ free_substitute_enabled: 'freeSubstituteEnabled',
1814
1827
  },
1815
1828
  relation: {
1816
1829
  overtimeType: enumField(exports.OvertimeTypes),
@@ -4002,6 +4015,9 @@
4002
4015
  FootballGameLogTypes[FootballGameLogTypes["out"] = 24] = "out";
4003
4016
  FootballGameLogTypes[FootballGameLogTypes["timeout"] = 25] = "timeout";
4004
4017
  FootballGameLogTypes[FootballGameLogTypes["auto_goal"] = 26] = "auto_goal";
4018
+ FootballGameLogTypes[FootballGameLogTypes["end_game_penalty_miss"] = 27] = "end_game_penalty_miss";
4019
+ FootballGameLogTypes[FootballGameLogTypes["end_game_penalty_goal"] = 28] = "end_game_penalty_goal";
4020
+ FootballGameLogTypes[FootballGameLogTypes["end_game_penalty_save"] = 29] = "end_game_penalty_save";
4005
4021
  })(exports.FootballGameLogTypes || (exports.FootballGameLogTypes = {}));
4006
4022
  var FootballGameLog = /** @class */ (function (_super) {
4007
4023
  __extends(FootballGameLog, _super);
@@ -4275,7 +4291,10 @@
4275
4291
  outs: 'outs',
4276
4292
  block_shots: 'blockShots',
4277
4293
  auto_goals: 'autoGoals',
4278
- auto_goals_against: 'autoGoalsAgainst'
4294
+ auto_goals_against: 'autoGoalsAgainst',
4295
+ end_game_penalty_goals: 'endGamePenaltyGoals',
4296
+ end_game_penalty_misses: 'endGamePenaltyMisses',
4297
+ end_game_penalty_saves: 'endGamePenaltySaves'
4279
4298
  },
4280
4299
  relation: {
4281
4300
  updatedAt: DateTimeField,
@@ -4432,6 +4451,9 @@
4432
4451
  rank: 'rank',
4433
4452
  auto_goals: 'autoGoals',
4434
4453
  auto_goals_against: 'autoGoalsAgainst',
4454
+ end_game_penalty_goals: 'endGamePenaltyGoals',
4455
+ end_game_penalty_misses: 'endGamePenaltyMisses',
4456
+ end_game_penalty_saves: 'endGamePenaltySaves'
4435
4457
  },
4436
4458
  relation: {
4437
4459
  leaguePlayer: LeaguePlayer,
@@ -5434,16 +5456,18 @@
5434
5456
  points: 'points',
5435
5457
  tries: 'tries',
5436
5458
  penalty_tries: 'penaltyTries',
5437
- conversion_shots: 'conversionShots',
5459
+ conversion_kicks: 'conversionKicks',
5438
5460
  conversion_goals: 'conversionGoals',
5439
5461
  conversion_misses: 'conversionMisses',
5440
5462
  conversion_goals_percent: 'conversionGoalsPercent',
5441
- drawing_ball: 'drawingBall',
5442
- penalty_shots: 'penaltyShots',
5463
+ penalties: 'penalties',
5464
+ penalty_kicks_on_goal: 'penaltyKicksOnGoal',
5443
5465
  penalty_misses: 'penaltyMisses',
5444
5466
  penalty_goals: 'penaltyGoals',
5467
+ tap_penalties: 'tapPenalties',
5468
+ penalty_kicks_to_touch: 'penaltyKicksToTouch',
5445
5469
  penalty_goals_percent: 'penaltyGoalsPercent',
5446
- drop_goal_shots: 'dropGoalShots',
5470
+ drop_goal_kicks: 'dropGoalKicks',
5447
5471
  drop_goals: 'dropGoals',
5448
5472
  drop_goal_misses: 'dropGoalMisses',
5449
5473
  drop_goal_percent: 'dropGoalPercent',
@@ -5452,31 +5476,38 @@
5452
5476
  red_cards: 'redCards',
5453
5477
  offloads: 'offloads',
5454
5478
  tackles: 'tackles',
5455
- outs: 'outs',
5456
5479
  handling_errors: 'handlingErrors',
5457
- carries_other_gainline: 'carriesOtherGainline',
5480
+ carries_over_gainline: 'carriesOverGainline',
5458
5481
  plus_minus: 'plusMinus',
5459
5482
  game_time: 'gameTime',
5460
5483
  // Team statistic
5461
5484
  scrums: 'scrums',
5462
5485
  scrums_won: 'scrumsWon',
5463
- scrum_losses: 'scrumLosses',
5486
+ scrums_lost: 'scrumsLost',
5464
5487
  scrums_won_percent: 'scrumsWonPercent',
5465
5488
  scrums_won_free: 'scrumsWonFree',
5489
+ opponent_scrums_won: 'opponentScrumsWon',
5490
+ opponent_scrums_lost: 'opponentScrumsLost',
5466
5491
  lineouts: 'lineouts',
5467
- lineouts_success: 'lineoutsSuccess',
5468
- lineout_loses: 'lineoutLoses',
5492
+ lineouts_won: 'lineoutsWon',
5493
+ lineouts_lost: 'lineoutsLost',
5469
5494
  lineouts_steal: 'lineoutsSteal',
5495
+ opponent_lineouts_lost: 'opponentLineoutsLost',
5470
5496
  quick_throws: 'quickThrows',
5471
5497
  rucks: 'rucks',
5472
5498
  rucks_won: 'rucksWon',
5473
- ruck_losses: 'ruckLosses',
5499
+ rucks_lost: 'rucksLost',
5474
5500
  rucks_won_percent: 'rucksWonPercent',
5501
+ opponent_rucks_won: 'opponentRucksWon',
5502
+ opponent_rucks_lost: 'opponentRucksLost',
5475
5503
  mauls: 'mauls',
5476
5504
  mauls_won: 'maulsWon',
5477
- maul_losses: 'maulLosses',
5505
+ mauls_lost: 'maulsLost',
5478
5506
  mauls_won_percent: 'maulWonPercent',
5479
- fouls: 'fouls'
5507
+ opponent_mauls_won: 'opponentMaulsWon',
5508
+ opponent_mauls_lost: 'opponentMaulsLost',
5509
+ fouls: 'fouls',
5510
+ team_fouls: 'teamFouls',
5480
5511
  },
5481
5512
  relation: {
5482
5513
  tournamentTeamUser: TournamentTeamUser,
@@ -7266,12 +7297,11 @@
7266
7297
  penalty_tries: 'penaltyTries',
7267
7298
  conversion_goals: 'conversionGoals',
7268
7299
  conversion_misses: 'conversionMisses',
7269
- conversion_shots: 'conversionShots',
7300
+ conversion_kicks: 'conversionKicks',
7270
7301
  conversion_goals_percent: 'conversionGoalsPercent',
7271
- drawing_ball: 'drawingBall',
7272
7302
  penalty_misses: 'penaltyMisses',
7273
7303
  penalty_goals: 'penaltyGoals',
7274
- penalty_shots: 'penaltyShots',
7304
+ penalty_kicks_on_goal: 'penaltyKicksOnGoal',
7275
7305
  penalty_goals_percent: 'penaltyGoalsPercent',
7276
7306
  drop_goals: 'dropGoals',
7277
7307
  drop_goal_misses: 'dropGoalMisses',
@@ -7282,9 +7312,8 @@
7282
7312
  red_cards: 'redCards',
7283
7313
  offloads: 'offloads',
7284
7314
  tackles: 'tackles',
7285
- outs: 'outs',
7286
7315
  handling_errors: 'handlingErrors',
7287
- carries_other_gainline: 'carriesOtherGainline',
7316
+ carries_over_gainline: 'carriesOverGainline',
7288
7317
  game_time: 'gameTime',
7289
7318
  plus_minus: 'plusMinus'
7290
7319
  },
@@ -7342,38 +7371,37 @@
7342
7371
  RugbyGameLogTypes[RugbyGameLogTypes["penalty_try"] = 4] = "penalty_try";
7343
7372
  RugbyGameLogTypes[RugbyGameLogTypes["conversion_goal"] = 5] = "conversion_goal";
7344
7373
  RugbyGameLogTypes[RugbyGameLogTypes["conversion_miss"] = 6] = "conversion_miss";
7345
- RugbyGameLogTypes[RugbyGameLogTypes["drawing_ball"] = 7] = "drawing_ball";
7346
- RugbyGameLogTypes[RugbyGameLogTypes["penalty_miss"] = 8] = "penalty_miss";
7347
- RugbyGameLogTypes[RugbyGameLogTypes["penalty_goal"] = 9] = "penalty_goal";
7348
- RugbyGameLogTypes[RugbyGameLogTypes["drop_goal"] = 10] = "drop_goal";
7349
- RugbyGameLogTypes[RugbyGameLogTypes["drop_goal_miss"] = 11] = "drop_goal_miss";
7350
- RugbyGameLogTypes[RugbyGameLogTypes["free_kick"] = 12] = "free_kick";
7351
- RugbyGameLogTypes[RugbyGameLogTypes["foul"] = 13] = "foul";
7352
- RugbyGameLogTypes[RugbyGameLogTypes["yellow_card"] = 14] = "yellow_card";
7353
- RugbyGameLogTypes[RugbyGameLogTypes["red_card"] = 15] = "red_card";
7354
- RugbyGameLogTypes[RugbyGameLogTypes["offload"] = 16] = "offload";
7355
- RugbyGameLogTypes[RugbyGameLogTypes["tackle"] = 17] = "tackle";
7356
- RugbyGameLogTypes[RugbyGameLogTypes["out"] = 18] = "out";
7357
- RugbyGameLogTypes[RugbyGameLogTypes["handling_error"] = 19] = "handling_error";
7358
- RugbyGameLogTypes[RugbyGameLogTypes["carries_other_gainline"] = 20] = "carries_other_gainline";
7359
- RugbyGameLogTypes[RugbyGameLogTypes["bleeding_injury"] = 21] = "bleeding_injury";
7360
- RugbyGameLogTypes[RugbyGameLogTypes["head_injury"] = 22] = "head_injury";
7361
- RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_miss"] = 23] = "end_game_penalty_miss";
7362
- RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_goal"] = 24] = "end_game_penalty_goal";
7374
+ RugbyGameLogTypes[RugbyGameLogTypes["penalty_miss"] = 7] = "penalty_miss";
7375
+ RugbyGameLogTypes[RugbyGameLogTypes["penalty_goal"] = 8] = "penalty_goal";
7376
+ RugbyGameLogTypes[RugbyGameLogTypes["drop_goal"] = 9] = "drop_goal";
7377
+ RugbyGameLogTypes[RugbyGameLogTypes["drop_goal_miss"] = 10] = "drop_goal_miss";
7378
+ RugbyGameLogTypes[RugbyGameLogTypes["free_kick"] = 11] = "free_kick";
7379
+ RugbyGameLogTypes[RugbyGameLogTypes["foul"] = 12] = "foul";
7380
+ RugbyGameLogTypes[RugbyGameLogTypes["yellow_card"] = 13] = "yellow_card";
7381
+ RugbyGameLogTypes[RugbyGameLogTypes["red_card"] = 14] = "red_card";
7382
+ RugbyGameLogTypes[RugbyGameLogTypes["offload"] = 15] = "offload";
7383
+ RugbyGameLogTypes[RugbyGameLogTypes["tackle"] = 16] = "tackle";
7384
+ RugbyGameLogTypes[RugbyGameLogTypes["handling_error"] = 17] = "handling_error";
7385
+ RugbyGameLogTypes[RugbyGameLogTypes["carries_over_gainline"] = 18] = "carries_over_gainline";
7386
+ RugbyGameLogTypes[RugbyGameLogTypes["bleeding_injury"] = 19] = "bleeding_injury";
7387
+ RugbyGameLogTypes[RugbyGameLogTypes["head_injury"] = 20] = "head_injury";
7388
+ RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_miss"] = 21] = "end_game_penalty_miss";
7389
+ RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_goal"] = 22] = "end_game_penalty_goal";
7363
7390
  // team actions
7364
- RugbyGameLogTypes[RugbyGameLogTypes["timeout"] = 25] = "timeout";
7391
+ RugbyGameLogTypes[RugbyGameLogTypes["timeout"] = 23] = "timeout";
7392
+ RugbyGameLogTypes[RugbyGameLogTypes["tap_penalty"] = 24] = "tap_penalty";
7393
+ RugbyGameLogTypes[RugbyGameLogTypes["penalty_kick_to_touch"] = 25] = "penalty_kick_to_touch";
7365
7394
  RugbyGameLogTypes[RugbyGameLogTypes["scrum_won"] = 26] = "scrum_won";
7366
- RugbyGameLogTypes[RugbyGameLogTypes["scrum_lose"] = 27] = "scrum_lose";
7395
+ RugbyGameLogTypes[RugbyGameLogTypes["scrum_lost"] = 27] = "scrum_lost";
7367
7396
  RugbyGameLogTypes[RugbyGameLogTypes["scrum_won_free"] = 28] = "scrum_won_free";
7368
- RugbyGameLogTypes[RugbyGameLogTypes["lineout_success"] = 29] = "lineout_success";
7369
- RugbyGameLogTypes[RugbyGameLogTypes["lineout_loss"] = 30] = "lineout_loss";
7370
- RugbyGameLogTypes[RugbyGameLogTypes["lineout_steal"] = 31] = "lineout_steal";
7371
- RugbyGameLogTypes[RugbyGameLogTypes["quick_throw"] = 32] = "quick_throw";
7372
- RugbyGameLogTypes[RugbyGameLogTypes["ruck_won"] = 33] = "ruck_won";
7373
- RugbyGameLogTypes[RugbyGameLogTypes["ruck_lose"] = 34] = "ruck_lose";
7374
- RugbyGameLogTypes[RugbyGameLogTypes["maul_won"] = 35] = "maul_won";
7375
- RugbyGameLogTypes[RugbyGameLogTypes["maul_lose"] = 36] = "maul_lose";
7376
- RugbyGameLogTypes[RugbyGameLogTypes["team_foul"] = 37] = "team_foul";
7397
+ RugbyGameLogTypes[RugbyGameLogTypes["lineout_won"] = 29] = "lineout_won";
7398
+ RugbyGameLogTypes[RugbyGameLogTypes["lineout_lost"] = 30] = "lineout_lost";
7399
+ RugbyGameLogTypes[RugbyGameLogTypes["quick_throw"] = 31] = "quick_throw";
7400
+ RugbyGameLogTypes[RugbyGameLogTypes["ruck_won"] = 32] = "ruck_won";
7401
+ RugbyGameLogTypes[RugbyGameLogTypes["ruck_lost"] = 33] = "ruck_lost";
7402
+ RugbyGameLogTypes[RugbyGameLogTypes["maul_won"] = 34] = "maul_won";
7403
+ RugbyGameLogTypes[RugbyGameLogTypes["maul_lost"] = 35] = "maul_lost";
7404
+ RugbyGameLogTypes[RugbyGameLogTypes["team_foul"] = 36] = "team_foul";
7377
7405
  })(exports.RugbyGameLogTypes || (exports.RugbyGameLogTypes = {}));
7378
7406
  var RUGBY_GAME_LOG_TYPE_POINTS = (_a$1 = {},
7379
7407
  _a$1[exports.RugbyGameLogTypes.penalty_try] = 7,
@@ -7384,10 +7412,11 @@
7384
7412
  _a$1[exports.RugbyGameLogTypes.end_game_penalty_goal] = 1,
7385
7413
  _a$1);
7386
7414
  var RUGBY_TEAM_LOG_TYPES = [
7387
- exports.RugbyGameLogTypes.timeout, exports.RugbyGameLogTypes.scrum_won, exports.RugbyGameLogTypes.scrum_lose, exports.RugbyGameLogTypes.scrum_won_free,
7388
- exports.RugbyGameLogTypes.lineout_success, exports.RugbyGameLogTypes.lineout_loss, exports.RugbyGameLogTypes.lineout_steal, exports.RugbyGameLogTypes.quick_throw,
7389
- exports.RugbyGameLogTypes.ruck_won, exports.RugbyGameLogTypes.ruck_lose, exports.RugbyGameLogTypes.maul_won, exports.RugbyGameLogTypes.maul_lose,
7390
- exports.RugbyGameLogTypes.team_foul,
7415
+ exports.RugbyGameLogTypes.timeout, exports.RugbyGameLogTypes.scrum_won, exports.RugbyGameLogTypes.scrum_lost, exports.RugbyGameLogTypes.scrum_won_free,
7416
+ exports.RugbyGameLogTypes.lineout_won, exports.RugbyGameLogTypes.lineout_lost,
7417
+ exports.RugbyGameLogTypes.quick_throw, exports.RugbyGameLogTypes.ruck_won, exports.RugbyGameLogTypes.ruck_lost,
7418
+ exports.RugbyGameLogTypes.maul_won, exports.RugbyGameLogTypes.maul_lost, exports.RugbyGameLogTypes.team_foul,
7419
+ exports.RugbyGameLogTypes.penalty_kick_to_touch, exports.RugbyGameLogTypes.tap_penalty,
7391
7420
  ];
7392
7421
  var RugbyGameLog = /** @class */ (function (_super) {
7393
7422
  __extends(RugbyGameLog, _super);
@@ -9316,6 +9345,9 @@
9316
9345
  _a$4[exports.FootballGameLogTypes.out] = 'Аут',
9317
9346
  _a$4[exports.FootballGameLogTypes.timeout] = 'Таймаут',
9318
9347
  _a$4[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
9348
+ _a$4[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
9349
+ _a$4[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
9350
+ _a$4[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
9319
9351
  _a$4);
9320
9352
 
9321
9353
  var _a$5;
@@ -9373,9 +9405,10 @@
9373
9405
  _a$8[exports.RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
9374
9406
  _a$8[exports.RugbyGameLogTypes.conversion_goal] = 'Реализация',
9375
9407
  _a$8[exports.RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
9376
- _a$8[exports.RugbyGameLogTypes.drawing_ball] = 'Розыгрыш мяча',
9377
9408
  _a$8[exports.RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
9378
9409
  _a$8[exports.RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
9410
+ _a$8[exports.RugbyGameLogTypes.penalty_kick_to_touch] = 'Штрафной в аут',
9411
+ _a$8[exports.RugbyGameLogTypes.tap_penalty] = 'Штрафной розыгран',
9379
9412
  _a$8[exports.RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
9380
9413
  _a$8[exports.RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
9381
9414
  _a$8[exports.RugbyGameLogTypes.free_kick] = 'Свободный удар',
@@ -9384,25 +9417,23 @@
9384
9417
  _a$8[exports.RugbyGameLogTypes.red_card] = 'Красная карточка',
9385
9418
  _a$8[exports.RugbyGameLogTypes.offload] = 'Скидка при завхвате',
9386
9419
  _a$8[exports.RugbyGameLogTypes.tackle] = 'Успешный захват',
9387
- _a$8[exports.RugbyGameLogTypes.out] = 'Аут',
9388
9420
  _a$8[exports.RugbyGameLogTypes.handling_error] = 'Ошибка приема',
9389
- _a$8[exports.RugbyGameLogTypes.carries_other_gainline] = 'Прорыв линии',
9421
+ _a$8[exports.RugbyGameLogTypes.carries_over_gainline] = 'Прорыв линии',
9390
9422
  _a$8[exports.RugbyGameLogTypes.bleeding_injury] = 'Кровоточащая травма',
9391
9423
  _a$8[exports.RugbyGameLogTypes.head_injury] = 'Травма головы',
9392
9424
  _a$8[exports.RugbyGameLogTypes.end_game_penalty_miss] = 'Штрафной промах',
9393
9425
  _a$8[exports.RugbyGameLogTypes.end_game_penalty_goal] = 'Штрафной гол',
9394
9426
  _a$8[exports.RugbyGameLogTypes.timeout] = 'Таймаут',
9395
- _a$8[exports.RugbyGameLogTypes.scrum_won] = 'Свахтка выиграна',
9396
- _a$8[exports.RugbyGameLogTypes.scrum_lose] = 'Схватка проиграна',
9427
+ _a$8[exports.RugbyGameLogTypes.scrum_won] = 'Схватка выиграна',
9428
+ _a$8[exports.RugbyGameLogTypes.scrum_lost] = 'Схватка проиграна',
9397
9429
  _a$8[exports.RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
9398
- _a$8[exports.RugbyGameLogTypes.lineout_success] = 'Корридор выиграно',
9399
- _a$8[exports.RugbyGameLogTypes.lineout_loss] = 'Корридор потеря',
9400
- _a$8[exports.RugbyGameLogTypes.lineout_steal] = 'Корридор перехват',
9430
+ _a$8[exports.RugbyGameLogTypes.lineout_won] = 'Корридор выиграно',
9431
+ _a$8[exports.RugbyGameLogTypes.lineout_lost] = 'Корридор проиграно',
9401
9432
  _a$8[exports.RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
9402
9433
  _a$8[exports.RugbyGameLogTypes.ruck_won] = 'Рак выиграно',
9403
- _a$8[exports.RugbyGameLogTypes.ruck_lose] = 'Рак проиграно',
9434
+ _a$8[exports.RugbyGameLogTypes.ruck_lost] = 'Рак проиграно',
9404
9435
  _a$8[exports.RugbyGameLogTypes.maul_won] = 'Мол выиграно',
9405
- _a$8[exports.RugbyGameLogTypes.maul_lose] = 'Мол проиграно',
9436
+ _a$8[exports.RugbyGameLogTypes.maul_lost] = 'Мол проиграно',
9406
9437
  _a$8[exports.RugbyGameLogTypes.team_foul] = 'Фол',
9407
9438
  _a$8);
9408
9439