gametools-global-mapping 0.1.30__py3-none-any.whl

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.
global_mapping/bf6.py ADDED
@@ -0,0 +1,622 @@
1
+ PLATFORM = {
2
+ 0: "unknown",
3
+ 1: "pc",
4
+ 2: "ps4",
5
+ 3: "xboxone",
6
+ 4: "ps5",
7
+ 5: "xboxseries",
8
+ 6: "common",
9
+ 7: "steam",
10
+ }
11
+ STATS_PLATFORM = {
12
+ 1: "pc",
13
+ 3: "xboxone",
14
+ 2: "ps4",
15
+ 5: "xboxseries",
16
+ 4: "ps5",
17
+ 6: "common",
18
+ 7: "steam",
19
+ }
20
+ PLATFORM_REVERSE = {
21
+ "unknown": 0,
22
+ "pc": 1,
23
+ "ps4": 2,
24
+ "xboxone": 3,
25
+ "ps5": 4,
26
+ "xboxseries": 5,
27
+ "common": 6,
28
+ "steam": 7,
29
+ }
30
+ PLATFORM_FESL = {
31
+ 0: "pc",
32
+ 1: "pc",
33
+ 2: "ps4",
34
+ 3: "xboxone",
35
+ 4: "ps4",
36
+ 5: "xboxone",
37
+ 6: "pc",
38
+ 7: "pc",
39
+ }
40
+ STATS_PLATFORM_REVERSE = {
41
+ "pc": 1,
42
+ "xboxone": 3,
43
+ "ps4": 2,
44
+ "xboxseries": 5,
45
+ "ps5": 4,
46
+ "xbox": 5,
47
+ "psn": 4,
48
+ "steam": 7,
49
+ }
50
+ REGIONS = {
51
+ "aws-hkg": "Asia",
52
+ "aws-icn": "Asia",
53
+ "aws-nrt": "Asia",
54
+ "aws-sin": "Asia",
55
+ "aws-iad": "North America",
56
+ "aws-pdx": "North America",
57
+ "aws-sjc": "North America",
58
+ "aws-brz": "South America",
59
+ "aws-fra": "Europe",
60
+ "aws-lhr": "Europe",
61
+ "aws-syd": "Oceania",
62
+ }
63
+ REGIONSLIST = {
64
+ "asia": ["aws-hkg", "aws-icn", "aws-nrt", "aws-sin"],
65
+ "nam": ["aws-iad", "aws-pdx", "aws-sjc"],
66
+ "sam": ["aws-brz"],
67
+ "eu": ["aws-fra", "aws-lhr"],
68
+ "oc": ["aws-syd"],
69
+ "all": [
70
+ "aws-iad",
71
+ "aws-pdx",
72
+ "aws-sjc",
73
+ "aws-brz",
74
+ "aws-fra",
75
+ "aws-lhr",
76
+ "aws-hkg",
77
+ "aws-icn",
78
+ "aws-nrt",
79
+ "aws-sin",
80
+ "aws-syd",
81
+ ],
82
+ }
83
+ SHORT_REGIONS = {
84
+ "aws-hkg": "asia",
85
+ "aws-icn": "asia",
86
+ "aws-nrt": "asia",
87
+ "aws-sin": "asia",
88
+ "aws-iad": "nam",
89
+ "aws-pdx": "nam",
90
+ "aws-sjc": "nam",
91
+ "aws-brz": "sam",
92
+ "aws-fra": "eu",
93
+ "aws-lhr": "eu",
94
+ "aws-syd": "oc",
95
+ }
96
+ MAPS = {
97
+ "MP_Abbasid": "Siege of Cairo",
98
+ "MP_Aftermath": "Empire State",
99
+ "MP_Battery": "Iberian Offensive",
100
+ "MP_Capstone": "Liberation Peak",
101
+ "MP_Dumbo": "Manhattan Bridge",
102
+ "MP_FireStorm": "Operation Firestorm",
103
+ "MP_Limestone": "Saints Quarter",
104
+ "MP_Outskirts": "New Sobek City",
105
+ "MP_Tungsten": "Mirak Valley",
106
+ "MP_Granite_ClubHouse_Portal": "Club House",
107
+ "MP_Granite_TechCampus_Portal": "Tech Center",
108
+ }
109
+ TO_GAME_MAPS = {
110
+ "siege of cairo": "MP_Abbasid",
111
+ "empire state": "MP_Aftermath",
112
+ "iberian offensive": "MP_Battery",
113
+ "liberation peak": "MP_Capstone",
114
+ "manhattan bridge": "MP_Dumbo",
115
+ "operation firestorm": "MP_FireStorm",
116
+ "saints quarter": "MP_Limestone",
117
+ "new sobek city": "MP_Outskirts",
118
+ "mirak valley": "MP_Tungsten",
119
+ "club house": "MP_Granite_ClubHouse_Portal",
120
+ "tech center": "MP_Granite_TechCampus_Portal",
121
+ }
122
+ MAP_TRANSLATION_IDS = {
123
+ "MP_Abbasid": "ID_MP_LVL_ABBASID_NAME",
124
+ "MP_Aftermath": "ID_MP_LVL_AFTERMATH_NAME",
125
+ "MP_Battery": "ID_MP_LVL_BATTERY_NAME",
126
+ "MP_Capstone": "ID_ARRIVAL_MAP_CAPSTONE",
127
+ "MP_Dumbo": "ID_MP_LVL_DUMBO_NAME",
128
+ "MP_FireStorm": "ID_MP_LVL_FIRESTORM_NAME",
129
+ "MP_Limestone": "ID_MP_LVL_LIMESTONE_NAME",
130
+ "MP_Outskirts": "ID_MP_LVL_OUTSKIRTS_NAME",
131
+ "MP_Tungsten": "ID_MP_LVL_TUNGSTEN_NAME",
132
+ "MP_Granite_ClubHouse_Portal": "ID_ARRIVAL_MAP_GRANITE_CLUB_HOUSE",
133
+ "MP_Granite_TechCampus_Portal": "ID_ARRIVAL_MAP_GRANITE_TECH_CENTER",
134
+ }
135
+ MAP_PICTURES = {
136
+ "MP_Abbasid": "https://cdn.gametools.network/maps/bf6/T_UI_Abbasid_Large_OPT-49a3761a.webp",
137
+ "MP_Aftermath": "https://cdn.gametools.network/maps/bf6/T_UI_Aftermath_Large_OPT-bf883df1.webp",
138
+ "MP_Battery": "https://cdn.gametools.network/maps/bf6/T_UI_Battery_Large_OPT-034d4636.webp",
139
+ "MP_Capstone": "https://cdn.gametools.network/maps/bf6/T_UI_Capstone_Large_OPT-2ccae694.webp",
140
+ "MP_Dumbo": "https://cdn.gametools.network/maps/bf6/T_UI_Dumbo_Large_OPT-20de031f.webp",
141
+ "MP_FireStorm": "https://cdn.gametools.network/maps/bf6/T_UI_Firestorm_Large_OPT-45d582ad.webp",
142
+ "MP_Limestone": "https://cdn.gametools.network/maps/bf6/T_UI_Limestone_Large_OPT-c9160897.webp",
143
+ "MP_Outskirts": "https://cdn.gametools.network/maps/bf6/T_UI_Outskirts_Large_OPT-bf08f756.webp",
144
+ "MP_Tungsten": "https://cdn.gametools.network/maps/bf6/T_UI_Tungsten_Large_OPT-935da06b.webp",
145
+ "MP_Granite_ClubHouse_Portal": "https://cdn.gametools.network/maps/bf6/T_UI_Granite_Portal_05_Thumb_SML-74ea7be7.webp",
146
+ "MP_Granite_TechCampus_Portal": "https://cdn.gametools.network/maps/bf6/T_UI_Granite_Portal_06_Thumb_SML-80099ba6.webp",
147
+ }
148
+ SMALLMODES = {
149
+ "Breakthrough0": "BT",
150
+ "BreakthroughSmall0": "BS",
151
+ "ConquestSmall0": "CQ",
152
+ "ModBuilderCustom0": "CM",
153
+ "Rush0": "RS",
154
+ "Conquest0": "CL",
155
+ }
156
+ MODES = {
157
+ "Breakthrough0": "Breakthrough Large",
158
+ "BreakthroughSmall0": "Breakthrough",
159
+ "ConquestSmall0": "Conquest",
160
+ "ModBuilderCustom0": "Custom",
161
+ "Rush0": "Rush",
162
+ "Conquest0": "Conquest large",
163
+ }
164
+ TO_GAME_MODES = {
165
+ "breakthrough large": "Breakthrough0",
166
+ "breakthrough": "BreakthroughSmall0",
167
+ "conquest": "ConquestSmall0",
168
+ "custom": "ModBuilderCustom0",
169
+ "rush": "Rush0",
170
+ "conquest large": "Conquest0",
171
+ }
172
+ STAT_MAPS = {
173
+ "mpabbasid": {
174
+ "mapName": "Siege of Cairo",
175
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Abbasid_Large_OPT-49a3761a.webp",
176
+ },
177
+ "mpaftermath": {
178
+ "mapName": "Empire State",
179
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Aftermath_Large_OPT-bf883df1.webp",
180
+ },
181
+ "mpbattery": {
182
+ "mapName": "Iberian Offensive",
183
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Battery_Large_OPT-034d4636.webp",
184
+ },
185
+ "mpcapstone": {
186
+ "mapName": "Liberation Peak",
187
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Capstone_Large_OPT-2ccae694.webp",
188
+ },
189
+ "mpdumbo": {
190
+ "mapName": "Manhattan Bridge",
191
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Dumbo_Large_OPT-20de031f.webp",
192
+ },
193
+ "mpfirestorm": {
194
+ "mapName": "Operation Firestorm",
195
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Firestorm_Large_OPT-45d582ad.webp",
196
+ },
197
+ "mplimestone": {
198
+ "mapName": "Saints Quarter",
199
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Limestone_Large_OPT-c9160897.webp",
200
+ },
201
+ "mpoutskirts": {
202
+ "mapName": "New Sobek City",
203
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Outskirts_Large_OPT-bf08f756.webp",
204
+ },
205
+ "mptungsten": {
206
+ "mapName": "Mirak Valley",
207
+ "image": "https://cdn.gametools.network/maps/bf6/T_UI_Tungsten_Large_OPT-935da06b.webp",
208
+ },
209
+ "mpbadlands": {
210
+ "mapName": "Blackwell Fields",
211
+ "image": "https://cdn.gametools.network/maps/bf6/Battlefield_6_Blackwell_Fields.webp",
212
+ },
213
+ "ftpgranite": {
214
+ "mapName": "REDSEC",
215
+ "image": "https://cdn.gametools.network/maps/bf6/Battlefield_6_Redsec.webp",
216
+ },
217
+ }
218
+ STAT_GAMEMODE = {
219
+ "MP_Escalation0": {"gamemodeName": "Escalation", "image": ""},
220
+ "MP_TeamDM0": {"gamemodeName": "Team deathmatch", "image": ""},
221
+ "Conquest0": {"gamemodeName": "Conquest", "image": ""},
222
+ "MP_KOTH0": {"gamemodeName": "King of the hill", "image": ""},
223
+ "MP_SquadDM0": {"gamemodeName": "Squad deathmatch", "image": ""},
224
+ "Breakthrough0": {"gamemodeName": "Breakthrough", "image": ""},
225
+ "Rush0": {"gamemodeName": "Rush", "image": ""},
226
+ }
227
+ CLASSES = {
228
+ "assault": {
229
+ "className": "Assault",
230
+ "image": "https://cdn.gametools.network/classes/bf6/white/Assault.svg",
231
+ "altImage": "https://cdn.gametools.network/classes/bf6/black/Assault.svg",
232
+ },
233
+ "engineer": {
234
+ "className": "Engineer",
235
+ "image": "https://cdn.gametools.network/classes/bf6/white/Engineer.svg",
236
+ "altImage": "https://cdn.gametools.network/classes/bf6/black/Engineer.svg",
237
+ },
238
+ "support": {
239
+ "className": "Support",
240
+ "image": "https://cdn.gametools.network/classes/bf6/white/Support.svg",
241
+ "altImage": "https://cdn.gametools.network/classes/bf6/black/Support.svg",
242
+ },
243
+ "recon": {
244
+ "className": "Recon",
245
+ "image": "https://cdn.gametools.network/classes/bf6/white/Recon.svg",
246
+ "altImage": "https://cdn.gametools.network/classes/bf6/black/Recon.svg",
247
+ },
248
+ }
249
+ VEHICLES = {
250
+ "air_panthera": {
251
+ "type": "Air Combat",
252
+ "vehicleName": "Panthera KHT",
253
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Eurocopter_VSD0001-8003028d.webp",
254
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_Eurocopter_VSD0001-8003028d.webp",
255
+ },
256
+ "air_m77efalchio": {
257
+ "type": "Air Combat",
258
+ "vehicleName": "M77E Falchion",
259
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_AH64E_VSD0001-dd0a7df6.webp",
260
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_AH64E_VSD0001-dd0a7df6.webp",
261
+ },
262
+ "sur_leoa4": {
263
+ "type": "Ground Combat",
264
+ "vehicleName": "Leo A4",
265
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Leopard_VSD0001-f8da51ee.webp",
266
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_Leopard_VSD0001-f8da51ee.webp",
267
+ },
268
+ "sur_strf09a4": {
269
+ "type": "Ground Combat",
270
+ "vehicleName": "Strf 09 A4",
271
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_CV90_VSD0001-acd942b6.webp",
272
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_CV90_VSD0001-acd942b6.webp",
273
+ },
274
+ "sur_m1a2sepv3": {
275
+ "type": "Ground Combat",
276
+ "vehicleName": "M1A2 SEPv3",
277
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Abrams_VSD0001-5412a78d.webp",
278
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_Abrams_VSD0001-5412a78d.webp",
279
+ },
280
+ "sur_cheetah1a2": {
281
+ "type": "Ground Combat",
282
+ "vehicleName": "Cheetah 1A2",
283
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Gepard_VSD0001-d796732f.webp",
284
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_Gepard_VSD0001-d796732f.webp",
285
+ },
286
+ "sur_glider96": {
287
+ "type": "Ground Combat",
288
+ "vehicleName": "Glider 96",
289
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Flyer60_VSD0005-1569869f.webp",
290
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_Flyer60_VSD0005-1569869f.webp",
291
+ },
292
+ "sur_bradley": {
293
+ "type": "Ground Combat",
294
+ "vehicleName": "M3A3 Bradley",
295
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_OB_VEH_Tank_Bradley_VSD0001_Dressing-66f252ca.webp",
296
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_OB_VEH_Tank_Bradley_VSD0001_Dressing-66f252ca.webp",
297
+ },
298
+ "air_su57": {
299
+ "type": "Air Combat",
300
+ "vehicleName": "Su-57",
301
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_SU57_VSD0001-1b5aa5ee.webp",
302
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_SU57_VSD0001-1b5aa5ee.webp",
303
+ },
304
+ "air_f61v": {
305
+ "type": "Air Combat",
306
+ "vehicleName": "F-61V",
307
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_F16_VSD0001-5f951ec9.webp",
308
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_F16_VSD0001-5f951ec9.webp",
309
+ },
310
+ "air_f39e": {
311
+ "type": "Air Combat",
312
+ "vehicleName": "F-39E",
313
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_JAS39_VSD0001-9313d717.webp",
314
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_JAS39_VSD0001-9313d717.webp",
315
+ },
316
+ "air_m77efalchion": {
317
+ "type": "Air Combat",
318
+ "vehicleName": "M77E Falchion",
319
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_AH64E_VSD0001-dd0a7df6.webp",
320
+ "altImage": "https://cdn.gametools.network/vehicles/bf6/white/T_UI_MDV_AH64E_VSD0001-dd0a7df6.webp",
321
+ },
322
+ "sur_vector": {
323
+ "type": "Ground Transport",
324
+ "vehicleName": "VECTOR",
325
+ "image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Vector_VSD0002-241efa80.webp",
326
+ },
327
+ }
328
+ VEHICLE_GROUPS = {
329
+ "air": {"groupName": "Air Combat"},
330
+ "sur": {"groupName": "Ground Combat"},
331
+ }
332
+ WEAPONS = {
333
+ "mg_l110": {
334
+ "type": "Machine Guns",
335
+ "weaponName": "L110",
336
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_Minimi_PKG_Factory_MED-0e29fce7.webp",
337
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_Minimi_PKG_Factory_MED-0e29fce7.webp",
338
+ },
339
+ "smg_pw5a3": {
340
+ "type": "SMG-PDWs",
341
+ "weaponName": "PW5A3",
342
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_MP5MLI_PKG_Factory_MED-2d1944b7.webp",
343
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_MP5MLI_PKG_Factory_MED-2d1944b7.webp",
344
+ },
345
+ "ar_m433": {
346
+ "type": "Assault Rifles",
347
+ "weaponName": "M433",
348
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_HK433_PKG_Factory_MED-b06f02f7.webp",
349
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_HK433_PKG_Factory_MED-b06f02f7.webp",
350
+ },
351
+ "mg_rpkm": {
352
+ "type": "Machine Guns",
353
+ "weaponName": "RPKM",
354
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_RPKM_PKG_Factory_MED-755b785f.webp",
355
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_RPKM_PKG_Factory_MED-755b785f.webp",
356
+ },
357
+ "sg_m87a1": {
358
+ "type": "Shotguns",
359
+ "weaponName": "M87A1",
360
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_590A1_PKG_Factory_MED-4b387330.webp",
361
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_590A1_PKG_Factory_MED-4b387330.webp",
362
+ },
363
+ "pst_p18": {
364
+ "type": "Pistols",
365
+ "weaponName": "P18",
366
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M18_PKG_Factory_MED-88261bf8.webp",
367
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M18_PKG_Factory_MED-88261bf8.webp",
368
+ },
369
+ "crb_x277": {
370
+ "type": "Carbines",
371
+ "weaponName": "M277",
372
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_XM7_PKG_Factory_MED-26271094.webp",
373
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_XM7_PKG_Factory_MED-26271094.webp",
374
+ },
375
+ "ar_b36a4": {
376
+ "type": "Assault Rifles",
377
+ "weaponName": "B36A4",
378
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_G36_PKG_Factory_MED-fb5466ec.webp",
379
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_G36_PKG_Factory_MED-fb5466ec.webp",
380
+ },
381
+ "ar_l85a3": {
382
+ "type": "Assault Rifles",
383
+ "weaponName": "L85A3",
384
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_L85A3_PKG_Factory_MED-9bd0deaa.webp",
385
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_L85A3_PKG_Factory_MED-9bd0deaa.webp",
386
+ },
387
+ "snp_m2010": {
388
+ "type": "Rifles",
389
+ "weaponName": "M2010 ESR",
390
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M2010ESR_PKG_Factory_MED-f94fdae6.webp",
391
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M2010ESR_PKG_Factory_MED-f94fdae6.webp",
392
+ },
393
+ "sg_m1014": {
394
+ "type": "Shotguns",
395
+ "weaponName": "M1014",
396
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M1014_PKG_Factory_MED-e011854a.webp",
397
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M1014_PKG_Factory_MED-e011854a.webp",
398
+ },
399
+ "crb_ak205": {
400
+ "type": "Carbines",
401
+ "weaponName": "AK-205",
402
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_AK205_PKG_Factory_MED-6d376081.webp",
403
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_AK205_PKG_Factory_MED-6d376081.webp",
404
+ },
405
+ "dmr_svk86": {
406
+ "type": "DMRs",
407
+ "weaponName": "SVK-8.6",
408
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_SVCh_PKG_Factory_MED-bb06d385.webp",
409
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_SVCh_PKG_Factory_MED-bb06d385.webp",
410
+ },
411
+ "smg_sgx": {
412
+ "type": "SMG-PDWs",
413
+ "weaponName": "SGX",
414
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_MPX_PKG_Factory_MED-e822f017.webp",
415
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_MPX_PKG_Factory_MED-e822f017.webp",
416
+ },
417
+ "dmr_lmr27": {
418
+ "type": "DMRs",
419
+ "weaponName": "LMR27",
420
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_ARADMR_PKG_Factory_MED-dfe224de.webp",
421
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_ARADMR_PKG_Factory_MED-dfe224de.webp",
422
+ },
423
+ "crb_qbz192": {
424
+ "type": "Carbines",
425
+ "weaponName": "QBZ-192",
426
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_QBZ192_PKG_Factory_MED-dc0a546b.webp",
427
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_QBZ192_PKG_Factory_MED-dc0a546b.webp",
428
+ },
429
+ "crb_m417a2": {
430
+ "type": "Carbines",
431
+ "weaponName": "M417 A2",
432
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_HK417A2_PKG_Factory_MED-494ffe6e.webp",
433
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_HK417A2_PKG_Factory_MED-494ffe6e.webp",
434
+ },
435
+ "mg_drsiar": {
436
+ "type": "Machine Guns",
437
+ "weaponName": "DRS-IAR",
438
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M27IAR_PKG_Factory_MED-ae6675cd.webp",
439
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M27IAR_PKG_Factory_MED-ae6675cd.webp",
440
+ },
441
+ "ar_kord6p67": {
442
+ "type": "Assault Rifles",
443
+ "weaponName": "KORD 6P67",
444
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_6P67_PKG_Factory_MED-827b9414.webp",
445
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_6P67_PKG_Factory_MED-827b9414.webp",
446
+ },
447
+ "smg_usg90": {
448
+ "type": "SMG-PDWs",
449
+ "weaponName": "USG-90",
450
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_P90_PKG_Factory_MED-2ab1db64.webp",
451
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_P90_PKG_Factory_MED-2ab1db64.webp",
452
+ },
453
+ "crb_m4a1": {
454
+ "type": "Carbines",
455
+ "weaponName": "M4A1",
456
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M4A1_PKG_Factory_MED-34529a82.webp",
457
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M4A1_PKG_Factory_MED-34529a82.webp",
458
+ },
459
+ "mg_kts100mk8": {
460
+ "type": "Machine Guns",
461
+ "weaponName": "KTS100 MK8",
462
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_Ultimax_PKG_Factory_MED-a8ebb482.webp",
463
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_Ultimax_PKG_Factory_MED-a8ebb482.webp",
464
+ },
465
+ "pst_m45a1": {
466
+ "type": "Pistols",
467
+ "weaponName": "M45A1",
468
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M45A1_PKG_Factory_MED-8c41691b.webp",
469
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M45A1_PKG_Factory_MED-8c41691b.webp",
470
+ },
471
+ "smg_kv9": {
472
+ "type": "SMG-PDWs",
473
+ "weaponName": "KV9",
474
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_Vector_PKG_Factory_MED-b5631ed7.webp",
475
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_Vector_PKG_Factory_MED-b5631ed7.webp",
476
+ },
477
+ "ar_sor556mk2": {
478
+ "type": "Assault Rifles",
479
+ "weaponName": "SOR-556 Mk2",
480
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_SCARL_PKG_Factory_MED-b44467bb.webp",
481
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_SCARL_PKG_Factory_MED-b44467bb.webp",
482
+ },
483
+ "smg_pw7a2": {
484
+ "type": "SMG-PDWs",
485
+ "weaponName": "PW7A2",
486
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_MP7A2_PKG_Factory_MED-406bc965.webp",
487
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_MP7A2_PKG_Factory_MED-406bc965.webp",
488
+ },
489
+ "mg_m123k": {
490
+ "type": "Machine Guns",
491
+ "weaponName": "M123K",
492
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_MG4K_PKG_Factory_MED-cc064690.webp",
493
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_MG4K_PKG_Factory_MED-cc064690.webp",
494
+ },
495
+ "pst_m44": {
496
+ "type": "Pistols",
497
+ "weaponName": "M44",
498
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_RagingHunter_PKG_Factory_MED-f9773307.webp",
499
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_RagingHunter_PKG_Factory_MED-f9773307.webp",
500
+ },
501
+ "mg_xm250": {
502
+ "type": "Machine Guns",
503
+ "weaponName": "M250",
504
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M250_PKG_Factory_MED-6e230a71.webp",
505
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M250_PKG_Factory_MED-6e230a71.webp",
506
+ },
507
+ "smg_umg40": {
508
+ "type": "SMG-PDWs",
509
+ "weaponName": "UMG-40",
510
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_UMP40_PKG_Factory_MED-22afa646.webp",
511
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_UMP40_PKG_Factory_MED-22afa646.webp",
512
+ },
513
+ "ar_tr7": {
514
+ "type": "Assault Rifles",
515
+ "weaponName": "TR-7",
516
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_Tavor7_PKG_Factory_MED-e682f267.webp",
517
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_Tavor7_PKG_Factory_MED-e682f267.webp",
518
+ },
519
+ "smg_sl9": {
520
+ "type": "SMG-PDWs",
521
+ "weaponName": "SL9",
522
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_APDW_PKG_Factory_MED-c4d1b829.webp",
523
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_APDW_PKG_Factory_MED-c4d1b829.webp",
524
+ },
525
+ "mg_m240l": {
526
+ "type": "Machine Guns",
527
+ "weaponName": "M240L",
528
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M240L_PKG_Factory_MED-1fa18e0c.webp",
529
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M240L_PKG_Factory_MED-1fa18e0c.webp",
530
+ },
531
+ "smg_scw10": {
532
+ "type": "SMG-PDWs",
533
+ "weaponName": "SCW-10",
534
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_APC10_PKG_Factory_MED-716a97fb.webp",
535
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_APC10_PKG_Factory_MED-716a97fb.webp",
536
+ },
537
+ "ar_nvo228e": {
538
+ "type": "Assault Rifles",
539
+ "weaponName": "NVO-228E",
540
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_ACE32_PKG_Factory_MED-39a97220.webp",
541
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_ACE32_PKG_Factory_MED-39a97220.webp",
542
+ },
543
+ "mg_m60": {
544
+ "type": "Machine Guns",
545
+ "weaponName": "M/60",
546
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M60E6_PKG_Factory_MED-e600bb28.webp",
547
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_M60E6_PKG_Factory_MED-e600bb28.webp",
548
+ },
549
+ "snp_psr": {
550
+ "type": "Rifles",
551
+ "weaponName": "PSR",
552
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_MRAD_PKG_Factory_MED-5035ce99.webp",
553
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_MRAD_PKG_Factory_MED-5035ce99.webp",
554
+ },
555
+ "dmr_svdm": {
556
+ "type": "DMRs",
557
+ "weaponName": "SVDM",
558
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_SVDM_PKG_Factory_MED-b6c9aa50.webp",
559
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_SVDM_PKG_Factory_MED-b6c9aa50.webp",
560
+ },
561
+ "ar_ak4d": {
562
+ "type": "Assault Rifles",
563
+ "weaponName": "AK4D",
564
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_G3A4_PKG_Factory_MED-0575cf00.webp",
565
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_G3A4_PKG_Factory_MED-0575cf00.webp",
566
+ },
567
+ "crb_sor300sc": {
568
+ "type": "Carbines",
569
+ "weaponName": "SOR-300SC",
570
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_SCARSC_PKG_Factory_MED-7a6a50ff.webp",
571
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_SCARSC_PKG_Factory_MED-7a6a50ff.webp",
572
+ },
573
+ "crb_sg553r": {
574
+ "type": "Carbines",
575
+ "weaponName": "SG 553R",
576
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_SIG553R_PKG_Factory_MED-afc2dfa8.webp",
577
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_SIG553R_PKG_Factory_MED-afc2dfa8.webp",
578
+ },
579
+ "crb_grtbc": {
580
+ "type": "Carbines",
581
+ "weaponName": "GRT-BC",
582
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_MSBSGROTB_PKG_Factory_MED-25acf006.webp",
583
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_MSBSGROTB_PKG_Factory_MED-25acf006.webp",
584
+ },
585
+ "sg_185ksk": {
586
+ "type": "Shotguns",
587
+ "weaponName": "18.5KS-K",
588
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_185KSK_PKG_Factory_MED-432c353f.webp",
589
+ "altImage": "https://cdn.gametools.network/weapons/bf6/white/T_UI_MSBSGROTB_PKG_Factory_MED-25acf006.webp",
590
+ },
591
+ "pst_es57": {
592
+ "type": "Pistols",
593
+ "weaponName": "ES 5.7",
594
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M18_PKG_Factory_MED-88261bf8.webp", # incorrect image!
595
+ },
596
+ "dmr_m39emr": {
597
+ "type": "DMRs",
598
+ "weaponName": "M39 EMR",
599
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_SVCh_PKG_Factory_MED-bb06d385.webp", # incorrect image!
600
+ },
601
+ "snp_sv98": {
602
+ "type": "Rifles",
603
+ "weaponName": "SV-98",
604
+ "image": "https://cdn.gametools.network/weapons/bf6/T_UI_M2010ESR_PKG_Factory_MED-f94fdae6.webp", # incorrect image!
605
+ },
606
+ }
607
+ WEAPON_GROUPS = {
608
+ "snp": {"groupName": "Rifles"},
609
+ "crb": {"groupName": "Carbines"},
610
+ "mg": {"groupName": "Machine Guns"},
611
+ "sg": {"groupName": "Shotguns"},
612
+ "ar": {"groupName": "Assault Rifles"},
613
+ "smg": {"groupName": "SMG-PDWs"},
614
+ "dmr": {"groupName": "DMRs"},
615
+ }
616
+ GADGETS = {
617
+ "callin_airstrike": {
618
+ "type": "Strike Packages",
619
+ "gadgetName": "Air Strike",
620
+ "image": "https://cdn.gametools.network/gadgets/bf6/T_UI_CALLINS_Airstrike_Thumb-638b4ee1.png",
621
+ }
622
+ }