@mtgame/core 1.0.47 → 1.0.49
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 +3 -1
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/basketball-game-log-types.js +3 -1
- package/esm2015/models/waterpolo-game-statistic.js +2 -2
- package/fesm2015/mtgame-core.js +3 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/basketball-game-log-types.d.ts +2 -0
- package/package.json +1 -1
package/fesm2015/mtgame-core.js
CHANGED
|
@@ -10533,7 +10533,7 @@ let WaterpoloGameStatistic = class WaterpoloGameStatistic extends BaseModel {
|
|
|
10533
10533
|
return this.ppShots + this.evShots + this.shShots + this.shootoutShots;
|
|
10534
10534
|
}
|
|
10535
10535
|
get totalShots() {
|
|
10536
|
-
return this.shots
|
|
10536
|
+
return this.shots;
|
|
10537
10537
|
}
|
|
10538
10538
|
get faceOffs() {
|
|
10539
10539
|
return (this.faceOffWins || 0) + (this.faceOffLosses || 0);
|
|
@@ -11638,6 +11638,7 @@ const BasketballGameLogTypeLocalization = {
|
|
|
11638
11638
|
[BasketballGameLogTypes.personal_foul]: 'Фол',
|
|
11639
11639
|
[BasketballGameLogTypes.technical_foul]: 'Технический фол',
|
|
11640
11640
|
[BasketballGameLogTypes.unsportsmanlike_foul]: 'Неспортиный фол',
|
|
11641
|
+
[BasketballGameLogTypes.disqualification_foul]: 'Дисквалифицирующий фол',
|
|
11641
11642
|
[BasketballGameLogTypes.timeout]: 'Таймаут',
|
|
11642
11643
|
[BasketballGameLogTypes.team_rebound]: 'Командный подбор',
|
|
11643
11644
|
[BasketballGameLogTypes.dunk_attempt]: 'Данк мимо',
|
|
@@ -11671,6 +11672,7 @@ const BasketballGameLogTypeLocalization = {
|
|
|
11671
11672
|
[BasketballGameLogTypes.turnover]: 'Turnover',
|
|
11672
11673
|
[BasketballGameLogTypes.personal_foul]: 'Foul',
|
|
11673
11674
|
[BasketballGameLogTypes.technical_foul]: 'Technical foul',
|
|
11675
|
+
[BasketballGameLogTypes.disqualification_foul]: 'Disqualification foul',
|
|
11674
11676
|
[BasketballGameLogTypes.unsportsmanlike_foul]: 'Unsportsmanlike foul',
|
|
11675
11677
|
[BasketballGameLogTypes.timeout]: 'Timeout',
|
|
11676
11678
|
[BasketballGameLogTypes.team_rebound]: 'Team rebound',
|