@mtgame/core 0.2.82 → 0.2.84

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.
@@ -7589,6 +7589,7 @@
7589
7589
  wrestler_scrums_tie: 'wrestlerScrumsTie',
7590
7590
  wrestler_scrum_points: 'wrestlerScrumPoints',
7591
7591
  wrestler_scrums_counterattack: 'wrestlerScrumsCounterattack',
7592
+ wrestler_scrums_counterattack_points: 'wrestlerScrumsCounterattackPoints',
7592
7593
  scrums_won: 'scrumsWon',
7593
7594
  scrums_lost: 'scrumsLost',
7594
7595
  scrums_tie: 'scrumsTie',
@@ -13546,6 +13547,7 @@
13546
13547
  wrestler_scrums_tie: 'wrestlerScrumsTie',
13547
13548
  wrestler_scrum_points: 'wrestlerScrumPoints',
13548
13549
  wrestler_scrums_counterattack: 'wrestlerScrumsCounterattack',
13550
+ wrestler_scrums_counterattack_points: 'wrestlerScrumsCounterattackPoints',
13549
13551
  scrums_won: 'scrumsWon',
13550
13552
  scrums_lost: 'scrumsLost',
13551
13553
  scrums_tie: 'scrumsTie',
@@ -13634,6 +13636,19 @@
13634
13636
  exports.WrestballGameLogTypes.personal_foul,
13635
13637
  ].indexOf(this.logType) > -1;
13636
13638
  };
13639
+ WrestballGameLog.prototype.isScrumType = function () {
13640
+ return [
13641
+ exports.WrestballGameLogTypes.wrestler_scrum_won,
13642
+ exports.WrestballGameLogTypes.wrestler_scrum_lost,
13643
+ exports.WrestballGameLogTypes.wrestler_scrum_tie,
13644
+ exports.WrestballGameLogTypes.scrum_won,
13645
+ exports.WrestballGameLogTypes.scrum_lost,
13646
+ exports.WrestballGameLogTypes.scrum_tie,
13647
+ exports.WrestballGameLogTypes.scrum_ball_advantage_won,
13648
+ exports.WrestballGameLogTypes.scrum_ball_advantage_lost,
13649
+ exports.WrestballGameLogTypes.scrum_ball_advantage_tie,
13650
+ ].indexOf(this.logType) > -1;
13651
+ };
13637
13652
  WrestballGameLog.prototype.getScore = function () {
13638
13653
  var _a;
13639
13654
  var scoreMapping = (_a = {},