gametools-global-mapping 0.1.23__py3-none-any.whl → 0.1.25__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.
Potentially problematic release.
This version of gametools-global-mapping might be problematic. Click here for more details.
- {gametools_global_mapping-0.1.23.dist-info → gametools_global_mapping-0.1.25.dist-info}/METADATA +1 -1
- {gametools_global_mapping-0.1.23.dist-info → gametools_global_mapping-0.1.25.dist-info}/RECORD +4 -4
- global_mapping/bf6.py +165 -0
- {gametools_global_mapping-0.1.23.dist-info → gametools_global_mapping-0.1.25.dist-info}/WHEEL +0 -0
{gametools_global_mapping-0.1.23.dist-info → gametools_global_mapping-0.1.25.dist-info}/RECORD
RENAMED
|
@@ -9,12 +9,12 @@ global_mapping/bf2142.py,sha256=DGqs6ekUDW39j4sHeDo8xNJeJ0d6U1PPV8vRu53zDEE,789
|
|
|
9
9
|
global_mapping/bf3.py,sha256=Ex-eAZh7cjcur1GgNxkDK2PSo517kT6ELyQ-RbK0LC4,11228
|
|
10
10
|
global_mapping/bf4.py,sha256=xGonculIIQS9JJVhHg5R5RlAhh8hSIxJcPaM6u_RIDo,12577
|
|
11
11
|
global_mapping/bf5.py,sha256=VUn5bnPQKm4Hj9WeZ26LV3ZOzHxXwDEHWCi_ZNdOBGE,44264
|
|
12
|
-
global_mapping/bf6.py,sha256=
|
|
12
|
+
global_mapping/bf6.py,sha256=v5Q6uj2xw7Oi_jfrD15VYYNx-KviDzOPBLkdxnqfn2k,17352
|
|
13
13
|
global_mapping/bfbc2.py,sha256=nKORJaGJepBq-p52u2eHFiQSTf928Krg7FwwWLjE2PM,5836
|
|
14
14
|
global_mapping/bfh.py,sha256=K4myVHZ3hAygcGBs3LsdnU1xbNFBDTF-bU9jrYEilO8,6326
|
|
15
15
|
global_mapping/bfvietnam.py,sha256=tYqwMfhT_Rse-GkKTiqxanvfVtozNi3HW20xp8UntvQ,646
|
|
16
16
|
global_mapping/marne.py,sha256=FGk-1kacl2MzYnOlVWkvKiICBi4Y2EOHBr8s1-nAO9s,4873
|
|
17
17
|
global_mapping/other.py,sha256=Zr-jl06ymz8WNJ6lUsEQWNycUwddLtgGqUMduH0cmRo,2213
|
|
18
|
-
gametools_global_mapping-0.1.
|
|
19
|
-
gametools_global_mapping-0.1.
|
|
20
|
-
gametools_global_mapping-0.1.
|
|
18
|
+
gametools_global_mapping-0.1.25.dist-info/METADATA,sha256=2r5D2dNFAEhXhU5wlS9R54MvSCZyiNJg4WzjKIiNO5s,576
|
|
19
|
+
gametools_global_mapping-0.1.25.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
20
|
+
gametools_global_mapping-0.1.25.dist-info/RECORD,,
|
global_mapping/bf6.py
CHANGED
|
@@ -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",
|
|
@@ -268,6 +290,30 @@ VEHICLES = {
|
|
|
268
290
|
"vehicleName": "M3A3 Bradley",
|
|
269
291
|
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_OB_VEH_Tank_Bradley_VSD0001_Dressing-66f252ca.webp",
|
|
270
292
|
},
|
|
293
|
+
"air_su57": {
|
|
294
|
+
"type": "Air Combat",
|
|
295
|
+
"vehicleName": "Su-57",
|
|
296
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_SU57_VSD0001-1b5aa5ee.webp",
|
|
297
|
+
},
|
|
298
|
+
"air_f61v": {
|
|
299
|
+
"type": "Air Combat",
|
|
300
|
+
"vehicleName": "F-61V",
|
|
301
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_F16_VSD0001-5f951ec9.webp",
|
|
302
|
+
},
|
|
303
|
+
"air_f39e": {
|
|
304
|
+
"type": "Air Combat",
|
|
305
|
+
"vehicleName": "F-39E",
|
|
306
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_JAS39_VSD0001-9313d717.webp",
|
|
307
|
+
},
|
|
308
|
+
"air_m77efalchion": {
|
|
309
|
+
"type": "Air Combat",
|
|
310
|
+
"vehicleName": "M77E Falchion",
|
|
311
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_AH64E_VSD0001-dd0a7df6.webp",
|
|
312
|
+
},
|
|
313
|
+
}
|
|
314
|
+
VEHICLE_GROUPS = {
|
|
315
|
+
"air": {"groupName": "Air Combat"},
|
|
316
|
+
"sur": {"groupName": "Ground Combat"},
|
|
271
317
|
}
|
|
272
318
|
WEAPONS = {
|
|
273
319
|
"mg_l110": {
|
|
@@ -340,4 +386,123 @@ WEAPONS = {
|
|
|
340
386
|
"weaponName": "SGX",
|
|
341
387
|
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_MPX_PKG_Factory_MED-e822f017.webp",
|
|
342
388
|
},
|
|
389
|
+
"dmr_lmr27": {
|
|
390
|
+
"type": "DMRs",
|
|
391
|
+
"weaponName": "LMR27",
|
|
392
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_ARADMR_PKG_Factory_MED-dfe224de.webp",
|
|
393
|
+
},
|
|
394
|
+
"crb_qbz192": {
|
|
395
|
+
"type": "Carbines",
|
|
396
|
+
"weaponName": "QBZ-192",
|
|
397
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_QBZ192_PKG_Factory_MED-dc0a546b.webp",
|
|
398
|
+
},
|
|
399
|
+
"crb_m417a2": {
|
|
400
|
+
"type": "Carbines",
|
|
401
|
+
"weaponName": "M417 A2",
|
|
402
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_HK417A2_PKG_Factory_MED-494ffe6e.webp",
|
|
403
|
+
},
|
|
404
|
+
"mg_drsiar": {
|
|
405
|
+
"type": "Machine Guns",
|
|
406
|
+
"weaponName": "DRS-IAR",
|
|
407
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M27IAR_PKG_Factory_MED-ae6675cd.webp",
|
|
408
|
+
},
|
|
409
|
+
"ar_kord6p67": {
|
|
410
|
+
"type": "Assault Rifles",
|
|
411
|
+
"weaponName": "KORD 6P67",
|
|
412
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_6P67_PKG_Factory_MED-827b9414.webp",
|
|
413
|
+
},
|
|
414
|
+
"smg_usg90": {
|
|
415
|
+
"type": "SMG-PDWs",
|
|
416
|
+
"weaponName": "USG-90",
|
|
417
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_P90_PKG_Factory_MED-2ab1db64.webp",
|
|
418
|
+
},
|
|
419
|
+
"crb_m4a1": {
|
|
420
|
+
"type": "Carbines",
|
|
421
|
+
"weaponName": "M4A1",
|
|
422
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M4A1_PKG_Factory_MED-34529a82.webp",
|
|
423
|
+
},
|
|
424
|
+
"mg_kts100mk8": {
|
|
425
|
+
"type": "Machine Guns",
|
|
426
|
+
"weaponName": "KTS100 MK8",
|
|
427
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_Ultimax_PKG_Factory_MED-a8ebb482.webp",
|
|
428
|
+
},
|
|
429
|
+
"pst_m45a1": {
|
|
430
|
+
"type": "Pistols",
|
|
431
|
+
"weaponName": "M45A1",
|
|
432
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M45A1_PKG_Factory_MED-8c41691b.webp",
|
|
433
|
+
},
|
|
434
|
+
"smg_kv9": {
|
|
435
|
+
"type": "SMG-PDWs",
|
|
436
|
+
"weaponName": "KV9",
|
|
437
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_Vector_PKG_Factory_MED-b5631ed7.webp",
|
|
438
|
+
},
|
|
439
|
+
"ar_sor556mk2": {
|
|
440
|
+
"type": "Assault Rifles",
|
|
441
|
+
"weaponName": "SOR-556 Mk2",
|
|
442
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_SCARL_PKG_Factory_MED-b44467bb.webp",
|
|
443
|
+
},
|
|
444
|
+
"smg_pw7a2": {
|
|
445
|
+
"type": "SMG-PDWs",
|
|
446
|
+
"weaponName": "PW7A2",
|
|
447
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_MP7A2_PKG_Factory_MED-406bc965.webp",
|
|
448
|
+
},
|
|
449
|
+
"mg_m123k": {
|
|
450
|
+
"type": "Machine Guns",
|
|
451
|
+
"weaponName": "M123K",
|
|
452
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_MG4K_PKG_Factory_MED-cc064690.webp",
|
|
453
|
+
},
|
|
454
|
+
"pst_m44": {
|
|
455
|
+
"type": "Pistols",
|
|
456
|
+
"weaponName": "M44",
|
|
457
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_RagingHunter_PKG_Factory_MED-f9773307.webp",
|
|
458
|
+
},
|
|
459
|
+
"mg_xm250": {
|
|
460
|
+
"type": "Machine Guns",
|
|
461
|
+
"weaponName": "M250",
|
|
462
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M250_PKG_Factory_MED-6e230a71.webp",
|
|
463
|
+
},
|
|
464
|
+
"smg_umg40": {
|
|
465
|
+
"type": "SMG-PDWs",
|
|
466
|
+
"weaponName": "UMG-40",
|
|
467
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_UMP40_PKG_Factory_MED-22afa646.webp",
|
|
468
|
+
},
|
|
469
|
+
"ar_tr7": {
|
|
470
|
+
"type": "Assault Rifles",
|
|
471
|
+
"weaponName": "TR-7",
|
|
472
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_Tavor7_PKG_Factory_MED-e682f267.webp",
|
|
473
|
+
},
|
|
474
|
+
"smg_sl9": {
|
|
475
|
+
"type": "SMG-PDWs",
|
|
476
|
+
"weaponName": "SL9",
|
|
477
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_APDW_PKG_Factory_MED-c4d1b829.webp",
|
|
478
|
+
},
|
|
479
|
+
"mg_m240l": {
|
|
480
|
+
"type": "Machine Guns",
|
|
481
|
+
"weaponName": "M240L",
|
|
482
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M240L_PKG_Factory_MED-1fa18e0c.webp",
|
|
483
|
+
},
|
|
484
|
+
"smg_scw10": {
|
|
485
|
+
"type": "SMG-PDWs",
|
|
486
|
+
"weaponName": "SCW-10",
|
|
487
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_APC10_PKG_Factory_MED-716a97fb.webp",
|
|
488
|
+
},
|
|
489
|
+
"ar_nvo228e": {
|
|
490
|
+
"type": "Assault Rifles",
|
|
491
|
+
"weaponName": "NVO-228E",
|
|
492
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_ACE32_PKG_Factory_MED-39a97220.webp",
|
|
493
|
+
},
|
|
494
|
+
"mg_m60": {
|
|
495
|
+
"type": "Machine Guns",
|
|
496
|
+
"weaponName": "M/60",
|
|
497
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M60E6_PKG_Factory_MED-e600bb28.webp",
|
|
498
|
+
},
|
|
499
|
+
}
|
|
500
|
+
WEAPON_GROUPS = {
|
|
501
|
+
"snp": {"groupName": "Rifles"},
|
|
502
|
+
"crb": {"groupName": "Carbines"},
|
|
503
|
+
"mg": {"groupName": "Machine Guns"},
|
|
504
|
+
"sg": {"groupName": "Shotguns"},
|
|
505
|
+
"ar": {"groupName": "Assault Rifles"},
|
|
506
|
+
"smg": {"groupName": "SMG-PDWs"},
|
|
507
|
+
"dmr": {"groupName": "DMRs"},
|
|
343
508
|
}
|
{gametools_global_mapping-0.1.23.dist-info → gametools_global_mapping-0.1.25.dist-info}/WHEEL
RENAMED
|
File without changes
|