@valolytics/ts-valorant-dtos 11.0.1

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.
Files changed (115) hide show
  1. package/dist/dtos/agents.json +1758 -0
  2. package/dist/dtos/buddies.json +12782 -0
  3. package/dist/dtos/bundles.json +3362 -0
  4. package/dist/dtos/ceremonies.json +32 -0
  5. package/dist/dtos/competitiveTiers.json +1549 -0
  6. package/dist/dtos/contentTiers.json +57 -0
  7. package/dist/dtos/contracts.json +33904 -0
  8. package/dist/dtos/currencies.json +38 -0
  9. package/dist/dtos/events.json +106 -0
  10. package/dist/dtos/gameModes.json +399 -0
  11. package/dist/dtos/gears.json +102 -0
  12. package/dist/dtos/levelBorders.json +202 -0
  13. package/dist/dtos/maps.json +3186 -0
  14. package/dist/dtos/playerCards.json +8439 -0
  15. package/dist/dtos/playerTitles.json +2158 -0
  16. package/dist/dtos/roles.json +30 -0
  17. package/dist/dtos/seasons.json +452 -0
  18. package/dist/dtos/sprays.json +17436 -0
  19. package/dist/dtos/themes.json +2543 -0
  20. package/dist/dtos/weapons.json +55152 -0
  21. package/dist/index.d.ts +30 -0
  22. package/dist/index.d.ts.map +1 -0
  23. package/dist/index.js +64 -0
  24. package/dist/logger/index.d.ts +3 -0
  25. package/dist/logger/index.d.ts.map +1 -0
  26. package/dist/logger/index.js +8 -0
  27. package/dist/models/account.model.d.ts +9 -0
  28. package/dist/models/account.model.d.ts.map +1 -0
  29. package/dist/models/account.model.js +13 -0
  30. package/dist/models/activeShard.model.d.ts +7 -0
  31. package/dist/models/activeShard.model.d.ts.map +1 -0
  32. package/dist/models/activeShard.model.js +11 -0
  33. package/dist/models/agent.model.d.ts +59 -0
  34. package/dist/models/agent.model.d.ts.map +1 -0
  35. package/dist/models/agent.model.js +78 -0
  36. package/dist/models/buddy.model.d.ts +21 -0
  37. package/dist/models/buddy.model.d.ts.map +1 -0
  38. package/dist/models/buddy.model.js +27 -0
  39. package/dist/models/bundle.model.d.ts +15 -0
  40. package/dist/models/bundle.model.d.ts.map +1 -0
  41. package/dist/models/bundle.model.js +21 -0
  42. package/dist/models/ceremony.model.d.ts +7 -0
  43. package/dist/models/ceremony.model.d.ts.map +1 -0
  44. package/dist/models/ceremony.model.js +11 -0
  45. package/dist/models/competitiveTier.model.d.ts +21 -0
  46. package/dist/models/competitiveTier.model.d.ts.map +1 -0
  47. package/dist/models/competitiveTier.model.js +27 -0
  48. package/dist/models/contentTier.model.d.ts +13 -0
  49. package/dist/models/contentTier.model.d.ts.map +1 -0
  50. package/dist/models/contentTier.model.js +17 -0
  51. package/dist/models/contract.model.d.ts +43 -0
  52. package/dist/models/contract.model.d.ts.map +1 -0
  53. package/dist/models/contract.model.js +55 -0
  54. package/dist/models/currency.model.d.ts +10 -0
  55. package/dist/models/currency.model.d.ts.map +1 -0
  56. package/dist/models/currency.model.js +14 -0
  57. package/dist/models/event.model.d.ts +10 -0
  58. package/dist/models/event.model.d.ts.map +1 -0
  59. package/dist/models/event.model.js +14 -0
  60. package/dist/models/gameMode.model.d.ts +29 -0
  61. package/dist/models/gameMode.model.d.ts.map +1 -0
  62. package/dist/models/gameMode.model.js +37 -0
  63. package/dist/models/gear.model.d.ts +18 -0
  64. package/dist/models/gear.model.d.ts.map +1 -0
  65. package/dist/models/gear.model.js +24 -0
  66. package/dist/models/levelBorder.model.d.ts +10 -0
  67. package/dist/models/levelBorder.model.d.ts.map +1 -0
  68. package/dist/models/levelBorder.model.js +14 -0
  69. package/dist/models/location.model.d.ts +15 -0
  70. package/dist/models/location.model.d.ts.map +1 -0
  71. package/dist/models/location.model.js +28 -0
  72. package/dist/models/map.model.d.ts +31 -0
  73. package/dist/models/map.model.d.ts.map +1 -0
  74. package/dist/models/map.model.js +47 -0
  75. package/dist/models/match.model.d.ts +648 -0
  76. package/dist/models/match.model.d.ts.map +1 -0
  77. package/dist/models/match.model.js +506 -0
  78. package/dist/models/matchlist.model.d.ts +13 -0
  79. package/dist/models/matchlist.model.d.ts.map +1 -0
  80. package/dist/models/matchlist.model.js +22 -0
  81. package/dist/models/playerCard.model.d.ts +14 -0
  82. package/dist/models/playerCard.model.d.ts.map +1 -0
  83. package/dist/models/playerCard.model.js +18 -0
  84. package/dist/models/playerTitle.model.d.ts +9 -0
  85. package/dist/models/playerTitle.model.d.ts.map +1 -0
  86. package/dist/models/playerTitle.model.js +13 -0
  87. package/dist/models/role.model.d.ts +9 -0
  88. package/dist/models/role.model.d.ts.map +1 -0
  89. package/dist/models/role.model.js +13 -0
  90. package/dist/models/season.model.d.ts +11 -0
  91. package/dist/models/season.model.d.ts.map +1 -0
  92. package/dist/models/season.model.js +15 -0
  93. package/dist/models/shopData.model.d.ts +19 -0
  94. package/dist/models/shopData.model.d.ts.map +1 -0
  95. package/dist/models/shopData.model.js +25 -0
  96. package/dist/models/spray.model.d.ts +26 -0
  97. package/dist/models/spray.model.d.ts.map +1 -0
  98. package/dist/models/spray.model.js +32 -0
  99. package/dist/models/theme.model.d.ts +9 -0
  100. package/dist/models/theme.model.d.ts.map +1 -0
  101. package/dist/models/theme.model.js +13 -0
  102. package/dist/models/version.model.d.ts +12 -0
  103. package/dist/models/version.model.d.ts.map +1 -0
  104. package/dist/models/version.model.js +16 -0
  105. package/dist/models/weapon.model.d.ts +100 -0
  106. package/dist/models/weapon.model.d.ts.map +1 -0
  107. package/dist/models/weapon.model.js +126 -0
  108. package/dist/scripts/fetch-data.d.ts +2 -0
  109. package/dist/scripts/fetch-data.d.ts.map +1 -0
  110. package/dist/scripts/fetch-data.js +75 -0
  111. package/dist/services/dtos.service.d.ts +184 -0
  112. package/dist/services/dtos.service.d.ts.map +1 -0
  113. package/dist/services/dtos.service.js +274 -0
  114. package/dist/tsconfig.tsbuildinfo +1 -0
  115. package/package.json +32 -0
@@ -0,0 +1,3186 @@
1
+ {
2
+ "7eaecc1b-4337-bbf6-6ab9-04b8f06b3319": {
3
+ "uuid": "7eaecc1b-4337-bbf6-6ab9-04b8f06b3319",
4
+ "displayName": "Ascent",
5
+ "narrativeDescription": null,
6
+ "tacticalDescription": "A/B Sites",
7
+ "coordinates": "45°26'BF'N,12°20'Q'E",
8
+ "displayIcon": "https://media.valorant-api.com/maps/7eaecc1b-4337-bbf6-6ab9-04b8f06b3319/displayicon.png",
9
+ "listViewIcon": "https://media.valorant-api.com/maps/7eaecc1b-4337-bbf6-6ab9-04b8f06b3319/listviewicon.png",
10
+ "listViewIconTall": "https://media.valorant-api.com/maps/7eaecc1b-4337-bbf6-6ab9-04b8f06b3319/listviewicontall.png",
11
+ "splash": "https://media.valorant-api.com/maps/7eaecc1b-4337-bbf6-6ab9-04b8f06b3319/splash.png",
12
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/7eaecc1b-4337-bbf6-6ab9-04b8f06b3319/stylizedbackgroundimage.png",
13
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/7eaecc1b-4337-bbf6-6ab9-04b8f06b3319/premierbackgroundimage.png",
14
+ "assetPath": "ShooterGame/Content/Maps/Ascent/Ascent_PrimaryAsset",
15
+ "mapUrl": "/Game/Maps/Ascent/Ascent",
16
+ "xMultiplier": 0.00007,
17
+ "yMultiplier": -0.00007,
18
+ "xScalarToAdd": 0.813895,
19
+ "yScalarToAdd": 0.573242,
20
+ "callouts": [
21
+ {
22
+ "regionName": "Tree",
23
+ "superRegionName": "A",
24
+ "location": {
25
+ "x": 3980.9062,
26
+ "y": -5938.758
27
+ }
28
+ },
29
+ {
30
+ "regionName": "Lobby",
31
+ "superRegionName": "A",
32
+ "location": {
33
+ "x": 4489.032,
34
+ "y": -3014.0515
35
+ }
36
+ },
37
+ {
38
+ "regionName": "Main",
39
+ "superRegionName": "A",
40
+ "location": {
41
+ "x": 5321.6206,
42
+ "y": -4710.1274
43
+ }
44
+ },
45
+ {
46
+ "regionName": "Window",
47
+ "superRegionName": "A",
48
+ "location": {
49
+ "x": 4023.0244,
50
+ "y": -8180.692
51
+ }
52
+ },
53
+ {
54
+ "regionName": "Site",
55
+ "superRegionName": "A",
56
+ "location": {
57
+ "x": 6153.585,
58
+ "y": -6626.2114
59
+ }
60
+ },
61
+ {
62
+ "regionName": "Spawn",
63
+ "superRegionName": "Attacker Side",
64
+ "location": {
65
+ "x": 60,
66
+ "y": 50
67
+ }
68
+ },
69
+ {
70
+ "regionName": "Lobby",
71
+ "superRegionName": "B",
72
+ "location": {
73
+ "x": -1490.5864,
74
+ "y": -1389.9706
75
+ }
76
+ },
77
+ {
78
+ "regionName": "Main",
79
+ "superRegionName": "B",
80
+ "location": {
81
+ "x": -1983.6713,
82
+ "y": -5840.8125
83
+ }
84
+ },
85
+ {
86
+ "regionName": "Boat House",
87
+ "superRegionName": "B",
88
+ "location": {
89
+ "x": -4484.774,
90
+ "y": -7763.3584
91
+ }
92
+ },
93
+ {
94
+ "regionName": "Bottom",
95
+ "superRegionName": "Mid",
96
+ "location": {
97
+ "x": 1122.2262,
98
+ "y": -5951.704
99
+ }
100
+ },
101
+ {
102
+ "regionName": "Site",
103
+ "superRegionName": "B",
104
+ "location": {
105
+ "x": -2344.065,
106
+ "y": -7548.511
107
+ }
108
+ },
109
+ {
110
+ "regionName": "Catwalk",
111
+ "superRegionName": "Mid",
112
+ "location": {
113
+ "x": 2315.7944,
114
+ "y": -4127.2554
115
+ }
116
+ },
117
+ {
118
+ "regionName": "Cubby",
119
+ "superRegionName": "Mid",
120
+ "location": {
121
+ "x": 3387.3167,
122
+ "y": -5129.764
123
+ }
124
+ },
125
+ {
126
+ "regionName": "Spawn",
127
+ "superRegionName": "Defender Side",
128
+ "location": {
129
+ "x": 1995.2354,
130
+ "y": -9744.923
131
+ }
132
+ },
133
+ {
134
+ "regionName": "Garden",
135
+ "superRegionName": "A",
136
+ "location": {
137
+ "x": 3773.6653,
138
+ "y": -7551.3535
139
+ }
140
+ },
141
+ {
142
+ "regionName": "Market",
143
+ "superRegionName": "Mid",
144
+ "location": {
145
+ "x": 1089.1044,
146
+ "y": -7363.1914
147
+ }
148
+ },
149
+ {
150
+ "regionName": "Courtyard",
151
+ "superRegionName": "Mid",
152
+ "location": {
153
+ "x": 1222.7029,
154
+ "y": -4586.6
155
+ }
156
+ },
157
+ {
158
+ "regionName": "Link",
159
+ "superRegionName": "Mid",
160
+ "location": {
161
+ "x": -632.0929,
162
+ "y": -4280.2573
163
+ }
164
+ },
165
+ {
166
+ "regionName": "Pizza",
167
+ "superRegionName": "Mid",
168
+ "location": {
169
+ "x": 1801.5667,
170
+ "y": -7262.1704
171
+ }
172
+ },
173
+ {
174
+ "regionName": "Rafters",
175
+ "superRegionName": "A",
176
+ "location": {
177
+ "x": 6129.893,
178
+ "y": -8210
179
+ }
180
+ },
181
+ {
182
+ "regionName": "Top",
183
+ "superRegionName": "Mid",
184
+ "location": {
185
+ "x": 2753.9297,
186
+ "y": -2129.6155
187
+ }
188
+ },
189
+ {
190
+ "regionName": "Wine",
191
+ "superRegionName": "A",
192
+ "location": {
193
+ "x": 7358.7407,
194
+ "y": -4689.2705
195
+ }
196
+ }
197
+ ]
198
+ },
199
+ "d960549e-485c-e861-8d71-aa9d1aed12a2": {
200
+ "uuid": "d960549e-485c-e861-8d71-aa9d1aed12a2",
201
+ "displayName": "Split",
202
+ "narrativeDescription": null,
203
+ "tacticalDescription": "A/B Sites",
204
+ "coordinates": "35°41'CD'N,139°41'WX'E",
205
+ "displayIcon": "https://media.valorant-api.com/maps/d960549e-485c-e861-8d71-aa9d1aed12a2/displayicon.png",
206
+ "listViewIcon": "https://media.valorant-api.com/maps/d960549e-485c-e861-8d71-aa9d1aed12a2/listviewicon.png",
207
+ "listViewIconTall": "https://media.valorant-api.com/maps/d960549e-485c-e861-8d71-aa9d1aed12a2/listviewicontall.png",
208
+ "splash": "https://media.valorant-api.com/maps/d960549e-485c-e861-8d71-aa9d1aed12a2/splash.png",
209
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/d960549e-485c-e861-8d71-aa9d1aed12a2/stylizedbackgroundimage.png",
210
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/d960549e-485c-e861-8d71-aa9d1aed12a2/premierbackgroundimage.png",
211
+ "assetPath": "ShooterGame/Content/Maps/Bonsai/Bonsai_PrimaryAsset",
212
+ "mapUrl": "/Game/Maps/Bonsai/Bonsai",
213
+ "xMultiplier": 0.000078,
214
+ "yMultiplier": -0.000078,
215
+ "xScalarToAdd": 0.842188,
216
+ "yScalarToAdd": 0.697578,
217
+ "callouts": [
218
+ {
219
+ "regionName": "Back",
220
+ "superRegionName": "A",
221
+ "location": {
222
+ "x": 7345.049,
223
+ "y": -7858.0405
224
+ }
225
+ },
226
+ {
227
+ "regionName": "Lobby",
228
+ "superRegionName": "A",
229
+ "location": {
230
+ "x": 6814.217,
231
+ "y": -2457.7468
232
+ }
233
+ },
234
+ {
235
+ "regionName": "Main",
236
+ "superRegionName": "A",
237
+ "location": {
238
+ "x": 6279.9795,
239
+ "y": -4492.833
240
+ }
241
+ },
242
+ {
243
+ "regionName": "Rafters",
244
+ "superRegionName": "A",
245
+ "location": {
246
+ "x": 5434.726,
247
+ "y": -6258.442
248
+ }
249
+ },
250
+ {
251
+ "regionName": "Ramps",
252
+ "superRegionName": "A",
253
+ "location": {
254
+ "x": 4330,
255
+ "y": -4750
256
+ }
257
+ },
258
+ {
259
+ "regionName": "Screens",
260
+ "superRegionName": "A",
261
+ "location": {
262
+ "x": 5648.7144,
263
+ "y": -8868.611
264
+ }
265
+ },
266
+ {
267
+ "regionName": "Sewer",
268
+ "superRegionName": "A",
269
+ "location": {
270
+ "x": 4862.6064,
271
+ "y": -2367.2578
272
+ }
273
+ },
274
+ {
275
+ "regionName": "Site",
276
+ "superRegionName": "A",
277
+ "location": {
278
+ "x": 6588.6597,
279
+ "y": -6761.131
280
+ }
281
+ },
282
+ {
283
+ "regionName": "Tower",
284
+ "superRegionName": "A",
285
+ "location": {
286
+ "x": 4636.7925,
287
+ "y": -6748.2334
288
+ }
289
+ },
290
+ {
291
+ "regionName": "Spawn",
292
+ "superRegionName": "Attacker Side",
293
+ "location": {
294
+ "x": 1901.97,
295
+ "y": 59.588867
296
+ }
297
+ },
298
+ {
299
+ "regionName": "Alley",
300
+ "superRegionName": "B",
301
+ "location": {
302
+ "x": -1158.0048,
303
+ "y": -8066.301
304
+ }
305
+ },
306
+ {
307
+ "regionName": "Back",
308
+ "superRegionName": "B",
309
+ "location": {
310
+ "x": -3107.181,
311
+ "y": -7417.2607
312
+ }
313
+ },
314
+ {
315
+ "regionName": "Link",
316
+ "superRegionName": "B",
317
+ "location": {
318
+ "x": -27.670135,
319
+ "y": -2369.784
320
+ }
321
+ },
322
+ {
323
+ "regionName": "Garage",
324
+ "superRegionName": "B",
325
+ "location": {
326
+ "x": -2190.7827,
327
+ "y": -3848.0293
328
+ }
329
+ },
330
+ {
331
+ "regionName": "Rafters",
332
+ "superRegionName": "B",
333
+ "location": {
334
+ "x": -637.1397,
335
+ "y": -6070.6167
336
+ }
337
+ },
338
+ {
339
+ "regionName": "Site",
340
+ "superRegionName": "B",
341
+ "location": {
342
+ "x": -2167.2456,
343
+ "y": -6264.7715
344
+ }
345
+ },
346
+ {
347
+ "regionName": "Stairs",
348
+ "superRegionName": "B",
349
+ "location": {
350
+ "x": 1061.493,
351
+ "y": -6760.976
352
+ }
353
+ },
354
+ {
355
+ "regionName": "Tower",
356
+ "superRegionName": "B",
357
+ "location": {
358
+ "x": 168.89589,
359
+ "y": -5290.194
360
+ }
361
+ },
362
+ {
363
+ "regionName": "Lobby",
364
+ "superRegionName": "B",
365
+ "location": {
366
+ "x": -1271.6421,
367
+ "y": -1983.6248
368
+ }
369
+ },
370
+ {
371
+ "regionName": "Spawn",
372
+ "superRegionName": "Defender Side",
373
+ "location": {
374
+ "x": 2142.3635,
375
+ "y": -8964.969
376
+ }
377
+ },
378
+ {
379
+ "regionName": "Bottom",
380
+ "superRegionName": "Mid",
381
+ "location": {
382
+ "x": 1922.6552,
383
+ "y": -2899.4626
384
+ }
385
+ },
386
+ {
387
+ "regionName": "Mail",
388
+ "superRegionName": "Mid",
389
+ "location": {
390
+ "x": 1155.3333,
391
+ "y": -4808.6436
392
+ }
393
+ },
394
+ {
395
+ "regionName": "Top",
396
+ "superRegionName": "Mid",
397
+ "location": {
398
+ "x": 2021.9575,
399
+ "y": -4596.936
400
+ }
401
+ },
402
+ {
403
+ "regionName": "Vent",
404
+ "superRegionName": "Mid",
405
+ "location": {
406
+ "x": 3155.1648,
407
+ "y": -5338.5215
408
+ }
409
+ }
410
+ ]
411
+ },
412
+ "b529448b-4d60-346e-e89e-00a4c527a405": {
413
+ "uuid": "b529448b-4d60-346e-e89e-00a4c527a405",
414
+ "displayName": "Fracture",
415
+ "narrativeDescription": null,
416
+ "tacticalDescription": "A/B Sites",
417
+ "coordinates": "35°48'BI\"N 106°08'YQ\"W",
418
+ "displayIcon": "https://media.valorant-api.com/maps/b529448b-4d60-346e-e89e-00a4c527a405/displayicon.png",
419
+ "listViewIcon": "https://media.valorant-api.com/maps/b529448b-4d60-346e-e89e-00a4c527a405/listviewicon.png",
420
+ "listViewIconTall": "https://media.valorant-api.com/maps/b529448b-4d60-346e-e89e-00a4c527a405/listviewicontall.png",
421
+ "splash": "https://media.valorant-api.com/maps/b529448b-4d60-346e-e89e-00a4c527a405/splash.png",
422
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/b529448b-4d60-346e-e89e-00a4c527a405/stylizedbackgroundimage.png",
423
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/b529448b-4d60-346e-e89e-00a4c527a405/premierbackgroundimage.png",
424
+ "assetPath": "ShooterGame/Content/Maps/Canyon/Canyon_PrimaryAsset",
425
+ "mapUrl": "/Game/Maps/Canyon/Canyon",
426
+ "xMultiplier": 0.000078,
427
+ "yMultiplier": -0.000078,
428
+ "xScalarToAdd": 0.556952,
429
+ "yScalarToAdd": 1.155886,
430
+ "callouts": [
431
+ {
432
+ "regionName": "Bridge",
433
+ "superRegionName": "Attacker Side",
434
+ "location": {
435
+ "x": 13204,
436
+ "y": -756
437
+ }
438
+ },
439
+ {
440
+ "regionName": "Bench",
441
+ "superRegionName": "B",
442
+ "location": {
443
+ "x": 11473,
444
+ "y": -2897
445
+ }
446
+ },
447
+ {
448
+ "regionName": "Arcade",
449
+ "superRegionName": "B",
450
+ "location": {
451
+ "x": 10181,
452
+ "y": -4179
453
+ }
454
+ },
455
+ {
456
+ "regionName": "Tower",
457
+ "superRegionName": "B",
458
+ "location": {
459
+ "x": 9155,
460
+ "y": -5601
461
+ }
462
+ },
463
+ {
464
+ "regionName": "Site",
465
+ "superRegionName": "B",
466
+ "location": {
467
+ "x": 8178,
468
+ "y": -5942
469
+ }
470
+ },
471
+ {
472
+ "regionName": "Generator",
473
+ "superRegionName": "B",
474
+ "location": {
475
+ "x": 8362,
476
+ "y": -3380
477
+ }
478
+ },
479
+ {
480
+ "regionName": "Link",
481
+ "superRegionName": "B",
482
+ "location": {
483
+ "x": 9198,
484
+ "y": -2741
485
+ }
486
+ },
487
+ {
488
+ "regionName": "Canteen",
489
+ "superRegionName": "B",
490
+ "location": {
491
+ "x": 7111,
492
+ "y": -3138
493
+ }
494
+ },
495
+ {
496
+ "regionName": "Link",
497
+ "superRegionName": "A",
498
+ "location": {
499
+ "x": 8578,
500
+ "y": 1302
501
+ }
502
+ },
503
+ {
504
+ "regionName": "Spawn",
505
+ "superRegionName": "Defender Side",
506
+ "location": {
507
+ "x": 9156,
508
+ "y": -677
509
+ }
510
+ },
511
+ {
512
+ "regionName": "Main",
513
+ "superRegionName": "B",
514
+ "location": {
515
+ "x": 5967,
516
+ "y": -5343
517
+ }
518
+ },
519
+ {
520
+ "regionName": "Tree",
521
+ "superRegionName": "B",
522
+ "location": {
523
+ "x": 4965,
524
+ "y": -4109
525
+ }
526
+ },
527
+ {
528
+ "regionName": "Tunnel",
529
+ "superRegionName": "B",
530
+ "location": {
531
+ "x": 7402,
532
+ "y": -4058
533
+ }
534
+ },
535
+ {
536
+ "regionName": "Hall",
537
+ "superRegionName": "A",
538
+ "location": {
539
+ "x": 5063.5464,
540
+ "y": 2057.6648
541
+ }
542
+ },
543
+ {
544
+ "regionName": "Door",
545
+ "superRegionName": "A",
546
+ "location": {
547
+ "x": 5807.855,
548
+ "y": 1940.4603
549
+ }
550
+ },
551
+ {
552
+ "regionName": "Rope",
553
+ "superRegionName": "A",
554
+ "location": {
555
+ "x": 6638.828,
556
+ "y": 1052.6461
557
+ }
558
+ },
559
+ {
560
+ "regionName": "Main",
561
+ "superRegionName": "A",
562
+ "location": {
563
+ "x": 5878.792,
564
+ "y": 3450.9639
565
+ }
566
+ },
567
+ {
568
+ "regionName": "Site",
569
+ "superRegionName": "A",
570
+ "location": {
571
+ "x": 8125.7627,
572
+ "y": 3373.7861
573
+ }
574
+ },
575
+ {
576
+ "regionName": "Drop",
577
+ "superRegionName": "A",
578
+ "location": {
579
+ "x": 9306.803,
580
+ "y": 2826.1626
581
+ }
582
+ },
583
+ {
584
+ "regionName": "Dish",
585
+ "superRegionName": "A",
586
+ "location": {
587
+ "x": 11296.665,
588
+ "y": 1391.7144
589
+ }
590
+ },
591
+ {
592
+ "regionName": "Gate",
593
+ "superRegionName": "A",
594
+ "location": {
595
+ "x": 12962,
596
+ "y": 1565
597
+ }
598
+ },
599
+ {
600
+ "regionName": "Spawn",
601
+ "superRegionName": "Attacker Side",
602
+ "location": {
603
+ "x": 4345.554,
604
+ "y": -948.4505
605
+ }
606
+ }
607
+ ]
608
+ },
609
+ "2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba": {
610
+ "uuid": "2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba",
611
+ "displayName": "Bind",
612
+ "narrativeDescription": null,
613
+ "tacticalDescription": "A/B Sites",
614
+ "coordinates": "34°2'A'N,6°51'Z'W",
615
+ "displayIcon": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/displayicon.png",
616
+ "listViewIcon": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/listviewicon.png",
617
+ "listViewIconTall": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/listviewicontall.png",
618
+ "splash": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/splash.png",
619
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/stylizedbackgroundimage.png",
620
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/premierbackgroundimage.png",
621
+ "assetPath": "ShooterGame/Content/Maps/Duality/Duality_PrimaryAsset",
622
+ "mapUrl": "/Game/Maps/Duality/Duality",
623
+ "xMultiplier": 0.000059,
624
+ "yMultiplier": -0.000059,
625
+ "xScalarToAdd": 0.576941,
626
+ "yScalarToAdd": 0.967566,
627
+ "callouts": [
628
+ {
629
+ "regionName": "Exit",
630
+ "superRegionName": "A",
631
+ "location": {
632
+ "x": 7550.4106,
633
+ "y": 5874.497
634
+ }
635
+ },
636
+ {
637
+ "regionName": "Link",
638
+ "superRegionName": "A",
639
+ "location": {
640
+ "x": 6365.635,
641
+ "y": -1007.0208
642
+ }
643
+ },
644
+ {
645
+ "regionName": "Lobby",
646
+ "superRegionName": "A",
647
+ "location": {
648
+ "x": 6113.239,
649
+ "y": 3158.823
650
+ }
651
+ },
652
+ {
653
+ "regionName": "Short",
654
+ "superRegionName": "A",
655
+ "location": {
656
+ "x": 7983.3467,
657
+ "y": 803.96063
658
+ }
659
+ },
660
+ {
661
+ "regionName": "Site",
662
+ "superRegionName": "A",
663
+ "location": {
664
+ "x": 10747.902,
665
+ "y": 2664.4436
666
+ }
667
+ },
668
+ {
669
+ "regionName": "Teleporter",
670
+ "superRegionName": "A",
671
+ "location": {
672
+ "x": 9432.303,
673
+ "y": 489.8803
674
+ }
675
+ },
676
+ {
677
+ "regionName": "Spawn",
678
+ "superRegionName": "Attacker Side",
679
+ "location": {
680
+ "x": 161.64832,
681
+ "y": 77.51108
682
+ }
683
+ },
684
+ {
685
+ "regionName": "Exit",
686
+ "superRegionName": "B",
687
+ "location": {
688
+ "x": 8921.412,
689
+ "y": -1763.2295
690
+ }
691
+ },
692
+ {
693
+ "regionName": "Hall",
694
+ "superRegionName": "B",
695
+ "location": {
696
+ "x": 12981.879,
697
+ "y": -4941.7544
698
+ }
699
+ },
700
+ {
701
+ "regionName": "Link",
702
+ "superRegionName": "B",
703
+ "location": {
704
+ "x": 6361.57,
705
+ "y": -2621.1829
706
+ }
707
+ },
708
+ {
709
+ "regionName": "Fountain",
710
+ "superRegionName": "B",
711
+ "location": {
712
+ "x": 5737.1484,
713
+ "y": -5390.446
714
+ }
715
+ },
716
+ {
717
+ "regionName": "Long",
718
+ "superRegionName": "B",
719
+ "location": {
720
+ "x": 7666.669,
721
+ "y": -6512.8022
722
+ }
723
+ },
724
+ {
725
+ "regionName": "Short",
726
+ "superRegionName": "B",
727
+ "location": {
728
+ "x": 7424.1313,
729
+ "y": -3056.4531
730
+ }
731
+ },
732
+ {
733
+ "regionName": "Site",
734
+ "superRegionName": "B",
735
+ "location": {
736
+ "x": 11108.108,
737
+ "y": -4831.4585
738
+ }
739
+ },
740
+ {
741
+ "regionName": "Teleporter",
742
+ "superRegionName": "B",
743
+ "location": {
744
+ "x": 9027.776,
745
+ "y": -7223.8066
746
+ }
747
+ },
748
+ {
749
+ "regionName": "Window",
750
+ "superRegionName": "B",
751
+ "location": {
752
+ "x": 8826.788,
753
+ "y": -4309.4116
754
+ }
755
+ },
756
+ {
757
+ "regionName": "Bath",
758
+ "superRegionName": "A",
759
+ "location": {
760
+ "x": 9106.541,
761
+ "y": 4449.6587
762
+ }
763
+ },
764
+ {
765
+ "regionName": "Cave",
766
+ "superRegionName": "Attacker Side",
767
+ "location": {
768
+ "x": 3920.3887,
769
+ "y": 256.94193
770
+ }
771
+ },
772
+ {
773
+ "regionName": "Cubby",
774
+ "superRegionName": "A",
775
+ "location": {
776
+ "x": 8605.168,
777
+ "y": 174.89832
778
+ }
779
+ },
780
+ {
781
+ "regionName": "Spawn",
782
+ "superRegionName": "Defender Side",
783
+ "location": {
784
+ "x": 14641.918,
785
+ "y": -1017.6743
786
+ }
787
+ },
788
+ {
789
+ "regionName": "Elbow",
790
+ "superRegionName": "B",
791
+ "location": {
792
+ "x": 11212.901,
793
+ "y": -7095.3335
794
+ }
795
+ },
796
+ {
797
+ "regionName": "Garden",
798
+ "superRegionName": "B",
799
+ "location": {
800
+ "x": 9144.103,
801
+ "y": -5598.1274
802
+ }
803
+ },
804
+ {
805
+ "regionName": "Lamps",
806
+ "superRegionName": "A",
807
+ "location": {
808
+ "x": 10649.471,
809
+ "y": 79.904434
810
+ }
811
+ },
812
+ {
813
+ "regionName": "Tower",
814
+ "superRegionName": "A",
815
+ "location": {
816
+ "x": 12872.583,
817
+ "y": 2556.7708
818
+ }
819
+ }
820
+ ]
821
+ },
822
+ "2fb9a4fd-47b8-4e7d-a969-74b4046ebd53": {
823
+ "uuid": "2fb9a4fd-47b8-4e7d-a969-74b4046ebd53",
824
+ "displayName": "Breeze",
825
+ "narrativeDescription": null,
826
+ "tacticalDescription": "A/B Sites",
827
+ "coordinates": "26°11'AG\"N 71°10'WY\"W",
828
+ "displayIcon": "https://media.valorant-api.com/maps/2fb9a4fd-47b8-4e7d-a969-74b4046ebd53/displayicon.png",
829
+ "listViewIcon": "https://media.valorant-api.com/maps/2fb9a4fd-47b8-4e7d-a969-74b4046ebd53/listviewicon.png",
830
+ "listViewIconTall": "https://media.valorant-api.com/maps/2fb9a4fd-47b8-4e7d-a969-74b4046ebd53/listviewicontall.png",
831
+ "splash": "https://media.valorant-api.com/maps/2fb9a4fd-47b8-4e7d-a969-74b4046ebd53/splash.png",
832
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/2fb9a4fd-47b8-4e7d-a969-74b4046ebd53/stylizedbackgroundimage.png",
833
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/2fb9a4fd-47b8-4e7d-a969-74b4046ebd53/premierbackgroundimage.png",
834
+ "assetPath": "ShooterGame/Content/Maps/Foxtrot/Foxtrot_PrimaryAsset",
835
+ "mapUrl": "/Game/Maps/Foxtrot/Foxtrot",
836
+ "xMultiplier": 0.00007,
837
+ "yMultiplier": -0.00007,
838
+ "xScalarToAdd": 0.465123,
839
+ "yScalarToAdd": 0.833078,
840
+ "callouts": [
841
+ {
842
+ "regionName": "Hall",
843
+ "superRegionName": "A",
844
+ "location": {
845
+ "x": 4825,
846
+ "y": 2550
847
+ }
848
+ },
849
+ {
850
+ "regionName": "Bridge",
851
+ "superRegionName": "A",
852
+ "location": {
853
+ "x": 8400,
854
+ "y": 3525
855
+ }
856
+ },
857
+ {
858
+ "regionName": "Spawn",
859
+ "superRegionName": "Defender Side",
860
+ "location": {
861
+ "x": 8900,
862
+ "y": 3525
863
+ }
864
+ },
865
+ {
866
+ "regionName": "Arches",
867
+ "superRegionName": "Defender Side",
868
+ "location": {
869
+ "x": 9400,
870
+ "y": -1300
871
+ }
872
+ },
873
+ {
874
+ "regionName": "Wood Doors",
875
+ "superRegionName": "Mid",
876
+ "location": {
877
+ "x": 4825,
878
+ "y": 2550
879
+ }
880
+ },
881
+ {
882
+ "regionName": "Pillar",
883
+ "superRegionName": "Mid",
884
+ "location": {
885
+ "x": 4175,
886
+ "y": 475
887
+ }
888
+ },
889
+ {
890
+ "regionName": "Top",
891
+ "superRegionName": "Mid",
892
+ "location": {
893
+ "x": 6175,
894
+ "y": 525
895
+ }
896
+ },
897
+ {
898
+ "regionName": "Nest",
899
+ "superRegionName": "Mid",
900
+ "location": {
901
+ "x": 8650,
902
+ "y": 275
903
+ }
904
+ },
905
+ {
906
+ "regionName": "Window",
907
+ "superRegionName": "B",
908
+ "location": {
909
+ "x": 2225,
910
+ "y": -4175
911
+ }
912
+ },
913
+ {
914
+ "regionName": "Main",
915
+ "superRegionName": "B",
916
+ "location": {
917
+ "x": 3550,
918
+ "y": -4450
919
+ }
920
+ },
921
+ {
922
+ "regionName": "Snake",
923
+ "superRegionName": "Attacker Side",
924
+ "location": {
925
+ "x": 550,
926
+ "y": -2450
927
+ }
928
+ },
929
+ {
930
+ "regionName": "Elbow",
931
+ "superRegionName": "B",
932
+ "location": {
933
+ "x": 4675,
934
+ "y": -2900
935
+ }
936
+ },
937
+ {
938
+ "regionName": "Site",
939
+ "superRegionName": "B",
940
+ "location": {
941
+ "x": 6450,
942
+ "y": -5650
943
+ }
944
+ },
945
+ {
946
+ "regionName": "Tunnel",
947
+ "superRegionName": "B",
948
+ "location": {
949
+ "x": 6450,
950
+ "y": -1450
951
+ }
952
+ },
953
+ {
954
+ "regionName": "Switch",
955
+ "superRegionName": "A",
956
+ "location": {
957
+ "x": 6425,
958
+ "y": 3050
959
+ }
960
+ },
961
+ {
962
+ "regionName": "Chute",
963
+ "superRegionName": "Mid",
964
+ "location": {
965
+ "x": 3875,
966
+ "y": 1800
967
+ }
968
+ },
969
+ {
970
+ "regionName": "Back",
971
+ "superRegionName": "B",
972
+ "location": {
973
+ "x": 7550,
974
+ "y": -5675
975
+ }
976
+ },
977
+ {
978
+ "regionName": "Wall",
979
+ "superRegionName": "B",
980
+ "location": {
981
+ "x": 8550,
982
+ "y": -3000
983
+ }
984
+ },
985
+ {
986
+ "regionName": "Rope",
987
+ "superRegionName": "A",
988
+ "location": {
989
+ "x": 3100,
990
+ "y": 2550
991
+ }
992
+ },
993
+ {
994
+ "regionName": "Cannon",
995
+ "superRegionName": "Mid",
996
+ "location": {
997
+ "x": 2900,
998
+ "y": -1850
999
+ }
1000
+ },
1001
+ {
1002
+ "regionName": "Metal Doors",
1003
+ "superRegionName": "A",
1004
+ "location": {
1005
+ "x": 6825,
1006
+ "y": 2550
1007
+ }
1008
+ },
1009
+ {
1010
+ "regionName": "Bottom",
1011
+ "superRegionName": "Mid",
1012
+ "location": {
1013
+ "x": 1575,
1014
+ "y": 475
1015
+ }
1016
+ },
1017
+ {
1018
+ "regionName": "Lobby",
1019
+ "superRegionName": "A",
1020
+ "location": {
1021
+ "x": -1250,
1022
+ "y": 3400
1023
+ }
1024
+ },
1025
+ {
1026
+ "regionName": "Shop",
1027
+ "superRegionName": "A",
1028
+ "location": {
1029
+ "x": 2150,
1030
+ "y": 4250
1031
+ }
1032
+ },
1033
+ {
1034
+ "regionName": "Site",
1035
+ "superRegionName": "A",
1036
+ "location": {
1037
+ "x": 4825,
1038
+ "y": 6325
1039
+ }
1040
+ },
1041
+ {
1042
+ "regionName": "Pyramids",
1043
+ "superRegionName": "A",
1044
+ "location": {
1045
+ "x": 5200,
1046
+ "y": 5450
1047
+ }
1048
+ },
1049
+ {
1050
+ "regionName": "Spawn",
1051
+ "superRegionName": "Attacker Side",
1052
+ "location": {
1053
+ "x": -575,
1054
+ "y": -450
1055
+ }
1056
+ }
1057
+ ]
1058
+ },
1059
+ "690b3ed2-4dff-945b-8223-6da834e30d24": {
1060
+ "uuid": "690b3ed2-4dff-945b-8223-6da834e30d24",
1061
+ "displayName": "District",
1062
+ "narrativeDescription": null,
1063
+ "tacticalDescription": null,
1064
+ "coordinates": null,
1065
+ "displayIcon": "https://media.valorant-api.com/maps/690b3ed2-4dff-945b-8223-6da834e30d24/displayicon.png",
1066
+ "listViewIcon": "https://media.valorant-api.com/maps/690b3ed2-4dff-945b-8223-6da834e30d24/listviewicon.png",
1067
+ "listViewIconTall": "https://media.valorant-api.com/maps/690b3ed2-4dff-945b-8223-6da834e30d24/listviewicontall.png",
1068
+ "splash": "https://media.valorant-api.com/maps/690b3ed2-4dff-945b-8223-6da834e30d24/splash.png",
1069
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/690b3ed2-4dff-945b-8223-6da834e30d24/stylizedbackgroundimage.png",
1070
+ "premierBackgroundImage": null,
1071
+ "assetPath": "ShooterGame/Content/Maps/HURM/HURM_Alley/HURM_Alley_PrimaryAsset",
1072
+ "mapUrl": "/Game/Maps/HURM/HURM_Alley/HURM_Alley",
1073
+ "xMultiplier": 0,
1074
+ "yMultiplier": 0,
1075
+ "xScalarToAdd": 0,
1076
+ "yScalarToAdd": 0,
1077
+ "callouts": [
1078
+ {
1079
+ "regionName": "Box",
1080
+ "superRegionName": "Attacker Side",
1081
+ "location": {
1082
+ "x": -2225,
1083
+ "y": 1700
1084
+ }
1085
+ },
1086
+ {
1087
+ "regionName": "Nest",
1088
+ "superRegionName": "Attacker Side",
1089
+ "location": {
1090
+ "x": -2200,
1091
+ "y": 800
1092
+ }
1093
+ },
1094
+ {
1095
+ "regionName": "Spawn",
1096
+ "superRegionName": "Attacker Side",
1097
+ "location": {
1098
+ "x": -1200,
1099
+ "y": 3000
1100
+ }
1101
+ },
1102
+ {
1103
+ "regionName": "Stairs",
1104
+ "superRegionName": "Attacker Side",
1105
+ "location": {
1106
+ "x": -200,
1107
+ "y": 1200
1108
+ }
1109
+ },
1110
+ {
1111
+ "regionName": "Wall",
1112
+ "superRegionName": "Attacker Side",
1113
+ "location": {
1114
+ "x": 700,
1115
+ "y": 900
1116
+ }
1117
+ },
1118
+ {
1119
+ "regionName": "Box",
1120
+ "superRegionName": "Defender Side",
1121
+ "location": {
1122
+ "x": -2225,
1123
+ "y": -2900
1124
+ }
1125
+ },
1126
+ {
1127
+ "regionName": "Nest",
1128
+ "superRegionName": "Defender Side",
1129
+ "location": {
1130
+ "x": -2200,
1131
+ "y": -1700
1132
+ }
1133
+ },
1134
+ {
1135
+ "regionName": "Spawn",
1136
+ "superRegionName": "Defender Side",
1137
+ "location": {
1138
+ "x": -1200,
1139
+ "y": -3000
1140
+ }
1141
+ },
1142
+ {
1143
+ "regionName": "Stairs",
1144
+ "superRegionName": "Defender Side",
1145
+ "location": {
1146
+ "x": -200,
1147
+ "y": -1200
1148
+ }
1149
+ },
1150
+ {
1151
+ "regionName": "Wall",
1152
+ "superRegionName": "Defender Side",
1153
+ "location": {
1154
+ "x": 700,
1155
+ "y": -900
1156
+ }
1157
+ },
1158
+ {
1159
+ "regionName": "Generator",
1160
+ "superRegionName": "Mid",
1161
+ "location": {
1162
+ "x": -1400,
1163
+ "y": -1000
1164
+ }
1165
+ },
1166
+ {
1167
+ "regionName": "Horseshoe",
1168
+ "superRegionName": "Mid",
1169
+ "location": {
1170
+ "x": -3200,
1171
+ "y": -900
1172
+ }
1173
+ },
1174
+ {
1175
+ "regionName": "Sewer",
1176
+ "superRegionName": "Mid",
1177
+ "location": {
1178
+ "x": 700,
1179
+ "y": -900
1180
+ }
1181
+ }
1182
+ ]
1183
+ },
1184
+ "12452a9d-48c3-0b02-e7eb-0381c3520404": {
1185
+ "uuid": "12452a9d-48c3-0b02-e7eb-0381c3520404",
1186
+ "displayName": "Kasbah",
1187
+ "narrativeDescription": null,
1188
+ "tacticalDescription": null,
1189
+ "coordinates": null,
1190
+ "displayIcon": "https://media.valorant-api.com/maps/12452a9d-48c3-0b02-e7eb-0381c3520404/displayicon.png",
1191
+ "listViewIcon": "https://media.valorant-api.com/maps/12452a9d-48c3-0b02-e7eb-0381c3520404/listviewicon.png",
1192
+ "listViewIconTall": "https://media.valorant-api.com/maps/12452a9d-48c3-0b02-e7eb-0381c3520404/listviewicontall.png",
1193
+ "splash": "https://media.valorant-api.com/maps/12452a9d-48c3-0b02-e7eb-0381c3520404/splash.png",
1194
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/12452a9d-48c3-0b02-e7eb-0381c3520404/stylizedbackgroundimage.png",
1195
+ "premierBackgroundImage": null,
1196
+ "assetPath": "ShooterGame/Content/Maps/HURM/HURM_Bowl/HURM_Bowl_PrimaryAsset",
1197
+ "mapUrl": "/Game/Maps/HURM/HURM_Bowl/HURM_Bowl",
1198
+ "xMultiplier": 0,
1199
+ "yMultiplier": 0,
1200
+ "xScalarToAdd": 0,
1201
+ "yScalarToAdd": 0,
1202
+ "callouts": [
1203
+ {
1204
+ "regionName": "Spawn",
1205
+ "superRegionName": "Defender Side",
1206
+ "location": {
1207
+ "x": 0,
1208
+ "y": 0
1209
+ }
1210
+ },
1211
+ {
1212
+ "regionName": "Angle Box",
1213
+ "superRegionName": "Defender Side",
1214
+ "location": {
1215
+ "x": 0,
1216
+ "y": 0
1217
+ }
1218
+ },
1219
+ {
1220
+ "regionName": "Link",
1221
+ "superRegionName": "Defender Side",
1222
+ "location": {
1223
+ "x": 0,
1224
+ "y": 0
1225
+ }
1226
+ },
1227
+ {
1228
+ "regionName": "Pit",
1229
+ "superRegionName": "Mid",
1230
+ "location": {
1231
+ "x": 0,
1232
+ "y": 0
1233
+ }
1234
+ },
1235
+ {
1236
+ "regionName": "Tower",
1237
+ "superRegionName": "Mid",
1238
+ "location": {
1239
+ "x": 0,
1240
+ "y": 0
1241
+ }
1242
+ },
1243
+ {
1244
+ "regionName": "Ramp",
1245
+ "superRegionName": "Defender Side",
1246
+ "location": {
1247
+ "x": 0,
1248
+ "y": 0
1249
+ }
1250
+ },
1251
+ {
1252
+ "regionName": "Flat Box",
1253
+ "superRegionName": "Defender Side",
1254
+ "location": {
1255
+ "x": 0,
1256
+ "y": 0
1257
+ }
1258
+ },
1259
+ {
1260
+ "regionName": "Spawn",
1261
+ "superRegionName": "Defender Side",
1262
+ "location": {
1263
+ "x": 0,
1264
+ "y": 0
1265
+ }
1266
+ },
1267
+ {
1268
+ "regionName": "Nest",
1269
+ "superRegionName": "Defender Side",
1270
+ "location": {
1271
+ "x": 0,
1272
+ "y": 0
1273
+ }
1274
+ },
1275
+ {
1276
+ "regionName": "Tunnel",
1277
+ "superRegionName": "Defender Side",
1278
+ "location": {
1279
+ "x": 0,
1280
+ "y": 0
1281
+ }
1282
+ },
1283
+ {
1284
+ "regionName": "Window",
1285
+ "superRegionName": "Defender Side",
1286
+ "location": {
1287
+ "x": 0,
1288
+ "y": 0
1289
+ }
1290
+ },
1291
+ {
1292
+ "regionName": "Spawn",
1293
+ "superRegionName": "Attacker Side",
1294
+ "location": {
1295
+ "x": 0,
1296
+ "y": 0
1297
+ }
1298
+ },
1299
+ {
1300
+ "regionName": "Angle Box",
1301
+ "superRegionName": "Attacker Side",
1302
+ "location": {
1303
+ "x": 0,
1304
+ "y": 0
1305
+ }
1306
+ },
1307
+ {
1308
+ "regionName": "Link",
1309
+ "superRegionName": "Attacker Side",
1310
+ "location": {
1311
+ "x": 0,
1312
+ "y": 0
1313
+ }
1314
+ },
1315
+ {
1316
+ "regionName": "Pit",
1317
+ "superRegionName": "Mid",
1318
+ "location": {
1319
+ "x": 0,
1320
+ "y": 0
1321
+ }
1322
+ },
1323
+ {
1324
+ "regionName": "Tower",
1325
+ "superRegionName": "Mid",
1326
+ "location": {
1327
+ "x": 0,
1328
+ "y": 0
1329
+ }
1330
+ },
1331
+ {
1332
+ "regionName": "Ramp",
1333
+ "superRegionName": "Attacker Side",
1334
+ "location": {
1335
+ "x": 0,
1336
+ "y": 0
1337
+ }
1338
+ },
1339
+ {
1340
+ "regionName": "Flat Box",
1341
+ "superRegionName": "Attacker Side",
1342
+ "location": {
1343
+ "x": 0,
1344
+ "y": 0
1345
+ }
1346
+ },
1347
+ {
1348
+ "regionName": "Spawn",
1349
+ "superRegionName": "Attacker Side",
1350
+ "location": {
1351
+ "x": 0,
1352
+ "y": 0
1353
+ }
1354
+ },
1355
+ {
1356
+ "regionName": "Nest",
1357
+ "superRegionName": "Attacker Side",
1358
+ "location": {
1359
+ "x": 0,
1360
+ "y": 0
1361
+ }
1362
+ },
1363
+ {
1364
+ "regionName": "Tunnel",
1365
+ "superRegionName": "Attacker Side",
1366
+ "location": {
1367
+ "x": 0,
1368
+ "y": 0
1369
+ }
1370
+ },
1371
+ {
1372
+ "regionName": "Window",
1373
+ "superRegionName": "Attacker Side",
1374
+ "location": {
1375
+ "x": 0,
1376
+ "y": 0
1377
+ }
1378
+ }
1379
+ ]
1380
+ },
1381
+ "2c09d728-42d5-30d8-43dc-96a05cc7ee9d": {
1382
+ "uuid": "2c09d728-42d5-30d8-43dc-96a05cc7ee9d",
1383
+ "displayName": "Drift",
1384
+ "narrativeDescription": null,
1385
+ "tacticalDescription": null,
1386
+ "coordinates": null,
1387
+ "displayIcon": "https://media.valorant-api.com/maps/2c09d728-42d5-30d8-43dc-96a05cc7ee9d/displayicon.png",
1388
+ "listViewIcon": "https://media.valorant-api.com/maps/2c09d728-42d5-30d8-43dc-96a05cc7ee9d/listviewicon.png",
1389
+ "listViewIconTall": "https://media.valorant-api.com/maps/2c09d728-42d5-30d8-43dc-96a05cc7ee9d/listviewicontall.png",
1390
+ "splash": "https://media.valorant-api.com/maps/2c09d728-42d5-30d8-43dc-96a05cc7ee9d/splash.png",
1391
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/2c09d728-42d5-30d8-43dc-96a05cc7ee9d/stylizedbackgroundimage.png",
1392
+ "premierBackgroundImage": null,
1393
+ "assetPath": "ShooterGame/Content/Maps/HURM/HURM_Helix/HURM_Helix_PrimaryAsset",
1394
+ "mapUrl": "/Game/Maps/HURM/HURM_Helix/HURM_Helix",
1395
+ "xMultiplier": 0,
1396
+ "yMultiplier": 0,
1397
+ "xScalarToAdd": 0,
1398
+ "yScalarToAdd": 0,
1399
+ "callouts": [
1400
+ {
1401
+ "regionName": "Alley",
1402
+ "superRegionName": "Attacker Side",
1403
+ "location": {
1404
+ "x": 3200,
1405
+ "y": 2200
1406
+ }
1407
+ },
1408
+ {
1409
+ "regionName": "Nest",
1410
+ "superRegionName": "Attacker Side",
1411
+ "location": {
1412
+ "x": 2000,
1413
+ "y": -3400
1414
+ }
1415
+ },
1416
+ {
1417
+ "regionName": "Spawn",
1418
+ "superRegionName": "Attacker Side",
1419
+ "location": {
1420
+ "x": 1200,
1421
+ "y": -2200
1422
+ }
1423
+ },
1424
+ {
1425
+ "regionName": "Tower",
1426
+ "superRegionName": "Attacker Side",
1427
+ "location": {
1428
+ "x": -400,
1429
+ "y": -1800
1430
+ }
1431
+ },
1432
+ {
1433
+ "regionName": "Yard",
1434
+ "superRegionName": "Attacker Side",
1435
+ "location": {
1436
+ "x": -1600,
1437
+ "y": -3400
1438
+ }
1439
+ },
1440
+ {
1441
+ "regionName": "Alley",
1442
+ "superRegionName": "Defender Side",
1443
+ "location": {
1444
+ "x": -3200,
1445
+ "y": -2200
1446
+ }
1447
+ },
1448
+ {
1449
+ "regionName": "Nest",
1450
+ "superRegionName": "Defender Side",
1451
+ "location": {
1452
+ "x": -2000,
1453
+ "y": 3400
1454
+ }
1455
+ },
1456
+ {
1457
+ "regionName": "Spawn",
1458
+ "superRegionName": "Defender Side",
1459
+ "location": {
1460
+ "x": -1200,
1461
+ "y": 2200
1462
+ }
1463
+ },
1464
+ {
1465
+ "regionName": "Tower",
1466
+ "superRegionName": "Defender Side",
1467
+ "location": {
1468
+ "x": 400,
1469
+ "y": 1800
1470
+ }
1471
+ },
1472
+ {
1473
+ "regionName": "Yard",
1474
+ "superRegionName": "Defender Side",
1475
+ "location": {
1476
+ "x": 1600,
1477
+ "y": 3400
1478
+ }
1479
+ },
1480
+ {
1481
+ "regionName": "Water",
1482
+ "superRegionName": "Mid",
1483
+ "location": {
1484
+ "x": -800,
1485
+ "y": -600
1486
+ }
1487
+ }
1488
+ ]
1489
+ },
1490
+ "d6336a5a-428f-c591-98db-c8a291159134": {
1491
+ "uuid": "d6336a5a-428f-c591-98db-c8a291159134",
1492
+ "displayName": "Glitch",
1493
+ "narrativeDescription": null,
1494
+ "tacticalDescription": null,
1495
+ "coordinates": null,
1496
+ "displayIcon": "https://media.valorant-api.com/maps/d6336a5a-428f-c591-98db-c8a291159134/displayicon.png",
1497
+ "listViewIcon": "https://media.valorant-api.com/maps/d6336a5a-428f-c591-98db-c8a291159134/listviewicon.png",
1498
+ "listViewIconTall": "https://media.valorant-api.com/maps/d6336a5a-428f-c591-98db-c8a291159134/listviewicontall.png",
1499
+ "splash": "https://media.valorant-api.com/maps/d6336a5a-428f-c591-98db-c8a291159134/splash.png",
1500
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/d6336a5a-428f-c591-98db-c8a291159134/stylizedbackgroundimage.png",
1501
+ "premierBackgroundImage": null,
1502
+ "assetPath": "ShooterGame/Content/Maps/HURM/HURM_HighTide/HURM_HighTide_PrimaryAsset",
1503
+ "mapUrl": "/Game/Maps/HURM/HURM_HighTide/HURM_HighTide",
1504
+ "xMultiplier": 0,
1505
+ "yMultiplier": 0,
1506
+ "xScalarToAdd": 0,
1507
+ "yScalarToAdd": 0,
1508
+ "callouts": null
1509
+ },
1510
+ "de28aa9b-4cbe-1003-320e-6cb3ec309557": {
1511
+ "uuid": "de28aa9b-4cbe-1003-320e-6cb3ec309557",
1512
+ "displayName": "Piazza",
1513
+ "narrativeDescription": null,
1514
+ "tacticalDescription": null,
1515
+ "coordinates": null,
1516
+ "displayIcon": "https://media.valorant-api.com/maps/de28aa9b-4cbe-1003-320e-6cb3ec309557/displayicon.png",
1517
+ "listViewIcon": "https://media.valorant-api.com/maps/de28aa9b-4cbe-1003-320e-6cb3ec309557/listviewicon.png",
1518
+ "listViewIconTall": "https://media.valorant-api.com/maps/de28aa9b-4cbe-1003-320e-6cb3ec309557/listviewicontall.png",
1519
+ "splash": "https://media.valorant-api.com/maps/de28aa9b-4cbe-1003-320e-6cb3ec309557/splash.png",
1520
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/de28aa9b-4cbe-1003-320e-6cb3ec309557/stylizedbackgroundimage.png",
1521
+ "premierBackgroundImage": null,
1522
+ "assetPath": "ShooterGame/Content/Maps/HURM/HURM_Yard/HURM_Yard_PrimaryAsset",
1523
+ "mapUrl": "/Game/Maps/HURM/HURM_Yard/HURM_Yard",
1524
+ "xMultiplier": 0,
1525
+ "yMultiplier": 0,
1526
+ "xScalarToAdd": 0,
1527
+ "yScalarToAdd": 0,
1528
+ "callouts": [
1529
+ {
1530
+ "regionName": "Alley",
1531
+ "superRegionName": "Attacker Side",
1532
+ "location": {
1533
+ "x": 0,
1534
+ "y": 0
1535
+ }
1536
+ },
1537
+ {
1538
+ "regionName": "Spawn",
1539
+ "superRegionName": "Attacker Side",
1540
+ "location": {
1541
+ "x": 0,
1542
+ "y": 0
1543
+ }
1544
+ },
1545
+ {
1546
+ "regionName": "Hall",
1547
+ "superRegionName": "Attacker Side",
1548
+ "location": {
1549
+ "x": 0,
1550
+ "y": 0
1551
+ }
1552
+ },
1553
+ {
1554
+ "regionName": "Hut",
1555
+ "superRegionName": "Attacker Side",
1556
+ "location": {
1557
+ "x": 0,
1558
+ "y": 0
1559
+ }
1560
+ },
1561
+ {
1562
+ "regionName": "Cubby",
1563
+ "superRegionName": "Attacker Side",
1564
+ "location": {
1565
+ "x": 0,
1566
+ "y": 0
1567
+ }
1568
+ },
1569
+ {
1570
+ "regionName": "Lobby",
1571
+ "superRegionName": "Attacker Side",
1572
+ "location": {
1573
+ "x": 0,
1574
+ "y": 0
1575
+ }
1576
+ },
1577
+ {
1578
+ "regionName": "Courtyard",
1579
+ "superRegionName": "Mid",
1580
+ "location": {
1581
+ "x": 0,
1582
+ "y": 0
1583
+ }
1584
+ },
1585
+ {
1586
+ "regionName": "Box",
1587
+ "superRegionName": "Mid",
1588
+ "location": {
1589
+ "x": 0,
1590
+ "y": 0
1591
+ }
1592
+ },
1593
+ {
1594
+ "regionName": "Nest",
1595
+ "superRegionName": "Attacker Side",
1596
+ "location": {
1597
+ "x": 0,
1598
+ "y": 0
1599
+ }
1600
+ },
1601
+ {
1602
+ "regionName": "Spawn",
1603
+ "superRegionName": "Attacker Side",
1604
+ "location": {
1605
+ "x": 0,
1606
+ "y": 0
1607
+ }
1608
+ },
1609
+ {
1610
+ "regionName": "Alley",
1611
+ "superRegionName": "Defender Side",
1612
+ "location": {
1613
+ "x": 0,
1614
+ "y": 0
1615
+ }
1616
+ },
1617
+ {
1618
+ "regionName": "Spawn",
1619
+ "superRegionName": "Defender Side",
1620
+ "location": {
1621
+ "x": 0,
1622
+ "y": 0
1623
+ }
1624
+ },
1625
+ {
1626
+ "regionName": "Hall",
1627
+ "superRegionName": "Defender Side",
1628
+ "location": {
1629
+ "x": 0,
1630
+ "y": 0
1631
+ }
1632
+ },
1633
+ {
1634
+ "regionName": "Hut",
1635
+ "superRegionName": "Defender Side",
1636
+ "location": {
1637
+ "x": 0,
1638
+ "y": 0
1639
+ }
1640
+ },
1641
+ {
1642
+ "regionName": "Cubby",
1643
+ "superRegionName": "Defender Side",
1644
+ "location": {
1645
+ "x": 0,
1646
+ "y": 0
1647
+ }
1648
+ },
1649
+ {
1650
+ "regionName": "Lobby",
1651
+ "superRegionName": "Defender Side",
1652
+ "location": {
1653
+ "x": 0,
1654
+ "y": 0
1655
+ }
1656
+ },
1657
+ {
1658
+ "regionName": "Courtyard",
1659
+ "superRegionName": "Mid",
1660
+ "location": {
1661
+ "x": 0,
1662
+ "y": 0
1663
+ }
1664
+ },
1665
+ {
1666
+ "regionName": "Box",
1667
+ "superRegionName": "Mid",
1668
+ "location": {
1669
+ "x": 0,
1670
+ "y": 0
1671
+ }
1672
+ },
1673
+ {
1674
+ "regionName": "Nest",
1675
+ "superRegionName": "Defender Side",
1676
+ "location": {
1677
+ "x": 0,
1678
+ "y": 0
1679
+ }
1680
+ },
1681
+ {
1682
+ "regionName": "Spawn",
1683
+ "superRegionName": "Defender Side",
1684
+ "location": {
1685
+ "x": 0,
1686
+ "y": 0
1687
+ }
1688
+ }
1689
+ ]
1690
+ },
1691
+ "224b0a95-48b9-f703-1bd8-67aca101a61f": {
1692
+ "uuid": "224b0a95-48b9-f703-1bd8-67aca101a61f",
1693
+ "displayName": "Abyss",
1694
+ "narrativeDescription": null,
1695
+ "tacticalDescription": "A/B Sites",
1696
+ "coordinates": "70° 50' AJ\" N, 9° 00' VX\" W",
1697
+ "displayIcon": "https://media.valorant-api.com/maps/224b0a95-48b9-f703-1bd8-67aca101a61f/displayicon.png",
1698
+ "listViewIcon": "https://media.valorant-api.com/maps/224b0a95-48b9-f703-1bd8-67aca101a61f/listviewicon.png",
1699
+ "listViewIconTall": "https://media.valorant-api.com/maps/224b0a95-48b9-f703-1bd8-67aca101a61f/listviewicontall.png",
1700
+ "splash": "https://media.valorant-api.com/maps/224b0a95-48b9-f703-1bd8-67aca101a61f/splash.png",
1701
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/224b0a95-48b9-f703-1bd8-67aca101a61f/stylizedbackgroundimage.png",
1702
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/224b0a95-48b9-f703-1bd8-67aca101a61f/premierbackgroundimage.png",
1703
+ "assetPath": "ShooterGame/Content/Maps/Infinity/Infinity_PrimaryAsset",
1704
+ "mapUrl": "/Game/Maps/Infinity/Infinity",
1705
+ "xMultiplier": 0.000081,
1706
+ "yMultiplier": -0.000081,
1707
+ "xScalarToAdd": 0.5,
1708
+ "yScalarToAdd": 0.5,
1709
+ "callouts": [
1710
+ {
1711
+ "regionName": "Bridge",
1712
+ "superRegionName": "A",
1713
+ "location": {
1714
+ "x": 5700,
1715
+ "y": -375
1716
+ }
1717
+ },
1718
+ {
1719
+ "regionName": "Link",
1720
+ "superRegionName": "A",
1721
+ "location": {
1722
+ "x": 2800,
1723
+ "y": -2450
1724
+ }
1725
+ },
1726
+ {
1727
+ "regionName": "Lobby",
1728
+ "superRegionName": "A",
1729
+ "location": {
1730
+ "x": 3250,
1731
+ "y": 3400
1732
+ }
1733
+ },
1734
+ {
1735
+ "regionName": "Main",
1736
+ "superRegionName": "A",
1737
+ "location": {
1738
+ "x": 3800,
1739
+ "y": 1650
1740
+ }
1741
+ },
1742
+ {
1743
+ "regionName": "Site",
1744
+ "superRegionName": "A",
1745
+ "location": {
1746
+ "x": 4300,
1747
+ "y": -200
1748
+ }
1749
+ },
1750
+ {
1751
+ "regionName": "Spawn",
1752
+ "superRegionName": "Attacker Side",
1753
+ "location": {
1754
+ "x": 950,
1755
+ "y": 4950
1756
+ }
1757
+ },
1758
+ {
1759
+ "regionName": "Tower",
1760
+ "superRegionName": "A",
1761
+ "location": {
1762
+ "x": 3025,
1763
+ "y": -125
1764
+ }
1765
+ },
1766
+ {
1767
+ "regionName": "Bend",
1768
+ "superRegionName": "Mid",
1769
+ "location": {
1770
+ "x": -1700,
1771
+ "y": 1950
1772
+ }
1773
+ },
1774
+ {
1775
+ "regionName": "Link",
1776
+ "superRegionName": "B",
1777
+ "location": {
1778
+ "x": -2000,
1779
+ "y": -2350
1780
+ }
1781
+ },
1782
+ {
1783
+ "regionName": "Lobby",
1784
+ "superRegionName": "B",
1785
+ "location": {
1786
+ "x": -3650,
1787
+ "y": 4025
1788
+ }
1789
+ },
1790
+ {
1791
+ "regionName": "Main",
1792
+ "superRegionName": "B",
1793
+ "location": {
1794
+ "x": -4450,
1795
+ "y": 1525
1796
+ }
1797
+ },
1798
+ {
1799
+ "regionName": "Nest",
1800
+ "superRegionName": "B",
1801
+ "location": {
1802
+ "x": -4975,
1803
+ "y": 2150
1804
+ }
1805
+ },
1806
+ {
1807
+ "regionName": "Bottom",
1808
+ "superRegionName": "Mid",
1809
+ "location": {
1810
+ "x": -400,
1811
+ "y": 575
1812
+ }
1813
+ },
1814
+ {
1815
+ "regionName": "Site",
1816
+ "superRegionName": "B",
1817
+ "location": {
1818
+ "x": -4425,
1819
+ "y": -1175
1820
+ }
1821
+ },
1822
+ {
1823
+ "regionName": "Catwalk",
1824
+ "superRegionName": "Mid",
1825
+ "location": {
1826
+ "x": 600,
1827
+ "y": 525
1828
+ }
1829
+ },
1830
+ {
1831
+ "regionName": "Danger",
1832
+ "superRegionName": "B",
1833
+ "location": {
1834
+ "x": -5850,
1835
+ "y": 700
1836
+ }
1837
+ },
1838
+ {
1839
+ "regionName": "Spawn",
1840
+ "superRegionName": "Defender Side",
1841
+ "location": {
1842
+ "x": 950,
1843
+ "y": -5275
1844
+ }
1845
+ },
1846
+ {
1847
+ "regionName": "Library",
1848
+ "superRegionName": "Mid",
1849
+ "location": {
1850
+ "x": -325,
1851
+ "y": -600
1852
+ }
1853
+ },
1854
+ {
1855
+ "regionName": "Secret",
1856
+ "superRegionName": "A",
1857
+ "location": {
1858
+ "x": 3775,
1859
+ "y": -3850
1860
+ }
1861
+ },
1862
+ {
1863
+ "regionName": "Security",
1864
+ "superRegionName": "A",
1865
+ "location": {
1866
+ "x": 4900,
1867
+ "y": -2975
1868
+ }
1869
+ },
1870
+ {
1871
+ "regionName": "Top",
1872
+ "superRegionName": "Mid",
1873
+ "location": {
1874
+ "x": 775,
1875
+ "y": -2375
1876
+ }
1877
+ },
1878
+ {
1879
+ "regionName": "Tower",
1880
+ "superRegionName": "B",
1881
+ "location": {
1882
+ "x": -3925,
1883
+ "y": -2500
1884
+ }
1885
+ },
1886
+ {
1887
+ "regionName": "Vent",
1888
+ "superRegionName": "A",
1889
+ "location": {
1890
+ "x": 1700,
1891
+ "y": -325
1892
+ }
1893
+ }
1894
+ ]
1895
+ },
1896
+ "2fe4ed3a-450a-948b-6d6b-e89a78e680a9": {
1897
+ "uuid": "2fe4ed3a-450a-948b-6d6b-e89a78e680a9",
1898
+ "displayName": "Lotus",
1899
+ "narrativeDescription": null,
1900
+ "tacticalDescription": "A/B/C Sites",
1901
+ "coordinates": "14°07'AD.4\"N8 74°53'XY\"E8",
1902
+ "displayIcon": "https://media.valorant-api.com/maps/2fe4ed3a-450a-948b-6d6b-e89a78e680a9/displayicon.png",
1903
+ "listViewIcon": "https://media.valorant-api.com/maps/2fe4ed3a-450a-948b-6d6b-e89a78e680a9/listviewicon.png",
1904
+ "listViewIconTall": "https://media.valorant-api.com/maps/2fe4ed3a-450a-948b-6d6b-e89a78e680a9/listviewicontall.png",
1905
+ "splash": "https://media.valorant-api.com/maps/2fe4ed3a-450a-948b-6d6b-e89a78e680a9/splash.png",
1906
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/2fe4ed3a-450a-948b-6d6b-e89a78e680a9/stylizedbackgroundimage.png",
1907
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/2fe4ed3a-450a-948b-6d6b-e89a78e680a9/premierbackgroundimage.png",
1908
+ "assetPath": "ShooterGame/Content/Maps/Jam/Jam_PrimaryAsset",
1909
+ "mapUrl": "/Game/Maps/Jam/Jam",
1910
+ "xMultiplier": 0.000072,
1911
+ "yMultiplier": -0.000072,
1912
+ "xScalarToAdd": 0.454789,
1913
+ "yScalarToAdd": 0.917752,
1914
+ "callouts": [
1915
+ {
1916
+ "regionName": "Top",
1917
+ "superRegionName": "A",
1918
+ "location": {
1919
+ "x": 9260.3,
1920
+ "y": 5045.5884
1921
+ }
1922
+ },
1923
+ {
1924
+ "regionName": "Drop",
1925
+ "superRegionName": "A",
1926
+ "location": {
1927
+ "x": 9516.38,
1928
+ "y": 6092.8936
1929
+ }
1930
+ },
1931
+ {
1932
+ "regionName": "Site",
1933
+ "superRegionName": "A",
1934
+ "location": {
1935
+ "x": 7735.5396,
1936
+ "y": 5557.309
1937
+ }
1938
+ },
1939
+ {
1940
+ "regionName": "Hut",
1941
+ "superRegionName": "A",
1942
+ "location": {
1943
+ "x": 7917.4614,
1944
+ "y": 5557.309
1945
+ }
1946
+ },
1947
+ {
1948
+ "regionName": "Tree",
1949
+ "superRegionName": "A",
1950
+ "location": {
1951
+ "x": 6149.525,
1952
+ "y": 5557.309
1953
+ }
1954
+ },
1955
+ {
1956
+ "regionName": "Door",
1957
+ "superRegionName": "A",
1958
+ "location": {
1959
+ "x": 5608.7563,
1960
+ "y": 5203.91
1961
+ }
1962
+ },
1963
+ {
1964
+ "regionName": "Main",
1965
+ "superRegionName": "A",
1966
+ "location": {
1967
+ "x": 5288.3022,
1968
+ "y": 4159.762
1969
+ }
1970
+ },
1971
+ {
1972
+ "regionName": "Rubble",
1973
+ "superRegionName": "A",
1974
+ "location": {
1975
+ "x": 4401.0713,
1976
+ "y": 4918.189
1977
+ }
1978
+ },
1979
+ {
1980
+ "regionName": "Root",
1981
+ "superRegionName": "A",
1982
+ "location": {
1983
+ "x": 4401.0713,
1984
+ "y": 3294.1523
1985
+ }
1986
+ },
1987
+ {
1988
+ "regionName": "Lobby",
1989
+ "superRegionName": "A",
1990
+ "location": {
1991
+ "x": 2685.951,
1992
+ "y": 2927.1755
1993
+ }
1994
+ },
1995
+ {
1996
+ "regionName": "Lobby",
1997
+ "superRegionName": "C",
1998
+ "location": {
1999
+ "x": 1403.5685,
2000
+ "y": -1576.5884
2001
+ }
2002
+ },
2003
+ {
2004
+ "regionName": "Pillars",
2005
+ "superRegionName": "B",
2006
+ "location": {
2007
+ "x": 3565.3691,
2008
+ "y": 668.18317
2009
+ }
2010
+ },
2011
+ {
2012
+ "regionName": "Main",
2013
+ "superRegionName": "B",
2014
+ "location": {
2015
+ "x": 4876.832,
2016
+ "y": -47.87195
2017
+ }
2018
+ },
2019
+ {
2020
+ "regionName": "Door",
2021
+ "superRegionName": "C",
2022
+ "location": {
2023
+ "x": 4818.6655,
2024
+ "y": -1752.8021
2025
+ }
2026
+ },
2027
+ {
2028
+ "regionName": "Site",
2029
+ "superRegionName": "B",
2030
+ "location": {
2031
+ "x": 6368.0327,
2032
+ "y": 668.18317
2033
+ }
2034
+ },
2035
+ {
2036
+ "regionName": "Link",
2037
+ "superRegionName": "A",
2038
+ "location": {
2039
+ "x": 6011.0664,
2040
+ "y": 2087.6528
2041
+ }
2042
+ },
2043
+ {
2044
+ "regionName": "Upper",
2045
+ "superRegionName": "B",
2046
+ "location": {
2047
+ "x": 7682.943,
2048
+ "y": 1517.3606
2049
+ }
2050
+ },
2051
+ {
2052
+ "regionName": "Waterfall",
2053
+ "superRegionName": "C",
2054
+ "location": {
2055
+ "x": 6719.804,
2056
+ "y": -1994.2986
2057
+ }
2058
+ },
2059
+ {
2060
+ "regionName": "Link",
2061
+ "superRegionName": "C",
2062
+ "location": {
2063
+ "x": 7504.109,
2064
+ "y": -1377.893
2065
+ }
2066
+ },
2067
+ {
2068
+ "regionName": "Stairs",
2069
+ "superRegionName": "A",
2070
+ "location": {
2071
+ "x": 8257.875,
2072
+ "y": 3860.9312
2073
+ }
2074
+ },
2075
+ {
2076
+ "regionName": "Mound",
2077
+ "superRegionName": "C",
2078
+ "location": {
2079
+ "x": 3863.7183,
2080
+ "y": -1576.5884
2081
+ }
2082
+ },
2083
+ {
2084
+ "regionName": "Main",
2085
+ "superRegionName": "C",
2086
+ "location": {
2087
+ "x": 5311.2646,
2088
+ "y": -3148.162
2089
+ }
2090
+ },
2091
+ {
2092
+ "regionName": "Bend",
2093
+ "superRegionName": "C",
2094
+ "location": {
2095
+ "x": 5657.522,
2096
+ "y": -5281.4395
2097
+ }
2098
+ },
2099
+ {
2100
+ "regionName": "Site",
2101
+ "superRegionName": "C",
2102
+ "location": {
2103
+ "x": 6676.6636,
2104
+ "y": -4265.876
2105
+ }
2106
+ },
2107
+ {
2108
+ "regionName": "Hall",
2109
+ "superRegionName": "C",
2110
+ "location": {
2111
+ "x": 7902.0615,
2112
+ "y": -4265.876
2113
+ }
2114
+ },
2115
+ {
2116
+ "regionName": "Gravel",
2117
+ "superRegionName": "C",
2118
+ "location": {
2119
+ "x": 8936.881,
2120
+ "y": -1752.2874
2121
+ }
2122
+ },
2123
+ {
2124
+ "regionName": "Spawn",
2125
+ "superRegionName": "Defender Side",
2126
+ "location": {
2127
+ "x": 9686.767,
2128
+ "y": 1697.8223
2129
+ }
2130
+ },
2131
+ {
2132
+ "regionName": "Spawn",
2133
+ "superRegionName": "Attacker Side",
2134
+ "location": {
2135
+ "x": 1401.2915,
2136
+ "y": 777.29834
2137
+ }
2138
+ }
2139
+ ]
2140
+ },
2141
+ "92584fbe-486a-b1b2-9faa-39b0f486b498": {
2142
+ "uuid": "92584fbe-486a-b1b2-9faa-39b0f486b498",
2143
+ "displayName": "Sunset",
2144
+ "narrativeDescription": null,
2145
+ "tacticalDescription": "A/B Sites",
2146
+ "coordinates": "34° 2′ C″ N, 118° 12′ YT″ W",
2147
+ "displayIcon": "https://media.valorant-api.com/maps/92584fbe-486a-b1b2-9faa-39b0f486b498/displayicon.png",
2148
+ "listViewIcon": "https://media.valorant-api.com/maps/92584fbe-486a-b1b2-9faa-39b0f486b498/listviewicon.png",
2149
+ "listViewIconTall": "https://media.valorant-api.com/maps/92584fbe-486a-b1b2-9faa-39b0f486b498/listviewicontall.png",
2150
+ "splash": "https://media.valorant-api.com/maps/92584fbe-486a-b1b2-9faa-39b0f486b498/splash.png",
2151
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/92584fbe-486a-b1b2-9faa-39b0f486b498/stylizedbackgroundimage.png",
2152
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/92584fbe-486a-b1b2-9faa-39b0f486b498/premierbackgroundimage.png",
2153
+ "assetPath": "ShooterGame/Content/Maps/Juliett/Juliett_PrimaryAsset",
2154
+ "mapUrl": "/Game/Maps/Juliett/Juliett",
2155
+ "xMultiplier": 0.000078,
2156
+ "yMultiplier": -0.000078,
2157
+ "xScalarToAdd": 0.5,
2158
+ "yScalarToAdd": 0.515625,
2159
+ "callouts": [
2160
+ {
2161
+ "regionName": "Boba",
2162
+ "superRegionName": "B",
2163
+ "location": {
2164
+ "x": 2200,
2165
+ "y": -4800
2166
+ }
2167
+ },
2168
+ {
2169
+ "regionName": "Tiles",
2170
+ "superRegionName": "Mid",
2171
+ "location": {
2172
+ "x": -1800,
2173
+ "y": 400
2174
+ }
2175
+ },
2176
+ {
2177
+ "regionName": "Market",
2178
+ "superRegionName": "B",
2179
+ "location": {
2180
+ "x": -200,
2181
+ "y": -3400
2182
+ }
2183
+ },
2184
+ {
2185
+ "regionName": "Site",
2186
+ "superRegionName": "B",
2187
+ "location": {
2188
+ "x": -600,
2189
+ "y": -5850
2190
+ }
2191
+ },
2192
+ {
2193
+ "regionName": "Main",
2194
+ "superRegionName": "B",
2195
+ "location": {
2196
+ "x": -2000,
2197
+ "y": -5650
2198
+ }
2199
+ },
2200
+ {
2201
+ "regionName": "Lobby",
2202
+ "superRegionName": "B",
2203
+ "location": {
2204
+ "x": -3400,
2205
+ "y": -2600
2206
+ }
2207
+ },
2208
+ {
2209
+ "regionName": "Bottom",
2210
+ "superRegionName": "Mid",
2211
+ "location": {
2212
+ "x": -1800,
2213
+ "y": -2025
2214
+ }
2215
+ },
2216
+ {
2217
+ "regionName": "Courtyard",
2218
+ "superRegionName": "Mid",
2219
+ "location": {
2220
+ "x": -600,
2221
+ "y": -1200
2222
+ }
2223
+ },
2224
+ {
2225
+ "regionName": "Lobby",
2226
+ "superRegionName": "A",
2227
+ "location": {
2228
+ "x": -1800,
2229
+ "y": 2000
2230
+ }
2231
+ },
2232
+ {
2233
+ "regionName": "Main",
2234
+ "superRegionName": "A",
2235
+ "location": {
2236
+ "x": -400,
2237
+ "y": 2200
2238
+ }
2239
+ },
2240
+ {
2241
+ "regionName": "Link",
2242
+ "superRegionName": "A",
2243
+ "location": {
2244
+ "x": 2200,
2245
+ "y": 3000
2246
+ }
2247
+ },
2248
+ {
2249
+ "regionName": "Site",
2250
+ "superRegionName": "A",
2251
+ "location": {
2252
+ "x": 1000,
2253
+ "y": 3200
2254
+ }
2255
+ },
2256
+ {
2257
+ "regionName": "Elbow",
2258
+ "superRegionName": "A",
2259
+ "location": {
2260
+ "x": 200,
2261
+ "y": 4200
2262
+ }
2263
+ },
2264
+ {
2265
+ "regionName": "Alley",
2266
+ "superRegionName": "A",
2267
+ "location": {
2268
+ "x": 3400,
2269
+ "y": 3600
2270
+ }
2271
+ },
2272
+ {
2273
+ "regionName": "Spawn",
2274
+ "superRegionName": "Defender Side",
2275
+ "location": {
2276
+ "x": 3805.4785,
2277
+ "y": -1989.0962
2278
+ }
2279
+ },
2280
+ {
2281
+ "regionName": "Top",
2282
+ "superRegionName": "Mid",
2283
+ "location": {
2284
+ "x": 2000,
2285
+ "y": -2000
2286
+ }
2287
+ },
2288
+ {
2289
+ "regionName": "Spawn",
2290
+ "superRegionName": "Attacker Side",
2291
+ "location": {
2292
+ "x": -6025,
2293
+ "y": -400
2294
+ }
2295
+ }
2296
+ ]
2297
+ },
2298
+ "1f10dab3-4294-3827-fa35-c2aa00213cf3": {
2299
+ "uuid": "1f10dab3-4294-3827-fa35-c2aa00213cf3",
2300
+ "displayName": "Basic Training",
2301
+ "narrativeDescription": null,
2302
+ "tacticalDescription": null,
2303
+ "coordinates": null,
2304
+ "displayIcon": null,
2305
+ "listViewIcon": "https://media.valorant-api.com/maps/1f10dab3-4294-3827-fa35-c2aa00213cf3/listviewicon.png",
2306
+ "listViewIconTall": null,
2307
+ "splash": "https://media.valorant-api.com/maps/1f10dab3-4294-3827-fa35-c2aa00213cf3/splash.png",
2308
+ "stylizedBackgroundImage": null,
2309
+ "premierBackgroundImage": null,
2310
+ "assetPath": "ShooterGame/Content/Maps/NPEV2/NPEV2_PrimaryAsset",
2311
+ "mapUrl": "/Game/Maps/NPEV2/NPEV2",
2312
+ "xMultiplier": 0,
2313
+ "yMultiplier": 0,
2314
+ "xScalarToAdd": 0,
2315
+ "yScalarToAdd": 0,
2316
+ "callouts": null
2317
+ },
2318
+ "fd267378-4d1d-484f-ff52-77821ed10dc2": {
2319
+ "uuid": "fd267378-4d1d-484f-ff52-77821ed10dc2",
2320
+ "displayName": "Pearl",
2321
+ "narrativeDescription": null,
2322
+ "tacticalDescription": "A/B Sites",
2323
+ "coordinates": "38°42'ED\"N8 9°08'XS\"W8",
2324
+ "displayIcon": "https://media.valorant-api.com/maps/fd267378-4d1d-484f-ff52-77821ed10dc2/displayicon.png",
2325
+ "listViewIcon": "https://media.valorant-api.com/maps/fd267378-4d1d-484f-ff52-77821ed10dc2/listviewicon.png",
2326
+ "listViewIconTall": "https://media.valorant-api.com/maps/fd267378-4d1d-484f-ff52-77821ed10dc2/listviewicontall.png",
2327
+ "splash": "https://media.valorant-api.com/maps/fd267378-4d1d-484f-ff52-77821ed10dc2/splash.png",
2328
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/fd267378-4d1d-484f-ff52-77821ed10dc2/stylizedbackgroundimage.png",
2329
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/fd267378-4d1d-484f-ff52-77821ed10dc2/premierbackgroundimage.png",
2330
+ "assetPath": "ShooterGame/Content/Maps/Pitt/Pitt_PrimaryAsset",
2331
+ "mapUrl": "/Game/Maps/Pitt/Pitt",
2332
+ "xMultiplier": 0.000078,
2333
+ "yMultiplier": -0.000078,
2334
+ "xScalarToAdd": 0.480469,
2335
+ "yScalarToAdd": 0.916016,
2336
+ "callouts": [
2337
+ {
2338
+ "regionName": "Hall",
2339
+ "superRegionName": "B",
2340
+ "location": {
2341
+ "x": 7495.6177,
2342
+ "y": -4954.14
2343
+ }
2344
+ },
2345
+ {
2346
+ "regionName": "Doors",
2347
+ "superRegionName": "Mid",
2348
+ "location": {
2349
+ "x": 4701.24,
2350
+ "y": 597.23285
2351
+ }
2352
+ },
2353
+ {
2354
+ "regionName": "Connector",
2355
+ "superRegionName": "Mid",
2356
+ "location": {
2357
+ "x": 6047.0464,
2358
+ "y": 1800.0436
2359
+ }
2360
+ },
2361
+ {
2362
+ "regionName": "Water",
2363
+ "superRegionName": "Defender Side",
2364
+ "location": {
2365
+ "x": 7808.019,
2366
+ "y": 1800.0419
2367
+ }
2368
+ },
2369
+ {
2370
+ "regionName": "Spawn",
2371
+ "superRegionName": "Defender Side",
2372
+ "location": {
2373
+ "x": 11092.458,
2374
+ "y": 378.79883
2375
+ }
2376
+ },
2377
+ {
2378
+ "regionName": "Flowers",
2379
+ "superRegionName": "A",
2380
+ "location": {
2381
+ "x": 9263.969,
2382
+ "y": 2507.3403
2383
+ }
2384
+ },
2385
+ {
2386
+ "regionName": "Secret",
2387
+ "superRegionName": "A",
2388
+ "location": {
2389
+ "x": 10458.144,
2390
+ "y": 3831.5127
2391
+ }
2392
+ },
2393
+ {
2394
+ "regionName": "Dugout",
2395
+ "superRegionName": "A",
2396
+ "location": {
2397
+ "x": 7660.6597,
2398
+ "y": 5854.0664
2399
+ }
2400
+ },
2401
+ {
2402
+ "regionName": "Site",
2403
+ "superRegionName": "A",
2404
+ "location": {
2405
+ "x": 6613.846,
2406
+ "y": 5569.5254
2407
+ }
2408
+ },
2409
+ {
2410
+ "regionName": "Records",
2411
+ "superRegionName": "Defender Side",
2412
+ "location": {
2413
+ "x": 8973.152,
2414
+ "y": -1470.2677
2415
+ }
2416
+ },
2417
+ {
2418
+ "regionName": "Top",
2419
+ "superRegionName": "Mid",
2420
+ "location": {
2421
+ "x": 2075,
2422
+ "y": 725
2423
+ }
2424
+ },
2425
+ {
2426
+ "regionName": "Tunnel",
2427
+ "superRegionName": "B",
2428
+ "location": {
2429
+ "x": 8973.152,
2430
+ "y": -2155.1323
2431
+ }
2432
+ },
2433
+ {
2434
+ "regionName": "Tower",
2435
+ "superRegionName": "B",
2436
+ "location": {
2437
+ "x": 8533.423,
2438
+ "y": -2851.3516
2439
+ }
2440
+ },
2441
+ {
2442
+ "regionName": "Main",
2443
+ "superRegionName": "A",
2444
+ "location": {
2445
+ "x": 6368.5713,
2446
+ "y": 3825
2447
+ }
2448
+ },
2449
+ {
2450
+ "regionName": "Restaurant",
2451
+ "superRegionName": "A",
2452
+ "location": {
2453
+ "x": 4430.452,
2454
+ "y": 2813.1267
2455
+ }
2456
+ },
2457
+ {
2458
+ "regionName": "Link",
2459
+ "superRegionName": "B",
2460
+ "location": {
2461
+ "x": 4503.3633,
2462
+ "y": -591.64435
2463
+ }
2464
+ },
2465
+ {
2466
+ "regionName": "Art",
2467
+ "superRegionName": "A",
2468
+ "location": {
2469
+ "x": 4561.95,
2470
+ "y": 3406.8806
2471
+ }
2472
+ },
2473
+ {
2474
+ "regionName": "Link",
2475
+ "superRegionName": "A",
2476
+ "location": {
2477
+ "x": 6055.2104,
2478
+ "y": 3782.704
2479
+ }
2480
+ },
2481
+ {
2482
+ "regionName": "Plaza",
2483
+ "superRegionName": "Mid",
2484
+ "location": {
2485
+ "x": 2750,
2486
+ "y": -325
2487
+ }
2488
+ },
2489
+ {
2490
+ "regionName": "Shops",
2491
+ "superRegionName": "Mid",
2492
+ "location": {
2493
+ "x": 800,
2494
+ "y": -1450
2495
+ }
2496
+ },
2497
+ {
2498
+ "regionName": "Club",
2499
+ "superRegionName": "B",
2500
+ "location": {
2501
+ "x": 800,
2502
+ "y": -1450
2503
+ }
2504
+ },
2505
+ {
2506
+ "regionName": "Ramp",
2507
+ "superRegionName": "B",
2508
+ "location": {
2509
+ "x": 1750,
2510
+ "y": -3800
2511
+ }
2512
+ },
2513
+ {
2514
+ "regionName": "Main",
2515
+ "superRegionName": "B",
2516
+ "location": {
2517
+ "x": 4050,
2518
+ "y": -4375
2519
+ }
2520
+ },
2521
+ {
2522
+ "regionName": "Site",
2523
+ "superRegionName": "B",
2524
+ "location": {
2525
+ "x": 5800,
2526
+ "y": -2850
2527
+ }
2528
+ },
2529
+ {
2530
+ "regionName": "Screen",
2531
+ "superRegionName": "B",
2532
+ "location": {
2533
+ "x": 6260.4326,
2534
+ "y": -5000.933
2535
+ }
2536
+ },
2537
+ {
2538
+ "regionName": "Spawn",
2539
+ "superRegionName": "Attacker Side",
2540
+ "location": {
2541
+ "x": -550,
2542
+ "y": -600
2543
+ }
2544
+ }
2545
+ ]
2546
+ },
2547
+ "e2ad5c54-4114-a870-9641-8ea21279579a": {
2548
+ "uuid": "e2ad5c54-4114-a870-9641-8ea21279579a",
2549
+ "displayName": "Icebox",
2550
+ "narrativeDescription": null,
2551
+ "tacticalDescription": "A/B Sites",
2552
+ "coordinates": "76°44' A\"N 149°30' Z\"E",
2553
+ "displayIcon": "https://media.valorant-api.com/maps/e2ad5c54-4114-a870-9641-8ea21279579a/displayicon.png",
2554
+ "listViewIcon": "https://media.valorant-api.com/maps/e2ad5c54-4114-a870-9641-8ea21279579a/listviewicon.png",
2555
+ "listViewIconTall": "https://media.valorant-api.com/maps/e2ad5c54-4114-a870-9641-8ea21279579a/listviewicontall.png",
2556
+ "splash": "https://media.valorant-api.com/maps/e2ad5c54-4114-a870-9641-8ea21279579a/splash.png",
2557
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/e2ad5c54-4114-a870-9641-8ea21279579a/stylizedbackgroundimage.png",
2558
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/e2ad5c54-4114-a870-9641-8ea21279579a/premierbackgroundimage.png",
2559
+ "assetPath": "ShooterGame/Content/Maps/Port/Port_PrimaryAsset",
2560
+ "mapUrl": "/Game/Maps/Port/Port",
2561
+ "xMultiplier": 0.000072,
2562
+ "yMultiplier": -0.000072,
2563
+ "xScalarToAdd": 0.460214,
2564
+ "yScalarToAdd": 0.304687,
2565
+ "callouts": [
2566
+ {
2567
+ "regionName": "Garage",
2568
+ "superRegionName": "B",
2569
+ "location": {
2570
+ "x": -1250,
2571
+ "y": -1425
2572
+ }
2573
+ },
2574
+ {
2575
+ "regionName": "Belt",
2576
+ "superRegionName": "A",
2577
+ "location": {
2578
+ "x": -7200,
2579
+ "y": -850
2580
+ }
2581
+ },
2582
+ {
2583
+ "regionName": "Nest",
2584
+ "superRegionName": "A",
2585
+ "location": {
2586
+ "x": -6650,
2587
+ "y": 900
2588
+ }
2589
+ },
2590
+ {
2591
+ "regionName": "Pipes",
2592
+ "superRegionName": "A",
2593
+ "location": {
2594
+ "x": -6150,
2595
+ "y": 450
2596
+ }
2597
+ },
2598
+ {
2599
+ "regionName": "Rafters",
2600
+ "superRegionName": "A",
2601
+ "location": {
2602
+ "x": -6450,
2603
+ "y": 4250
2604
+ }
2605
+ },
2606
+ {
2607
+ "regionName": "Screen",
2608
+ "superRegionName": "A",
2609
+ "location": {
2610
+ "x": -5100,
2611
+ "y": 3325
2612
+ }
2613
+ },
2614
+ {
2615
+ "regionName": "Site",
2616
+ "superRegionName": "A",
2617
+ "location": {
2618
+ "x": -6400,
2619
+ "y": 3200
2620
+ }
2621
+ },
2622
+ {
2623
+ "regionName": "Spawn",
2624
+ "superRegionName": "Attacker Side",
2625
+ "location": {
2626
+ "x": -3925,
2627
+ "y": -4450
2628
+ }
2629
+ },
2630
+ {
2631
+ "regionName": "Yellow",
2632
+ "superRegionName": "B",
2633
+ "location": {
2634
+ "x": 2050,
2635
+ "y": -25
2636
+ }
2637
+ },
2638
+ {
2639
+ "regionName": "Back",
2640
+ "superRegionName": "B",
2641
+ "location": {
2642
+ "x": 251,
2643
+ "y": 4269
2644
+ }
2645
+ },
2646
+ {
2647
+ "regionName": "Cubby",
2648
+ "superRegionName": "B",
2649
+ "location": {
2650
+ "x": 1050,
2651
+ "y": -975
2652
+ }
2653
+ },
2654
+ {
2655
+ "regionName": "Green",
2656
+ "superRegionName": "B",
2657
+ "location": {
2658
+ "x": -450,
2659
+ "y": -700
2660
+ }
2661
+ },
2662
+ {
2663
+ "regionName": "Hall",
2664
+ "superRegionName": "B",
2665
+ "location": {
2666
+ "x": 300,
2667
+ "y": 3050
2668
+ }
2669
+ },
2670
+ {
2671
+ "regionName": "Hut",
2672
+ "superRegionName": "B",
2673
+ "location": {
2674
+ "x": -1425,
2675
+ "y": 4400
2676
+ }
2677
+ },
2678
+ {
2679
+ "regionName": "Kitchen",
2680
+ "superRegionName": "B",
2681
+ "location": {
2682
+ "x": -2221.3618,
2683
+ "y": 3403.649
2684
+ }
2685
+ },
2686
+ {
2687
+ "regionName": "Orange",
2688
+ "superRegionName": "B",
2689
+ "location": {
2690
+ "x": -632,
2691
+ "y": 1700
2692
+ }
2693
+ },
2694
+ {
2695
+ "regionName": "Site",
2696
+ "superRegionName": "B",
2697
+ "location": {
2698
+ "x": 1725,
2699
+ "y": 2575
2700
+ }
2701
+ },
2702
+ {
2703
+ "regionName": "Snowman",
2704
+ "superRegionName": "B",
2705
+ "location": {
2706
+ "x": 2250,
2707
+ "y": 3960.3218
2708
+ }
2709
+ },
2710
+ {
2711
+ "regionName": "Snow Pile",
2712
+ "superRegionName": "B",
2713
+ "location": {
2714
+ "x": -1775,
2715
+ "y": 2500
2716
+ }
2717
+ },
2718
+ {
2719
+ "regionName": "Tube",
2720
+ "superRegionName": "B",
2721
+ "location": {
2722
+ "x": -2300,
2723
+ "y": 1275
2724
+ }
2725
+ },
2726
+ {
2727
+ "regionName": "Spawn",
2728
+ "superRegionName": "Defender Side",
2729
+ "location": {
2730
+ "x": -3750,
2731
+ "y": 7075
2732
+ }
2733
+ },
2734
+ {
2735
+ "regionName": "Blue",
2736
+ "superRegionName": "Mid",
2737
+ "location": {
2738
+ "x": -2825,
2739
+ "y": 975
2740
+ }
2741
+ },
2742
+ {
2743
+ "regionName": "Boiler",
2744
+ "superRegionName": "Mid",
2745
+ "location": {
2746
+ "x": -3375,
2747
+ "y": 2925
2748
+ }
2749
+ },
2750
+ {
2751
+ "regionName": "Pallet",
2752
+ "superRegionName": "Mid",
2753
+ "location": {
2754
+ "x": -4450,
2755
+ "y": 1775
2756
+ }
2757
+ },
2758
+ {
2759
+ "regionName": "Fence",
2760
+ "superRegionName": "B",
2761
+ "location": {
2762
+ "x": 363,
2763
+ "y": 3595
2764
+ }
2765
+ }
2766
+ ]
2767
+ },
2768
+ "ee613ee9-28b7-4beb-9666-08db13bb2244": {
2769
+ "uuid": "ee613ee9-28b7-4beb-9666-08db13bb2244",
2770
+ "displayName": "The Range",
2771
+ "narrativeDescription": null,
2772
+ "tacticalDescription": null,
2773
+ "coordinates": "45°26'FF'N,12°20'Q'E",
2774
+ "displayIcon": null,
2775
+ "listViewIcon": "https://media.valorant-api.com/maps/ee613ee9-28b7-4beb-9666-08db13bb2244/listviewicon.png",
2776
+ "listViewIconTall": "https://media.valorant-api.com/maps/ee613ee9-28b7-4beb-9666-08db13bb2244/listviewicontall.png",
2777
+ "splash": "https://media.valorant-api.com/maps/ee613ee9-28b7-4beb-9666-08db13bb2244/splash.png",
2778
+ "stylizedBackgroundImage": null,
2779
+ "premierBackgroundImage": null,
2780
+ "assetPath": "ShooterGame/Content/Maps/Poveglia/Poveglia_PrimaryAsset",
2781
+ "mapUrl": "/Game/Maps/Poveglia/Range",
2782
+ "xMultiplier": 0,
2783
+ "yMultiplier": 0,
2784
+ "xScalarToAdd": 0,
2785
+ "yScalarToAdd": 0,
2786
+ "callouts": null
2787
+ },
2788
+ "5914d1e0-40c4-cfdd-6b88-eba06347686c": {
2789
+ "uuid": "5914d1e0-40c4-cfdd-6b88-eba06347686c",
2790
+ "displayName": "The Range",
2791
+ "narrativeDescription": null,
2792
+ "tacticalDescription": null,
2793
+ "coordinates": "45°26'FF'N,12°20'Q'E",
2794
+ "displayIcon": null,
2795
+ "listViewIcon": "https://media.valorant-api.com/maps/5914d1e0-40c4-cfdd-6b88-eba06347686c/listviewicon.png",
2796
+ "listViewIconTall": "https://media.valorant-api.com/maps/5914d1e0-40c4-cfdd-6b88-eba06347686c/listviewicontall.png",
2797
+ "splash": "https://media.valorant-api.com/maps/5914d1e0-40c4-cfdd-6b88-eba06347686c/splash.png",
2798
+ "stylizedBackgroundImage": null,
2799
+ "premierBackgroundImage": null,
2800
+ "assetPath": "ShooterGame/Content/Maps/PovegliaV2/PovegliaV2_PrimaryAsset",
2801
+ "mapUrl": "/Game/Maps/PovegliaV2/RangeV2",
2802
+ "xMultiplier": 0,
2803
+ "yMultiplier": 0,
2804
+ "xScalarToAdd": 0,
2805
+ "yScalarToAdd": 0,
2806
+ "callouts": null
2807
+ },
2808
+ "1c18ab1f-420d-0d8b-71d0-77ad3c439115": {
2809
+ "uuid": "1c18ab1f-420d-0d8b-71d0-77ad3c439115",
2810
+ "displayName": "Corrode",
2811
+ "narrativeDescription": null,
2812
+ "tacticalDescription": "A/B Sites",
2813
+ "coordinates": "48° 38' FH\" N8, 1° 33' YV\" W8",
2814
+ "displayIcon": "https://media.valorant-api.com/maps/1c18ab1f-420d-0d8b-71d0-77ad3c439115/displayicon.png",
2815
+ "listViewIcon": "https://media.valorant-api.com/maps/1c18ab1f-420d-0d8b-71d0-77ad3c439115/listviewicon.png",
2816
+ "listViewIconTall": "https://media.valorant-api.com/maps/1c18ab1f-420d-0d8b-71d0-77ad3c439115/listviewicontall.png",
2817
+ "splash": "https://media.valorant-api.com/maps/1c18ab1f-420d-0d8b-71d0-77ad3c439115/splash.png",
2818
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/1c18ab1f-420d-0d8b-71d0-77ad3c439115/stylizedbackgroundimage.png",
2819
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/1c18ab1f-420d-0d8b-71d0-77ad3c439115/premierbackgroundimage.png",
2820
+ "assetPath": "ShooterGame/Content/Maps/Rook/Rook_PrimaryAsset",
2821
+ "mapUrl": "/Game/Maps/Rook/Rook",
2822
+ "xMultiplier": 0.00007,
2823
+ "yMultiplier": -0.00007,
2824
+ "xScalarToAdd": 0.526158,
2825
+ "yScalarToAdd": 0.5,
2826
+ "callouts": [
2827
+ {
2828
+ "regionName": "Crane",
2829
+ "superRegionName": "A",
2830
+ "location": {
2831
+ "x": 4458.2866,
2832
+ "y": -3999.4976
2833
+ }
2834
+ },
2835
+ {
2836
+ "regionName": "Elbow",
2837
+ "superRegionName": "A",
2838
+ "location": {
2839
+ "x": 5583.2793,
2840
+ "y": -2074.4995
2841
+ }
2842
+ },
2843
+ {
2844
+ "regionName": "Link",
2845
+ "superRegionName": "A",
2846
+ "location": {
2847
+ "x": 1783.2793,
2848
+ "y": -1049.5073
2849
+ }
2850
+ },
2851
+ {
2852
+ "regionName": "Lobby",
2853
+ "superRegionName": "A",
2854
+ "location": {
2855
+ "x": 4333.2793,
2856
+ "y": 2600.4976
2857
+ }
2858
+ },
2859
+ {
2860
+ "regionName": "Main",
2861
+ "superRegionName": "A",
2862
+ "location": {
2863
+ "x": 5933.2793,
2864
+ "y": 1225.4977
2865
+ }
2866
+ },
2867
+ {
2868
+ "regionName": "Pocket",
2869
+ "superRegionName": "A",
2870
+ "location": {
2871
+ "x": 5583.2793,
2872
+ "y": -799.4995
2873
+ }
2874
+ },
2875
+ {
2876
+ "regionName": "Site",
2877
+ "superRegionName": "A",
2878
+ "location": {
2879
+ "x": 3458.2793,
2880
+ "y": -1824.5004
2881
+ }
2882
+ },
2883
+ {
2884
+ "regionName": "Spawn",
2885
+ "superRegionName": "Attacker Side",
2886
+ "location": {
2887
+ "x": -25,
2888
+ "y": 5675
2889
+ }
2890
+ },
2891
+ {
2892
+ "regionName": "Yard",
2893
+ "superRegionName": "A",
2894
+ "location": {
2895
+ "x": 4333.2793,
2896
+ "y": -799.50256
2897
+ }
2898
+ },
2899
+ {
2900
+ "regionName": "Arch",
2901
+ "superRegionName": "B",
2902
+ "location": {
2903
+ "x": -3216.7134,
2904
+ "y": -4399.5156
2905
+ }
2906
+ },
2907
+ {
2908
+ "regionName": "Elbow",
2909
+ "superRegionName": "B",
2910
+ "location": {
2911
+ "x": -5591.7236,
2912
+ "y": -2924.5183
2913
+ }
2914
+ },
2915
+ {
2916
+ "regionName": "Link",
2917
+ "superRegionName": "B",
2918
+ "location": {
2919
+ "x": -1291.7185,
2920
+ "y": -1824.5093
2921
+ }
2922
+ },
2923
+ {
2924
+ "regionName": "Lobby",
2925
+ "superRegionName": "B",
2926
+ "location": {
2927
+ "x": -1666.7264,
2928
+ "y": 2775.4875
2929
+ }
2930
+ },
2931
+ {
2932
+ "regionName": "Main",
2933
+ "superRegionName": "B",
2934
+ "location": {
2935
+ "x": -2716.7236,
2936
+ "y": 750.4862
2937
+ }
2938
+ },
2939
+ {
2940
+ "regionName": "Bottom",
2941
+ "superRegionName": "Mid",
2942
+ "location": {
2943
+ "x": 133.27757,
2944
+ "y": 175.49072
2945
+ }
2946
+ },
2947
+ {
2948
+ "regionName": "Site",
2949
+ "superRegionName": "B",
2950
+ "location": {
2951
+ "x": -2716.7234,
2952
+ "y": -1174.5138
2953
+ }
2954
+ },
2955
+ {
2956
+ "regionName": "Tower",
2957
+ "superRegionName": "B",
2958
+ "location": {
2959
+ "x": -3516.7236,
2960
+ "y": -2924.5183
2961
+ }
2962
+ },
2963
+ {
2964
+ "regionName": "Spawn",
2965
+ "superRegionName": "Defender Side",
2966
+ "location": {
2967
+ "x": 8.286561,
2968
+ "y": -5749.507
2969
+ }
2970
+ },
2971
+ {
2972
+ "regionName": "Stairs",
2973
+ "superRegionName": "Mid",
2974
+ "location": {
2975
+ "x": 133.28067,
2976
+ "y": -1474.5093
2977
+ }
2978
+ },
2979
+ {
2980
+ "regionName": "Window",
2981
+ "superRegionName": "Mid",
2982
+ "location": {
2983
+ "x": 133.28421,
2984
+ "y": -3099.5093
2985
+ }
2986
+ },
2987
+ {
2988
+ "regionName": "Top",
2989
+ "superRegionName": "Mid",
2990
+ "location": {
2991
+ "x": 133.2815,
2992
+ "y": -1824.5093
2993
+ }
2994
+ }
2995
+ ]
2996
+ },
2997
+ "2bee0dc9-4ffe-519b-1cbd-7fbe763a6047": {
2998
+ "uuid": "2bee0dc9-4ffe-519b-1cbd-7fbe763a6047",
2999
+ "displayName": "Haven",
3000
+ "narrativeDescription": null,
3001
+ "tacticalDescription": "A/B/C Sites",
3002
+ "coordinates": "27°28'A'N,89°38'WZ'E",
3003
+ "displayIcon": "https://media.valorant-api.com/maps/2bee0dc9-4ffe-519b-1cbd-7fbe763a6047/displayicon.png",
3004
+ "listViewIcon": "https://media.valorant-api.com/maps/2bee0dc9-4ffe-519b-1cbd-7fbe763a6047/listviewicon.png",
3005
+ "listViewIconTall": "https://media.valorant-api.com/maps/2bee0dc9-4ffe-519b-1cbd-7fbe763a6047/listviewicontall.png",
3006
+ "splash": "https://media.valorant-api.com/maps/2bee0dc9-4ffe-519b-1cbd-7fbe763a6047/splash.png",
3007
+ "stylizedBackgroundImage": "https://media.valorant-api.com/maps/2bee0dc9-4ffe-519b-1cbd-7fbe763a6047/stylizedbackgroundimage.png",
3008
+ "premierBackgroundImage": "https://media.valorant-api.com/maps/2bee0dc9-4ffe-519b-1cbd-7fbe763a6047/premierbackgroundimage.png",
3009
+ "assetPath": "ShooterGame/Content/Maps/Triad/Triad_PrimaryAsset",
3010
+ "mapUrl": "/Game/Maps/Triad/Triad",
3011
+ "xMultiplier": 0.000075,
3012
+ "yMultiplier": -0.000075,
3013
+ "xScalarToAdd": 1.09345,
3014
+ "yScalarToAdd": 0.642728,
3015
+ "callouts": [
3016
+ {
3017
+ "regionName": "Garden",
3018
+ "superRegionName": "A",
3019
+ "location": {
3020
+ "x": 3100.261,
3021
+ "y": -4683.6016
3022
+ }
3023
+ },
3024
+ {
3025
+ "regionName": "Link",
3026
+ "superRegionName": "A",
3027
+ "location": {
3028
+ "x": 4244.4214,
3029
+ "y": -10715.68
3030
+ }
3031
+ },
3032
+ {
3033
+ "regionName": "Lobby",
3034
+ "superRegionName": "A",
3035
+ "location": {
3036
+ "x": 3438.537,
3037
+ "y": -6260.409
3038
+ }
3039
+ },
3040
+ {
3041
+ "regionName": "Long",
3042
+ "superRegionName": "A",
3043
+ "location": {
3044
+ "x": 6209.695,
3045
+ "y": -6901.142
3046
+ }
3047
+ },
3048
+ {
3049
+ "regionName": "Sewer",
3050
+ "superRegionName": "A",
3051
+ "location": {
3052
+ "x": 3452.8735,
3053
+ "y": -7915.7246
3054
+ }
3055
+ },
3056
+ {
3057
+ "regionName": "Site",
3058
+ "superRegionName": "A",
3059
+ "location": {
3060
+ "x": 6309.3076,
3061
+ "y": -9225.703
3062
+ }
3063
+ },
3064
+ {
3065
+ "regionName": "Spawn",
3066
+ "superRegionName": "Attacker Side",
3067
+ "location": {
3068
+ "x": 1741.7622,
3069
+ "y": -2642.7925
3070
+ }
3071
+ },
3072
+ {
3073
+ "regionName": "Back",
3074
+ "superRegionName": "B",
3075
+ "location": {
3076
+ "x": 1966.1608,
3077
+ "y": -10664.775
3078
+ }
3079
+ },
3080
+ {
3081
+ "regionName": "Site",
3082
+ "superRegionName": "B",
3083
+ "location": {
3084
+ "x": 1884.706,
3085
+ "y": -9231.335
3086
+ }
3087
+ },
3088
+ {
3089
+ "regionName": "Link",
3090
+ "superRegionName": "C",
3091
+ "location": {
3092
+ "x": -87.761444,
3093
+ "y": -10004.415
3094
+ }
3095
+ },
3096
+ {
3097
+ "regionName": "Lobby",
3098
+ "superRegionName": "C",
3099
+ "location": {
3100
+ "x": -1642.189,
3101
+ "y": -5720.345
3102
+ }
3103
+ },
3104
+ {
3105
+ "regionName": "Long",
3106
+ "superRegionName": "C",
3107
+ "location": {
3108
+ "x": -3356.814,
3109
+ "y": -5990.872
3110
+ }
3111
+ },
3112
+ {
3113
+ "regionName": "Garage",
3114
+ "superRegionName": "C",
3115
+ "location": {
3116
+ "x": 180.07678,
3117
+ "y": -7999.5845
3118
+ }
3119
+ },
3120
+ {
3121
+ "regionName": "Window",
3122
+ "superRegionName": "C",
3123
+ "location": {
3124
+ "x": -10.126678,
3125
+ "y": -8993.241
3126
+ }
3127
+ },
3128
+ {
3129
+ "regionName": "Site",
3130
+ "superRegionName": "C",
3131
+ "location": {
3132
+ "x": -2378.1328,
3133
+ "y": -9010.557
3134
+ }
3135
+ },
3136
+ {
3137
+ "regionName": "Cubby",
3138
+ "superRegionName": "C",
3139
+ "location": {
3140
+ "x": -2119.7693,
3141
+ "y": -6561.603
3142
+ }
3143
+ },
3144
+ {
3145
+ "regionName": "Spawn",
3146
+ "superRegionName": "Defender Side",
3147
+ "location": {
3148
+ "x": 2946.3042,
3149
+ "y": -12714.707
3150
+ }
3151
+ },
3152
+ {
3153
+ "regionName": "Doors",
3154
+ "superRegionName": "Mid",
3155
+ "location": {
3156
+ "x": 151.11594,
3157
+ "y": -6262.9155
3158
+ }
3159
+ },
3160
+ {
3161
+ "regionName": "Courtyard",
3162
+ "superRegionName": "Mid",
3163
+ "location": {
3164
+ "x": 1822.1299,
3165
+ "y": -6712.6875
3166
+ }
3167
+ },
3168
+ {
3169
+ "regionName": "Window",
3170
+ "superRegionName": "Mid",
3171
+ "location": {
3172
+ "x": 1950.2218,
3173
+ "y": -5567.912
3174
+ }
3175
+ },
3176
+ {
3177
+ "regionName": "Tower",
3178
+ "superRegionName": "A",
3179
+ "location": {
3180
+ "x": 6721.4043,
3181
+ "y": -10472.5205
3182
+ }
3183
+ }
3184
+ ]
3185
+ }
3186
+ }