@mtgame/core 0.1.142 → 0.1.144
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 +145 -46
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/waterpolo-game-log-types.js +23 -17
- package/esm2015/models/hockey-game-config.js +5 -1
- package/esm2015/models/tournament.js +5 -1
- package/esm2015/models/waterpolo-game-log.js +7 -1
- package/esm2015/models/waterpolo-game-statistic.js +63 -27
- package/esm2015/models/waterpolo-statistic.js +16 -1
- package/fesm2015/mtgame-core.js +113 -42
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/waterpolo-game-log-types.d.ts +6 -0
- package/models/hockey-game-config.d.ts +4 -0
- package/models/tournament.d.ts +4 -0
- package/models/waterpolo-game-log.d.ts +7 -1
- package/models/waterpolo-game-statistic.d.ts +23 -1
- package/models/waterpolo-statistic.d.ts +15 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1691,6 +1691,10 @@
|
|
|
1691
1691
|
free_substitute_enabled: 'freeSubstituteEnabled',
|
|
1692
1692
|
substitute_manage_enabled: 'substituteManageEnabled',
|
|
1693
1693
|
bonus_points_enabled: 'bonusPointsEnabled',
|
|
1694
|
+
minor_penalty_time: 'minorPenaltyTime',
|
|
1695
|
+
major_penalty_time: 'majorPenaltyTime',
|
|
1696
|
+
misconduct_penalty_time: 'misconductPenaltyTime',
|
|
1697
|
+
game_misconduct_penalty_time: 'gameMisconductPenaltyTime',
|
|
1694
1698
|
},
|
|
1695
1699
|
relation: {
|
|
1696
1700
|
type: enumField(exports.TournamentTypes),
|
|
@@ -2034,6 +2038,10 @@
|
|
|
2034
2038
|
timeout_time: 'timeoutTime',
|
|
2035
2039
|
game_time_type: 'gameTimeType',
|
|
2036
2040
|
substitute_manage_enabled: 'substituteManageEnabled',
|
|
2041
|
+
minor_penalty_time: 'minorPenaltyTime',
|
|
2042
|
+
major_penalty_time: 'majorPenaltyTime',
|
|
2043
|
+
misconduct_penalty_time: 'misconductPenaltyTime',
|
|
2044
|
+
game_misconduct_penalty_time: 'gameMisconductPenaltyTime',
|
|
2037
2045
|
},
|
|
2038
2046
|
relation: {
|
|
2039
2047
|
overtimeType: enumField(exports.OvertimeTypes),
|
|
@@ -6460,30 +6468,39 @@
|
|
|
6460
6468
|
pp_counterattack_goals: 'ppCounterAttackGoals',
|
|
6461
6469
|
pp_counterattack_on_goals: 'ppCounterAttackOnGoals',
|
|
6462
6470
|
pp_counterattack_misses: 'ppCounterAttackMisses',
|
|
6471
|
+
pp_counterattack_shots_blocked: 'ppCounterAttackShotsBlocked',
|
|
6463
6472
|
ev_counterattack_goals: 'evCounterAttackGoals',
|
|
6464
6473
|
ev_counterattack_on_goals: 'evCounterAttackOnGoals',
|
|
6465
6474
|
ev_counterattack_misses: 'evCounterAttackMisses',
|
|
6475
|
+
ev_counterattack_shots_blocked: 'evCounterAttackShotsBlocked',
|
|
6466
6476
|
sh_counterattack_goals: 'shCounterAttackGoals',
|
|
6467
6477
|
sh_counterattack_on_goals: 'shCounterAttackOnGoals',
|
|
6468
6478
|
sh_counterattack_misses: 'shCounterAttackMisses',
|
|
6479
|
+
sh_counterattack_shots_blocked: 'shCounterAttackShotsBlocked',
|
|
6469
6480
|
pp_maneuver_goals: 'ppManeuverGoals',
|
|
6470
6481
|
pp_maneuver_on_goals: 'ppManeuverOnGoals',
|
|
6471
6482
|
pp_maneuver_misses: 'ppManeuverMisses',
|
|
6483
|
+
pp_maneuver_shots_blocked: 'ppManeuverShotsBlocked',
|
|
6472
6484
|
ev_maneuver_goals: 'evManeuverGoals',
|
|
6473
6485
|
ev_maneuver_on_goals: 'evManeuverOnGoals',
|
|
6474
6486
|
ev_maneuver_misses: 'evManeuverMisses',
|
|
6487
|
+
ev_maneuver_shots_blocked: 'evManeuverShotsBlocked',
|
|
6475
6488
|
sh_maneuver_goals: 'shManeuverGoals',
|
|
6476
6489
|
sh_maneuver_on_goals: 'shManeuverOnGoals',
|
|
6477
6490
|
sh_maneuver_misses: 'shManeuverMisses',
|
|
6491
|
+
sh_maneuver_shots_blocked: 'shManeuverShotsBlocked',
|
|
6478
6492
|
pp_center_forward_goals: 'ppCenterForwardGoals',
|
|
6479
6493
|
pp_center_forward_on_goals: 'ppCenterForwardOnGoals',
|
|
6480
6494
|
pp_center_forward_misses: 'ppCenterForwardMisses',
|
|
6495
|
+
pp_center_forward_shots_blocked: 'ppCenterForwardShotsBlocked',
|
|
6481
6496
|
ev_center_forward_goals: 'evCenterForwardGoals',
|
|
6482
6497
|
ev_center_forward_on_goals: 'evCenterForwardOnGoals',
|
|
6483
6498
|
ev_center_forward_misses: 'evCenterForwardMisses',
|
|
6499
|
+
ev_center_forward_shots_blocked: 'evCenterForwardShotsBlocked',
|
|
6484
6500
|
sh_center_forward_goals: 'shCenterForwardGoals',
|
|
6485
6501
|
sh_center_forward_on_goals: 'shCenterForwardOnGoals',
|
|
6486
6502
|
sh_center_forward_misses: 'shCenterForwardMisses',
|
|
6503
|
+
sh_center_forward_shots_blocked: 'shCenterForwardShotsBlocked',
|
|
6487
6504
|
pp_assists: 'ppAssists',
|
|
6488
6505
|
ev_assists: 'evAssists',
|
|
6489
6506
|
sh_assists: 'shAssists',
|
|
@@ -6564,23 +6581,29 @@
|
|
|
6564
6581
|
pp_free_kick_goals: 'ppFreeKickGoals',
|
|
6565
6582
|
pp_free_kick_on_goals: 'ppFreeKickOnGoals',
|
|
6566
6583
|
pp_free_kick_misses: 'ppFreeKickMisses',
|
|
6584
|
+
pp_free_kick_shots_blocked: 'ppFreeKickShotsBlocked',
|
|
6567
6585
|
sh_free_kick_goals: 'shFreeKickGoals',
|
|
6568
6586
|
sh_free_kick_on_goals: 'shFreeKickOnGoals',
|
|
6569
6587
|
sh_free_kick_misses: 'shFreeKickMisses',
|
|
6588
|
+
sh_free_kick_shots_blocked: 'shFreeKickShotsBlocked',
|
|
6570
6589
|
ev_free_kick_goals: 'evFreeKickGoals',
|
|
6571
6590
|
ev_free_kick_on_goals: 'evFreeKickOnGoals',
|
|
6572
6591
|
ev_free_kick_misses: 'evFreeKickMisses',
|
|
6592
|
+
ev_free_kick_shots_blocked: 'evFreeKickShotsBlocked',
|
|
6573
6593
|
free_kick_passes: 'freeKickPasses',
|
|
6574
6594
|
free_kick_selfs: 'freeKickSelfs',
|
|
6575
6595
|
pp_corner_goals: 'ppCornerGoals',
|
|
6576
6596
|
pp_corner_on_goals: 'ppCornerOnGoals',
|
|
6577
6597
|
pp_corner_misses: 'ppCornerMisses',
|
|
6598
|
+
pp_corner_shots_blocked: 'ppCornerShotsBlocked',
|
|
6578
6599
|
sh_corner_goals: 'shCornerGoals',
|
|
6579
6600
|
sh_corner_on_goals: 'shCornerOnGoals',
|
|
6580
6601
|
sh_corner_misses: 'shCornerMisses',
|
|
6602
|
+
sh_corner_shots_blocked: 'shCornerShotsBlocked',
|
|
6581
6603
|
ev_corner_goals: 'evCornerGoals',
|
|
6582
6604
|
ev_corner_on_goals: 'evCornerOnGoals',
|
|
6583
6605
|
ev_corner_misses: 'evCornerMisses',
|
|
6606
|
+
ev_corner_shots_blocked: 'evCornerShotsBlocked',
|
|
6584
6607
|
corner_passes: 'cornerPasses',
|
|
6585
6608
|
corner_selfs: 'cornerSelfs',
|
|
6586
6609
|
tackles: 'tackles',
|
|
@@ -11002,6 +11025,12 @@
|
|
|
11002
11025
|
WaterpoloGameLogTypes[WaterpoloGameLogTypes["penalty_foul"] = 56] = "penalty_foul";
|
|
11003
11026
|
WaterpoloGameLogTypes[WaterpoloGameLogTypes["attack_foul"] = 57] = "attack_foul";
|
|
11004
11027
|
WaterpoloGameLogTypes[WaterpoloGameLogTypes["turnover"] = 58] = "turnover";
|
|
11028
|
+
WaterpoloGameLogTypes[WaterpoloGameLogTypes["counter_attack_shot_blocked"] = 59] = "counter_attack_shot_blocked";
|
|
11029
|
+
WaterpoloGameLogTypes[WaterpoloGameLogTypes["maneuver_shot_blocked"] = 60] = "maneuver_shot_blocked";
|
|
11030
|
+
WaterpoloGameLogTypes[WaterpoloGameLogTypes["center_forward_shot_blocked"] = 61] = "center_forward_shot_blocked";
|
|
11031
|
+
WaterpoloGameLogTypes[WaterpoloGameLogTypes["free_kick_shot_blocked"] = 62] = "free_kick_shot_blocked";
|
|
11032
|
+
WaterpoloGameLogTypes[WaterpoloGameLogTypes["corner_shot_blocked"] = 63] = "corner_shot_blocked";
|
|
11033
|
+
WaterpoloGameLogTypes[WaterpoloGameLogTypes["complete_penalty_time"] = 64] = "complete_penalty_time";
|
|
11005
11034
|
})(exports.WaterpoloGameLogTypes || (exports.WaterpoloGameLogTypes = {}));
|
|
11006
11035
|
exports.WaterpoloAdvantageTypes = void 0;
|
|
11007
11036
|
(function (WaterpoloAdvantageTypes) {
|
|
@@ -11158,21 +11187,21 @@
|
|
|
11158
11187
|
});
|
|
11159
11188
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "ppCounterAttackShots", {
|
|
11160
11189
|
get: function () {
|
|
11161
|
-
return (this.ppCounterAttackOnGoals || 0) + (this.ppCounterAttackMisses || 0);
|
|
11190
|
+
return (this.ppCounterAttackOnGoals || 0) + (this.ppCounterAttackMisses || 0) + (this.ppCounterAttackShotsBlocked || 0);
|
|
11162
11191
|
},
|
|
11163
11192
|
enumerable: false,
|
|
11164
11193
|
configurable: true
|
|
11165
11194
|
});
|
|
11166
11195
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "shCounterAttackShots", {
|
|
11167
11196
|
get: function () {
|
|
11168
|
-
return (this.shCounterAttackOnGoals || 0) + (this.shCounterAttackMisses || 0);
|
|
11197
|
+
return (this.shCounterAttackOnGoals || 0) + (this.shCounterAttackMisses || 0) + (this.shCounterAttackShotsBlocked || 0);
|
|
11169
11198
|
},
|
|
11170
11199
|
enumerable: false,
|
|
11171
11200
|
configurable: true
|
|
11172
11201
|
});
|
|
11173
11202
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "evCounterAttackShots", {
|
|
11174
11203
|
get: function () {
|
|
11175
|
-
return (this.evCounterAttackOnGoals || 0) + (this.evCounterAttackMisses || 0);
|
|
11204
|
+
return (this.evCounterAttackOnGoals || 0) + (this.evCounterAttackMisses || 0) + (this.evCounterAttackShotsBlocked || 0);
|
|
11176
11205
|
},
|
|
11177
11206
|
enumerable: false,
|
|
11178
11207
|
configurable: true
|
|
@@ -11191,9 +11220,16 @@
|
|
|
11191
11220
|
enumerable: false,
|
|
11192
11221
|
configurable: true
|
|
11193
11222
|
});
|
|
11223
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "counterAttackShotsBlocked", {
|
|
11224
|
+
get: function () {
|
|
11225
|
+
return (this.ppCounterAttackShotsBlocked || 0) + (this.shCounterAttackShotsBlocked || 0) + (this.evCounterAttackShotsBlocked || 0);
|
|
11226
|
+
},
|
|
11227
|
+
enumerable: false,
|
|
11228
|
+
configurable: true
|
|
11229
|
+
});
|
|
11194
11230
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "counterAttackShots", {
|
|
11195
11231
|
get: function () {
|
|
11196
|
-
return this.counterAttackShotMisses + this.counterAttackShotOnGoals;
|
|
11232
|
+
return this.counterAttackShotMisses + this.counterAttackShotOnGoals + this.counterAttackShotsBlocked;
|
|
11197
11233
|
},
|
|
11198
11234
|
enumerable: false,
|
|
11199
11235
|
configurable: true
|
|
@@ -11217,21 +11253,21 @@
|
|
|
11217
11253
|
});
|
|
11218
11254
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "ppManeuverShots", {
|
|
11219
11255
|
get: function () {
|
|
11220
|
-
return (this.ppManeuverOnGoals || 0) + (this.ppManeuverMisses || 0);
|
|
11256
|
+
return (this.ppManeuverOnGoals || 0) + (this.ppManeuverMisses || 0) + (this.ppManeuverShotsBlocked || 0);
|
|
11221
11257
|
},
|
|
11222
11258
|
enumerable: false,
|
|
11223
11259
|
configurable: true
|
|
11224
11260
|
});
|
|
11225
11261
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "shManeuverShots", {
|
|
11226
11262
|
get: function () {
|
|
11227
|
-
return (this.shManeuverOnGoals || 0) + (this.shManeuverMisses || 0);
|
|
11263
|
+
return (this.shManeuverOnGoals || 0) + (this.shManeuverMisses || 0) + (this.shManeuverShotsBlocked || 0);
|
|
11228
11264
|
},
|
|
11229
11265
|
enumerable: false,
|
|
11230
11266
|
configurable: true
|
|
11231
11267
|
});
|
|
11232
11268
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "evManeuverShots", {
|
|
11233
11269
|
get: function () {
|
|
11234
|
-
return (this.evManeuverOnGoals || 0) + (this.evManeuverMisses || 0);
|
|
11270
|
+
return (this.evManeuverOnGoals || 0) + (this.evManeuverMisses || 0) + (this.evManeuverShotsBlocked || 0);
|
|
11235
11271
|
},
|
|
11236
11272
|
enumerable: false,
|
|
11237
11273
|
configurable: true
|
|
@@ -11250,9 +11286,16 @@
|
|
|
11250
11286
|
enumerable: false,
|
|
11251
11287
|
configurable: true
|
|
11252
11288
|
});
|
|
11289
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "maneuverShotsBlocked", {
|
|
11290
|
+
get: function () {
|
|
11291
|
+
return (this.ppManeuverShotsBlocked || 0) + (this.shManeuverShotsBlocked || 0) + (this.evManeuverShotsBlocked || 0);
|
|
11292
|
+
},
|
|
11293
|
+
enumerable: false,
|
|
11294
|
+
configurable: true
|
|
11295
|
+
});
|
|
11253
11296
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "maneuverShots", {
|
|
11254
11297
|
get: function () {
|
|
11255
|
-
return this.maneuverShotMisses + this.maneuverShotOnGoals;
|
|
11298
|
+
return this.maneuverShotMisses + this.maneuverShotOnGoals + this.maneuverShotsBlocked;
|
|
11256
11299
|
},
|
|
11257
11300
|
enumerable: false,
|
|
11258
11301
|
configurable: true
|
|
@@ -11276,21 +11319,21 @@
|
|
|
11276
11319
|
});
|
|
11277
11320
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "ppCenterForwardShots", {
|
|
11278
11321
|
get: function () {
|
|
11279
|
-
return (this.ppCenterForwardOnGoals || 0) + (this.ppCenterForwardMisses || 0);
|
|
11322
|
+
return (this.ppCenterForwardOnGoals || 0) + (this.ppCenterForwardMisses || 0) + (this.ppCenterForwardShotsBlocked || 0);
|
|
11280
11323
|
},
|
|
11281
11324
|
enumerable: false,
|
|
11282
11325
|
configurable: true
|
|
11283
11326
|
});
|
|
11284
11327
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "shCenterForwardShots", {
|
|
11285
11328
|
get: function () {
|
|
11286
|
-
return (this.shCenterForwardOnGoals || 0) + (this.shCenterForwardMisses || 0);
|
|
11329
|
+
return (this.shCenterForwardOnGoals || 0) + (this.shCenterForwardMisses || 0) + (this.shCenterForwardShotsBlocked || 0);
|
|
11287
11330
|
},
|
|
11288
11331
|
enumerable: false,
|
|
11289
11332
|
configurable: true
|
|
11290
11333
|
});
|
|
11291
11334
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "evCenterForwardShots", {
|
|
11292
11335
|
get: function () {
|
|
11293
|
-
return (this.evCenterForwardOnGoals || 0) + (this.evCenterForwardMisses || 0);
|
|
11336
|
+
return (this.evCenterForwardOnGoals || 0) + (this.evCenterForwardMisses || 0) + (this.evCenterForwardShotsBlocked || 0);
|
|
11294
11337
|
},
|
|
11295
11338
|
enumerable: false,
|
|
11296
11339
|
configurable: true
|
|
@@ -11309,9 +11352,16 @@
|
|
|
11309
11352
|
enumerable: false,
|
|
11310
11353
|
configurable: true
|
|
11311
11354
|
});
|
|
11355
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "centerForwardShotsBlocked", {
|
|
11356
|
+
get: function () {
|
|
11357
|
+
return (this.ppCenterForwardShotsBlocked || 0) + (this.shCenterForwardShotsBlocked || 0) + (this.evCenterForwardShotsBlocked || 0);
|
|
11358
|
+
},
|
|
11359
|
+
enumerable: false,
|
|
11360
|
+
configurable: true
|
|
11361
|
+
});
|
|
11312
11362
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "centerForwardShots", {
|
|
11313
11363
|
get: function () {
|
|
11314
|
-
return this.centerForwardShotMisses + this.centerForwardShotOnGoals;
|
|
11364
|
+
return this.centerForwardShotMisses + this.centerForwardShotOnGoals + this.centerForwardShotsBlocked;
|
|
11315
11365
|
},
|
|
11316
11366
|
enumerable: false,
|
|
11317
11367
|
configurable: true
|
|
@@ -11329,8 +11379,8 @@
|
|
|
11329
11379
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "ppShots", {
|
|
11330
11380
|
get: function () {
|
|
11331
11381
|
return (this.ppShotMisses || 0) + (this.ppShotsOnGoal || 0) + (this.ppShotsBlocked || 0) +
|
|
11332
|
-
(this.ppFreeKickMisses || 0) + (this.ppFreeKickOnGoals || 0) +
|
|
11333
|
-
(this.ppCornerMisses || 0) + (this.ppCornerOnGoals || 0) +
|
|
11382
|
+
(this.ppFreeKickMisses || 0) + (this.ppFreeKickOnGoals || 0) + (this.ppFreeKickShotsBlocked || 0) +
|
|
11383
|
+
(this.ppCornerMisses || 0) + (this.ppCornerOnGoals || 0) + (this.ppCornerShotsBlocked || 0) +
|
|
11334
11384
|
this.ppCounterAttackShots + this.ppManeuverShots + this.ppCenterForwardShots;
|
|
11335
11385
|
},
|
|
11336
11386
|
enumerable: false,
|
|
@@ -11339,8 +11389,8 @@
|
|
|
11339
11389
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "evShots", {
|
|
11340
11390
|
get: function () {
|
|
11341
11391
|
return (this.evShotMisses || 0) + (this.evShotsOnGoal || 0) + (this.evShotsBlocked || 0) +
|
|
11342
|
-
(this.evFreeKickMisses || 0) + (this.evFreeKickOnGoals || 0) +
|
|
11343
|
-
(this.evCornerMisses || 0) + (this.evCornerOnGoals || 0) +
|
|
11392
|
+
(this.evFreeKickMisses || 0) + (this.evFreeKickOnGoals || 0) + (this.evFreeKickShotsBlocked || 0) +
|
|
11393
|
+
(this.evCornerMisses || 0) + (this.evCornerOnGoals || 0) + (this.evCornerShotsBlocked || 0) +
|
|
11344
11394
|
this.evCounterAttackShots + this.evManeuverShots + this.evCenterForwardShots;
|
|
11345
11395
|
},
|
|
11346
11396
|
enumerable: false,
|
|
@@ -11349,8 +11399,8 @@
|
|
|
11349
11399
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "shShots", {
|
|
11350
11400
|
get: function () {
|
|
11351
11401
|
return (this.shShotMisses || 0) + (this.shShotsOnGoal || 0) + (this.shShotsBlocked || 0) +
|
|
11352
|
-
(this.shFreeKickMisses || 0) + (this.shFreeKickOnGoals || 0) +
|
|
11353
|
-
(this.shCornerMisses || 0) + (this.shCornerOnGoals || 0) +
|
|
11402
|
+
(this.shFreeKickMisses || 0) + (this.shFreeKickOnGoals || 0) + (this.shFreeKickShotsBlocked || 0) +
|
|
11403
|
+
(this.shCornerMisses || 0) + (this.shCornerOnGoals || 0) + (this.shCornerShotsBlocked || 0) +
|
|
11354
11404
|
this.shCounterAttackShots + this.shManeuverShots + this.shCenterForwardShots;
|
|
11355
11405
|
},
|
|
11356
11406
|
enumerable: false,
|
|
@@ -11452,13 +11502,6 @@
|
|
|
11452
11502
|
enumerable: false,
|
|
11453
11503
|
configurable: true
|
|
11454
11504
|
});
|
|
11455
|
-
Object.defineProperty(WaterpoloGameStatistic.prototype, "shotsBlocked", {
|
|
11456
|
-
get: function () {
|
|
11457
|
-
return (this.ppShotsBlocked || 0) + (this.evShotsBlocked || 0) + (this.shShotsBlocked || 0);
|
|
11458
|
-
},
|
|
11459
|
-
enumerable: false,
|
|
11460
|
-
configurable: true
|
|
11461
|
-
});
|
|
11462
11505
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "shots", {
|
|
11463
11506
|
get: function () {
|
|
11464
11507
|
return this.ppShots + this.evShots + this.shShots;
|
|
@@ -11487,6 +11530,13 @@
|
|
|
11487
11530
|
enumerable: false,
|
|
11488
11531
|
configurable: true
|
|
11489
11532
|
});
|
|
11533
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "freeKickShotsBlocked", {
|
|
11534
|
+
get: function () {
|
|
11535
|
+
return (this.ppFreeKickShotsBlocked || 0) + (this.evFreeKickShotsBlocked || 0) + (this.shFreeKickShotsBlocked || 0);
|
|
11536
|
+
},
|
|
11537
|
+
enumerable: false,
|
|
11538
|
+
configurable: true
|
|
11539
|
+
});
|
|
11490
11540
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "freeKickOnGoals", {
|
|
11491
11541
|
get: function () {
|
|
11492
11542
|
return (this.ppFreeKickOnGoals || 0) + (this.evFreeKickOnGoals || 0) + (this.shFreeKickOnGoals || 0);
|
|
@@ -11504,7 +11554,7 @@
|
|
|
11504
11554
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "totalFreeKicks", {
|
|
11505
11555
|
get: function () {
|
|
11506
11556
|
return (this.freeKickSelfs || 0) + (this.freeKickPasses || 0) +
|
|
11507
|
-
this.freeKickShotMisses + this.freeKickOnGoals + this.totalFreeKickGoals;
|
|
11557
|
+
this.freeKickShotMisses + this.freeKickOnGoals + this.totalFreeKickGoals + this.freeKickShotsBlocked;
|
|
11508
11558
|
},
|
|
11509
11559
|
enumerable: false,
|
|
11510
11560
|
configurable: true
|
|
@@ -11526,12 +11576,40 @@
|
|
|
11526
11576
|
enumerable: false,
|
|
11527
11577
|
configurable: true
|
|
11528
11578
|
});
|
|
11579
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "cornerShotMisses", {
|
|
11580
|
+
get: function () {
|
|
11581
|
+
return (this.ppCornerMisses || 0) + (this.shCornerMisses || 0) + (this.evCornerMisses || 0);
|
|
11582
|
+
},
|
|
11583
|
+
enumerable: false,
|
|
11584
|
+
configurable: true
|
|
11585
|
+
});
|
|
11586
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "cornerOnGoals", {
|
|
11587
|
+
get: function () {
|
|
11588
|
+
return (this.ppCornerOnGoals || 0) + (this.shCornerOnGoals || 0) + (this.evCornerOnGoals || 0);
|
|
11589
|
+
},
|
|
11590
|
+
enumerable: false,
|
|
11591
|
+
configurable: true
|
|
11592
|
+
});
|
|
11593
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "cornerShotsBlocked", {
|
|
11594
|
+
get: function () {
|
|
11595
|
+
return (this.ppCornerShotsBlocked || 0) + (this.shCornerShotsBlocked || 0) + (this.evCornerShotsBlocked || 0);
|
|
11596
|
+
},
|
|
11597
|
+
enumerable: false,
|
|
11598
|
+
configurable: true
|
|
11599
|
+
});
|
|
11529
11600
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "totalCorners", {
|
|
11530
11601
|
get: function () {
|
|
11531
|
-
return (this.cornerSelfs || 0) + (this.cornerPasses || 0) +
|
|
11532
|
-
|
|
11533
|
-
|
|
11534
|
-
|
|
11602
|
+
return (this.cornerSelfs || 0) + (this.cornerPasses || 0) + this.cornerShotsBlocked +
|
|
11603
|
+
this.cornerOnGoals + this.cornerShotMisses + this.totalCornerGoals;
|
|
11604
|
+
},
|
|
11605
|
+
enumerable: false,
|
|
11606
|
+
configurable: true
|
|
11607
|
+
});
|
|
11608
|
+
Object.defineProperty(WaterpoloGameStatistic.prototype, "shotsBlocked", {
|
|
11609
|
+
get: function () {
|
|
11610
|
+
return (this.ppShotsBlocked || 0) + (this.evShotsBlocked || 0) + (this.shShotsBlocked || 0) +
|
|
11611
|
+
this.counterAttackShotsBlocked + this.maneuverShotsBlocked + this.centerForwardShotsBlocked +
|
|
11612
|
+
this.freeKickShotsBlocked + this.cornerShotsBlocked;
|
|
11535
11613
|
},
|
|
11536
11614
|
enumerable: false,
|
|
11537
11615
|
configurable: true
|
|
@@ -12023,30 +12101,39 @@
|
|
|
12023
12101
|
pp_counterattack_goals: 'ppCounterAttackGoals',
|
|
12024
12102
|
pp_counterattack_on_goals: 'ppCounterAttackOnGoals',
|
|
12025
12103
|
pp_counterattack_misses: 'ppCounterAttackMisses',
|
|
12104
|
+
pp_counterattack_shots_blocked: 'ppCounterAttackShotsBlocked',
|
|
12026
12105
|
ev_counterattack_goals: 'evCounterAttackGoals',
|
|
12027
12106
|
ev_counterattack_on_goals: 'evCounterAttackOnGoals',
|
|
12028
12107
|
ev_counterattack_misses: 'evCounterAttackMisses',
|
|
12108
|
+
ev_counterattack_shots_blocked: 'evCounterAttackShotsBlocked',
|
|
12029
12109
|
sh_counterattack_goals: 'shCounterAttackGoals',
|
|
12030
12110
|
sh_counterattack_on_goals: 'shCounterAttackOnGoals',
|
|
12031
12111
|
sh_counterattack_misses: 'shCounterAttackMisses',
|
|
12112
|
+
sh_counterattack_shots_blocked: 'shCounterAttackShotsBlocked',
|
|
12032
12113
|
pp_maneuver_goals: 'ppManeuverGoals',
|
|
12033
12114
|
pp_maneuver_on_goals: 'ppManeuverOnGoals',
|
|
12034
12115
|
pp_maneuver_misses: 'ppManeuverMisses',
|
|
12116
|
+
pp_maneuver_shots_blocked: 'ppManeuverShotsBlocked',
|
|
12035
12117
|
ev_maneuver_goals: 'evManeuverGoals',
|
|
12036
12118
|
ev_maneuver_on_goals: 'evManeuverOnGoals',
|
|
12037
12119
|
ev_maneuver_misses: 'evManeuverMisses',
|
|
12120
|
+
ev_maneuver_shots_blocked: 'evManeuverShotsBlocked',
|
|
12038
12121
|
sh_maneuver_goals: 'shManeuverGoals',
|
|
12039
12122
|
sh_maneuver_on_goals: 'shManeuverOnGoals',
|
|
12040
12123
|
sh_maneuver_misses: 'shManeuverMisses',
|
|
12124
|
+
sh_maneuver_shots_blocked: 'shManeuverShotsBlocked',
|
|
12041
12125
|
pp_center_forward_goals: 'ppCenterForwardGoals',
|
|
12042
12126
|
pp_center_forward_on_goals: 'ppCenterForwardOnGoals',
|
|
12043
12127
|
pp_center_forward_misses: 'ppCenterForwardMisses',
|
|
12128
|
+
pp_center_forward_shots_blocked: 'ppCenterForwardShotsBlocked',
|
|
12044
12129
|
ev_center_forward_goals: 'evCenterForwardGoals',
|
|
12045
12130
|
ev_center_forward_on_goals: 'evCenterForwardOnGoals',
|
|
12046
12131
|
ev_center_forward_misses: 'evCenterForwardMisses',
|
|
12132
|
+
ev_center_forward_shots_blocked: 'evCenterForwardShotsBlocked',
|
|
12047
12133
|
sh_center_forward_goals: 'shCenterForwardGoals',
|
|
12048
12134
|
sh_center_forward_on_goals: 'shCenterForwardOnGoals',
|
|
12049
12135
|
sh_center_forward_misses: 'shCenterForwardMisses',
|
|
12136
|
+
sh_center_forward_shots_blocked: 'shCenterForwardShotsBlocked',
|
|
12050
12137
|
pp_assists: 'ppAssists',
|
|
12051
12138
|
ev_assists: 'evAssists',
|
|
12052
12139
|
sh_assists: 'shAssists',
|
|
@@ -12127,23 +12214,29 @@
|
|
|
12127
12214
|
pp_free_kick_goals: 'ppFreeKickGoals',
|
|
12128
12215
|
pp_free_kick_on_goals: 'ppFreeKickOnGoals',
|
|
12129
12216
|
pp_free_kick_misses: 'ppFreeKickMisses',
|
|
12217
|
+
pp_free_kick_shots_blocked: 'ppFreeKickShotsBlocked',
|
|
12130
12218
|
sh_free_kick_goals: 'shFreeKickGoals',
|
|
12131
12219
|
sh_free_kick_on_goals: 'shFreeKickOnGoals',
|
|
12132
12220
|
sh_free_kick_misses: 'shFreeKickMisses',
|
|
12221
|
+
sh_free_kick_shots_blocked: 'shFreeKickShotsBlocked',
|
|
12133
12222
|
ev_free_kick_goals: 'evFreeKickGoals',
|
|
12134
12223
|
ev_free_kick_on_goals: 'evFreeKickOnGoals',
|
|
12135
12224
|
ev_free_kick_misses: 'evFreeKickMisses',
|
|
12225
|
+
ev_free_kick_shots_blocked: 'evFreeKickShotsBlocked',
|
|
12136
12226
|
free_kick_passes: 'freeKickPasses',
|
|
12137
12227
|
free_kick_selfs: 'freeKickSelfs',
|
|
12138
12228
|
pp_corner_goals: 'ppCornerGoals',
|
|
12139
12229
|
pp_corner_on_goals: 'ppCornerOnGoals',
|
|
12140
12230
|
pp_corner_misses: 'ppCornerMisses',
|
|
12231
|
+
pp_corner_shots_blocked: 'ppCornerShotsBlocked',
|
|
12141
12232
|
sh_corner_goals: 'shCornerGoals',
|
|
12142
12233
|
sh_corner_on_goals: 'shCornerOnGoals',
|
|
12143
12234
|
sh_corner_misses: 'shCornerMisses',
|
|
12235
|
+
sh_corner_shots_blocked: 'shCornerShotsBlocked',
|
|
12144
12236
|
ev_corner_goals: 'evCornerGoals',
|
|
12145
12237
|
ev_corner_on_goals: 'evCornerOnGoals',
|
|
12146
12238
|
ev_corner_misses: 'evCornerMisses',
|
|
12239
|
+
ev_corner_shots_blocked: 'evCornerShotsBlocked',
|
|
12147
12240
|
corner_passes: 'cornerPasses',
|
|
12148
12241
|
corner_selfs: 'cornerSelfs',
|
|
12149
12242
|
tackles: 'tackles',
|
|
@@ -12454,15 +12547,18 @@
|
|
|
12454
12547
|
_a$a[exports.WaterpoloGameLogTypes.exit_game] = 'Ушел с площадки',
|
|
12455
12548
|
_a$a[exports.WaterpoloGameLogTypes.shot_miss] = 'Бросок мимо',
|
|
12456
12549
|
_a$a[exports.WaterpoloGameLogTypes.counterattack_miss] = 'Бросок мимо в контратаке',
|
|
12457
|
-
_a$a[exports.WaterpoloGameLogTypes.maneuver_miss] = 'Бросок мимо
|
|
12550
|
+
_a$a[exports.WaterpoloGameLogTypes.maneuver_miss] = 'Бросок мимо с маневра',
|
|
12458
12551
|
_a$a[exports.WaterpoloGameLogTypes.center_forward_miss] = 'Бросок мимо со столба',
|
|
12459
12552
|
_a$a[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Бросок по воротам',
|
|
12460
12553
|
_a$a[exports.WaterpoloGameLogTypes.counterattack_on_goal] = 'Бросок по воротам в контратаке',
|
|
12461
|
-
_a$a[exports.WaterpoloGameLogTypes.maneuver_on_goal] = 'Бросок по воротам
|
|
12554
|
+
_a$a[exports.WaterpoloGameLogTypes.maneuver_on_goal] = 'Бросок по воротам с маневра',
|
|
12462
12555
|
_a$a[exports.WaterpoloGameLogTypes.center_forward_on_goal] = 'Бросок по воротам со столба',
|
|
12463
|
-
_a$a[exports.WaterpoloGameLogTypes.shot_blocked] = '
|
|
12556
|
+
_a$a[exports.WaterpoloGameLogTypes.shot_blocked] = 'Заблокирован бросок',
|
|
12557
|
+
_a$a[exports.WaterpoloGameLogTypes.counter_attack_shot_blocked] = 'Заблокирован бросок в контратаке',
|
|
12558
|
+
_a$a[exports.WaterpoloGameLogTypes.maneuver_shot_blocked] = 'Заблокирован бросок с маневра',
|
|
12559
|
+
_a$a[exports.WaterpoloGameLogTypes.center_forward_shot_blocked] = 'Заблокирован бросок со столба',
|
|
12464
12560
|
_a$a[exports.WaterpoloGameLogTypes.goal] = 'Гол',
|
|
12465
|
-
_a$a[exports.WaterpoloGameLogTypes.maneuver_goal] = 'Гол
|
|
12561
|
+
_a$a[exports.WaterpoloGameLogTypes.maneuver_goal] = 'Гол с маневра',
|
|
12466
12562
|
_a$a[exports.WaterpoloGameLogTypes.counterattack_goal] = 'Гол в контратаке',
|
|
12467
12563
|
_a$a[exports.WaterpoloGameLogTypes.center_forward_goal] = 'Гол со столба',
|
|
12468
12564
|
_a$a[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Пенальти промах',
|
|
@@ -12487,8 +12583,8 @@
|
|
|
12487
12583
|
_a$a[exports.WaterpoloGameLogTypes.center_forward_save] = 'Отражен бросок со столба',
|
|
12488
12584
|
_a$a[exports.WaterpoloGameLogTypes.free_kick_save] = 'Отражен бросок со свободного',
|
|
12489
12585
|
_a$a[exports.WaterpoloGameLogTypes.corner_save] = 'Отражен бросок с углового',
|
|
12490
|
-
_a$a[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок',
|
|
12491
|
-
_a$a[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
|
|
12586
|
+
_a$a[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок с пенальти',
|
|
12587
|
+
_a$a[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок с пенальти',
|
|
12492
12588
|
_a$a[exports.WaterpoloGameLogTypes.timeout] = 'Таймаут',
|
|
12493
12589
|
_a$a[exports.WaterpoloGameLogTypes.penalty_start] = 'Начало штрафного времени',
|
|
12494
12590
|
_a$a[exports.WaterpoloGameLogTypes.penalty_end] = 'Конец штрафного времени',
|
|
@@ -12498,16 +12594,19 @@
|
|
|
12498
12594
|
_a$a[exports.WaterpoloGameLogTypes.loss] = 'Потеря',
|
|
12499
12595
|
_a$a[exports.WaterpoloGameLogTypes.steal] = 'Перехват',
|
|
12500
12596
|
_a$a[exports.WaterpoloGameLogTypes.tackle] = 'Отбор',
|
|
12501
|
-
_a$a[exports.WaterpoloGameLogTypes.free_kick_goal] = '
|
|
12502
|
-
_a$a[exports.WaterpoloGameLogTypes.free_kick_on_goal] = '
|
|
12503
|
-
_a$a[exports.WaterpoloGameLogTypes.free_kick_miss] = '
|
|
12504
|
-
_a$a[exports.WaterpoloGameLogTypes.
|
|
12505
|
-
_a$a[exports.WaterpoloGameLogTypes.
|
|
12506
|
-
_a$a[exports.WaterpoloGameLogTypes.
|
|
12507
|
-
_a$a[exports.WaterpoloGameLogTypes.
|
|
12508
|
-
_a$a[exports.WaterpoloGameLogTypes.
|
|
12509
|
-
_a$a[exports.WaterpoloGameLogTypes.
|
|
12510
|
-
_a$a[exports.WaterpoloGameLogTypes.
|
|
12597
|
+
_a$a[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Гол со свободного удара',
|
|
12598
|
+
_a$a[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Бросок со свободного удара в створ',
|
|
12599
|
+
_a$a[exports.WaterpoloGameLogTypes.free_kick_miss] = 'Бросок мимо со свободного удара',
|
|
12600
|
+
_a$a[exports.WaterpoloGameLogTypes.free_kick_shot_blocked] = 'Заблокирован бросок со свободного удара',
|
|
12601
|
+
_a$a[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Пас со свободного удара',
|
|
12602
|
+
_a$a[exports.WaterpoloGameLogTypes.free_kick_self] = 'Розыгрыш свободного удара',
|
|
12603
|
+
_a$a[exports.WaterpoloGameLogTypes.corner_goal] = 'Гол с углового',
|
|
12604
|
+
_a$a[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Бросок с углового в створ',
|
|
12605
|
+
_a$a[exports.WaterpoloGameLogTypes.corner_miss] = 'Бросок мимо с углового',
|
|
12606
|
+
_a$a[exports.WaterpoloGameLogTypes.corner_shot_blocked] = 'Заблокирован бросок с углового',
|
|
12607
|
+
_a$a[exports.WaterpoloGameLogTypes.corner_pass] = 'Пас с углового',
|
|
12608
|
+
_a$a[exports.WaterpoloGameLogTypes.corner_self] = 'Розыгрыш углового',
|
|
12609
|
+
_a$a[exports.WaterpoloGameLogTypes.complete_penalty_time] = 'Досрочное завершение штрафа',
|
|
12511
12610
|
_a$a);
|
|
12512
12611
|
|
|
12513
12612
|
var _a$9;
|