@mtgame/core 0.1.44 → 0.1.46
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 +92 -61
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/localization/football-game-log-types.js +5 -2
- package/esm2015/localization/rugby-game-log-types.js +10 -11
- package/esm2015/models/football-game-config.js +10 -1
- package/esm2015/models/football-game-log.js +4 -1
- package/esm2015/models/football-game-statistic.js +5 -2
- package/esm2015/models/football-statistic.js +4 -1
- package/esm2015/models/rugby-game-log.js +34 -34
- package/esm2015/models/rugby-game-statistic.js +4 -6
- package/esm2015/models/rugby-statistic.js +22 -13
- package/esm5/localization/football-game-log-types.js +4 -1
- package/esm5/localization/rugby-game-log-types.js +10 -11
- package/esm5/models/football-game-config.js +14 -1
- package/esm5/models/football-game-log.js +4 -1
- package/esm5/models/football-game-statistic.js +5 -2
- package/esm5/models/football-statistic.js +4 -1
- package/esm5/models/rugby-game-log.js +34 -34
- package/esm5/models/rugby-game-statistic.js +4 -6
- package/esm5/models/rugby-statistic.js +22 -13
- package/fesm2015/mtgame-core.js +89 -62
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +92 -61
- package/fesm5/mtgame-core.js.map +1 -1
- package/localization/football-game-log-types.d.ts +3 -0
- package/localization/rugby-game-log-types.d.ts +2 -3
- package/models/football-game-config.d.ts +4 -0
- package/models/football-game-log.d.ts +4 -1
- package/models/football-game-statistic.d.ts +3 -0
- package/models/football-statistic.d.ts +3 -0
- package/models/rugby-game-log.d.ts +30 -31
- package/models/rugby-game-statistic.d.ts +4 -6
- package/models/rugby-statistic.d.ts +20 -11
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -1578,6 +1578,16 @@ var FootballGameConfig = /** @class */ (function (_super) {
|
|
|
1578
1578
|
function FootballGameConfig() {
|
|
1579
1579
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
1580
1580
|
}
|
|
1581
|
+
Object.defineProperty(FootballGameConfig.prototype, "penaltyPeriod", {
|
|
1582
|
+
get: function () {
|
|
1583
|
+
if (this.overtimeType !== OvertimeTypes.time_and_penalties) {
|
|
1584
|
+
return +this.periodsCount + 1;
|
|
1585
|
+
}
|
|
1586
|
+
return +this.periodsCount + this.overtimePeriods + 1;
|
|
1587
|
+
},
|
|
1588
|
+
enumerable: true,
|
|
1589
|
+
configurable: true
|
|
1590
|
+
});
|
|
1581
1591
|
FootballGameConfig.toFront = function (data) { };
|
|
1582
1592
|
FootballGameConfig.toBack = function (data) { };
|
|
1583
1593
|
__decorate([
|
|
@@ -1593,11 +1603,14 @@ var FootballGameConfig = /** @class */ (function (_super) {
|
|
|
1593
1603
|
period_time: 'periodTime',
|
|
1594
1604
|
overtime_type: 'overtimeType',
|
|
1595
1605
|
overtime_time: 'overtimeTime',
|
|
1606
|
+
overtime_periods: 'overtimePeriods',
|
|
1596
1607
|
max_game_players: 'maxGamePlayers',
|
|
1597
1608
|
timeout_count: 'timeoutCount',
|
|
1598
1609
|
overtime_timeout_count: 'overtimeTimeoutCount',
|
|
1599
1610
|
timeout_time: 'timeoutTime',
|
|
1600
1611
|
game_time_type: 'gameTimeType',
|
|
1612
|
+
substitute_count: 'substituteCount',
|
|
1613
|
+
free_substitute_enabled: 'freeSubstituteEnabled',
|
|
1601
1614
|
},
|
|
1602
1615
|
relation: {
|
|
1603
1616
|
overtimeType: enumField(OvertimeTypes),
|
|
@@ -3789,6 +3802,9 @@ var FootballGameLogTypes;
|
|
|
3789
3802
|
FootballGameLogTypes[FootballGameLogTypes["out"] = 24] = "out";
|
|
3790
3803
|
FootballGameLogTypes[FootballGameLogTypes["timeout"] = 25] = "timeout";
|
|
3791
3804
|
FootballGameLogTypes[FootballGameLogTypes["auto_goal"] = 26] = "auto_goal";
|
|
3805
|
+
FootballGameLogTypes[FootballGameLogTypes["end_game_penalty_miss"] = 27] = "end_game_penalty_miss";
|
|
3806
|
+
FootballGameLogTypes[FootballGameLogTypes["end_game_penalty_goal"] = 28] = "end_game_penalty_goal";
|
|
3807
|
+
FootballGameLogTypes[FootballGameLogTypes["end_game_penalty_save"] = 29] = "end_game_penalty_save";
|
|
3792
3808
|
})(FootballGameLogTypes || (FootballGameLogTypes = {}));
|
|
3793
3809
|
var FootballGameLog = /** @class */ (function (_super) {
|
|
3794
3810
|
__extends(FootballGameLog, _super);
|
|
@@ -4062,7 +4078,10 @@ var FootballGameStatistic = /** @class */ (function (_super) {
|
|
|
4062
4078
|
outs: 'outs',
|
|
4063
4079
|
block_shots: 'blockShots',
|
|
4064
4080
|
auto_goals: 'autoGoals',
|
|
4065
|
-
auto_goals_against: 'autoGoalsAgainst'
|
|
4081
|
+
auto_goals_against: 'autoGoalsAgainst',
|
|
4082
|
+
end_game_penalty_goals: 'endGamePenaltyGoals',
|
|
4083
|
+
end_game_penalty_misses: 'endGamePenaltyMisses',
|
|
4084
|
+
end_game_penalty_saves: 'endGamePenaltySaves'
|
|
4066
4085
|
},
|
|
4067
4086
|
relation: {
|
|
4068
4087
|
updatedAt: DateTimeField,
|
|
@@ -4219,6 +4238,9 @@ var FootballStatistic = /** @class */ (function (_super) {
|
|
|
4219
4238
|
rank: 'rank',
|
|
4220
4239
|
auto_goals: 'autoGoals',
|
|
4221
4240
|
auto_goals_against: 'autoGoalsAgainst',
|
|
4241
|
+
end_game_penalty_goals: 'endGamePenaltyGoals',
|
|
4242
|
+
end_game_penalty_misses: 'endGamePenaltyMisses',
|
|
4243
|
+
end_game_penalty_saves: 'endGamePenaltySaves'
|
|
4222
4244
|
},
|
|
4223
4245
|
relation: {
|
|
4224
4246
|
leaguePlayer: LeaguePlayer,
|
|
@@ -5221,16 +5243,18 @@ var RugbyStatistic = /** @class */ (function (_super) {
|
|
|
5221
5243
|
points: 'points',
|
|
5222
5244
|
tries: 'tries',
|
|
5223
5245
|
penalty_tries: 'penaltyTries',
|
|
5224
|
-
|
|
5246
|
+
conversion_kicks: 'conversionKicks',
|
|
5225
5247
|
conversion_goals: 'conversionGoals',
|
|
5226
5248
|
conversion_misses: 'conversionMisses',
|
|
5227
5249
|
conversion_goals_percent: 'conversionGoalsPercent',
|
|
5228
|
-
|
|
5229
|
-
|
|
5250
|
+
penalties: 'penalties',
|
|
5251
|
+
penalty_kicks_on_goal: 'penaltyKicksOnGoal',
|
|
5230
5252
|
penalty_misses: 'penaltyMisses',
|
|
5231
5253
|
penalty_goals: 'penaltyGoals',
|
|
5254
|
+
tap_penalties: 'tapPenalties',
|
|
5255
|
+
penalty_kicks_to_touch: 'penaltyKicksToTouch',
|
|
5232
5256
|
penalty_goals_percent: 'penaltyGoalsPercent',
|
|
5233
|
-
|
|
5257
|
+
drop_goal_kicks: 'dropGoalKicks',
|
|
5234
5258
|
drop_goals: 'dropGoals',
|
|
5235
5259
|
drop_goal_misses: 'dropGoalMisses',
|
|
5236
5260
|
drop_goal_percent: 'dropGoalPercent',
|
|
@@ -5239,31 +5263,38 @@ var RugbyStatistic = /** @class */ (function (_super) {
|
|
|
5239
5263
|
red_cards: 'redCards',
|
|
5240
5264
|
offloads: 'offloads',
|
|
5241
5265
|
tackles: 'tackles',
|
|
5242
|
-
outs: 'outs',
|
|
5243
5266
|
handling_errors: 'handlingErrors',
|
|
5244
|
-
|
|
5267
|
+
carries_over_gainline: 'carriesOverGainline',
|
|
5245
5268
|
plus_minus: 'plusMinus',
|
|
5246
5269
|
game_time: 'gameTime',
|
|
5247
5270
|
// Team statistic
|
|
5248
5271
|
scrums: 'scrums',
|
|
5249
5272
|
scrums_won: 'scrumsWon',
|
|
5250
|
-
|
|
5273
|
+
scrums_lost: 'scrumsLost',
|
|
5251
5274
|
scrums_won_percent: 'scrumsWonPercent',
|
|
5252
5275
|
scrums_won_free: 'scrumsWonFree',
|
|
5276
|
+
opponent_scrums_won: 'opponentScrumsWon',
|
|
5277
|
+
opponent_scrums_lost: 'opponentScrumsLost',
|
|
5253
5278
|
lineouts: 'lineouts',
|
|
5254
|
-
|
|
5255
|
-
|
|
5279
|
+
lineouts_won: 'lineoutsWon',
|
|
5280
|
+
lineouts_lost: 'lineoutsLost',
|
|
5256
5281
|
lineouts_steal: 'lineoutsSteal',
|
|
5282
|
+
opponent_lineouts_lost: 'opponentLineoutsLost',
|
|
5257
5283
|
quick_throws: 'quickThrows',
|
|
5258
5284
|
rucks: 'rucks',
|
|
5259
5285
|
rucks_won: 'rucksWon',
|
|
5260
|
-
|
|
5286
|
+
rucks_lost: 'rucksLost',
|
|
5261
5287
|
rucks_won_percent: 'rucksWonPercent',
|
|
5288
|
+
opponent_rucks_won: 'opponentRucksWon',
|
|
5289
|
+
opponent_rucks_lost: 'opponentRucksLost',
|
|
5262
5290
|
mauls: 'mauls',
|
|
5263
5291
|
mauls_won: 'maulsWon',
|
|
5264
|
-
|
|
5292
|
+
mauls_lost: 'maulsLost',
|
|
5265
5293
|
mauls_won_percent: 'maulWonPercent',
|
|
5266
|
-
|
|
5294
|
+
opponent_mauls_won: 'opponentMaulsWon',
|
|
5295
|
+
opponent_mauls_lost: 'opponentMaulsLost',
|
|
5296
|
+
fouls: 'fouls',
|
|
5297
|
+
team_fouls: 'teamFouls',
|
|
5267
5298
|
},
|
|
5268
5299
|
relation: {
|
|
5269
5300
|
tournamentTeamUser: TournamentTeamUser,
|
|
@@ -7053,12 +7084,11 @@ var RugbyGameStatistic = /** @class */ (function (_super) {
|
|
|
7053
7084
|
penalty_tries: 'penaltyTries',
|
|
7054
7085
|
conversion_goals: 'conversionGoals',
|
|
7055
7086
|
conversion_misses: 'conversionMisses',
|
|
7056
|
-
|
|
7087
|
+
conversion_kicks: 'conversionKicks',
|
|
7057
7088
|
conversion_goals_percent: 'conversionGoalsPercent',
|
|
7058
|
-
drawing_ball: 'drawingBall',
|
|
7059
7089
|
penalty_misses: 'penaltyMisses',
|
|
7060
7090
|
penalty_goals: 'penaltyGoals',
|
|
7061
|
-
|
|
7091
|
+
penalty_kicks_on_goal: 'penaltyKicksOnGoal',
|
|
7062
7092
|
penalty_goals_percent: 'penaltyGoalsPercent',
|
|
7063
7093
|
drop_goals: 'dropGoals',
|
|
7064
7094
|
drop_goal_misses: 'dropGoalMisses',
|
|
@@ -7069,9 +7099,8 @@ var RugbyGameStatistic = /** @class */ (function (_super) {
|
|
|
7069
7099
|
red_cards: 'redCards',
|
|
7070
7100
|
offloads: 'offloads',
|
|
7071
7101
|
tackles: 'tackles',
|
|
7072
|
-
outs: 'outs',
|
|
7073
7102
|
handling_errors: 'handlingErrors',
|
|
7074
|
-
|
|
7103
|
+
carries_over_gainline: 'carriesOverGainline',
|
|
7075
7104
|
game_time: 'gameTime',
|
|
7076
7105
|
plus_minus: 'plusMinus'
|
|
7077
7106
|
},
|
|
@@ -7129,38 +7158,37 @@ var RugbyGameLogTypes;
|
|
|
7129
7158
|
RugbyGameLogTypes[RugbyGameLogTypes["penalty_try"] = 4] = "penalty_try";
|
|
7130
7159
|
RugbyGameLogTypes[RugbyGameLogTypes["conversion_goal"] = 5] = "conversion_goal";
|
|
7131
7160
|
RugbyGameLogTypes[RugbyGameLogTypes["conversion_miss"] = 6] = "conversion_miss";
|
|
7132
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7133
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7134
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7135
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7136
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7137
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7138
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7139
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7140
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7141
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7142
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7143
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7144
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7145
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7146
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7147
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7148
|
-
RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_miss"] = 23] = "end_game_penalty_miss";
|
|
7149
|
-
RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_goal"] = 24] = "end_game_penalty_goal";
|
|
7161
|
+
RugbyGameLogTypes[RugbyGameLogTypes["penalty_miss"] = 7] = "penalty_miss";
|
|
7162
|
+
RugbyGameLogTypes[RugbyGameLogTypes["penalty_goal"] = 8] = "penalty_goal";
|
|
7163
|
+
RugbyGameLogTypes[RugbyGameLogTypes["drop_goal"] = 9] = "drop_goal";
|
|
7164
|
+
RugbyGameLogTypes[RugbyGameLogTypes["drop_goal_miss"] = 10] = "drop_goal_miss";
|
|
7165
|
+
RugbyGameLogTypes[RugbyGameLogTypes["free_kick"] = 11] = "free_kick";
|
|
7166
|
+
RugbyGameLogTypes[RugbyGameLogTypes["foul"] = 12] = "foul";
|
|
7167
|
+
RugbyGameLogTypes[RugbyGameLogTypes["yellow_card"] = 13] = "yellow_card";
|
|
7168
|
+
RugbyGameLogTypes[RugbyGameLogTypes["red_card"] = 14] = "red_card";
|
|
7169
|
+
RugbyGameLogTypes[RugbyGameLogTypes["offload"] = 15] = "offload";
|
|
7170
|
+
RugbyGameLogTypes[RugbyGameLogTypes["tackle"] = 16] = "tackle";
|
|
7171
|
+
RugbyGameLogTypes[RugbyGameLogTypes["handling_error"] = 17] = "handling_error";
|
|
7172
|
+
RugbyGameLogTypes[RugbyGameLogTypes["carries_over_gainline"] = 18] = "carries_over_gainline";
|
|
7173
|
+
RugbyGameLogTypes[RugbyGameLogTypes["bleeding_injury"] = 19] = "bleeding_injury";
|
|
7174
|
+
RugbyGameLogTypes[RugbyGameLogTypes["head_injury"] = 20] = "head_injury";
|
|
7175
|
+
RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_miss"] = 21] = "end_game_penalty_miss";
|
|
7176
|
+
RugbyGameLogTypes[RugbyGameLogTypes["end_game_penalty_goal"] = 22] = "end_game_penalty_goal";
|
|
7150
7177
|
// team actions
|
|
7151
|
-
RugbyGameLogTypes[RugbyGameLogTypes["timeout"] =
|
|
7178
|
+
RugbyGameLogTypes[RugbyGameLogTypes["timeout"] = 23] = "timeout";
|
|
7179
|
+
RugbyGameLogTypes[RugbyGameLogTypes["tap_penalty"] = 24] = "tap_penalty";
|
|
7180
|
+
RugbyGameLogTypes[RugbyGameLogTypes["penalty_kick_to_touch"] = 25] = "penalty_kick_to_touch";
|
|
7152
7181
|
RugbyGameLogTypes[RugbyGameLogTypes["scrum_won"] = 26] = "scrum_won";
|
|
7153
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7182
|
+
RugbyGameLogTypes[RugbyGameLogTypes["scrum_lost"] = 27] = "scrum_lost";
|
|
7154
7183
|
RugbyGameLogTypes[RugbyGameLogTypes["scrum_won_free"] = 28] = "scrum_won_free";
|
|
7155
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7156
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7157
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7158
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7159
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7160
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7161
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7162
|
-
RugbyGameLogTypes[RugbyGameLogTypes["
|
|
7163
|
-
RugbyGameLogTypes[RugbyGameLogTypes["team_foul"] = 37] = "team_foul";
|
|
7184
|
+
RugbyGameLogTypes[RugbyGameLogTypes["lineout_won"] = 29] = "lineout_won";
|
|
7185
|
+
RugbyGameLogTypes[RugbyGameLogTypes["lineout_lost"] = 30] = "lineout_lost";
|
|
7186
|
+
RugbyGameLogTypes[RugbyGameLogTypes["quick_throw"] = 31] = "quick_throw";
|
|
7187
|
+
RugbyGameLogTypes[RugbyGameLogTypes["ruck_won"] = 32] = "ruck_won";
|
|
7188
|
+
RugbyGameLogTypes[RugbyGameLogTypes["ruck_lost"] = 33] = "ruck_lost";
|
|
7189
|
+
RugbyGameLogTypes[RugbyGameLogTypes["maul_won"] = 34] = "maul_won";
|
|
7190
|
+
RugbyGameLogTypes[RugbyGameLogTypes["maul_lost"] = 35] = "maul_lost";
|
|
7191
|
+
RugbyGameLogTypes[RugbyGameLogTypes["team_foul"] = 36] = "team_foul";
|
|
7164
7192
|
})(RugbyGameLogTypes || (RugbyGameLogTypes = {}));
|
|
7165
7193
|
var RUGBY_GAME_LOG_TYPE_POINTS = (_a$1 = {},
|
|
7166
7194
|
_a$1[RugbyGameLogTypes.penalty_try] = 7,
|
|
@@ -7171,10 +7199,11 @@ var RUGBY_GAME_LOG_TYPE_POINTS = (_a$1 = {},
|
|
|
7171
7199
|
_a$1[RugbyGameLogTypes.end_game_penalty_goal] = 1,
|
|
7172
7200
|
_a$1);
|
|
7173
7201
|
var RUGBY_TEAM_LOG_TYPES = [
|
|
7174
|
-
RugbyGameLogTypes.timeout, RugbyGameLogTypes.scrum_won, RugbyGameLogTypes.
|
|
7175
|
-
RugbyGameLogTypes.
|
|
7176
|
-
RugbyGameLogTypes.
|
|
7177
|
-
RugbyGameLogTypes.team_foul,
|
|
7202
|
+
RugbyGameLogTypes.timeout, RugbyGameLogTypes.scrum_won, RugbyGameLogTypes.scrum_lost, RugbyGameLogTypes.scrum_won_free,
|
|
7203
|
+
RugbyGameLogTypes.lineout_won, RugbyGameLogTypes.lineout_lost,
|
|
7204
|
+
RugbyGameLogTypes.quick_throw, RugbyGameLogTypes.ruck_won, RugbyGameLogTypes.ruck_lost,
|
|
7205
|
+
RugbyGameLogTypes.maul_won, RugbyGameLogTypes.maul_lost, RugbyGameLogTypes.team_foul,
|
|
7206
|
+
RugbyGameLogTypes.penalty_kick_to_touch, RugbyGameLogTypes.tap_penalty,
|
|
7178
7207
|
];
|
|
7179
7208
|
var RugbyGameLog = /** @class */ (function (_super) {
|
|
7180
7209
|
__extends(RugbyGameLog, _super);
|
|
@@ -9103,6 +9132,9 @@ var FootballGameLogTypeLocalization = (_a$4 = {},
|
|
|
9103
9132
|
_a$4[FootballGameLogTypes.out] = 'Аут',
|
|
9104
9133
|
_a$4[FootballGameLogTypes.timeout] = 'Таймаут',
|
|
9105
9134
|
_a$4[FootballGameLogTypes.auto_goal] = 'Автогол',
|
|
9135
|
+
_a$4[FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
|
|
9136
|
+
_a$4[FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
|
|
9137
|
+
_a$4[FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
|
|
9106
9138
|
_a$4);
|
|
9107
9139
|
|
|
9108
9140
|
var _a$5;
|
|
@@ -9160,9 +9192,10 @@ var RugbyGameLogTypeLocalization = (_a$8 = {},
|
|
|
9160
9192
|
_a$8[RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
|
|
9161
9193
|
_a$8[RugbyGameLogTypes.conversion_goal] = 'Реализация',
|
|
9162
9194
|
_a$8[RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
|
|
9163
|
-
_a$8[RugbyGameLogTypes.drawing_ball] = 'Розыгрыш мяча',
|
|
9164
9195
|
_a$8[RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
|
|
9165
9196
|
_a$8[RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
|
|
9197
|
+
_a$8[RugbyGameLogTypes.penalty_kick_to_touch] = 'Штрафной в аут',
|
|
9198
|
+
_a$8[RugbyGameLogTypes.tap_penalty] = 'Штрафной розыгран',
|
|
9166
9199
|
_a$8[RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
|
|
9167
9200
|
_a$8[RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
|
|
9168
9201
|
_a$8[RugbyGameLogTypes.free_kick] = 'Свободный удар',
|
|
@@ -9171,25 +9204,23 @@ var RugbyGameLogTypeLocalization = (_a$8 = {},
|
|
|
9171
9204
|
_a$8[RugbyGameLogTypes.red_card] = 'Красная карточка',
|
|
9172
9205
|
_a$8[RugbyGameLogTypes.offload] = 'Скидка при завхвате',
|
|
9173
9206
|
_a$8[RugbyGameLogTypes.tackle] = 'Успешный захват',
|
|
9174
|
-
_a$8[RugbyGameLogTypes.out] = 'Аут',
|
|
9175
9207
|
_a$8[RugbyGameLogTypes.handling_error] = 'Ошибка приема',
|
|
9176
|
-
_a$8[RugbyGameLogTypes.
|
|
9208
|
+
_a$8[RugbyGameLogTypes.carries_over_gainline] = 'Прорыв линии',
|
|
9177
9209
|
_a$8[RugbyGameLogTypes.bleeding_injury] = 'Кровоточащая травма',
|
|
9178
9210
|
_a$8[RugbyGameLogTypes.head_injury] = 'Травма головы',
|
|
9179
9211
|
_a$8[RugbyGameLogTypes.end_game_penalty_miss] = 'Штрафной промах',
|
|
9180
9212
|
_a$8[RugbyGameLogTypes.end_game_penalty_goal] = 'Штрафной гол',
|
|
9181
9213
|
_a$8[RugbyGameLogTypes.timeout] = 'Таймаут',
|
|
9182
|
-
_a$8[RugbyGameLogTypes.scrum_won] = '
|
|
9183
|
-
_a$8[RugbyGameLogTypes.
|
|
9214
|
+
_a$8[RugbyGameLogTypes.scrum_won] = 'Схватка выиграна',
|
|
9215
|
+
_a$8[RugbyGameLogTypes.scrum_lost] = 'Схватка проиграна',
|
|
9184
9216
|
_a$8[RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
|
|
9185
|
-
_a$8[RugbyGameLogTypes.
|
|
9186
|
-
_a$8[RugbyGameLogTypes.
|
|
9187
|
-
_a$8[RugbyGameLogTypes.lineout_steal] = 'Корридор перехват',
|
|
9217
|
+
_a$8[RugbyGameLogTypes.lineout_won] = 'Корридор выиграно',
|
|
9218
|
+
_a$8[RugbyGameLogTypes.lineout_lost] = 'Корридор проиграно',
|
|
9188
9219
|
_a$8[RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
|
|
9189
9220
|
_a$8[RugbyGameLogTypes.ruck_won] = 'Рак выиграно',
|
|
9190
|
-
_a$8[RugbyGameLogTypes.
|
|
9221
|
+
_a$8[RugbyGameLogTypes.ruck_lost] = 'Рак проиграно',
|
|
9191
9222
|
_a$8[RugbyGameLogTypes.maul_won] = 'Мол выиграно',
|
|
9192
|
-
_a$8[RugbyGameLogTypes.
|
|
9223
|
+
_a$8[RugbyGameLogTypes.maul_lost] = 'Мол проиграно',
|
|
9193
9224
|
_a$8[RugbyGameLogTypes.team_foul] = 'Фол',
|
|
9194
9225
|
_a$8);
|
|
9195
9226
|
|