@mtgame/core 0.2.83 → 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 +7 -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 +4 -1
- package/esm2015/models/wrestball-statistic.js +4 -1
- package/fesm2015/mtgame-core.js +7 -7
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/wrestball-game-statistic.d.ts +3 -0
- package/models/wrestball-statistic.d.ts +3 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -7584,11 +7584,14 @@
|
|
|
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',
|
|
7590
7592
|
wrestler_scrum_points: 'wrestlerScrumPoints',
|
|
7591
7593
|
wrestler_scrums_counterattack: 'wrestlerScrumsCounterattack',
|
|
7594
|
+
wrestler_scrums_counterattack_points: 'wrestlerScrumsCounterattackPoints',
|
|
7592
7595
|
scrums_won: 'scrumsWon',
|
|
7593
7596
|
scrums_lost: 'scrumsLost',
|
|
7594
7597
|
scrums_tie: 'scrumsTie',
|
|
@@ -13541,11 +13544,14 @@
|
|
|
13541
13544
|
personal_fouls: 'personalFouls',
|
|
13542
13545
|
drawn_fouls: 'drawnFouls',
|
|
13543
13546
|
drawn_wrestler_attempts: 'drawnWrestlerAttempts',
|
|
13547
|
+
drawn_wrestler_won_attempts: 'drawnWrestlerWonAttempts',
|
|
13548
|
+
drawn_wrestler_lost_attempts: 'drawnWrestlerLostAttempts',
|
|
13544
13549
|
wrestler_scrums_won: 'wrestlerScrumsWon',
|
|
13545
13550
|
wrestler_scrums_lost: 'wrestlerScrumsLost',
|
|
13546
13551
|
wrestler_scrums_tie: 'wrestlerScrumsTie',
|
|
13547
13552
|
wrestler_scrum_points: 'wrestlerScrumPoints',
|
|
13548
13553
|
wrestler_scrums_counterattack: 'wrestlerScrumsCounterattack',
|
|
13554
|
+
wrestler_scrums_counterattack_points: 'wrestlerScrumsCounterattackPoints',
|
|
13549
13555
|
scrums_won: 'scrumsWon',
|
|
13550
13556
|
scrums_lost: 'scrumsLost',
|
|
13551
13557
|
scrums_tie: 'scrumsTie',
|
|
@@ -13638,13 +13644,7 @@
|
|
|
13638
13644
|
return [
|
|
13639
13645
|
exports.WrestballGameLogTypes.wrestler_scrum_won,
|
|
13640
13646
|
exports.WrestballGameLogTypes.wrestler_scrum_lost,
|
|
13641
|
-
exports.WrestballGameLogTypes.wrestler_scrum_tie
|
|
13642
|
-
exports.WrestballGameLogTypes.scrum_won,
|
|
13643
|
-
exports.WrestballGameLogTypes.scrum_lost,
|
|
13644
|
-
exports.WrestballGameLogTypes.scrum_tie,
|
|
13645
|
-
exports.WrestballGameLogTypes.scrum_ball_advantage_won,
|
|
13646
|
-
exports.WrestballGameLogTypes.scrum_ball_advantage_lost,
|
|
13647
|
-
exports.WrestballGameLogTypes.scrum_ball_advantage_tie,
|
|
13647
|
+
exports.WrestballGameLogTypes.wrestler_scrum_tie
|
|
13648
13648
|
].indexOf(this.logType) > -1;
|
|
13649
13649
|
};
|
|
13650
13650
|
WrestballGameLog.prototype.getScore = function () {
|