@mtgame/core 0.2.84 → 0.2.85
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 +5 -7
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/wrestball-game-log.js +2 -8
- package/esm2015/models/wrestball-game-statistic.js +3 -1
- package/esm2015/models/wrestball-statistic.js +3 -1
- package/fesm2015/mtgame-core.js +5 -7
- package/fesm2015/mtgame-core.js.map +1 -1
- 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',
|
|
@@ -13640,13 +13644,7 @@
|
|
|
13640
13644
|
return [
|
|
13641
13645
|
exports.WrestballGameLogTypes.wrestler_scrum_won,
|
|
13642
13646
|
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,
|
|
13647
|
+
exports.WrestballGameLogTypes.wrestler_scrum_tie
|
|
13650
13648
|
].indexOf(this.logType) > -1;
|
|
13651
13649
|
};
|
|
13652
13650
|
WrestballGameLog.prototype.getScore = function () {
|