hlockey 5 → 7
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.
- checksums.yaml +4 -4
- data/data/election.json +23 -0
- data/data/infinileague.json +189 -0
- data/data/information.json +6 -0
- data/data/league.json +2042 -0
- data/data/links.json +5 -0
- data/data/messages.json +46 -0
- data/data/previous_election_results.json +91 -0
- data/lib/hlockey/actions.rb +22 -0
- data/lib/hlockey/data.rb +6 -5
- data/lib/hlockey/game/fight.rb +100 -40
- data/lib/hlockey/game/weather/audacity.rb +1 -1
- data/lib/hlockey/game/weather/chicken.rb +3 -2
- data/lib/hlockey/game/weather/incline.rb +2 -1
- data/lib/hlockey/game/weather/stars.rb +1 -1
- data/lib/hlockey/game/weather/sunset.rb +2 -4
- data/lib/hlockey/game/weather/waves.rb +9 -5
- data/lib/hlockey/game/weather/weatherable.rb +9 -9
- data/lib/hlockey/game.rb +182 -116
- data/lib/hlockey/league.rb +90 -73
- data/lib/hlockey/message.rb +23 -153
- data/lib/hlockey/mod/fencebuilder.rb +15 -0
- data/lib/hlockey/mod/fencedestroyer.rb +16 -0
- data/lib/hlockey/mod/handholding.rb +57 -0
- data/lib/hlockey/mod/immaterial.rb +28 -0
- data/lib/hlockey/mod/locked.rb +28 -0
- data/lib/hlockey/mod/moddable.rb +70 -0
- data/lib/hlockey/mod/nonconfrontational.rb +17 -0
- data/lib/hlockey/mod/powernapper.rb +50 -0
- data/lib/hlockey/mod/punchy.rb +21 -0
- data/lib/hlockey/mod.rb +25 -0
- data/lib/hlockey/selfdescribable.rb +7 -0
- data/lib/hlockey/team/player.rb +40 -58
- data/lib/hlockey/team/stadium.rb +10 -7
- data/lib/hlockey/team.rb +56 -41
- data/lib/hlockey/utils.rb +36 -4
- data/lib/hlockey/version.rb +1 -1
- data/lib/hlockey.rb +15 -0
- metadata +30 -18
- data/data/election.yaml +0 -21
- data/data/external/names.txt +0 -19948
- data/data/information.yaml +0 -24
- data/data/league.yaml +0 -1694
- data/data/links.yaml +0 -3
- data/data/previous_election_results.yaml +0 -65
- data/lib/hlockey/game/actions.rb +0 -24
data/data/league.json
ADDED
@@ -0,0 +1,2042 @@
|
|
1
|
+
{
|
2
|
+
"infinite": false,
|
3
|
+
"start_time": [
|
4
|
+
2024,
|
5
|
+
5,
|
6
|
+
27,
|
7
|
+
17,
|
8
|
+
0,
|
9
|
+
0
|
10
|
+
],
|
11
|
+
"divisions": {
|
12
|
+
"Wet Warm": [
|
13
|
+
{
|
14
|
+
"name": "Antalya Pirates",
|
15
|
+
"color": "#0e8df4",
|
16
|
+
"emoji": "🌊",
|
17
|
+
"motto": "Sink Or Skate",
|
18
|
+
"stadium": {
|
19
|
+
"nickname": "The Moonpool",
|
20
|
+
"full_name": "The TCG Denizaslan",
|
21
|
+
"hlockey_type": "Overwater"
|
22
|
+
},
|
23
|
+
"roster": {
|
24
|
+
"lwing": {
|
25
|
+
"name": "Dandola Ernetrista",
|
26
|
+
"stats": {
|
27
|
+
"offense": 4.853894119668529,
|
28
|
+
"defense": 4.449479735191486,
|
29
|
+
"agility": 2.1529641839834275
|
30
|
+
}
|
31
|
+
},
|
32
|
+
"center": {
|
33
|
+
"name": "Dannae Vine",
|
34
|
+
"stats": {
|
35
|
+
"offense": 2.634207780349893,
|
36
|
+
"defense": 2.4832577619085847,
|
37
|
+
"agility": 3.3599680789417916
|
38
|
+
}
|
39
|
+
},
|
40
|
+
"rwing": {
|
41
|
+
"name": "Ghabi Chadime",
|
42
|
+
"stats": {
|
43
|
+
"offense": 5.315829913210506,
|
44
|
+
"defense": 2.5011329224618417,
|
45
|
+
"agility": 2.971214160334206
|
46
|
+
}
|
47
|
+
},
|
48
|
+
"ldef": {
|
49
|
+
"name": "Elenbiresa Fae",
|
50
|
+
"stats": {
|
51
|
+
"offense": 1.243093612350243,
|
52
|
+
"defense": 2.5104625060121903,
|
53
|
+
"agility": 3.2955973701617594
|
54
|
+
}
|
55
|
+
},
|
56
|
+
"goalie": {
|
57
|
+
"name": "Isill Yada",
|
58
|
+
"stats": {
|
59
|
+
"offense": 1.4355575981002127,
|
60
|
+
"defense": 5.075,
|
61
|
+
"agility": 5.121281624819456
|
62
|
+
}
|
63
|
+
},
|
64
|
+
"rdef": {
|
65
|
+
"name": "Dhaim Aden",
|
66
|
+
"stats": {
|
67
|
+
"offense": 3.177560314027939,
|
68
|
+
"defense": 5.171052034583812,
|
69
|
+
"agility": 3.6947436063627426
|
70
|
+
}
|
71
|
+
}
|
72
|
+
},
|
73
|
+
"shadows": [
|
74
|
+
{
|
75
|
+
"name": "Zane Jus",
|
76
|
+
"stats": {
|
77
|
+
"offense": 1.6499235480000687,
|
78
|
+
"defense": 2.870694987829467,
|
79
|
+
"agility": 3.9969464945949182
|
80
|
+
}
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"name": "Bihemenaia Adalios",
|
84
|
+
"stats": {
|
85
|
+
"offense": 3.217530346234611,
|
86
|
+
"defense": 2.25565899622777,
|
87
|
+
"agility": 3.6276645585091423
|
88
|
+
}
|
89
|
+
},
|
90
|
+
{
|
91
|
+
"name": "Tia Brie",
|
92
|
+
"stats": {
|
93
|
+
"offense": 5.776899724293082,
|
94
|
+
"defense": 2.121580794127366,
|
95
|
+
"agility": 4.962309413687464
|
96
|
+
}
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"name": "Valorgerie Phy",
|
100
|
+
"stats": {
|
101
|
+
"offense": 3.7935523039960355,
|
102
|
+
"defense": 3.3254303398799205,
|
103
|
+
"agility": 3.351069510981418
|
104
|
+
},
|
105
|
+
"mods": [
|
106
|
+
"Powernapper"
|
107
|
+
]
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"name": "Andy Lavin",
|
111
|
+
"stats": {
|
112
|
+
"offense": 1.9793587953946443,
|
113
|
+
"defense": 2.5556909917978983,
|
114
|
+
"agility": 3.3705986382079693
|
115
|
+
}
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"name": "Del Iferen",
|
119
|
+
"stats": {
|
120
|
+
"offense": 0.5711268900154326,
|
121
|
+
"defense": 1.1699214570165846,
|
122
|
+
"agility": 4.16813056102322
|
123
|
+
}
|
124
|
+
}
|
125
|
+
]
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"name": "Baden Hallucinations",
|
129
|
+
"color": "#fc1cdc",
|
130
|
+
"emoji": "🍄",
|
131
|
+
"motto": "Now You See Us, Now You Don't",
|
132
|
+
"evolutions": 1,
|
133
|
+
"stadium": {
|
134
|
+
"nickname": "The Bathtub",
|
135
|
+
"full_name": "The 24 Baden + Bath, UK Arena and Hallucinatorium",
|
136
|
+
"description": "A large and confusing arena that, despite only having one entrance and exit, exists in all 24 cities named Baden (and Bath, UK, the honorary Baden). While the hallways within most resemble an M.C. Escher painting, you will always end up where you need to be eventually. (You will always be about half a second too late, though, this is being worked on by our resident giraffe.)",
|
137
|
+
"hlockey_type": "Whichever you don't want"
|
138
|
+
},
|
139
|
+
"roster": {
|
140
|
+
"lwing": {
|
141
|
+
"name": "Canebria Egillenne",
|
142
|
+
"stats": {
|
143
|
+
"offense": 4.314140486182898,
|
144
|
+
"defense": 4.645388061239937,
|
145
|
+
"agility": 0.3849365847472416
|
146
|
+
},
|
147
|
+
"mods": [
|
148
|
+
"Immaterial"
|
149
|
+
]
|
150
|
+
},
|
151
|
+
"center": {
|
152
|
+
"name": "Lildee Mel",
|
153
|
+
"stats": {
|
154
|
+
"offense": 5.409127633872454,
|
155
|
+
"defense": 3.2907636487635457,
|
156
|
+
"agility": 4.6919547863989
|
157
|
+
},
|
158
|
+
"mods": [
|
159
|
+
"Immaterial"
|
160
|
+
]
|
161
|
+
},
|
162
|
+
"rwing": {
|
163
|
+
"name": "Veristi Marrethunk",
|
164
|
+
"stats": {
|
165
|
+
"offense": 4.75972594502127,
|
166
|
+
"defense": 4.211238461971483,
|
167
|
+
"agility": 3.2231077061887143
|
168
|
+
},
|
169
|
+
"mods": [
|
170
|
+
"Immaterial"
|
171
|
+
]
|
172
|
+
},
|
173
|
+
"ldef": {
|
174
|
+
"name": "Junanie Mara",
|
175
|
+
"stats": {
|
176
|
+
"offense": 4.053934328388505,
|
177
|
+
"defense": 0.20546495909407383,
|
178
|
+
"agility": 2.0468264856316494
|
179
|
+
},
|
180
|
+
"mods": [
|
181
|
+
"Immaterial"
|
182
|
+
]
|
183
|
+
},
|
184
|
+
"goalie": {
|
185
|
+
"name": "Domienie Arma",
|
186
|
+
"stats": {
|
187
|
+
"offense": 1.3180132581242485,
|
188
|
+
"defense": 4.552083217603204,
|
189
|
+
"agility": 3.22030221696321
|
190
|
+
},
|
191
|
+
"mods": [
|
192
|
+
"Immaterial"
|
193
|
+
]
|
194
|
+
},
|
195
|
+
"rdef": {
|
196
|
+
"name": "Weslyn Yuk",
|
197
|
+
"stats": {
|
198
|
+
"offense": 1.2209807741900038,
|
199
|
+
"defense": 3.740650202356707,
|
200
|
+
"agility": 3.465896249760077
|
201
|
+
},
|
202
|
+
"mods": [
|
203
|
+
"Immaterial"
|
204
|
+
]
|
205
|
+
}
|
206
|
+
},
|
207
|
+
"shadows": [
|
208
|
+
{
|
209
|
+
"name": "Bhabielf Ace",
|
210
|
+
"stats": {
|
211
|
+
"offense": 1.956949752604186,
|
212
|
+
"defense": 2.1414007713640175,
|
213
|
+
"agility": 0.7347089004341223
|
214
|
+
},
|
215
|
+
"mods": [
|
216
|
+
"Immaterial"
|
217
|
+
]
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"name": "Dhamidane Cam",
|
221
|
+
"stats": {
|
222
|
+
"offense": 0.551736201177627,
|
223
|
+
"defense": 0.978480438265948,
|
224
|
+
"agility": 1.1045087041771295
|
225
|
+
},
|
226
|
+
"mods": [
|
227
|
+
"Immaterial"
|
228
|
+
]
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"name": "Afiela Ba",
|
232
|
+
"stats": {
|
233
|
+
"offense": 1.0647965018144545,
|
234
|
+
"defense": 0.15771792312025235,
|
235
|
+
"agility": 3.9622505477254926
|
236
|
+
},
|
237
|
+
"mods": [
|
238
|
+
"Immaterial"
|
239
|
+
]
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"name": "Samuele Todran",
|
243
|
+
"stats": {
|
244
|
+
"offense": 4.230134443291376,
|
245
|
+
"defense": 3.1454220412646245,
|
246
|
+
"agility": 1.5457787766329798
|
247
|
+
},
|
248
|
+
"mods": [
|
249
|
+
"Immaterial"
|
250
|
+
]
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"name": "Dhailleno Fachemerea",
|
254
|
+
"stats": {
|
255
|
+
"offense": 3.733055438132182,
|
256
|
+
"defense": 3.4444050208574666,
|
257
|
+
"agility": 3.644493674731482
|
258
|
+
}
|
259
|
+
}
|
260
|
+
]
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"name": "Kópavogur Seals",
|
264
|
+
"color": "#738fa5",
|
265
|
+
"emoji": "🦭",
|
266
|
+
"motto": "Your Fate Is Sealed",
|
267
|
+
"stadium": {
|
268
|
+
"nickname": "The Lagoon",
|
269
|
+
"full_name": "Kópavogur Coastal Hot Springs and Hlockey Stadium",
|
270
|
+
"hlockey_type": "Ice"
|
271
|
+
},
|
272
|
+
"roster": {
|
273
|
+
"lwing": {
|
274
|
+
"name": "Edgartie Shel",
|
275
|
+
"stats": {
|
276
|
+
"offense": 3.2211635797428047,
|
277
|
+
"defense": 5.324685194544625,
|
278
|
+
"agility": 0.7499977903064976
|
279
|
+
}
|
280
|
+
},
|
281
|
+
"center": {
|
282
|
+
"name": "Eddie Cle",
|
283
|
+
"stats": {
|
284
|
+
"offense": 7.166397763307629,
|
285
|
+
"defense": 4.9950640783190865,
|
286
|
+
"agility": 1.6157199825369486
|
287
|
+
},
|
288
|
+
"mods": [
|
289
|
+
"Fencebuilder"
|
290
|
+
]
|
291
|
+
},
|
292
|
+
"rwing": {
|
293
|
+
"name": "Baher Fabi",
|
294
|
+
"stats": {
|
295
|
+
"offense": 4.219858850394737,
|
296
|
+
"defense": 2.8897760738301947,
|
297
|
+
"agility": 5.112079036546893
|
298
|
+
}
|
299
|
+
},
|
300
|
+
"ldef": {
|
301
|
+
"name": "Edi Fod",
|
302
|
+
"stats": {
|
303
|
+
"offense": 3.056266017795206,
|
304
|
+
"defense": 3.3848599341401986,
|
305
|
+
"agility": 3.899533174879813
|
306
|
+
}
|
307
|
+
},
|
308
|
+
"goalie": {
|
309
|
+
"name": "Lorlenn Kath",
|
310
|
+
"stats": {
|
311
|
+
"offense": 2.5791212235030163,
|
312
|
+
"defense": 5.713104654558498,
|
313
|
+
"agility": 6.6589023369281355
|
314
|
+
}
|
315
|
+
},
|
316
|
+
"rdef": {
|
317
|
+
"name": "Nganna Elvena",
|
318
|
+
"stats": {
|
319
|
+
"offense": 3.0546845639537707,
|
320
|
+
"defense": 1.0671600630181706,
|
321
|
+
"agility": 7.022289435945402
|
322
|
+
}
|
323
|
+
}
|
324
|
+
},
|
325
|
+
"shadows": [
|
326
|
+
{
|
327
|
+
"name": "Beany Genella",
|
328
|
+
"stats": {
|
329
|
+
"offense": 3.166235892974232,
|
330
|
+
"defense": 2.4983063853307703,
|
331
|
+
"agility": 3.885670283699013
|
332
|
+
}
|
333
|
+
},
|
334
|
+
{
|
335
|
+
"name": "Dallahadel Dhak",
|
336
|
+
"stats": {
|
337
|
+
"offense": 1.6856681008155023,
|
338
|
+
"defense": 4.126068530820148,
|
339
|
+
"agility": -1.3228263093260857
|
340
|
+
}
|
341
|
+
},
|
342
|
+
{
|
343
|
+
"name": "Don Sta",
|
344
|
+
"stats": {
|
345
|
+
"offense": 0.5941370528222538,
|
346
|
+
"defense": 2.095352665946084,
|
347
|
+
"agility": 5.006505031326723
|
348
|
+
}
|
349
|
+
}
|
350
|
+
]
|
351
|
+
},
|
352
|
+
{
|
353
|
+
"name": "Lagos Soup",
|
354
|
+
"color": "#b4814c",
|
355
|
+
"emoji": "🥣",
|
356
|
+
"motto": "Souped Up",
|
357
|
+
"stadium": {
|
358
|
+
"nickname": "The Bowl",
|
359
|
+
"full_name": "Lagos Community Kitchen",
|
360
|
+
"hlockey_type": "Ice"
|
361
|
+
},
|
362
|
+
"roster": {
|
363
|
+
"lwing": {
|
364
|
+
"name": "Rice Minda",
|
365
|
+
"stats": {
|
366
|
+
"offense": 3.8676405529088367,
|
367
|
+
"defense": 6.49221064790348,
|
368
|
+
"agility": 3.6749652488029207
|
369
|
+
}
|
370
|
+
},
|
371
|
+
"center": {
|
372
|
+
"name": "Aba Fiaseidimo",
|
373
|
+
"stats": {
|
374
|
+
"offense": 3.1239047494232337,
|
375
|
+
"defense": 2.4998878631681754,
|
376
|
+
"agility": 3.4892230328790057
|
377
|
+
}
|
378
|
+
},
|
379
|
+
"rwing": {
|
380
|
+
"name": "Ronelani Marjorisey",
|
381
|
+
"stats": {
|
382
|
+
"offense": 3.01132508098965,
|
383
|
+
"defense": 5.758312554102356,
|
384
|
+
"agility": 3.7341841123305386
|
385
|
+
}
|
386
|
+
},
|
387
|
+
"ldef": {
|
388
|
+
"name": "Gena Gegoreno",
|
389
|
+
"stats": {
|
390
|
+
"offense": 1.0574791229894422,
|
391
|
+
"defense": 0.36126552309053733,
|
392
|
+
"agility": 1.4488354010684916
|
393
|
+
}
|
394
|
+
},
|
395
|
+
"goalie": {
|
396
|
+
"name": "Myl Roseba",
|
397
|
+
"stats": {
|
398
|
+
"offense": 3.012293540956017,
|
399
|
+
"defense": 5.107390568364984,
|
400
|
+
"agility": 6.592640962437721
|
401
|
+
}
|
402
|
+
},
|
403
|
+
"rdef": {
|
404
|
+
"name": "Evaredra Mado",
|
405
|
+
"stats": {
|
406
|
+
"offense": 0.4676218418505968,
|
407
|
+
"defense": 4.991838019101464,
|
408
|
+
"agility": 5.11470861378886
|
409
|
+
}
|
410
|
+
}
|
411
|
+
},
|
412
|
+
"shadows": [
|
413
|
+
{
|
414
|
+
"name": "Lyn Vina",
|
415
|
+
"stats": {
|
416
|
+
"offense": 5.114770407146568,
|
417
|
+
"defense": 0.46427285749085034,
|
418
|
+
"agility": 1.4195664349934125
|
419
|
+
}
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"name": "Kena Jana",
|
423
|
+
"stats": {
|
424
|
+
"offense": 6.336722745802704,
|
425
|
+
"defense": -0.5096910340156334,
|
426
|
+
"agility": 1.0178680605294488
|
427
|
+
}
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"name": "Cecena Bina",
|
431
|
+
"stats": {
|
432
|
+
"offense": 1.9648347451514185,
|
433
|
+
"defense": 4.239315646202193,
|
434
|
+
"agility": 4.347705447348885
|
435
|
+
}
|
436
|
+
}
|
437
|
+
]
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"name": "Pica Acid",
|
441
|
+
"color": "#519d07",
|
442
|
+
"emoji": "🧪",
|
443
|
+
"motto": "Trust The Citrus",
|
444
|
+
"stadium": {
|
445
|
+
"nickname": "The Biohazard",
|
446
|
+
"full_name": "Pica Hlockey Stadium and Waste Management Facility",
|
447
|
+
"description": "A street that smells oddly like citrus. Acid flows from its drains and gutters. There is a rumor spread by visitors that the acid has a pleasant lime flavor.",
|
448
|
+
"hlockey_type": "Street"
|
449
|
+
},
|
450
|
+
"roster": {
|
451
|
+
"lwing": {
|
452
|
+
"name": "Bea Roshina",
|
453
|
+
"stats": {
|
454
|
+
"offense": 4.608544857490023,
|
455
|
+
"defense": 4.242938202188162,
|
456
|
+
"agility": 7.606786873412223
|
457
|
+
}
|
458
|
+
},
|
459
|
+
"center": {
|
460
|
+
"name": "Adel Dhadolahim",
|
461
|
+
"stats": {
|
462
|
+
"offense": 4.3794088499246975,
|
463
|
+
"defense": 3.5,
|
464
|
+
"agility": 2.208326161494627
|
465
|
+
}
|
466
|
+
},
|
467
|
+
"rwing": {
|
468
|
+
"name": "Domethan Betty",
|
469
|
+
"stats": {
|
470
|
+
"offense": 3.621956051279454,
|
471
|
+
"defense": 3.2831522866761254,
|
472
|
+
"agility": 5.007013688411811
|
473
|
+
}
|
474
|
+
},
|
475
|
+
"ldef": {
|
476
|
+
"name": "Mohana Mada",
|
477
|
+
"stats": {
|
478
|
+
"offense": 2.197919880998419,
|
479
|
+
"defense": 5.8739119418328825,
|
480
|
+
"agility": 1.697644544633245
|
481
|
+
}
|
482
|
+
},
|
483
|
+
"goalie": {
|
484
|
+
"name": "Egi Fdia",
|
485
|
+
"stats": {
|
486
|
+
"offense": 3.310503141096339,
|
487
|
+
"defense": 4.530567239402629,
|
488
|
+
"agility": 2.867733551801437
|
489
|
+
}
|
490
|
+
},
|
491
|
+
"rdef": {
|
492
|
+
"name": "Megren Ethawndie",
|
493
|
+
"stats": {
|
494
|
+
"offense": 5.016782560410169,
|
495
|
+
"defense": -0.48031963133159405,
|
496
|
+
"agility": 5.414582454870929
|
497
|
+
}
|
498
|
+
}
|
499
|
+
},
|
500
|
+
"shadows": [
|
501
|
+
{
|
502
|
+
"name": "Tandina Grah",
|
503
|
+
"stats": {
|
504
|
+
"offense": -1.267854216972766,
|
505
|
+
"defense": 6.408067436979279,
|
506
|
+
"agility": 3.1961431375521854
|
507
|
+
}
|
508
|
+
},
|
509
|
+
{
|
510
|
+
"name": "Onisa Elsikeeder",
|
511
|
+
"stats": {
|
512
|
+
"offense": 5.62819660290047,
|
513
|
+
"defense": 1.2310124397375302,
|
514
|
+
"agility": 1.8687937732542395
|
515
|
+
},
|
516
|
+
"mods": [
|
517
|
+
"Powernapper"
|
518
|
+
]
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"name": "Saula Murika",
|
522
|
+
"stats": {
|
523
|
+
"offense": 3.0043008688530737,
|
524
|
+
"defense": 0.9322336424454407,
|
525
|
+
"agility": 1.8150817028613155
|
526
|
+
}
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"name": "Ciborgarci Fela",
|
530
|
+
"stats": {
|
531
|
+
"offense": 0.9270064530587432,
|
532
|
+
"defense": 3.365470960133974,
|
533
|
+
"agility": 3.7297217022995914
|
534
|
+
}
|
535
|
+
}
|
536
|
+
]
|
537
|
+
}
|
538
|
+
],
|
539
|
+
"Dry Warm": [
|
540
|
+
{
|
541
|
+
"name": "Dawson City Impostors",
|
542
|
+
"color": "#f74d4e",
|
543
|
+
"emoji": "🔪",
|
544
|
+
"motto": "We're Behind You",
|
545
|
+
"stadium": {
|
546
|
+
"nickname": "The Normal Place",
|
547
|
+
"full_name": "Tribute Arena",
|
548
|
+
"hlockey_type": "\"Ice\""
|
549
|
+
},
|
550
|
+
"roster": {
|
551
|
+
"lwing": {
|
552
|
+
"name": "Cañary Daj",
|
553
|
+
"stats": {
|
554
|
+
"offense": 3.3611700252924983,
|
555
|
+
"defense": 3.5428583344956506,
|
556
|
+
"agility": 3.3246731785729393
|
557
|
+
}
|
558
|
+
},
|
559
|
+
"center": {
|
560
|
+
"name": "Wal Carine",
|
561
|
+
"stats": {
|
562
|
+
"offense": 5.200228316595542,
|
563
|
+
"defense": 4.697027056181462,
|
564
|
+
"agility": 4.973686103175517
|
565
|
+
},
|
566
|
+
"mods": [
|
567
|
+
"Punchy"
|
568
|
+
]
|
569
|
+
},
|
570
|
+
"rwing": {
|
571
|
+
"name": "Akisha Elsianda",
|
572
|
+
"stats": {
|
573
|
+
"offense": 3.289309699332672,
|
574
|
+
"defense": 2.7214684811713665,
|
575
|
+
"agility": 1.273346104537263
|
576
|
+
}
|
577
|
+
},
|
578
|
+
"ldef": {
|
579
|
+
"name": "Faoundale Cecso",
|
580
|
+
"stats": {
|
581
|
+
"offense": 4.749267718481081,
|
582
|
+
"defense": 3.5777879953606924,
|
583
|
+
"agility": 4.477553782354861
|
584
|
+
}
|
585
|
+
},
|
586
|
+
"goalie": {
|
587
|
+
"name": "Sha Carle",
|
588
|
+
"stats": {
|
589
|
+
"offense": 3.7015225874962905,
|
590
|
+
"defense": 5.464593355375425,
|
591
|
+
"agility": 1.1327534620691981
|
592
|
+
},
|
593
|
+
"mods": [
|
594
|
+
"Locked"
|
595
|
+
]
|
596
|
+
},
|
597
|
+
"rdef": {
|
598
|
+
"name": "Ahiurtx Chak",
|
599
|
+
"stats": {
|
600
|
+
"offense": 1.8953036861770203,
|
601
|
+
"defense": 4.481710120658707,
|
602
|
+
"agility": 4.013241908444143
|
603
|
+
}
|
604
|
+
}
|
605
|
+
},
|
606
|
+
"shadows": [
|
607
|
+
{
|
608
|
+
"name": "Ierre Gera",
|
609
|
+
"stats": {
|
610
|
+
"offense": 1.1980564319690197,
|
611
|
+
"defense": 1.5659554757437117,
|
612
|
+
"agility": 5.308729989671992
|
613
|
+
}
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"name": "Dica Hage",
|
617
|
+
"stats": {
|
618
|
+
"offense": 0.9355138089378057,
|
619
|
+
"defense": 4.226278289946928,
|
620
|
+
"agility": 1.0612739715861492
|
621
|
+
}
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"name": "Vanditarce Odela",
|
625
|
+
"stats": {
|
626
|
+
"offense": 4.6229810194428875,
|
627
|
+
"defense": 5.1,
|
628
|
+
"agility": 1.335163687021968
|
629
|
+
}
|
630
|
+
},
|
631
|
+
{
|
632
|
+
"name": "Alommee Oth",
|
633
|
+
"stats": {
|
634
|
+
"offense": 4.296783201890234,
|
635
|
+
"defense": 4.719157307656222,
|
636
|
+
"agility": 1.5322273365256756
|
637
|
+
}
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"name": "Lin Carb",
|
641
|
+
"stats": {
|
642
|
+
"offense": 3.2490807472967056,
|
643
|
+
"defense": 1.800378632363945,
|
644
|
+
"agility": 2.0077342281045647
|
645
|
+
}
|
646
|
+
}
|
647
|
+
]
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"name": "Erlangen Ohms",
|
651
|
+
"color": "#8e7ddf",
|
652
|
+
"emoji": "♒",
|
653
|
+
"motto": "Resistance Is Not Futile",
|
654
|
+
"stadium": {
|
655
|
+
"full_name": "The Academy at Ohmageddon",
|
656
|
+
"description": "The large, prestigious university and hlockey rink. It has the ambiance and design of a Battlebots arena with none of the safety precautions.",
|
657
|
+
"hlockey_type": "Air"
|
658
|
+
},
|
659
|
+
"roster": {
|
660
|
+
"lwing": {
|
661
|
+
"name": "Casmon Brisevie",
|
662
|
+
"stats": {
|
663
|
+
"offense": 3.5399747439944966,
|
664
|
+
"defense": 3.4721152052345268,
|
665
|
+
"agility": 1.5237393928025234
|
666
|
+
}
|
667
|
+
},
|
668
|
+
"center": {
|
669
|
+
"name": "Mero Rose",
|
670
|
+
"stats": {
|
671
|
+
"offense": 4.635004838177717,
|
672
|
+
"defense": 2.802380968880653,
|
673
|
+
"agility": 4.035985707797963
|
674
|
+
}
|
675
|
+
},
|
676
|
+
"rwing": {
|
677
|
+
"name": "Shewenne Miline",
|
678
|
+
"stats": {
|
679
|
+
"offense": 4.925125613800631,
|
680
|
+
"defense": 3.588710627212966,
|
681
|
+
"agility": 5.329471387282465
|
682
|
+
}
|
683
|
+
},
|
684
|
+
"ldef": {
|
685
|
+
"name": "Abdenco Ben",
|
686
|
+
"stats": {
|
687
|
+
"offense": 4.145544139200051,
|
688
|
+
"defense": 2.7901736490460287,
|
689
|
+
"agility": 4.172891317253124
|
690
|
+
}
|
691
|
+
},
|
692
|
+
"goalie": {
|
693
|
+
"name": "Nigeno Adreenvian",
|
694
|
+
"stats": {
|
695
|
+
"offense": 3.6015908392571787,
|
696
|
+
"defense": 4.5630748343722365,
|
697
|
+
"agility": 3.7937023532144547
|
698
|
+
},
|
699
|
+
"mods": [
|
700
|
+
"Powernapper"
|
701
|
+
]
|
702
|
+
},
|
703
|
+
"rdef": {
|
704
|
+
"name": "Marg Mic",
|
705
|
+
"stats": {
|
706
|
+
"offense": 1.6017769408179037,
|
707
|
+
"defense": 5.474970161839202,
|
708
|
+
"agility": 4.227998322914585
|
709
|
+
}
|
710
|
+
}
|
711
|
+
},
|
712
|
+
"shadows": [
|
713
|
+
{
|
714
|
+
"name": "Ceireserre Cecs",
|
715
|
+
"stats": {
|
716
|
+
"offense": 1.6663265349860557,
|
717
|
+
"defense": 2.188245264462223,
|
718
|
+
"agility": 1.6174990941854839
|
719
|
+
}
|
720
|
+
},
|
721
|
+
{
|
722
|
+
"name": "Dejs Edira",
|
723
|
+
"stats": {
|
724
|
+
"offense": 3.170900279515639,
|
725
|
+
"defense": 4.042112187195569,
|
726
|
+
"agility": 1.2889781455260643
|
727
|
+
}
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"name": "Dhadienbo Ceffanera",
|
731
|
+
"stats": {
|
732
|
+
"offense": 1.0180555151481117,
|
733
|
+
"defense": 3.5402172473244966,
|
734
|
+
"agility": 0.5422580114455113
|
735
|
+
}
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"name": "Bent Josemburmi",
|
739
|
+
"stats": {
|
740
|
+
"offense": 0.32936657162624305,
|
741
|
+
"defense": 5.164240914309329,
|
742
|
+
"agility": 2.0136092712746954
|
743
|
+
}
|
744
|
+
}
|
745
|
+
]
|
746
|
+
},
|
747
|
+
{
|
748
|
+
"name": "Pompei Eruptions",
|
749
|
+
"color": "#f25707",
|
750
|
+
"emoji": "🌋",
|
751
|
+
"motto": "Erupt To No Good",
|
752
|
+
"stadium": {
|
753
|
+
"nickname": "The Lava Dome",
|
754
|
+
"full_name": "Caldera Coliseum",
|
755
|
+
"description": "Floating atop a pool of lava, the rink of the Caldera Coliseum somehow never melts.",
|
756
|
+
"hlockey_type": "Ice"
|
757
|
+
},
|
758
|
+
"roster": {
|
759
|
+
"lwing": {
|
760
|
+
"name": "Begrita Ednereda",
|
761
|
+
"stats": {
|
762
|
+
"offense": 3.974236468956633,
|
763
|
+
"defense": 4.772694349454337,
|
764
|
+
"agility": 4.5939044777557285
|
765
|
+
}
|
766
|
+
},
|
767
|
+
"center": {
|
768
|
+
"name": "Jeaudon Roslessa",
|
769
|
+
"stats": {
|
770
|
+
"offense": 6.155908892396595,
|
771
|
+
"defense": 3.4651871703759065,
|
772
|
+
"agility": 1.313728137028109
|
773
|
+
},
|
774
|
+
"mods": [
|
775
|
+
"Locked"
|
776
|
+
]
|
777
|
+
},
|
778
|
+
"rwing": {
|
779
|
+
"name": "Fela Chak",
|
780
|
+
"stats": {
|
781
|
+
"offense": 2.255225414205479,
|
782
|
+
"defense": 5.732503533193344,
|
783
|
+
"agility": 2.1485761789922155
|
784
|
+
}
|
785
|
+
},
|
786
|
+
"ldef": {
|
787
|
+
"name": "Gwen Castanda",
|
788
|
+
"stats": {
|
789
|
+
"offense": 4.313903361471186,
|
790
|
+
"defense": 3.8942252202719887,
|
791
|
+
"agility": 4.818903707581287
|
792
|
+
}
|
793
|
+
},
|
794
|
+
"goalie": {
|
795
|
+
"name": "Lathellen Dorniquan",
|
796
|
+
"stats": {
|
797
|
+
"offense": 4.964164426849452,
|
798
|
+
"defense": 5.866399829919678,
|
799
|
+
"agility": 3.776786388750754
|
800
|
+
}
|
801
|
+
},
|
802
|
+
"rdef": {
|
803
|
+
"name": "Yukisterin Ozielyn",
|
804
|
+
"stats": {
|
805
|
+
"offense": 5.51331167183758,
|
806
|
+
"defense": 3.6289946258026857,
|
807
|
+
"agility": 5.575987154020576
|
808
|
+
}
|
809
|
+
}
|
810
|
+
},
|
811
|
+
"shadows": [
|
812
|
+
{
|
813
|
+
"name": "Burene Nohnna",
|
814
|
+
"stats": {
|
815
|
+
"offense": 4.357443797498708,
|
816
|
+
"defense": 3.353447151495574,
|
817
|
+
"agility": 1.897216911007383
|
818
|
+
}
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"name": "Ifia Giana",
|
822
|
+
"stats": {
|
823
|
+
"offense": 2.0157882001465537,
|
824
|
+
"defense": 4.090838679094951,
|
825
|
+
"agility": 1.1965402035740373
|
826
|
+
}
|
827
|
+
},
|
828
|
+
{
|
829
|
+
"name": "Evetusteri Margelma",
|
830
|
+
"stats": {
|
831
|
+
"offense": 3.9790987361720664,
|
832
|
+
"defense": 5.298698229828846,
|
833
|
+
"agility": 4.901576259373925
|
834
|
+
}
|
835
|
+
}
|
836
|
+
]
|
837
|
+
},
|
838
|
+
{
|
839
|
+
"name": "Rio de Janeiro Directors",
|
840
|
+
"color": "#a38932",
|
841
|
+
"emoji": "🎦",
|
842
|
+
"motto": "No Limite!",
|
843
|
+
"stadium": {
|
844
|
+
"nickname": "O Palco",
|
845
|
+
"full_name": "Estádio de hóquei da Lagoa",
|
846
|
+
"description": "A Soundstage built on Rodrigo de Freitas Lagoon, in the shadow of Christ the Redeemer, the Directors built this Stage and Stadium for maximum flexability. The Stadium can rotate, to ensure the perfect light for any shot, and the normally open floor can be replaced with different stages for filming (and maybe gameplay).",
|
847
|
+
"hlockey_type": "Overwater"
|
848
|
+
},
|
849
|
+
"roster": {
|
850
|
+
"lwing": {
|
851
|
+
"name": "Luley Ora",
|
852
|
+
"stats": {
|
853
|
+
"offense": 3.3984533675715856,
|
854
|
+
"defense": 2.117910017024934,
|
855
|
+
"agility": 3.2612702553496478
|
856
|
+
}
|
857
|
+
},
|
858
|
+
"center": {
|
859
|
+
"name": "Thu Loly",
|
860
|
+
"stats": {
|
861
|
+
"offense": 6.296969915661213,
|
862
|
+
"defense": 5.731893437474246,
|
863
|
+
"agility": 6.276371115545972
|
864
|
+
},
|
865
|
+
"mods": [
|
866
|
+
"Punchy",
|
867
|
+
"Locked"
|
868
|
+
]
|
869
|
+
},
|
870
|
+
"rwing": {
|
871
|
+
"name": "Djayaraa Afiel",
|
872
|
+
"stats": {
|
873
|
+
"offense": 5.690275410888419,
|
874
|
+
"defense": 4.964628241245552,
|
875
|
+
"agility": 2.3051208219795014
|
876
|
+
}
|
877
|
+
},
|
878
|
+
"ldef": {
|
879
|
+
"name": "Caseslia Krynorgine",
|
880
|
+
"stats": {
|
881
|
+
"offense": 2.379683326468791,
|
882
|
+
"defense": 4.34917631450195,
|
883
|
+
"agility": 2.5391638509709713
|
884
|
+
}
|
885
|
+
},
|
886
|
+
"goalie": {
|
887
|
+
"name": "Cassako Chricobha",
|
888
|
+
"stats": {
|
889
|
+
"offense": 1.2542374568567165,
|
890
|
+
"defense": 5.783900981185712,
|
891
|
+
"agility": 5.341515071511197
|
892
|
+
}
|
893
|
+
},
|
894
|
+
"rdef": {
|
895
|
+
"name": "Merlen Joh",
|
896
|
+
"stats": {
|
897
|
+
"offense": 4.7220869253714755,
|
898
|
+
"defense": 4.621830139764669,
|
899
|
+
"agility": 3.2819219011870513
|
900
|
+
}
|
901
|
+
}
|
902
|
+
},
|
903
|
+
"shadows": [
|
904
|
+
{
|
905
|
+
"name": "Immaed Dhaki",
|
906
|
+
"stats": {
|
907
|
+
"offense": 4.8553398056590495,
|
908
|
+
"defense": 4.512224915020777,
|
909
|
+
"agility": 5.141059380978544
|
910
|
+
}
|
911
|
+
},
|
912
|
+
{
|
913
|
+
"name": "Carisancel Chri",
|
914
|
+
"stats": {
|
915
|
+
"offense": 6.165115716336476,
|
916
|
+
"defense": 0.20784564329662114,
|
917
|
+
"agility": 1.4147824764218766
|
918
|
+
}
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"name": "Mbabacheas Fian",
|
922
|
+
"stats": {
|
923
|
+
"offense": 1.3570823221294503,
|
924
|
+
"defense": 4.627606871271369,
|
925
|
+
"agility": 2.2225785634792885
|
926
|
+
}
|
927
|
+
}
|
928
|
+
]
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"name": "Wyrzysk Rockets",
|
932
|
+
"color": "#cb7714",
|
933
|
+
"emoji": "🚀",
|
934
|
+
"motto": "Shoot For The Moon And Even If You Miss You'll Land In W̯ͤ͝Ỵ͋͢R͉͡͠Z̟̈́͜Ỵ͋͢S̙̀̃K͕͌",
|
935
|
+
"stadium": {
|
936
|
+
"nickname": "The Kosmo-dome",
|
937
|
+
"full_name": "Silesian Planetarium",
|
938
|
+
"hlockey_type": "Jetpack"
|
939
|
+
},
|
940
|
+
"roster": {
|
941
|
+
"lwing": {
|
942
|
+
"name": "Lew Debbi",
|
943
|
+
"stats": {
|
944
|
+
"offense": 1.7270629254816892,
|
945
|
+
"defense": 6.239697532733012,
|
946
|
+
"agility": 6.3728169344139705
|
947
|
+
}
|
948
|
+
},
|
949
|
+
"center": {
|
950
|
+
"name": "Gic Chak",
|
951
|
+
"stats": {
|
952
|
+
"offense": 4.545613386888403,
|
953
|
+
"defense": 4.344950531270042,
|
954
|
+
"agility": 1.8020299095620889
|
955
|
+
}
|
956
|
+
},
|
957
|
+
"rwing": {
|
958
|
+
"name": "Dhaltis Fco",
|
959
|
+
"stats": {
|
960
|
+
"offense": 4.206201143576672,
|
961
|
+
"defense": 1.4402022343454277,
|
962
|
+
"agility": 2.0560110726874745
|
963
|
+
}
|
964
|
+
},
|
965
|
+
"ldef": {
|
966
|
+
"name": "Paud Ceco",
|
967
|
+
"stats": {
|
968
|
+
"offense": 3.2061455484428683,
|
969
|
+
"defense": 1.3179507656952338,
|
970
|
+
"agility": 5.306662113132444
|
971
|
+
}
|
972
|
+
},
|
973
|
+
"goalie": {
|
974
|
+
"name": "Echan Kanebelah",
|
975
|
+
"stats": {
|
976
|
+
"offense": 3.8007221780267466,
|
977
|
+
"defense": 1.2354108313405976,
|
978
|
+
"agility": 5.443474096000585
|
979
|
+
}
|
980
|
+
},
|
981
|
+
"rdef": {
|
982
|
+
"name": "Edmundan Jeanta",
|
983
|
+
"stats": {
|
984
|
+
"offense": 4.95168159603292,
|
985
|
+
"defense": 7.05837201463278,
|
986
|
+
"agility": 2.14729467306752
|
987
|
+
},
|
988
|
+
"mods": [
|
989
|
+
"Fencedestroyer"
|
990
|
+
]
|
991
|
+
}
|
992
|
+
},
|
993
|
+
"shadows": [
|
994
|
+
{
|
995
|
+
"name": "Desakey Teonon",
|
996
|
+
"stats": {
|
997
|
+
"offense": 3.52061632441331,
|
998
|
+
"defense": 2.6486889856742972,
|
999
|
+
"agility": 4.9482776817390866
|
1000
|
+
}
|
1001
|
+
},
|
1002
|
+
{
|
1003
|
+
"name": "Jon Loura",
|
1004
|
+
"stats": {
|
1005
|
+
"offense": 3.8866551120578645,
|
1006
|
+
"defense": 6.716566617090099,
|
1007
|
+
"agility": 5.540150907644923
|
1008
|
+
},
|
1009
|
+
"mods": [
|
1010
|
+
"Fencedestroyer"
|
1011
|
+
]
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
"name": "Sopardetha Purarlynor",
|
1015
|
+
"stats": {
|
1016
|
+
"offense": 4.545613386888403,
|
1017
|
+
"defense": 4.344950531270042,
|
1018
|
+
"agility": 1.8020299095620889
|
1019
|
+
}
|
1020
|
+
}
|
1021
|
+
]
|
1022
|
+
}
|
1023
|
+
],
|
1024
|
+
"Wet Cool": [
|
1025
|
+
{
|
1026
|
+
"name": "Cape Town Transplants",
|
1027
|
+
"color": "#04a148",
|
1028
|
+
"emoji": "🌱",
|
1029
|
+
"motto": "Trans Rights, Plant Lives",
|
1030
|
+
"stadium": {
|
1031
|
+
"nickname": "The Greenhouse",
|
1032
|
+
"full_name": "Cape Town Natural History Museum and Hlockey Field",
|
1033
|
+
"description": "Nobody is entirely sure if the museum or the field came first as they seem to wind through each other. Some people think the museum was built around where the game is played where others imagine it was impromptu demolition that caused this interesting phenomenon. Due to the grassy nature of it all however it is not uncommon for the puck getting stuck in thickets and weeds leading to a face off that will end you up closer to the opposing goal.",
|
1034
|
+
"hlockey_type": "Field"
|
1035
|
+
},
|
1036
|
+
"roster": {
|
1037
|
+
"lwing": {
|
1038
|
+
"name": "Kalianeraf Edge",
|
1039
|
+
"stats": {
|
1040
|
+
"offense": 3.723563396260785,
|
1041
|
+
"defense": 6.280549506529422,
|
1042
|
+
"agility": 5.338151955607188
|
1043
|
+
},
|
1044
|
+
"mods": [
|
1045
|
+
[
|
1046
|
+
"Handholding",
|
1047
|
+
"Marmil Eilarema"
|
1048
|
+
]
|
1049
|
+
]
|
1050
|
+
},
|
1051
|
+
"center": {
|
1052
|
+
"name": "Ilenbelder Baca",
|
1053
|
+
"stats": {
|
1054
|
+
"offense": 4.244372812780057,
|
1055
|
+
"defense": 4.719633088311701,
|
1056
|
+
"agility": 1.7078830113678953
|
1057
|
+
}
|
1058
|
+
},
|
1059
|
+
"rwing": {
|
1060
|
+
"name": "Marmil Eilarema",
|
1061
|
+
"stats": {
|
1062
|
+
"offense": 5.723015189033164,
|
1063
|
+
"defense": 1.5254647893498654,
|
1064
|
+
"agility": 2.024067980101753
|
1065
|
+
},
|
1066
|
+
"mods": [
|
1067
|
+
[
|
1068
|
+
"Handholding",
|
1069
|
+
"Kalianeraf Edge"
|
1070
|
+
]
|
1071
|
+
]
|
1072
|
+
},
|
1073
|
+
"ldef": {
|
1074
|
+
"name": "Tonse Chryane",
|
1075
|
+
"stats": {
|
1076
|
+
"offense": 0.8456700606305636,
|
1077
|
+
"defense": 1.0666457918694623,
|
1078
|
+
"agility": 1.3503818652470612
|
1079
|
+
}
|
1080
|
+
},
|
1081
|
+
"goalie": {
|
1082
|
+
"name": "Shancilesi Lucie",
|
1083
|
+
"stats": {
|
1084
|
+
"offense": 5.0,
|
1085
|
+
"defense": 0.09844731735696888,
|
1086
|
+
"agility": 1.311499413842938
|
1087
|
+
}
|
1088
|
+
},
|
1089
|
+
"rdef": {
|
1090
|
+
"name": "Alebellena Ald",
|
1091
|
+
"stats": {
|
1092
|
+
"offense": 4.5322289341562225,
|
1093
|
+
"defense": 1.4112008963032878,
|
1094
|
+
"agility": 4.7475704920843835
|
1095
|
+
}
|
1096
|
+
}
|
1097
|
+
},
|
1098
|
+
"shadows": [
|
1099
|
+
{
|
1100
|
+
"name": "Hayetinevo Sance",
|
1101
|
+
"stats": {
|
1102
|
+
"offense": 5.8604427494756814,
|
1103
|
+
"defense": 0.243245901316689,
|
1104
|
+
"agility": 0.3203111823011112
|
1105
|
+
}
|
1106
|
+
},
|
1107
|
+
{
|
1108
|
+
"name": "Merry Nate",
|
1109
|
+
"stats": {
|
1110
|
+
"offense": 0.7577700557508957,
|
1111
|
+
"defense": 6.25225132967932,
|
1112
|
+
"agility": 4.412698599931341
|
1113
|
+
}
|
1114
|
+
},
|
1115
|
+
{
|
1116
|
+
"name": "Gena Ilenbel",
|
1117
|
+
"stats": {
|
1118
|
+
"offense": 2.6947367044881356,
|
1119
|
+
"defense": 1.5588624238527298,
|
1120
|
+
"agility": 4.189729624348141
|
1121
|
+
}
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"name": "Eil Glim",
|
1125
|
+
"stats": {
|
1126
|
+
"offense": 2.6853764151889905,
|
1127
|
+
"defense": 2.2693086780678113,
|
1128
|
+
"agility": 3.781252556253546
|
1129
|
+
}
|
1130
|
+
}
|
1131
|
+
]
|
1132
|
+
},
|
1133
|
+
{
|
1134
|
+
"name": "Manbij Fish",
|
1135
|
+
"color": "#797ff7",
|
1136
|
+
"emoji": "🐠",
|
1137
|
+
"motto": "It's Fishing Time",
|
1138
|
+
"stadium": {
|
1139
|
+
"nickname": "The Fish Tank",
|
1140
|
+
"full_name": "Atargatis Arena",
|
1141
|
+
"description": "Built inside a structure believed to date back to at least the Byzantine Empire, the Atargatis Arena is the world’s finest ruins hlockey field.",
|
1142
|
+
"hlockey_type": "Ruins"
|
1143
|
+
},
|
1144
|
+
"roster": {
|
1145
|
+
"lwing": {
|
1146
|
+
"name": "Fek Gie",
|
1147
|
+
"stats": {
|
1148
|
+
"offense": 4.8463575473496565,
|
1149
|
+
"defense": 0.3274476448284641,
|
1150
|
+
"agility": 0.5857514216479126
|
1151
|
+
}
|
1152
|
+
},
|
1153
|
+
"center": {
|
1154
|
+
"name": "Ghanona Dhaka",
|
1155
|
+
"stats": {
|
1156
|
+
"offense": 5.062042399392084,
|
1157
|
+
"defense": 3.4645103960961077,
|
1158
|
+
"agility": 2.132909687570641
|
1159
|
+
}
|
1160
|
+
},
|
1161
|
+
"rwing": {
|
1162
|
+
"name": "Maricalena Wilia",
|
1163
|
+
"stats": {
|
1164
|
+
"offense": 6.08723358952591,
|
1165
|
+
"defense": 1.982754435042453,
|
1166
|
+
"agility": 2.5694932005014595
|
1167
|
+
}
|
1168
|
+
},
|
1169
|
+
"ldef": {
|
1170
|
+
"name": "Dimon Leori",
|
1171
|
+
"stats": {
|
1172
|
+
"offense": 5.046483375155001,
|
1173
|
+
"defense": 6.36895738383651,
|
1174
|
+
"agility": 3.243656225253694
|
1175
|
+
}
|
1176
|
+
},
|
1177
|
+
"goalie": {
|
1178
|
+
"name": "Kenboum Elgie",
|
1179
|
+
"stats": {
|
1180
|
+
"offense": 1.2289948166618032,
|
1181
|
+
"defense": 4.710410859198227,
|
1182
|
+
"agility": 2.7734644834355064
|
1183
|
+
}
|
1184
|
+
},
|
1185
|
+
"rdef": {
|
1186
|
+
"name": "Cla Wina",
|
1187
|
+
"stats": {
|
1188
|
+
"offense": 0.5529882869947789,
|
1189
|
+
"defense": 3.5366446028607523,
|
1190
|
+
"agility": 5.7837237175631335
|
1191
|
+
}
|
1192
|
+
}
|
1193
|
+
},
|
1194
|
+
"shadows": [
|
1195
|
+
{
|
1196
|
+
"name": "Marlyn Magra",
|
1197
|
+
"stats": {
|
1198
|
+
"offense": 3.0350318962752563,
|
1199
|
+
"defense": 2.607626639998464,
|
1200
|
+
"agility": 2.0359544159790497
|
1201
|
+
}
|
1202
|
+
},
|
1203
|
+
{
|
1204
|
+
"name": "Begdalta Bad",
|
1205
|
+
"stats": {
|
1206
|
+
"offense": 2.958314328286369,
|
1207
|
+
"defense": 1.5934082559186495,
|
1208
|
+
"agility": 2.844968883417185
|
1209
|
+
}
|
1210
|
+
},
|
1211
|
+
{
|
1212
|
+
"name": "Alet Jungellice",
|
1213
|
+
"stats": {
|
1214
|
+
"offense": 1.8780325228416035,
|
1215
|
+
"defense": 1.4371807065821443,
|
1216
|
+
"agility": -0.02991075339566368
|
1217
|
+
}
|
1218
|
+
},
|
1219
|
+
{
|
1220
|
+
"name": "Jandald Garet",
|
1221
|
+
"stats": {
|
1222
|
+
"offense": 0.6272414199744301,
|
1223
|
+
"defense": 4.372632473363547,
|
1224
|
+
"agility": 1.3609606419867637
|
1225
|
+
}
|
1226
|
+
}
|
1227
|
+
]
|
1228
|
+
},
|
1229
|
+
{
|
1230
|
+
"name": "Nagqu Paint",
|
1231
|
+
"color": "#ab78c7",
|
1232
|
+
"emoji": "🎨",
|
1233
|
+
"motto": "Many Colors, One Painting",
|
1234
|
+
"stadium": {
|
1235
|
+
"nickname": "The Paint Bucket",
|
1236
|
+
"full_name": "Nagqu Arts, Crafts, and Hlockey Center",
|
1237
|
+
"description": "An arts and crafts center with a hlockey stadium. Some say the pathways there change direction every now and then.",
|
1238
|
+
"hlockey_type": "Street"
|
1239
|
+
},
|
1240
|
+
"roster": {
|
1241
|
+
"lwing": {
|
1242
|
+
"name": "Dode Reeninee",
|
1243
|
+
"stats": {
|
1244
|
+
"offense": 4.378653788488808,
|
1245
|
+
"defense": 2.443064575911794,
|
1246
|
+
"agility": 4.363999567177824
|
1247
|
+
}
|
1248
|
+
},
|
1249
|
+
"center": {
|
1250
|
+
"name": "Toba Jana",
|
1251
|
+
"stats": {
|
1252
|
+
"offense": 4.986192246880693,
|
1253
|
+
"defense": 1.3823380707487856,
|
1254
|
+
"agility": 3.0895456813942093
|
1255
|
+
},
|
1256
|
+
"mods": [
|
1257
|
+
"Locked"
|
1258
|
+
]
|
1259
|
+
},
|
1260
|
+
"rwing": {
|
1261
|
+
"name": "Ejalta Aihaimo",
|
1262
|
+
"stats": {
|
1263
|
+
"offense": 2.200974512587322,
|
1264
|
+
"defense": 3.87896142360853,
|
1265
|
+
"agility": 2.3521114886616097
|
1266
|
+
}
|
1267
|
+
},
|
1268
|
+
"ldef": {
|
1269
|
+
"name": "Ghair Aji",
|
1270
|
+
"stats": {
|
1271
|
+
"offense": 2.8777772601972553,
|
1272
|
+
"defense": 2.2703382343110343,
|
1273
|
+
"agility": 5.275806204992046
|
1274
|
+
}
|
1275
|
+
},
|
1276
|
+
"goalie": {
|
1277
|
+
"name": "Shia Tri",
|
1278
|
+
"stats": {
|
1279
|
+
"offense": 1.515183179479547,
|
1280
|
+
"defense": 5.482025343363701,
|
1281
|
+
"agility": 4.783582560100829
|
1282
|
+
}
|
1283
|
+
},
|
1284
|
+
"rdef": {
|
1285
|
+
"name": "Mann Coredrita",
|
1286
|
+
"stats": {
|
1287
|
+
"offense": 1.7468152532237924,
|
1288
|
+
"defense": 1.2859632958151228,
|
1289
|
+
"agility": 1.270060891508971
|
1290
|
+
}
|
1291
|
+
}
|
1292
|
+
},
|
1293
|
+
"shadows": [
|
1294
|
+
{
|
1295
|
+
"name": "Banitouas Cheno",
|
1296
|
+
"stats": {
|
1297
|
+
"offense": 3.530061801452225,
|
1298
|
+
"defense": 1.523704179450585,
|
1299
|
+
"agility": 2.8698871297000865
|
1300
|
+
},
|
1301
|
+
"mods": [
|
1302
|
+
"Locked"
|
1303
|
+
]
|
1304
|
+
},
|
1305
|
+
{
|
1306
|
+
"name": "Dejosz Claheri",
|
1307
|
+
"stats": {
|
1308
|
+
"offense": 2.1952326524463572,
|
1309
|
+
"defense": 3.4863444018709404,
|
1310
|
+
"agility": 1.2519483002755583
|
1311
|
+
},
|
1312
|
+
"mods": [
|
1313
|
+
"Locked"
|
1314
|
+
]
|
1315
|
+
},
|
1316
|
+
{
|
1317
|
+
"name": "Meggaitte Jammy",
|
1318
|
+
"stats": {
|
1319
|
+
"offense": 3.2300618014522247,
|
1320
|
+
"defense": 1.423704179450585,
|
1321
|
+
"agility": 2.7698871297000864
|
1322
|
+
},
|
1323
|
+
"mods": [
|
1324
|
+
"Locked"
|
1325
|
+
]
|
1326
|
+
},
|
1327
|
+
{
|
1328
|
+
"name": "Edmungette Hirleista",
|
1329
|
+
"stats": {
|
1330
|
+
"offense": 0.5162397962716402,
|
1331
|
+
"defense": 2.7937672305327834,
|
1332
|
+
"agility": 2.537930345200124
|
1333
|
+
},
|
1334
|
+
"mods": [
|
1335
|
+
"Locked"
|
1336
|
+
]
|
1337
|
+
},
|
1338
|
+
{
|
1339
|
+
"name": "Higoste Edne",
|
1340
|
+
"stats": {
|
1341
|
+
"offense": 4.975703564143176,
|
1342
|
+
"defense": 0.29325963681484435,
|
1343
|
+
"agility": 1.8437728090127385
|
1344
|
+
}
|
1345
|
+
}
|
1346
|
+
]
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
"name": "Nice Backflippers",
|
1350
|
+
"color": "#4a95ac",
|
1351
|
+
"emoji": "🔄",
|
1352
|
+
"motto": "See You On The Flip Side",
|
1353
|
+
"stadium": {
|
1354
|
+
"nickname": "The Jurb",
|
1355
|
+
"full_name": "La Jurbert Maison De Rebond Stadium",
|
1356
|
+
"description": "A stadium where the floor is made up of lots of trampolines.",
|
1357
|
+
"hlockey_type": "Trampoline"
|
1358
|
+
},
|
1359
|
+
"roster": {
|
1360
|
+
"lwing": {
|
1361
|
+
"name": "Higosz Djia",
|
1362
|
+
"stats": {
|
1363
|
+
"offense": 4.730874679737136,
|
1364
|
+
"defense": 4.412324663936815,
|
1365
|
+
"agility": 0.9205916359010149
|
1366
|
+
}
|
1367
|
+
},
|
1368
|
+
"center": {
|
1369
|
+
"name": "Sillia Lina",
|
1370
|
+
"stats": {
|
1371
|
+
"offense": -0.2770466085154877,
|
1372
|
+
"defense": 2.3413590857353364,
|
1373
|
+
"agility": 4.989204607282536
|
1374
|
+
}
|
1375
|
+
},
|
1376
|
+
"rwing": {
|
1377
|
+
"name": "Ton Mitelvelli",
|
1378
|
+
"stats": {
|
1379
|
+
"offense": 6.903643363583733,
|
1380
|
+
"defense": 0.578683159861894,
|
1381
|
+
"agility": 0.6989923146143914
|
1382
|
+
},
|
1383
|
+
"mods": [
|
1384
|
+
"Fencebuilder"
|
1385
|
+
]
|
1386
|
+
},
|
1387
|
+
"ldef": {
|
1388
|
+
"name": "Gallettacq Joreta",
|
1389
|
+
"stats": {
|
1390
|
+
"offense": 2.614503607823452,
|
1391
|
+
"defense": 5.31786591331492,
|
1392
|
+
"agility": 4.244893121219803
|
1393
|
+
}
|
1394
|
+
},
|
1395
|
+
"goalie": {
|
1396
|
+
"name": "Fcomeria Been",
|
1397
|
+
"stats": {
|
1398
|
+
"offense": 3.081932354955821,
|
1399
|
+
"defense": 5.440296384351189,
|
1400
|
+
"agility": 4.010184868781697
|
1401
|
+
},
|
1402
|
+
"mods": [
|
1403
|
+
"Locked"
|
1404
|
+
]
|
1405
|
+
},
|
1406
|
+
"rdef": {
|
1407
|
+
"name": "Jhem Caille",
|
1408
|
+
"stats": {
|
1409
|
+
"offense": 4.48379042355576,
|
1410
|
+
"defense": 4.572306609530182,
|
1411
|
+
"agility": 2.6415173611436917
|
1412
|
+
}
|
1413
|
+
}
|
1414
|
+
},
|
1415
|
+
"shadows": [
|
1416
|
+
{
|
1417
|
+
"name": "Ene Marlaura",
|
1418
|
+
"stats": {
|
1419
|
+
"offense": 4.266283994607924,
|
1420
|
+
"defense": 5.0220364263528605,
|
1421
|
+
"agility": 2.37447416231834
|
1422
|
+
}
|
1423
|
+
},
|
1424
|
+
{
|
1425
|
+
"name": "Dena Bere",
|
1426
|
+
"stats": {
|
1427
|
+
"offense": 1.0927737835832212,
|
1428
|
+
"defense": 2.6809197584541766,
|
1429
|
+
"agility": 1.6059491598104096
|
1430
|
+
}
|
1431
|
+
},
|
1432
|
+
{
|
1433
|
+
"name": "Bargelean Kathonespi",
|
1434
|
+
"stats": {
|
1435
|
+
"offense": 2.3701284645757204,
|
1436
|
+
"defense": 1.8236999469591044,
|
1437
|
+
"agility": 5.525766606040669
|
1438
|
+
},
|
1439
|
+
"mods": [
|
1440
|
+
"Powernapper"
|
1441
|
+
]
|
1442
|
+
},
|
1443
|
+
{
|
1444
|
+
"name": "Flomarlie Pegettepha",
|
1445
|
+
"stats": {
|
1446
|
+
"offense": 2.8095218195811706,
|
1447
|
+
"defense": 1.7552564744524686,
|
1448
|
+
"agility": 0.9021167508459513
|
1449
|
+
}
|
1450
|
+
},
|
1451
|
+
{
|
1452
|
+
"name": "Dec Gigorgilee",
|
1453
|
+
"stats": {
|
1454
|
+
"offense": 0.9915167321175338,
|
1455
|
+
"defense": 0.7845800862907767,
|
1456
|
+
"agility": 4.492458422674986
|
1457
|
+
}
|
1458
|
+
}
|
1459
|
+
]
|
1460
|
+
},
|
1461
|
+
{
|
1462
|
+
"name": "Orcadas Base Fog",
|
1463
|
+
"color": "#8d889c",
|
1464
|
+
"emoji": "🌁",
|
1465
|
+
"motto": "[Foghorn Sound]",
|
1466
|
+
"stadium": {
|
1467
|
+
"nickname": "The Lab",
|
1468
|
+
"full_name": "Fog Research Division Splorts Centre",
|
1469
|
+
"description": "The Fog Research Division Splorts Centre is a lab module dedicated to researching the anomalous fog surrounding the South Orkney Islands that, for budgetary reasons, also includes a splorts training facility and an open air Hlockey arena. Save for a few elevated seating areas, the arena stands are entirely overtaken by adélie penguins, who happen to share the space as their nesting grounds. During games, the centre is fully surrounded by a dense fog, which must be pushed back using foghorns before each period.",
|
1470
|
+
"hlockey_type": "Ice"
|
1471
|
+
},
|
1472
|
+
"roster": {
|
1473
|
+
"lwing": {
|
1474
|
+
"name": "Sabelia Dempia",
|
1475
|
+
"stats": {
|
1476
|
+
"offense": 3.041370818134459,
|
1477
|
+
"defense": 2.1146349334085115,
|
1478
|
+
"agility": 5.402487320185035
|
1479
|
+
}
|
1480
|
+
},
|
1481
|
+
"center": {
|
1482
|
+
"name": "Pormel Torishanet",
|
1483
|
+
"stats": {
|
1484
|
+
"offense": 4.380615293053172,
|
1485
|
+
"defense": 2.767462241598979,
|
1486
|
+
"agility": 3.0402425738725363
|
1487
|
+
}
|
1488
|
+
},
|
1489
|
+
"rwing": {
|
1490
|
+
"name": "Lin Irma",
|
1491
|
+
"stats": {
|
1492
|
+
"offense": 4.1,
|
1493
|
+
"defense": 2.387053032969913,
|
1494
|
+
"agility": 3.2682113561156525
|
1495
|
+
}
|
1496
|
+
},
|
1497
|
+
"ldef": {
|
1498
|
+
"name": "Deber Cucia",
|
1499
|
+
"stats": {
|
1500
|
+
"offense": 3.524800649244164,
|
1501
|
+
"defense": 1.9065667353816216,
|
1502
|
+
"agility": 3.8429842853535097
|
1503
|
+
}
|
1504
|
+
},
|
1505
|
+
"goalie": {
|
1506
|
+
"name": "Melli Tuye",
|
1507
|
+
"stats": {
|
1508
|
+
"offense": 4.945249049989797,
|
1509
|
+
"defense": 2.892304012958874,
|
1510
|
+
"agility": 4.389902374110525
|
1511
|
+
}
|
1512
|
+
},
|
1513
|
+
"rdef": {
|
1514
|
+
"name": "Dagose Jederenbo",
|
1515
|
+
"stats": {
|
1516
|
+
"offense": 2.9117869611192275,
|
1517
|
+
"defense": 3.492318914064145,
|
1518
|
+
"agility": 1.8554960270246568
|
1519
|
+
}
|
1520
|
+
}
|
1521
|
+
},
|
1522
|
+
"shadows": [
|
1523
|
+
{
|
1524
|
+
"name": "Dane Bed",
|
1525
|
+
"stats": {
|
1526
|
+
"offense": 3.821473437021666,
|
1527
|
+
"defense": 3.330609394622694,
|
1528
|
+
"agility": 1.1323712812644342
|
1529
|
+
}
|
1530
|
+
},
|
1531
|
+
{
|
1532
|
+
"name": "Jeatrisarg Efria",
|
1533
|
+
"stats": {
|
1534
|
+
"offense": 2.321545079645435,
|
1535
|
+
"defense": 1.0379371210952804,
|
1536
|
+
"agility": 3.0512738617923687
|
1537
|
+
}
|
1538
|
+
},
|
1539
|
+
{
|
1540
|
+
"name": "Bebiboria Hik",
|
1541
|
+
"stats": {
|
1542
|
+
"offense": 3.127535340447778,
|
1543
|
+
"defense": -0.31536771615711123,
|
1544
|
+
"agility": 0.934305742967098
|
1545
|
+
}
|
1546
|
+
},
|
1547
|
+
{
|
1548
|
+
"name": "Decia Die",
|
1549
|
+
"stats": {
|
1550
|
+
"offense": 4.52168516305309,
|
1551
|
+
"defense": 3.7967603262149883,
|
1552
|
+
"agility": 1.4559945521277218
|
1553
|
+
}
|
1554
|
+
}
|
1555
|
+
]
|
1556
|
+
}
|
1557
|
+
],
|
1558
|
+
"Dry Cool": [
|
1559
|
+
{
|
1560
|
+
"name": "Baghdad Abacuses",
|
1561
|
+
"color": "#d264ad",
|
1562
|
+
"emoji": "🧮",
|
1563
|
+
"motto": "Your Days Are Numbered",
|
1564
|
+
"stadium": {
|
1565
|
+
"nickname": "The Zigg",
|
1566
|
+
"full_name": "The Etemenanki Rink",
|
1567
|
+
"description": "Atop the ancient Etemenanki lies the favored rink of Marduk. Surrounded by Yakhchal, the ancient traditions remain strong with Hlockey chief among them. Follow the Steles for further instruction.",
|
1568
|
+
"hlockey_type": "Ice"
|
1569
|
+
},
|
1570
|
+
"roster": {
|
1571
|
+
"lwing": {
|
1572
|
+
"name": "Flomina Cucisha",
|
1573
|
+
"stats": {
|
1574
|
+
"offense": 4.393369079571129,
|
1575
|
+
"defense": 4.326750935804064,
|
1576
|
+
"agility": 4.483672509906895
|
1577
|
+
}
|
1578
|
+
},
|
1579
|
+
"center": {
|
1580
|
+
"name": "Hieldoni Fadoudons",
|
1581
|
+
"stats": {
|
1582
|
+
"offense": 4.401996059111378,
|
1583
|
+
"defense": 4.135261865237325,
|
1584
|
+
"agility": 5.052896089789448
|
1585
|
+
}
|
1586
|
+
},
|
1587
|
+
"rwing": {
|
1588
|
+
"name": "Gia Hajaopeana",
|
1589
|
+
"stats": {
|
1590
|
+
"offense": 3.2894223694082396,
|
1591
|
+
"defense": 5.336515622894927,
|
1592
|
+
"agility": 1.8801558826709164
|
1593
|
+
}
|
1594
|
+
},
|
1595
|
+
"ldef": {
|
1596
|
+
"name": "Enisto Dene",
|
1597
|
+
"stats": {
|
1598
|
+
"offense": 1.8133939770434067,
|
1599
|
+
"defense": 2.197047540832867,
|
1600
|
+
"agility": 4.022758361650002
|
1601
|
+
}
|
1602
|
+
},
|
1603
|
+
"goalie": {
|
1604
|
+
"name": "Mil Hedrilia",
|
1605
|
+
"stats": {
|
1606
|
+
"offense": 2.089371414133044,
|
1607
|
+
"defense": 1.3243300247721463,
|
1608
|
+
"agility": 1.6659620478366444
|
1609
|
+
}
|
1610
|
+
},
|
1611
|
+
"rdef": {
|
1612
|
+
"name": "Dak Dias",
|
1613
|
+
"stats": {
|
1614
|
+
"offense": 2.5210164405847046,
|
1615
|
+
"defense": 0.6361664989176833,
|
1616
|
+
"agility": 4.732652967583882
|
1617
|
+
}
|
1618
|
+
}
|
1619
|
+
},
|
1620
|
+
"shadows": [
|
1621
|
+
{
|
1622
|
+
"name": "Maranny Madina",
|
1623
|
+
"stats": {
|
1624
|
+
"offense": 1.5128013003566565,
|
1625
|
+
"defense": 0.702020440278861,
|
1626
|
+
"agility": 0.08479429503933922
|
1627
|
+
}
|
1628
|
+
},
|
1629
|
+
{
|
1630
|
+
"name": "Eard Sly",
|
1631
|
+
"stats": {
|
1632
|
+
"offense": 1.8130658377895141,
|
1633
|
+
"defense": 0.8573638676714308,
|
1634
|
+
"agility": 2.9491164655226636
|
1635
|
+
}
|
1636
|
+
},
|
1637
|
+
{
|
1638
|
+
"name": "Cathlisa Die",
|
1639
|
+
"stats": {
|
1640
|
+
"offense": 0.5659798576974939,
|
1641
|
+
"defense": 2.749132737041533,
|
1642
|
+
"agility": 2.467777037410934
|
1643
|
+
}
|
1644
|
+
}
|
1645
|
+
]
|
1646
|
+
},
|
1647
|
+
{
|
1648
|
+
"name": "Jakarta Architects",
|
1649
|
+
"color": "#7d9535",
|
1650
|
+
"emoji": "📐",
|
1651
|
+
"motto": "We'll Never Fall",
|
1652
|
+
"stadium": {
|
1653
|
+
"nickname": "The Arch",
|
1654
|
+
"full_name": "Gelora Bung Karno Hlockey Field",
|
1655
|
+
"hlockey_type": "Field"
|
1656
|
+
},
|
1657
|
+
"roster": {
|
1658
|
+
"lwing": {
|
1659
|
+
"name": "Sal Everie",
|
1660
|
+
"stats": {
|
1661
|
+
"offense": 1.2224645994521615,
|
1662
|
+
"defense": 5.844724451206179,
|
1663
|
+
"agility": 3.1213670571010406
|
1664
|
+
}
|
1665
|
+
},
|
1666
|
+
"center": {
|
1667
|
+
"name": "Mert Wilon",
|
1668
|
+
"stats": {
|
1669
|
+
"offense": 5.506311929076303,
|
1670
|
+
"defense": 0.8517856268035837,
|
1671
|
+
"agility": 2.877210493484114
|
1672
|
+
}
|
1673
|
+
},
|
1674
|
+
"rwing": {
|
1675
|
+
"name": "Fainnya Jula",
|
1676
|
+
"stats": {
|
1677
|
+
"offense": 3.8384744044497654,
|
1678
|
+
"defense": 1.3307994601576991,
|
1679
|
+
"agility": 2.769280398862665
|
1680
|
+
}
|
1681
|
+
},
|
1682
|
+
"ldef": {
|
1683
|
+
"name": "Jease Vivelleedr",
|
1684
|
+
"stats": {
|
1685
|
+
"offense": 2.305015036308883,
|
1686
|
+
"defense": 6.912293293576087,
|
1687
|
+
"agility": 2.514182594299252
|
1688
|
+
}
|
1689
|
+
},
|
1690
|
+
"goalie": {
|
1691
|
+
"name": "Haelek Abervid",
|
1692
|
+
"stats": {
|
1693
|
+
"offense": 4.180461748956275,
|
1694
|
+
"defense": 5.265704190768405,
|
1695
|
+
"agility": 1.7077647054942156
|
1696
|
+
}
|
1697
|
+
},
|
1698
|
+
"rdef": {
|
1699
|
+
"name": "Aglo Chelaa",
|
1700
|
+
"stats": {
|
1701
|
+
"offense": 2.8240075440065517,
|
1702
|
+
"defense": 4.6371396091217285,
|
1703
|
+
"agility": 3.6326111784739186
|
1704
|
+
}
|
1705
|
+
}
|
1706
|
+
},
|
1707
|
+
"shadows": [
|
1708
|
+
{
|
1709
|
+
"name": "Gudienna Correnteph",
|
1710
|
+
"stats": {
|
1711
|
+
"offense": 1.6007241909297911,
|
1712
|
+
"defense": -0.8233287430759778,
|
1713
|
+
"agility": 3.9178553339719335
|
1714
|
+
}
|
1715
|
+
},
|
1716
|
+
{
|
1717
|
+
"name": "Adianaul Abdenbenbe",
|
1718
|
+
"stats": {
|
1719
|
+
"offense": 2.622231757935248,
|
1720
|
+
"defense": 1.3916838237280924,
|
1721
|
+
"agility": 2.982511803991502
|
1722
|
+
}
|
1723
|
+
},
|
1724
|
+
{
|
1725
|
+
"name": "Ngue Laurta",
|
1726
|
+
"stats": {
|
1727
|
+
"offense": 2.7977517515976813,
|
1728
|
+
"defense": 0.6836266434144215,
|
1729
|
+
"agility": 1.8942566062000825
|
1730
|
+
}
|
1731
|
+
}
|
1732
|
+
]
|
1733
|
+
},
|
1734
|
+
{
|
1735
|
+
"name": "Kyoto Payphones",
|
1736
|
+
"color": "#ad8087",
|
1737
|
+
"emoji": "📳",
|
1738
|
+
"motto": "Call Me!",
|
1739
|
+
"stadium": {
|
1740
|
+
"nickname": "The Booth",
|
1741
|
+
"full_name": "Ohashi West Service for Telecommunication and Payment Arena",
|
1742
|
+
"hlockey_type": "Field"
|
1743
|
+
},
|
1744
|
+
"roster": {
|
1745
|
+
"lwing": {
|
1746
|
+
"name": "Kan Ashann",
|
1747
|
+
"stats": {
|
1748
|
+
"offense": 3.568792809218479,
|
1749
|
+
"defense": 4.728004939804556,
|
1750
|
+
"agility": 6.239207953343863
|
1751
|
+
}
|
1752
|
+
},
|
1753
|
+
"center": {
|
1754
|
+
"name": "Cla Elkia",
|
1755
|
+
"stats": {
|
1756
|
+
"offense": 1.5312307289745068,
|
1757
|
+
"defense": 0.6308669741877853,
|
1758
|
+
"agility": 0.8504913770360787
|
1759
|
+
}
|
1760
|
+
},
|
1761
|
+
"rwing": {
|
1762
|
+
"name": "Kimarrise Gronicton",
|
1763
|
+
"stats": {
|
1764
|
+
"offense": -0.5735441876541011,
|
1765
|
+
"defense": 2.560207226214294,
|
1766
|
+
"agility": 5.7994431564702555
|
1767
|
+
}
|
1768
|
+
},
|
1769
|
+
"ldef": {
|
1770
|
+
"name": "Ard Marita",
|
1771
|
+
"stats": {
|
1772
|
+
"offense": 1.035753547269708,
|
1773
|
+
"defense": 4.871559444593046,
|
1774
|
+
"agility": 0.05419584752973061
|
1775
|
+
}
|
1776
|
+
},
|
1777
|
+
"goalie": {
|
1778
|
+
"name": "Jc Ioamira",
|
1779
|
+
"stats": {
|
1780
|
+
"offense": 2.1242450472726726,
|
1781
|
+
"defense": 4.039391640209781,
|
1782
|
+
"agility": 4.039684469038201
|
1783
|
+
}
|
1784
|
+
},
|
1785
|
+
"rdef": {
|
1786
|
+
"name": "Ehaka Ideriliasi",
|
1787
|
+
"stats": {
|
1788
|
+
"offense": 4.231999546235018,
|
1789
|
+
"defense": 0.05797122425306234,
|
1790
|
+
"agility": 5.329975844079139
|
1791
|
+
}
|
1792
|
+
}
|
1793
|
+
},
|
1794
|
+
"shadows": [
|
1795
|
+
{
|
1796
|
+
"name": "Ale Idelda",
|
1797
|
+
"stats": {
|
1798
|
+
"offense": 0.4981489905185539,
|
1799
|
+
"defense": 4.628240286031058,
|
1800
|
+
"agility": 1.3533560470797492
|
1801
|
+
}
|
1802
|
+
},
|
1803
|
+
{
|
1804
|
+
"name": "Niny Roshine",
|
1805
|
+
"stats": {
|
1806
|
+
"offense": 3.180220702150386,
|
1807
|
+
"defense": 5.950376511192562,
|
1808
|
+
"agility": 2.962766271860493
|
1809
|
+
}
|
1810
|
+
},
|
1811
|
+
{
|
1812
|
+
"name": "Aldee Lon",
|
1813
|
+
"stats": {
|
1814
|
+
"offense": 7.374301228951007,
|
1815
|
+
"defense": 2.734299164446992,
|
1816
|
+
"agility": 2.3520635342680247
|
1817
|
+
},
|
1818
|
+
"mods": [
|
1819
|
+
"Nonconfrontational"
|
1820
|
+
]
|
1821
|
+
}
|
1822
|
+
]
|
1823
|
+
},
|
1824
|
+
{
|
1825
|
+
"name": "Stony Brook Reapers",
|
1826
|
+
"color": "#469a82",
|
1827
|
+
"emoji": "💀",
|
1828
|
+
"motto": "Memento Perdere",
|
1829
|
+
"stadium": {
|
1830
|
+
"full_name": "The Macabrink",
|
1831
|
+
"description": "As the reapers enter the Macabrink they gain the features of their positions psychopomp. The cost for fans to enter the rink is 1 gold coin, with an ancient money changer who you can exchange modern money for an ancient Greek coin, though not for cheap. The rink acts as an in-between space for the world of the living and the various afterlives, one set of stands is dedicated to the dead who can be seen as ghosts cheering on their team.",
|
1832
|
+
"hlockey_type": "Bone"
|
1833
|
+
},
|
1834
|
+
"roster": {
|
1835
|
+
"lwing": {
|
1836
|
+
"name": "Elmalia Giguiasina",
|
1837
|
+
"stats": {
|
1838
|
+
"offense": 4.711253107640285,
|
1839
|
+
"defense": 4.135798385541874,
|
1840
|
+
"agility": 2.5406029349371733
|
1841
|
+
}
|
1842
|
+
},
|
1843
|
+
"center": {
|
1844
|
+
"name": "Zacinadeld Asa",
|
1845
|
+
"stats": {
|
1846
|
+
"offense": 3.5600255369811924,
|
1847
|
+
"defense": 2.406320827166095,
|
1848
|
+
"agility": 4.449433221175963
|
1849
|
+
},
|
1850
|
+
"mods": [
|
1851
|
+
"Powernapper"
|
1852
|
+
]
|
1853
|
+
},
|
1854
|
+
"rwing": {
|
1855
|
+
"name": "Gamirecia Daileencia",
|
1856
|
+
"stats": {
|
1857
|
+
"offense": 4.230207687384291,
|
1858
|
+
"defense": 5.001672924848442,
|
1859
|
+
"agility": 1.6067848131517808
|
1860
|
+
}
|
1861
|
+
},
|
1862
|
+
"ldef": {
|
1863
|
+
"name": "Lucioven Megarby",
|
1864
|
+
"stats": {
|
1865
|
+
"offense": 1.5169831007603767,
|
1866
|
+
"defense": 2.213262073013745,
|
1867
|
+
"agility": 3.950012169532285
|
1868
|
+
}
|
1869
|
+
},
|
1870
|
+
"goalie": {
|
1871
|
+
"name": "Rimikkiser Arlee",
|
1872
|
+
"stats": {
|
1873
|
+
"offense": 4.456341840567566,
|
1874
|
+
"defense": 5.284221218957912,
|
1875
|
+
"agility": 5.438205413829374
|
1876
|
+
}
|
1877
|
+
},
|
1878
|
+
"rdef": {
|
1879
|
+
"name": "Bihadelden Danne",
|
1880
|
+
"stats": {
|
1881
|
+
"offense": 1.0723574526898854,
|
1882
|
+
"defense": 5.784742857776059,
|
1883
|
+
"agility": 5.017969702417885
|
1884
|
+
}
|
1885
|
+
}
|
1886
|
+
},
|
1887
|
+
"shadows": [
|
1888
|
+
{
|
1889
|
+
"name": "Ilia Boriu",
|
1890
|
+
"stats": {
|
1891
|
+
"offense": 3.8155915386058776,
|
1892
|
+
"defense": 1.8667680273609264,
|
1893
|
+
"agility": 1.558738528660895
|
1894
|
+
}
|
1895
|
+
},
|
1896
|
+
{
|
1897
|
+
"name": "Bene Beraopio",
|
1898
|
+
"stats": {
|
1899
|
+
"offense": 1.6171610610704859,
|
1900
|
+
"defense": 2.720089905058035,
|
1901
|
+
"agility": 3.202267002722999
|
1902
|
+
}
|
1903
|
+
},
|
1904
|
+
{
|
1905
|
+
"name": "Merene Phie",
|
1906
|
+
"stats": {
|
1907
|
+
"offense": 2.011006112116739,
|
1908
|
+
"defense": 5.384674986428385,
|
1909
|
+
"agility": 2.110517876207985
|
1910
|
+
}
|
1911
|
+
},
|
1912
|
+
{
|
1913
|
+
"name": "Emon Suzanna",
|
1914
|
+
"stats": {
|
1915
|
+
"offense": 2.532662497775524,
|
1916
|
+
"defense": 1.6947922026133706,
|
1917
|
+
"agility": 4.821024864976398
|
1918
|
+
}
|
1919
|
+
}
|
1920
|
+
]
|
1921
|
+
},
|
1922
|
+
{
|
1923
|
+
"name": "Sydney Thinkers",
|
1924
|
+
"color": "#d847fa",
|
1925
|
+
"emoji": "🤔",
|
1926
|
+
"motto": "Really Makes You Think 🤔",
|
1927
|
+
"stadium": {
|
1928
|
+
"nickname": "The Think Tank",
|
1929
|
+
"full_name": "Stadium 42, sponsored by Deep Thought",
|
1930
|
+
"description": "Made of condensed Thought Matter. Its form is ever changing, composed of the expectations, hopes and fears of the stadiums guests, as well as the nearby denizens of Sydney.",
|
1931
|
+
"hlockey_type": "Ice"
|
1932
|
+
},
|
1933
|
+
"roster": {
|
1934
|
+
"lwing": {
|
1935
|
+
"name": "Sebby Elen",
|
1936
|
+
"stats": {
|
1937
|
+
"offense": 2.3341011829159384,
|
1938
|
+
"defense": 2.808762224327589,
|
1939
|
+
"agility": 3.9098851153874765
|
1940
|
+
}
|
1941
|
+
},
|
1942
|
+
"center": {
|
1943
|
+
"name": "Hadja Cin",
|
1944
|
+
"stats": {
|
1945
|
+
"offense": 4.791697820940056,
|
1946
|
+
"defense": 5.2523998629838715,
|
1947
|
+
"agility": 4.836692731707975
|
1948
|
+
}
|
1949
|
+
},
|
1950
|
+
"rwing": {
|
1951
|
+
"name": "Beg Face",
|
1952
|
+
"stats": {
|
1953
|
+
"offense": 4.480719566969848,
|
1954
|
+
"defense": 0.21064829761656126,
|
1955
|
+
"agility": 4.663715538361195
|
1956
|
+
},
|
1957
|
+
"mods": [
|
1958
|
+
"Nonconfrontational"
|
1959
|
+
]
|
1960
|
+
},
|
1961
|
+
"ldef": {
|
1962
|
+
"name": "Lia Mine",
|
1963
|
+
"stats": {
|
1964
|
+
"offense": 4.030828116734088,
|
1965
|
+
"defense": 2.950779948353653,
|
1966
|
+
"agility": 2.562511944415182
|
1967
|
+
},
|
1968
|
+
"mods": [
|
1969
|
+
"Powernapper"
|
1970
|
+
]
|
1971
|
+
},
|
1972
|
+
"goalie": {
|
1973
|
+
"name": "Abdelaher Ahcelbidai",
|
1974
|
+
"stats": {
|
1975
|
+
"offense": 3.17590977717289,
|
1976
|
+
"defense": 2.08968427961367,
|
1977
|
+
"agility": 1.8618203774873132
|
1978
|
+
}
|
1979
|
+
},
|
1980
|
+
"rdef": {
|
1981
|
+
"name": "Retta Vasie",
|
1982
|
+
"stats": {
|
1983
|
+
"offense": 4.083843361358481,
|
1984
|
+
"defense": 4.038008521665563,
|
1985
|
+
"agility": -0.175379634216658
|
1986
|
+
}
|
1987
|
+
}
|
1988
|
+
},
|
1989
|
+
"shadows": [
|
1990
|
+
{
|
1991
|
+
"name": "Dene Blana",
|
1992
|
+
"stats": {
|
1993
|
+
"offense": 1.5524933939848573,
|
1994
|
+
"defense": 0.09553242470391954,
|
1995
|
+
"agility": 4.32270410903283
|
1996
|
+
}
|
1997
|
+
},
|
1998
|
+
{
|
1999
|
+
"name": "Floreana Suma",
|
2000
|
+
"stats": {
|
2001
|
+
"offense": -0.1313612718495621,
|
2002
|
+
"defense": 3.0620738655960524,
|
2003
|
+
"agility": 0.07840869151161886
|
2004
|
+
}
|
2005
|
+
},
|
2006
|
+
{
|
2007
|
+
"name": "Kemen Shiree",
|
2008
|
+
"stats": {
|
2009
|
+
"offense": 3.966713637157088,
|
2010
|
+
"defense": 3.8125149066888397,
|
2011
|
+
"agility": 1.8475419262716255
|
2012
|
+
}
|
2013
|
+
},
|
2014
|
+
{
|
2015
|
+
"name": "Geo Lad",
|
2016
|
+
"stats": {
|
2017
|
+
"offense": 4.189826264673838,
|
2018
|
+
"defense": 4.416494207680559,
|
2019
|
+
"agility": 1.3298286935782138
|
2020
|
+
}
|
2021
|
+
},
|
2022
|
+
{
|
2023
|
+
"name": "Deonda Tammeen",
|
2024
|
+
"stats": {
|
2025
|
+
"offense": 1.097497699869886,
|
2026
|
+
"defense": 3.5726563918162317,
|
2027
|
+
"agility": 0.5859062109443812
|
2028
|
+
}
|
2029
|
+
},
|
2030
|
+
{
|
2031
|
+
"name": "Ejaymaro Cara",
|
2032
|
+
"stats": {
|
2033
|
+
"offense": 1.9775407178181932,
|
2034
|
+
"defense": 3.789233789926439,
|
2035
|
+
"agility": 3.3704788526643297
|
2036
|
+
}
|
2037
|
+
}
|
2038
|
+
]
|
2039
|
+
}
|
2040
|
+
]
|
2041
|
+
}
|
2042
|
+
}
|