gametools-global-mapping 0.1.22__tar.gz → 0.1.24__tar.gz
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.
Potentially problematic release.
This version of gametools-global-mapping might be problematic. Click here for more details.
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/PKG-INFO +1 -1
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf6.py +94 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/pyproject.toml +1 -1
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/README.md +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/__init__.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/battlebit.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/battlelog.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf1.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf1942.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf2.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf2042.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf2142.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf3.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf4.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf5.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bfbc2.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bfh.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bfvietnam.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/marne.py +0 -0
- {gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/other.py +0 -0
|
@@ -227,6 +227,28 @@ STAT_GAMEMODE = {
|
|
|
227
227
|
"Breakthrough0": {"gamemodeName": "Breakthrough", "image": ""},
|
|
228
228
|
"Rush0": {"gamemodeName": "Rush", "image": ""},
|
|
229
229
|
}
|
|
230
|
+
CLASSES = {
|
|
231
|
+
"assault": {
|
|
232
|
+
"className": "Assault",
|
|
233
|
+
"image": "https://cdn.gametools.network/classes/bf6/white/Assault.svg",
|
|
234
|
+
"altImage": "https://cdn.gametools.network/classes/bf6/black/Assault.svg",
|
|
235
|
+
},
|
|
236
|
+
"engineer": {
|
|
237
|
+
"className": "Engineer",
|
|
238
|
+
"image": "https://cdn.gametools.network/classes/bf6/white/Engineer.svg",
|
|
239
|
+
"altImage": "https://cdn.gametools.network/classes/bf6/black/Engineer.svg",
|
|
240
|
+
},
|
|
241
|
+
"support": {
|
|
242
|
+
"className": "Support",
|
|
243
|
+
"image": "https://cdn.gametools.network/classes/bf6/white/Support.svg",
|
|
244
|
+
"altImage": "https://cdn.gametools.network/classes/bf6/black/Support.svg",
|
|
245
|
+
},
|
|
246
|
+
"recon": {
|
|
247
|
+
"className": "Recon",
|
|
248
|
+
"image": "https://cdn.gametools.network/classes/bf6/white/Recon.svg",
|
|
249
|
+
"altImage": "https://cdn.gametools.network/classes/bf6/black/Recon.svg",
|
|
250
|
+
},
|
|
251
|
+
}
|
|
230
252
|
VEHICLES = {
|
|
231
253
|
"air_panthera": {
|
|
232
254
|
"type": "Air Combat",
|
|
@@ -269,3 +291,75 @@ VEHICLES = {
|
|
|
269
291
|
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_OB_VEH_Tank_Bradley_VSD0001_Dressing-66f252ca.webp",
|
|
270
292
|
},
|
|
271
293
|
}
|
|
294
|
+
WEAPONS = {
|
|
295
|
+
"mg_l110": {
|
|
296
|
+
"type": "Machine Guns",
|
|
297
|
+
"weaponName": "L110",
|
|
298
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_Minimi_PKG_Factory_MED-0e29fce7.webp",
|
|
299
|
+
},
|
|
300
|
+
"smg_pw5a3": {
|
|
301
|
+
"type": "SMG-PDWs",
|
|
302
|
+
"weaponName": "PW5A3",
|
|
303
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_MP5MLI_PKG_Factory_MED-2d1944b7.webp",
|
|
304
|
+
},
|
|
305
|
+
"ar_m433": {
|
|
306
|
+
"type": "Assault Rifles",
|
|
307
|
+
"weaponName": "M433",
|
|
308
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_HK433_PKG_Factory_MED-b06f02f7.webp",
|
|
309
|
+
},
|
|
310
|
+
"mg_rpkm": {
|
|
311
|
+
"type": "Machine Guns",
|
|
312
|
+
"weaponName": "RPKM",
|
|
313
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_RPKM_PKG_Factory_MED-755b785f.webp",
|
|
314
|
+
},
|
|
315
|
+
"sg_m87a1": {
|
|
316
|
+
"type": "Shotguns",
|
|
317
|
+
"weaponName": "M87A1",
|
|
318
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_590A1_PKG_Factory_MED-4b387330.webp",
|
|
319
|
+
},
|
|
320
|
+
"pst_p18": {
|
|
321
|
+
"type": "Pistols",
|
|
322
|
+
"weaponName": "P18",
|
|
323
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M18_PKG_Factory_MED-88261bf8.webp",
|
|
324
|
+
},
|
|
325
|
+
"crb_x277": {
|
|
326
|
+
"type": "Carbines",
|
|
327
|
+
"weaponName": "M277",
|
|
328
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_XM7_PKG_Factory_MED-26271094.webp",
|
|
329
|
+
},
|
|
330
|
+
"ar_b36a4": {
|
|
331
|
+
"type": "Assault Rifles",
|
|
332
|
+
"weaponName": "B36A4",
|
|
333
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_G36_PKG_Factory_MED-fb5466ec.webp",
|
|
334
|
+
},
|
|
335
|
+
"ar_l85a3": {
|
|
336
|
+
"type": "Assault Rifles",
|
|
337
|
+
"weaponName": "L85A3",
|
|
338
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_L85A3_PKG_Factory_MED-9bd0deaa.webp",
|
|
339
|
+
},
|
|
340
|
+
"snp_m2010": {
|
|
341
|
+
"type": "Rifles",
|
|
342
|
+
"weaponName": "M2010 ESR",
|
|
343
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M2010ESR_PKG_Factory_MED-f94fdae6.webp",
|
|
344
|
+
},
|
|
345
|
+
"sg_m1014": {
|
|
346
|
+
"type": "Shotguns",
|
|
347
|
+
"weaponName": "M1014",
|
|
348
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M1014_PKG_Factory_MED-e011854a.webp",
|
|
349
|
+
},
|
|
350
|
+
"crb_ak205": {
|
|
351
|
+
"type": "Carbines",
|
|
352
|
+
"weaponName": "AK-205",
|
|
353
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_AK205_PKG_Factory_MED-6d376081.webp",
|
|
354
|
+
},
|
|
355
|
+
"dmr_svk86": {
|
|
356
|
+
"type": "DMRs",
|
|
357
|
+
"weaponName": "SVK-8.6",
|
|
358
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_SVCh_PKG_Factory_MED-bb06d385.webp",
|
|
359
|
+
},
|
|
360
|
+
"smg_sgx": {
|
|
361
|
+
"type": "SMG-PDWs",
|
|
362
|
+
"weaponName": "SGX",
|
|
363
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_MPX_PKG_Factory_MED-e822f017.webp",
|
|
364
|
+
},
|
|
365
|
+
}
|
|
File without changes
|
{gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/__init__.py
RENAMED
|
File without changes
|
{gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/battlebit.py
RENAMED
|
File without changes
|
{gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/battlelog.py
RENAMED
|
File without changes
|
|
File without changes
|
{gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf1942.py
RENAMED
|
File without changes
|
|
File without changes
|
{gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf2042.py
RENAMED
|
File without changes
|
{gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bf2142.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{gametools_global_mapping-0.1.22 → gametools_global_mapping-0.1.24}/global_mapping/bfvietnam.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|