@mtgame/core 0.2.85 → 0.2.86

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.
@@ -13641,6 +13641,19 @@
13641
13641
  ].indexOf(this.logType) > -1;
13642
13642
  };
13643
13643
  WrestballGameLog.prototype.isScrumType = function () {
13644
+ return [
13645
+ exports.WrestballGameLogTypes.wrestler_scrum_won,
13646
+ exports.WrestballGameLogTypes.wrestler_scrum_lost,
13647
+ exports.WrestballGameLogTypes.wrestler_scrum_tie,
13648
+ exports.WrestballGameLogTypes.scrum_won,
13649
+ exports.WrestballGameLogTypes.scrum_lost,
13650
+ exports.WrestballGameLogTypes.scrum_tie,
13651
+ exports.WrestballGameLogTypes.scrum_ball_advantage_won,
13652
+ exports.WrestballGameLogTypes.scrum_ball_advantage_lost,
13653
+ exports.WrestballGameLogTypes.scrum_ball_advantage_tie
13654
+ ].indexOf(this.logType) > -1;
13655
+ };
13656
+ WrestballGameLog.prototype.isRestlerScrumType = function () {
13644
13657
  return [
13645
13658
  exports.WrestballGameLogTypes.wrestler_scrum_won,
13646
13659
  exports.WrestballGameLogTypes.wrestler_scrum_lost,