@mtgame/core 1.0.32 → 1.0.33
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 +507 -23
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/waterpolo-game-log-types.js +35 -1
- package/esm2015/models/waterpolo-game-log.js +23 -3
- package/esm2015/models/waterpolo-game-statistic.js +225 -22
- package/esm2015/models/waterpolo-statistic.js +84 -1
- package/fesm2015/mtgame-core.js +363 -23
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/waterpolo-game-log-types.d.ts +34 -0
- package/models/waterpolo-game-log.d.ts +18 -1
- package/models/waterpolo-game-statistic.d.ts +95 -0
- package/models/waterpolo-statistic.d.ts +83 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -64,6 +64,23 @@ export declare const WaterpoloGameLogTypeLocalization: {
|
|
|
64
64
|
38: string;
|
|
65
65
|
39: string;
|
|
66
66
|
64: string;
|
|
67
|
+
65: string;
|
|
68
|
+
66: string;
|
|
69
|
+
67: string;
|
|
70
|
+
68: string;
|
|
71
|
+
69: string;
|
|
72
|
+
70: string;
|
|
73
|
+
71: string;
|
|
74
|
+
72: string;
|
|
75
|
+
73: string;
|
|
76
|
+
74: string;
|
|
77
|
+
75: string;
|
|
78
|
+
76: string;
|
|
79
|
+
77: string;
|
|
80
|
+
78: string;
|
|
81
|
+
79: string;
|
|
82
|
+
80: string;
|
|
83
|
+
81: string;
|
|
67
84
|
};
|
|
68
85
|
"en-US": {
|
|
69
86
|
1: string;
|
|
@@ -130,5 +147,22 @@ export declare const WaterpoloGameLogTypeLocalization: {
|
|
|
130
147
|
38: string;
|
|
131
148
|
39: string;
|
|
132
149
|
64: string;
|
|
150
|
+
65: string;
|
|
151
|
+
66: string;
|
|
152
|
+
67: string;
|
|
153
|
+
68: string;
|
|
154
|
+
69: string;
|
|
155
|
+
70: string;
|
|
156
|
+
71: string;
|
|
157
|
+
72: string;
|
|
158
|
+
73: string;
|
|
159
|
+
74: string;
|
|
160
|
+
75: string;
|
|
161
|
+
76: string;
|
|
162
|
+
77: string;
|
|
163
|
+
78: string;
|
|
164
|
+
79: string;
|
|
165
|
+
80: string;
|
|
166
|
+
81: string;
|
|
133
167
|
};
|
|
134
168
|
};
|
|
@@ -65,7 +65,24 @@ export declare enum WaterpoloGameLogTypes {
|
|
|
65
65
|
center_forward_shot_blocked = 61,
|
|
66
66
|
free_kick_shot_blocked = 62,
|
|
67
67
|
corner_shot_blocked = 63,
|
|
68
|
-
complete_penalty_time = 64
|
|
68
|
+
complete_penalty_time = 64,
|
|
69
|
+
defense_select_position = 65,
|
|
70
|
+
save_possession = 66,
|
|
71
|
+
perimetr_shot_goal = 67,
|
|
72
|
+
perimetr_shot_on_goal = 68,
|
|
73
|
+
perimetr_shot_miss = 69,
|
|
74
|
+
perimetr_shot_blocked = 70,
|
|
75
|
+
perimetr_shot_save = 71,
|
|
76
|
+
post_shot_goal = 72,
|
|
77
|
+
post_shot_on_goal = 73,
|
|
78
|
+
post_shot_miss = 74,
|
|
79
|
+
post_shot_blocked = 75,
|
|
80
|
+
post_shot_save = 76,
|
|
81
|
+
fast_shot_goal = 77,
|
|
82
|
+
fast_shot_on_goal = 78,
|
|
83
|
+
fast_shot_miss = 79,
|
|
84
|
+
fast_shot_blocked = 80,
|
|
85
|
+
fast_shot_save = 81
|
|
69
86
|
}
|
|
70
87
|
export declare enum WaterpoloAdvantageTypes {
|
|
71
88
|
power_play = 1,
|
|
@@ -161,6 +161,65 @@ export declare class WaterpoloGameStatistic extends BaseModel implements GameSta
|
|
|
161
161
|
cornerSelfs: number;
|
|
162
162
|
tackles: number;
|
|
163
163
|
playerEfficiency: number;
|
|
164
|
+
defenseSelectPositions: number;
|
|
165
|
+
savePossessions: number;
|
|
166
|
+
ppPerimetrShotGoals: number;
|
|
167
|
+
ppPerimetrShotOnGoals: number;
|
|
168
|
+
ppPerimetrShotMisses: number;
|
|
169
|
+
ppPerimetrShotsBlocked: number;
|
|
170
|
+
evPerimetrShotGoals: number;
|
|
171
|
+
evPerimetrShotOnGoals: number;
|
|
172
|
+
evPerimetrShotMisses: number;
|
|
173
|
+
evPerimetrShotsBlocked: number;
|
|
174
|
+
shPerimetrShotGoals: number;
|
|
175
|
+
shPerimetrShotOnGoals: number;
|
|
176
|
+
shPerimetrShotMisses: number;
|
|
177
|
+
shPerimetrShotsBlocked: number;
|
|
178
|
+
ppPerimetrShotSaves: number;
|
|
179
|
+
shPerimetrShotSaves: number;
|
|
180
|
+
evPerimetrShotSaves: number;
|
|
181
|
+
ppPerimetrShotGoalsAgainst: number;
|
|
182
|
+
shPerimetrShotGoalsAgainst: number;
|
|
183
|
+
evPerimetrShotGoalsAgainst: number;
|
|
184
|
+
perimetrShotGoalsAgainst: number;
|
|
185
|
+
ppPostShotGoals: number;
|
|
186
|
+
ppPostShotOnGoals: number;
|
|
187
|
+
ppPostShotMisses: number;
|
|
188
|
+
ppPostShotsBlocked: number;
|
|
189
|
+
evPostShotGoals: number;
|
|
190
|
+
evPostShotOnGoals: number;
|
|
191
|
+
evPostShotMisses: number;
|
|
192
|
+
evPostShotsBlocked: number;
|
|
193
|
+
shPostShotGoals: number;
|
|
194
|
+
shPostShotOnGoals: number;
|
|
195
|
+
shPostShotMisses: number;
|
|
196
|
+
shPostShotsBlocked: number;
|
|
197
|
+
ppPostShotSaves: number;
|
|
198
|
+
shPostShotSaves: number;
|
|
199
|
+
evPostShotSaves: number;
|
|
200
|
+
ppPostShotGoalsAgainst: number;
|
|
201
|
+
shPostShotGoalsAgainst: number;
|
|
202
|
+
evPostShotGoalsAgainst: number;
|
|
203
|
+
postShotGoalsAgainst: number;
|
|
204
|
+
ppFastShotGoals: number;
|
|
205
|
+
ppFastShotOnGoals: number;
|
|
206
|
+
ppFastShotMisses: number;
|
|
207
|
+
ppFastShotsBlocked: number;
|
|
208
|
+
evFastShotGoals: number;
|
|
209
|
+
evFastShotOnGoals: number;
|
|
210
|
+
evFastShotMisses: number;
|
|
211
|
+
evFastShotsBlocked: number;
|
|
212
|
+
shFastShotGoals: number;
|
|
213
|
+
shFastShotOnGoals: number;
|
|
214
|
+
shFastShotMisses: number;
|
|
215
|
+
shFastShotsBlocked: number;
|
|
216
|
+
ppFastShotSaves: number;
|
|
217
|
+
shFastShotSaves: number;
|
|
218
|
+
evFastShotSaves: number;
|
|
219
|
+
ppFastShotGoalsAgainst: number;
|
|
220
|
+
shFastShotGoalsAgainst: number;
|
|
221
|
+
evFastShotGoalsAgainst: number;
|
|
222
|
+
fastShotGoalsAgainst: number;
|
|
164
223
|
updatedAt: Date;
|
|
165
224
|
get id(): number;
|
|
166
225
|
get gameMinutes(): number;
|
|
@@ -193,6 +252,33 @@ export declare class WaterpoloGameStatistic extends BaseModel implements GameSta
|
|
|
193
252
|
get centerForwardShotsBlocked(): number;
|
|
194
253
|
get centerForwardShots(): number;
|
|
195
254
|
get centerForwardGoalsPercent(): number;
|
|
255
|
+
get totalPerimetrShotGoals(): number;
|
|
256
|
+
get ppPerimetrShots(): number;
|
|
257
|
+
get shPerimetrShots(): number;
|
|
258
|
+
get evPerimetrShots(): number;
|
|
259
|
+
get perimetrShotMisses(): number;
|
|
260
|
+
get perimetrShotOnGoals(): number;
|
|
261
|
+
get perimetrShotsBlocked(): number;
|
|
262
|
+
get perimetrShots(): number;
|
|
263
|
+
get perimetrShotGoalsPercent(): number;
|
|
264
|
+
get totalPostShotGoals(): number;
|
|
265
|
+
get ppPostShots(): number;
|
|
266
|
+
get shPostShots(): number;
|
|
267
|
+
get evPostShots(): number;
|
|
268
|
+
get postShotMisses(): number;
|
|
269
|
+
get postShotOnGoals(): number;
|
|
270
|
+
get postShotsBlocked(): number;
|
|
271
|
+
get postShots(): number;
|
|
272
|
+
get postShotGoalsPercent(): number;
|
|
273
|
+
get totalFastShotGoals(): number;
|
|
274
|
+
get ppFastShots(): number;
|
|
275
|
+
get shFastShots(): number;
|
|
276
|
+
get evFastShots(): number;
|
|
277
|
+
get fastShotMisses(): number;
|
|
278
|
+
get fastShotOnGoals(): number;
|
|
279
|
+
get fastShotsBlocked(): number;
|
|
280
|
+
get fastShots(): number;
|
|
281
|
+
get fastShotGoalsPercent(): number;
|
|
196
282
|
get ppShots(): number;
|
|
197
283
|
get evShots(): number;
|
|
198
284
|
get shShots(): number;
|
|
@@ -258,6 +344,15 @@ export declare class WaterpoloGameStatistic extends BaseModel implements GameSta
|
|
|
258
344
|
get cornerSaves(): number;
|
|
259
345
|
get cornerShotsAgainst(): number;
|
|
260
346
|
get cornerSavesPercent(): number;
|
|
347
|
+
get perimetrShotSaves(): number;
|
|
348
|
+
get perimetrShotsAgainst(): number;
|
|
349
|
+
get perimetrShotSavesPercent(): number;
|
|
350
|
+
get postShotSaves(): number;
|
|
351
|
+
get postShotsAgainst(): number;
|
|
352
|
+
get postShotSavesPercent(): number;
|
|
353
|
+
get fastShotSaves(): number;
|
|
354
|
+
get fastShotsAgainst(): number;
|
|
355
|
+
get fastShotSavesPercent(): number;
|
|
261
356
|
get inGameSaves(): number;
|
|
262
357
|
get saves(): number;
|
|
263
358
|
get totalSaves(): number;
|
|
@@ -180,6 +180,8 @@ export declare class WaterpoloStatistic extends BaseModel implements BaseStatist
|
|
|
180
180
|
cornerSelfs: number;
|
|
181
181
|
tackles: number;
|
|
182
182
|
playerEfficiency: number;
|
|
183
|
+
defenseSelectPositions: number;
|
|
184
|
+
savePossessions: number;
|
|
183
185
|
ppShots: number;
|
|
184
186
|
shShots: number;
|
|
185
187
|
evShots: number;
|
|
@@ -237,6 +239,78 @@ export declare class WaterpoloStatistic extends BaseModel implements BaseStatist
|
|
|
237
239
|
totalPenalties: number;
|
|
238
240
|
shootoutShots: number;
|
|
239
241
|
shootoutGoalsPercent: number;
|
|
242
|
+
ppPerimetrShotGoals: number;
|
|
243
|
+
ppPerimetrShotOnGoals: number;
|
|
244
|
+
ppPerimetrShotMisses: number;
|
|
245
|
+
ppPerimetrShotsBlocked: number;
|
|
246
|
+
evPerimetrShotGoals: number;
|
|
247
|
+
evPerimetrShotOnGoals: number;
|
|
248
|
+
evPerimetrShotMisses: number;
|
|
249
|
+
evPerimetrShotsBlocked: number;
|
|
250
|
+
shPerimetrShotGoals: number;
|
|
251
|
+
shPerimetrShotOnGoals: number;
|
|
252
|
+
shPerimetrShotMisses: number;
|
|
253
|
+
shPerimetrShotsBlocked: number;
|
|
254
|
+
ppPerimetrShotSaves: number;
|
|
255
|
+
shPerimetrShotSaves: number;
|
|
256
|
+
evPerimetrShotSaves: number;
|
|
257
|
+
ppPerimetrShotGoalsAgainst: number;
|
|
258
|
+
shPerimetrShotGoalsAgainst: number;
|
|
259
|
+
evPerimetrShotGoalsAgainst: number;
|
|
260
|
+
perimetrShotGoalsAgainst: number;
|
|
261
|
+
totalPerimetrShotGoals: number;
|
|
262
|
+
perimetrShotsOnGoals: number;
|
|
263
|
+
perimetrShotsMisses: number;
|
|
264
|
+
perimetrShots: number;
|
|
265
|
+
perimetrShotGoalsPercent: number;
|
|
266
|
+
ppPostShotGoals: number;
|
|
267
|
+
ppPostShotOnGoals: number;
|
|
268
|
+
ppPostShotMisses: number;
|
|
269
|
+
ppPostShotsBlocked: number;
|
|
270
|
+
evPostShotGoals: number;
|
|
271
|
+
evPostShotOnGoals: number;
|
|
272
|
+
evPostShotMisses: number;
|
|
273
|
+
evPostShotsBlocked: number;
|
|
274
|
+
shPostShotGoals: number;
|
|
275
|
+
shPostShotOnGoals: number;
|
|
276
|
+
shPostShotMisses: number;
|
|
277
|
+
shPostShotsBlocked: number;
|
|
278
|
+
ppPostShotSaves: number;
|
|
279
|
+
shPostShotSaves: number;
|
|
280
|
+
evPostShotSaves: number;
|
|
281
|
+
ppPostShotGoalsAgainst: number;
|
|
282
|
+
shPostShotGoalsAgainst: number;
|
|
283
|
+
evPostShotGoalsAgainst: number;
|
|
284
|
+
postShotGoalsAgainst: number;
|
|
285
|
+
totalPostShotGoals: number;
|
|
286
|
+
postShotsOnGoals: number;
|
|
287
|
+
postShotsMisses: number;
|
|
288
|
+
postShots: number;
|
|
289
|
+
postShotGoalsPercent: number;
|
|
290
|
+
ppFastShotGoals: number;
|
|
291
|
+
ppFastShotOnGoals: number;
|
|
292
|
+
ppFastShotMisses: number;
|
|
293
|
+
ppFastShotsBlocked: number;
|
|
294
|
+
evFastShotGoals: number;
|
|
295
|
+
evFastShotOnGoals: number;
|
|
296
|
+
evFastShotMisses: number;
|
|
297
|
+
evFastShotsBlocked: number;
|
|
298
|
+
shFastShotGoals: number;
|
|
299
|
+
shFastShotOnGoals: number;
|
|
300
|
+
shFastShotMisses: number;
|
|
301
|
+
shFastShotsBlocked: number;
|
|
302
|
+
ppFastShotSaves: number;
|
|
303
|
+
shFastShotSaves: number;
|
|
304
|
+
evFastShotSaves: number;
|
|
305
|
+
ppFastShotGoalsAgainst: number;
|
|
306
|
+
shFastShotGoalsAgainst: number;
|
|
307
|
+
evFastShotGoalsAgainst: number;
|
|
308
|
+
fastShotGoalsAgainst: number;
|
|
309
|
+
totalFastShotGoals: number;
|
|
310
|
+
fastShotsOnGoals: number;
|
|
311
|
+
fastShotsMisses: number;
|
|
312
|
+
fastShots: number;
|
|
313
|
+
fastShotGoalsPercent: number;
|
|
240
314
|
positionAttackSaves: number;
|
|
241
315
|
positionAttackShotsAgainst: number;
|
|
242
316
|
positionAttackSavesPercent: number;
|
|
@@ -274,6 +348,15 @@ export declare class WaterpoloStatistic extends BaseModel implements BaseStatist
|
|
|
274
348
|
totalEvGoalsAgainst: number;
|
|
275
349
|
totalEvShotsAgainst: number;
|
|
276
350
|
totalEvSavesPercent: number;
|
|
351
|
+
perimetrShotSaves: number;
|
|
352
|
+
perimetrShotsAgainst: number;
|
|
353
|
+
perimetrShotSavesPercent: number;
|
|
354
|
+
postShotSaves: number;
|
|
355
|
+
postShotsAgainst: number;
|
|
356
|
+
postShotSavesPercent: number;
|
|
357
|
+
fastShotSaves: number;
|
|
358
|
+
fastShotsAgainst: number;
|
|
359
|
+
fastShotSavesPercent: number;
|
|
277
360
|
newbie: boolean;
|
|
278
361
|
rank: number;
|
|
279
362
|
get assists(): number;
|