@mtgame/core 1.0.52 → 1.0.53

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.
@@ -13466,6 +13466,15 @@
13466
13466
  enumerable: false,
13467
13467
  configurable: true
13468
13468
  });
13469
+ Object.defineProperty(WaterpoloGameStatistic.prototype, "totalEvShotsOnGoal", {
13470
+ get: function () {
13471
+ return (this.evShotsOnGoal || 0) + (this.evFreeKickOnGoals || 0) + (this.evCornerOnGoals || 0) +
13472
+ (this.evCounterAttackOnGoals || 0) + (this.evManeuverOnGoals || 0) + (this.evCenterForwardOnGoals || 0) +
13473
+ (this.evPerimetrShotOnGoals || 0) + (this.evPostShotOnGoals || 0) + (this.evFastShotOnGoals || 0);
13474
+ },
13475
+ enumerable: false,
13476
+ configurable: true
13477
+ });
13469
13478
  Object.defineProperty(WaterpoloGameStatistic.prototype, "inGameShotsOnGoals", {
13470
13479
  get: function () {
13471
13480
  return (this.ppShotsOnGoal || 0) + (this.evShotsOnGoal || 0) + (this.shShotsOnGoal || 0) +