gametools-global-mapping 0.1.22__py3-none-any.whl → 0.1.24__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.22.dist-info → gametools_global_mapping-0.1.24.dist-info}/METADATA +1 -1
- {gametools_global_mapping-0.1.22.dist-info → gametools_global_mapping-0.1.24.dist-info}/RECORD +4 -4
- global_mapping/bf6.py +94 -0
- {gametools_global_mapping-0.1.22.dist-info → gametools_global_mapping-0.1.24.dist-info}/WHEEL +0 -0
{gametools_global_mapping-0.1.22.dist-info → gametools_global_mapping-0.1.24.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=uR4MlrYcY3UEYI-d-_TAgZLFtbUBnlbVdnPnREMVfBo,12001
|
|
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.24.dist-info/METADATA,sha256=2P7vuJxIf4ZADkzLyi8fuxjpql8zqYUFdtK38zMhJ9o,576
|
|
19
|
+
gametools_global_mapping-0.1.24.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
20
|
+
gametools_global_mapping-0.1.24.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",
|
|
@@ -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
|
+
}
|
{gametools_global_mapping-0.1.22.dist-info → gametools_global_mapping-0.1.24.dist-info}/WHEEL
RENAMED
|
File without changes
|