@mtgame/core 0.2.84 → 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.
- package/bundles/mtgame-core.umd.js +12 -1
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/wrestball-game-log.js +9 -2
- package/esm2015/models/wrestball-game-statistic.js +3 -1
- package/esm2015/models/wrestball-statistic.js +3 -1
- package/fesm2015/mtgame-core.js +12 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/wrestball-game-log.d.ts +1 -0
- package/models/wrestball-game-statistic.d.ts +2 -0
- package/models/wrestball-statistic.d.ts +2 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -7584,6 +7584,8 @@
|
|
|
7584
7584
|
personal_fouls: 'personalFouls',
|
|
7585
7585
|
drawn_fouls: 'drawnFouls',
|
|
7586
7586
|
drawn_wrestler_attempts: 'drawnWrestlerAttempts',
|
|
7587
|
+
drawn_wrestler_won_attempts: 'drawnWrestlerWonAttempts',
|
|
7588
|
+
drawn_wrestler_lost_attempts: 'drawnWrestlerLostAttempts',
|
|
7587
7589
|
wrestler_scrums_won: 'wrestlerScrumsWon',
|
|
7588
7590
|
wrestler_scrums_lost: 'wrestlerScrumsLost',
|
|
7589
7591
|
wrestler_scrums_tie: 'wrestlerScrumsTie',
|
|
@@ -13542,6 +13544,8 @@
|
|
|
13542
13544
|
personal_fouls: 'personalFouls',
|
|
13543
13545
|
drawn_fouls: 'drawnFouls',
|
|
13544
13546
|
drawn_wrestler_attempts: 'drawnWrestlerAttempts',
|
|
13547
|
+
drawn_wrestler_won_attempts: 'drawnWrestlerWonAttempts',
|
|
13548
|
+
drawn_wrestler_lost_attempts: 'drawnWrestlerLostAttempts',
|
|
13545
13549
|
wrestler_scrums_won: 'wrestlerScrumsWon',
|
|
13546
13550
|
wrestler_scrums_lost: 'wrestlerScrumsLost',
|
|
13547
13551
|
wrestler_scrums_tie: 'wrestlerScrumsTie',
|
|
@@ -13646,7 +13650,14 @@
|
|
|
13646
13650
|
exports.WrestballGameLogTypes.scrum_tie,
|
|
13647
13651
|
exports.WrestballGameLogTypes.scrum_ball_advantage_won,
|
|
13648
13652
|
exports.WrestballGameLogTypes.scrum_ball_advantage_lost,
|
|
13649
|
-
exports.WrestballGameLogTypes.scrum_ball_advantage_tie
|
|
13653
|
+
exports.WrestballGameLogTypes.scrum_ball_advantage_tie
|
|
13654
|
+
].indexOf(this.logType) > -1;
|
|
13655
|
+
};
|
|
13656
|
+
WrestballGameLog.prototype.isRestlerScrumType = function () {
|
|
13657
|
+
return [
|
|
13658
|
+
exports.WrestballGameLogTypes.wrestler_scrum_won,
|
|
13659
|
+
exports.WrestballGameLogTypes.wrestler_scrum_lost,
|
|
13660
|
+
exports.WrestballGameLogTypes.wrestler_scrum_tie
|
|
13650
13661
|
].indexOf(this.logType) > -1;
|
|
13651
13662
|
};
|
|
13652
13663
|
WrestballGameLog.prototype.getScore = function () {
|