gametools-global-mapping 0.1.21__tar.gz → 0.1.23__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.21 → gametools_global_mapping-0.1.23}/PKG-INFO +1 -1
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf6.py +123 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/pyproject.toml +1 -1
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/README.md +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/__init__.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/battlebit.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/battlelog.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf1.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf1942.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf2.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf2042.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf2142.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf3.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf4.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf5.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bfbc2.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bfh.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bfvietnam.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/marne.py +0 -0
- {gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/other.py +0 -0
|
@@ -218,3 +218,126 @@ STAT_MAPS = {
|
|
|
218
218
|
"image": "https://cdn.gametools.network/maps/bf6/T_UI_Tungsten_Large_OPT-935da06b.webp",
|
|
219
219
|
},
|
|
220
220
|
}
|
|
221
|
+
STAT_GAMEMODE = {
|
|
222
|
+
"MP_Escalation0": {"gamemodeName": "Escalation", "image": ""},
|
|
223
|
+
"MP_TeamDM0": {"gamemodeName": "Team deathmatch", "image": ""},
|
|
224
|
+
"Conquest0": {"gamemodeName": "Conquest", "image": ""},
|
|
225
|
+
"MP_KOTH0": {"gamemodeName": "King of the hill", "image": ""},
|
|
226
|
+
"MP_SquadDM0": {"gamemodeName": "Squad deathmatch", "image": ""},
|
|
227
|
+
"Breakthrough0": {"gamemodeName": "Breakthrough", "image": ""},
|
|
228
|
+
"Rush0": {"gamemodeName": "Rush", "image": ""},
|
|
229
|
+
}
|
|
230
|
+
VEHICLES = {
|
|
231
|
+
"air_panthera": {
|
|
232
|
+
"type": "Air Combat",
|
|
233
|
+
"vehicleName": "Panthera KHT",
|
|
234
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Eurocopter_VSD0001-8003028d.webp",
|
|
235
|
+
},
|
|
236
|
+
"air_m77efalchio": {
|
|
237
|
+
"type": "Air Combat",
|
|
238
|
+
"vehicleName": "M77E Falchion",
|
|
239
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_AH64E_VSD0001-dd0a7df6.webp",
|
|
240
|
+
},
|
|
241
|
+
"sur_leoa4": {
|
|
242
|
+
"type": "Ground Combat",
|
|
243
|
+
"vehicleName": "Leo A4",
|
|
244
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Leopard_VSD0001-f8da51ee.webp",
|
|
245
|
+
},
|
|
246
|
+
"sur_strf09a4": {
|
|
247
|
+
"type": "Ground Combat",
|
|
248
|
+
"vehicleName": "Strf 09 A4",
|
|
249
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_CV90_VSD0001-acd942b6.webp",
|
|
250
|
+
},
|
|
251
|
+
"sur_m1a2sepv3": {
|
|
252
|
+
"type": "Ground Combat",
|
|
253
|
+
"vehicleName": "M1A2 SEPv3",
|
|
254
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Abrams_VSD0001-5412a78d.webp",
|
|
255
|
+
},
|
|
256
|
+
"sur_cheetah1a2": {
|
|
257
|
+
"type": "Ground Combat",
|
|
258
|
+
"vehicleName": "Cheetah 1A2",
|
|
259
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Gepard_VSD0001-d796732f.webp",
|
|
260
|
+
},
|
|
261
|
+
"sur_glider96": {
|
|
262
|
+
"type": "Ground Combat",
|
|
263
|
+
"vehicleName": "Glider 96",
|
|
264
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_MDV_Flyer60_VSD0005-1569869f.webp",
|
|
265
|
+
},
|
|
266
|
+
"sur_bradley": {
|
|
267
|
+
"type": "Ground Combat",
|
|
268
|
+
"vehicleName": "M3A3 Bradley",
|
|
269
|
+
"image": "https://cdn.gametools.network/vehicles/bf6/T_UI_OB_VEH_Tank_Bradley_VSD0001_Dressing-66f252ca.webp",
|
|
270
|
+
},
|
|
271
|
+
}
|
|
272
|
+
WEAPONS = {
|
|
273
|
+
"mg_l110": {
|
|
274
|
+
"type": "Machine Guns",
|
|
275
|
+
"weaponName": "L110",
|
|
276
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_Minimi_PKG_Factory_MED-0e29fce7.webp",
|
|
277
|
+
},
|
|
278
|
+
"smg_pw5a3": {
|
|
279
|
+
"type": "SMG-PDWs",
|
|
280
|
+
"weaponName": "PW5A3",
|
|
281
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_MP5MLI_PKG_Factory_MED-2d1944b7.webp",
|
|
282
|
+
},
|
|
283
|
+
"ar_m433": {
|
|
284
|
+
"type": "Assault Rifles",
|
|
285
|
+
"weaponName": "M433",
|
|
286
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_HK433_PKG_Factory_MED-b06f02f7.webp",
|
|
287
|
+
},
|
|
288
|
+
"mg_rpkm": {
|
|
289
|
+
"type": "Machine Guns",
|
|
290
|
+
"weaponName": "RPKM",
|
|
291
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_RPKM_PKG_Factory_MED-755b785f.webp",
|
|
292
|
+
},
|
|
293
|
+
"sg_m87a1": {
|
|
294
|
+
"type": "Shotguns",
|
|
295
|
+
"weaponName": "M87A1",
|
|
296
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_590A1_PKG_Factory_MED-4b387330.webp",
|
|
297
|
+
},
|
|
298
|
+
"pst_p18": {
|
|
299
|
+
"type": "Pistols",
|
|
300
|
+
"weaponName": "P18",
|
|
301
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M18_PKG_Factory_MED-88261bf8.webp",
|
|
302
|
+
},
|
|
303
|
+
"crb_x277": {
|
|
304
|
+
"type": "Carbines",
|
|
305
|
+
"weaponName": "M277",
|
|
306
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_XM7_PKG_Factory_MED-26271094.webp",
|
|
307
|
+
},
|
|
308
|
+
"ar_b36a4": {
|
|
309
|
+
"type": "Assault Rifles",
|
|
310
|
+
"weaponName": "B36A4",
|
|
311
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_G36_PKG_Factory_MED-fb5466ec.webp",
|
|
312
|
+
},
|
|
313
|
+
"ar_l85a3": {
|
|
314
|
+
"type": "Assault Rifles",
|
|
315
|
+
"weaponName": "L85A3",
|
|
316
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_L85A3_PKG_Factory_MED-9bd0deaa.webp",
|
|
317
|
+
},
|
|
318
|
+
"snp_m2010": {
|
|
319
|
+
"type": "Rifles",
|
|
320
|
+
"weaponName": "M2010 ESR",
|
|
321
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M2010ESR_PKG_Factory_MED-f94fdae6.webp",
|
|
322
|
+
},
|
|
323
|
+
"sg_m1014": {
|
|
324
|
+
"type": "Shotguns",
|
|
325
|
+
"weaponName": "M1014",
|
|
326
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_M1014_PKG_Factory_MED-e011854a.webp",
|
|
327
|
+
},
|
|
328
|
+
"crb_ak205": {
|
|
329
|
+
"type": "Carbines",
|
|
330
|
+
"weaponName": "AK-205",
|
|
331
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_AK205_PKG_Factory_MED-6d376081.webp",
|
|
332
|
+
},
|
|
333
|
+
"dmr_svk86": {
|
|
334
|
+
"type": "DMRs",
|
|
335
|
+
"weaponName": "SVK-8.6",
|
|
336
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_SVCh_PKG_Factory_MED-bb06d385.webp",
|
|
337
|
+
},
|
|
338
|
+
"smg_sgx": {
|
|
339
|
+
"type": "SMG-PDWs",
|
|
340
|
+
"weaponName": "SGX",
|
|
341
|
+
"image": "https://cdn.gametools.network/weapons/bf6/T_UI_MPX_PKG_Factory_MED-e822f017.webp",
|
|
342
|
+
},
|
|
343
|
+
}
|
|
File without changes
|
{gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/__init__.py
RENAMED
|
File without changes
|
{gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/battlebit.py
RENAMED
|
File without changes
|
{gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/battlelog.py
RENAMED
|
File without changes
|
|
File without changes
|
{gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf1942.py
RENAMED
|
File without changes
|
|
File without changes
|
{gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/global_mapping/bf2042.py
RENAMED
|
File without changes
|
{gametools_global_mapping-0.1.21 → gametools_global_mapping-0.1.23}/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.21 → gametools_global_mapping-0.1.23}/global_mapping/bfvietnam.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|