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.
- gametools_global_mapping-0.1.30.dist-info/METADATA +19 -0
- gametools_global_mapping-0.1.30.dist-info/RECORD +20 -0
- gametools_global_mapping-0.1.30.dist-info/WHEEL +4 -0
- global_mapping/__init__.py +0 -0
- global_mapping/battlebit.py +31 -0
- global_mapping/battlelog.py +159 -0
- global_mapping/bf1.py +652 -0
- global_mapping/bf1942.py +14 -0
- global_mapping/bf2.py +51 -0
- global_mapping/bf2042.py +2041 -0
- global_mapping/bf2142.py +39 -0
- global_mapping/bf3.py +299 -0
- global_mapping/bf4.py +406 -0
- global_mapping/bf5.py +1238 -0
- global_mapping/bf6.py +622 -0
- global_mapping/bfbc2.py +194 -0
- global_mapping/bfh.py +230 -0
- global_mapping/bfvietnam.py +30 -0
- global_mapping/marne.py +95 -0
- global_mapping/other.py +76 -0
global_mapping/bf5.py
ADDED
|
@@ -0,0 +1,1238 @@
|
|
|
1
|
+
WEAPONS = {
|
|
2
|
+
"wtypemg42": {
|
|
3
|
+
"type": "Mmg",
|
|
4
|
+
"weaponName": "MG 42",
|
|
5
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MG42-1ca6b52d.png",
|
|
6
|
+
},
|
|
7
|
+
"wtypemg34": {
|
|
8
|
+
"type": "Mmg",
|
|
9
|
+
"weaponName": "MG 34",
|
|
10
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MG34-f447ad5e.png",
|
|
11
|
+
},
|
|
12
|
+
"wtypedarne": {
|
|
13
|
+
"type": "Mmg",
|
|
14
|
+
"weaponName": "M1922 MG",
|
|
15
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Darne-f35be432.png",
|
|
16
|
+
},
|
|
17
|
+
"wtypeg43": {
|
|
18
|
+
"type": "Semi-auto rifle",
|
|
19
|
+
"weaponName": "Gewehr 43",
|
|
20
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Gewehr43-cb742d1a.png",
|
|
21
|
+
},
|
|
22
|
+
"wtypem1car": {
|
|
23
|
+
"type": "Semi-auto rifle",
|
|
24
|
+
"weaponName": "M1A1 Carbine",
|
|
25
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1A1Carbine-0e72e354.png",
|
|
26
|
+
},
|
|
27
|
+
"wtypetsmlesar": {
|
|
28
|
+
"type": "Semi-auto rifle",
|
|
29
|
+
"weaponName": "Turner SMLE",
|
|
30
|
+
"image": "https://cdn.gametools.network/weapons/bfv/TurnerSMLE-75621421.png",
|
|
31
|
+
},
|
|
32
|
+
"wtypems1916": {
|
|
33
|
+
"type": "Semi-auto rifle",
|
|
34
|
+
"weaponName": "Selbstlader 1916",
|
|
35
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Selbstlader1916-f5dcd71a.png",
|
|
36
|
+
},
|
|
37
|
+
"wtypegusvolsar": {
|
|
38
|
+
"type": "Semi-auto rifle",
|
|
39
|
+
"weaponName": "Gewehr 1-5",
|
|
40
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Gewehr15-688f09a9.png",
|
|
41
|
+
},
|
|
42
|
+
"wtypeam42": {
|
|
43
|
+
"type": "Semi-auto rifle",
|
|
44
|
+
"weaponName": "Ag m/42",
|
|
45
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M42-7befb739.png",
|
|
46
|
+
},
|
|
47
|
+
"wtypemasm1944": {
|
|
48
|
+
"type": "Semi-auto rifle",
|
|
49
|
+
"weaponName": "MAS 44",
|
|
50
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Mas44-70764a58.png",
|
|
51
|
+
},
|
|
52
|
+
"wtypewz38": {
|
|
53
|
+
"type": "Semi-auto rifle",
|
|
54
|
+
"weaponName": "Karabin 1938M",
|
|
55
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Wz38M-01b8c70d.png",
|
|
56
|
+
},
|
|
57
|
+
"wtypem1gar": {
|
|
58
|
+
"type": "Semi-auto rifle",
|
|
59
|
+
"weaponName": "M1 Garand",
|
|
60
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1Garand-3e2b5802.png",
|
|
61
|
+
},
|
|
62
|
+
"wtypem3infraredsniper": {
|
|
63
|
+
"type": "Semi-auto rifle",
|
|
64
|
+
"weaponName": "M3 Infrared",
|
|
65
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M3_Infrared_SniperCarbine-a3fa218b.png",
|
|
66
|
+
},
|
|
67
|
+
"wtypem1941johnsonrifle": {
|
|
68
|
+
"type": "Semi-auto rifle",
|
|
69
|
+
"weaponName": "M1941 Johnson",
|
|
70
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1941_JohnsonRifle-374730d3.png",
|
|
71
|
+
},
|
|
72
|
+
"wtypemscoutm1916": {
|
|
73
|
+
"type": "Melee",
|
|
74
|
+
"weaponName": "Scout Knife M1916",
|
|
75
|
+
"image": "https://cdn.gametools.network/weapons/bfv/ScoutKnifeM1916-6c8b69f9.png",
|
|
76
|
+
},
|
|
77
|
+
"wtypemkukri": {
|
|
78
|
+
"type": "Melee",
|
|
79
|
+
"weaponName": "Kukri",
|
|
80
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Kukri-63cd4e8e.png",
|
|
81
|
+
},
|
|
82
|
+
"wtypembrarmyknife": {
|
|
83
|
+
"type": "Melee",
|
|
84
|
+
"weaponName": "British Army Jack Knife",
|
|
85
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BritishArmyJackKnife-c6623eae.png",
|
|
86
|
+
},
|
|
87
|
+
"wtypembolousmc": {
|
|
88
|
+
"type": "Melee",
|
|
89
|
+
"weaponName": "Bolo-Guna",
|
|
90
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BoloKnife-5420b66c.png",
|
|
91
|
+
},
|
|
92
|
+
"wtypemislepickaxe": {
|
|
93
|
+
"type": "Melee",
|
|
94
|
+
"weaponName": "Ilse's Pickaxe",
|
|
95
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Pickaxe-17bf1b74.png",
|
|
96
|
+
},
|
|
97
|
+
"wtypeboysat": {
|
|
98
|
+
"type": "Anti-materiel rifle",
|
|
99
|
+
"weaponName": "Boys AT Rifle",
|
|
100
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BoysAT-d8f83999.png",
|
|
101
|
+
},
|
|
102
|
+
"wtypepanzerbuchseat": {
|
|
103
|
+
"type": "Anti-materiel rifle",
|
|
104
|
+
"weaponName": "Panzerbüchse 39",
|
|
105
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Panzerbuchse_39-aab3bc76.png",
|
|
106
|
+
},
|
|
107
|
+
"gctlgrenrifle": {
|
|
108
|
+
"type": "Gadget",
|
|
109
|
+
"weaponName": "Frag Grenade Rifle",
|
|
110
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_SMLE_Grenade-1be05d77.png",
|
|
111
|
+
},
|
|
112
|
+
"gctlrpf": {
|
|
113
|
+
"type": "Gadget",
|
|
114
|
+
"weaponName": "Panzerfaust",
|
|
115
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_AntiTank_Rocket_Frag_01-05de7537.png",
|
|
116
|
+
},
|
|
117
|
+
"gctdac": {
|
|
118
|
+
"type": "Gadget",
|
|
119
|
+
"weaponName": "Ammo Crate",
|
|
120
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Supply_Ammo_Crate-40503eb3.png",
|
|
121
|
+
},
|
|
122
|
+
"gcttbin": {
|
|
123
|
+
"type": "Gadget",
|
|
124
|
+
"weaponName": "Spotting Scope",
|
|
125
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Intel_Scope-a931f9f1.png",
|
|
126
|
+
},
|
|
127
|
+
"gctlfla": {
|
|
128
|
+
"type": "Gadget",
|
|
129
|
+
"weaponName": "Flare Gun",
|
|
130
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Intel_FlareGun-d99b0424.png",
|
|
131
|
+
},
|
|
132
|
+
"gctdsb": {
|
|
133
|
+
"type": "Gadget",
|
|
134
|
+
"weaponName": "Spawn Beacon",
|
|
135
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Deployable_SpawnBeacon_Single-f2c0bc51.png",
|
|
136
|
+
},
|
|
137
|
+
"gctthrwgsmo": {
|
|
138
|
+
"type": "Gadget",
|
|
139
|
+
"weaponName": "Smoke Grenade",
|
|
140
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiPersonal_Smoke-150b5665.png",
|
|
141
|
+
},
|
|
142
|
+
"gctthrwgfrag": {
|
|
143
|
+
"type": "Gadget",
|
|
144
|
+
"weaponName": "Frag Grenade",
|
|
145
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiPersonal_Frag_Fuse_UK-51667306.png",
|
|
146
|
+
},
|
|
147
|
+
"gctthrwgfi": {
|
|
148
|
+
"type": "Gadget",
|
|
149
|
+
"weaponName": "Incendiary Grenade",
|
|
150
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiPersonal_Fire-3bbc4243.png",
|
|
151
|
+
},
|
|
152
|
+
"gctlrpiat": {
|
|
153
|
+
"type": "Gadget",
|
|
154
|
+
"weaponName": "PIAT",
|
|
155
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launchers_AntiTank_Rocket_Frag_03-b86e6998.png",
|
|
156
|
+
},
|
|
157
|
+
"gctlgrenpistol": {
|
|
158
|
+
"type": "Gadget",
|
|
159
|
+
"weaponName": "AT Grenade Pistol",
|
|
160
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_AntiTank_Pistol_Frag-7938b179.png",
|
|
161
|
+
},
|
|
162
|
+
"gctlgrensmoke": {
|
|
163
|
+
"type": "Gadget",
|
|
164
|
+
"weaponName": "Smoke Grenade Rifle",
|
|
165
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_SMLE_Grenade-1be05d77.png",
|
|
166
|
+
},
|
|
167
|
+
"gctthrwgimp": {
|
|
168
|
+
"type": "Gadget",
|
|
169
|
+
"weaponName": "Impact Grenade",
|
|
170
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiPersonal_Frag_Impact_UK-4f81ac0f.png",
|
|
171
|
+
},
|
|
172
|
+
"gctlrf": {
|
|
173
|
+
"type": "Gadget",
|
|
174
|
+
"weaponName": "Fliegerfaust",
|
|
175
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_AntiAir_Rocket_Frag-b252fba3.png",
|
|
176
|
+
},
|
|
177
|
+
"gctlrbaz": {
|
|
178
|
+
"type": "Gadget",
|
|
179
|
+
"weaponName": "M1A1 Bazooka",
|
|
180
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_AntiTank_Rocket_Frag_04-883dd48a.png",
|
|
181
|
+
},
|
|
182
|
+
"gctlgrenpistolcmp": {
|
|
183
|
+
"type": "Gadget",
|
|
184
|
+
"weaponName": "Kampfpistole",
|
|
185
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_AntiTank_Pistol_CMP-3f090ca4.png",
|
|
186
|
+
},
|
|
187
|
+
"wtypelewis": {
|
|
188
|
+
"type": "Lmg",
|
|
189
|
+
"weaponName": "Lewis Gun",
|
|
190
|
+
"image": "https://cdn.gametools.network/weapons/bfv/LewisLMG-e0d04932.png",
|
|
191
|
+
},
|
|
192
|
+
"wtypesigke7": {
|
|
193
|
+
"type": "Lmg",
|
|
194
|
+
"weaponName": "KE7",
|
|
195
|
+
"image": "https://cdn.gametools.network/weapons/bfv/SIGKE7-8aa6fea9.png",
|
|
196
|
+
},
|
|
197
|
+
"wtypebren": {
|
|
198
|
+
"type": "Lmg",
|
|
199
|
+
"weaponName": "Bren Gun",
|
|
200
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BRENGun-4c2753f2.png",
|
|
201
|
+
},
|
|
202
|
+
"wtypefg42": {
|
|
203
|
+
"type": "Lmg",
|
|
204
|
+
"weaponName": "FG-42",
|
|
205
|
+
"image": "https://cdn.gametools.network/weapons/bfv/FG42-c6c82ba2.png",
|
|
206
|
+
},
|
|
207
|
+
"wtypels26": {
|
|
208
|
+
"type": "Lmg",
|
|
209
|
+
"weaponName": "LS/26",
|
|
210
|
+
"image": "https://cdn.gametools.network/weapons/bfv/LS26-c1883823.png",
|
|
211
|
+
},
|
|
212
|
+
"wtypemadsenmg": {
|
|
213
|
+
"type": "Lmg",
|
|
214
|
+
"weaponName": "Madsen MG",
|
|
215
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MiniMadsen-b8e2e5c4.png",
|
|
216
|
+
},
|
|
217
|
+
"wtypechau": {
|
|
218
|
+
"type": "Lmg",
|
|
219
|
+
"weaponName": "Chauchat",
|
|
220
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Chauchat-10361a12.png",
|
|
221
|
+
},
|
|
222
|
+
"wtypeBAR1918A2": {
|
|
223
|
+
"type": "Lmg",
|
|
224
|
+
"weaponName": "BAR M1918A2",
|
|
225
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Bar1918_A2-b44ff667.png",
|
|
226
|
+
},
|
|
227
|
+
"wtypetype97MG": {
|
|
228
|
+
"type": "Lmg",
|
|
229
|
+
"weaponName": "Type 97 MG",
|
|
230
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Type97MG-01b69c34.png",
|
|
231
|
+
},
|
|
232
|
+
"wtypetype11lmg": {
|
|
233
|
+
"type": "Lmg",
|
|
234
|
+
"weaponName": "Type 11 LMG",
|
|
235
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Nambu_Type11-166b8aa9.png",
|
|
236
|
+
},
|
|
237
|
+
"wtypebauto5": {
|
|
238
|
+
"type": "Shotgun",
|
|
239
|
+
"weaponName": "12g Automatic",
|
|
240
|
+
"image": "https://cdn.gametools.network/weapons/bfv/12gAutomatic-4344bfef.png",
|
|
241
|
+
},
|
|
242
|
+
"wtypew1897sho": {
|
|
243
|
+
"type": "Shotgun",
|
|
244
|
+
"weaponName": "M1897",
|
|
245
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1897Shotgun-381578b2.png",
|
|
246
|
+
},
|
|
247
|
+
"wtypeith37sho": {
|
|
248
|
+
"type": "Shotgun",
|
|
249
|
+
"weaponName": "Model 37",
|
|
250
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Model37-e2aff9bb.png",
|
|
251
|
+
},
|
|
252
|
+
"wtypesisho": {
|
|
253
|
+
"type": "Shotgun",
|
|
254
|
+
"weaponName": "Sjögren Shotgun",
|
|
255
|
+
"image": "https://cdn.gametools.network/weapons/bfv/SjogrenShotgun-43cfe31f.png",
|
|
256
|
+
},
|
|
257
|
+
"wtypec96rifle": {
|
|
258
|
+
"type": "Pistol carbine",
|
|
259
|
+
"weaponName": "Trench Carbine",
|
|
260
|
+
"image": "https://cdn.gametools.network/weapons/bfv/C96_Carbine-af56338e.png",
|
|
261
|
+
},
|
|
262
|
+
"wtypep08rifle": {
|
|
263
|
+
"type": "Pistol carbine",
|
|
264
|
+
"weaponName": "P08 Carbine",
|
|
265
|
+
"image": "https://cdn.gametools.network/weapons/bfv/P08Carbine-5c6a750b.png",
|
|
266
|
+
},
|
|
267
|
+
"wtypefp45l": {
|
|
268
|
+
"type": "Sidearm",
|
|
269
|
+
"weaponName": "Liberator",
|
|
270
|
+
"image": "https://cdn.gametools.network/weapons/bfv/FP45Liberator-0e952d0b.png",
|
|
271
|
+
},
|
|
272
|
+
"wtypewmkiv": {
|
|
273
|
+
"type": "Sidearm",
|
|
274
|
+
"weaponName": "Mk VI Revolver",
|
|
275
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MKVIRevolver-982f4b4b.png",
|
|
276
|
+
},
|
|
277
|
+
"wtypm1911": {
|
|
278
|
+
"type": "Sidearm",
|
|
279
|
+
"weaponName": "M1911",
|
|
280
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1911-0fd23c61.png",
|
|
281
|
+
},
|
|
282
|
+
"wtypewp38": {
|
|
283
|
+
"type": "Sidearm",
|
|
284
|
+
"weaponName": "P38 Pistol",
|
|
285
|
+
"image": "https://cdn.gametools.network/weapons/bfv/WaltherP38-3813c59d.png",
|
|
286
|
+
},
|
|
287
|
+
"wtyperuby": {
|
|
288
|
+
"type": "Sidearm",
|
|
289
|
+
"weaponName": "Ruby",
|
|
290
|
+
"image": "https://cdn.gametools.network/weapons/bfv/RubyPistol-02727dd8.png",
|
|
291
|
+
},
|
|
292
|
+
"wtypep08": {
|
|
293
|
+
"type": "Sidearm",
|
|
294
|
+
"weaponName": "P08 Pistol",
|
|
295
|
+
"image": "https://cdn.gametools.network/weapons/bfv/LugerP8-ec3e2eca.png",
|
|
296
|
+
},
|
|
297
|
+
"wtypemodel27": {
|
|
298
|
+
"type": "Sidearm",
|
|
299
|
+
"weaponName": "Model 27",
|
|
300
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Model27_Long-4a3efef6.png",
|
|
301
|
+
},
|
|
302
|
+
"wtypm1911s": {
|
|
303
|
+
"type": "Sidearm",
|
|
304
|
+
"weaponName": "M1911 Suppressed",
|
|
305
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1911_suppressed-ea0651d2.png",
|
|
306
|
+
},
|
|
307
|
+
"wtypestg44": {
|
|
308
|
+
"type": "Assault rifle",
|
|
309
|
+
"weaponName": "StG 44",
|
|
310
|
+
"image": "https://cdn.gametools.network/weapons/bfv/STG44MP44-97548575.png",
|
|
311
|
+
},
|
|
312
|
+
"wtypegusvolar": {
|
|
313
|
+
"type": "Assault rifle",
|
|
314
|
+
"weaponName": "Sturmgewehr 1-5",
|
|
315
|
+
"image": "https://cdn.gametools.network/weapons/bfv/SturmGewehr15-a4740184.png",
|
|
316
|
+
},
|
|
317
|
+
"wtypew1907ar": {
|
|
318
|
+
"type": "Assault rifle",
|
|
319
|
+
"weaponName": "M1907 SF",
|
|
320
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1907SF-f6ac6f26.png",
|
|
321
|
+
},
|
|
322
|
+
"wtyperib1918": {
|
|
323
|
+
"type": "Assault rifle",
|
|
324
|
+
"weaponName": "Ribeyrolles 1918",
|
|
325
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Ribeyrolles-eed41ed9.png",
|
|
326
|
+
},
|
|
327
|
+
"wtypebredapg": {
|
|
328
|
+
"type": "Assault rifle",
|
|
329
|
+
"weaponName": "Breda M1935 PG",
|
|
330
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BredaPG-a080089a.png",
|
|
331
|
+
},
|
|
332
|
+
"wtypem2car": {
|
|
333
|
+
"type": "Assault rifle",
|
|
334
|
+
"weaponName": "M2 Carbine",
|
|
335
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M2Carbine-d6d6efcb.png",
|
|
336
|
+
},
|
|
337
|
+
"wtypedelislerifle": {
|
|
338
|
+
"type": "Bolt action carbine",
|
|
339
|
+
"weaponName": "Commando Carbine",
|
|
340
|
+
"image": "https://cdn.gametools.network/weapons/bfv/DeLisleCarabine-18a64a00.png",
|
|
341
|
+
},
|
|
342
|
+
"wtypesmle5": {
|
|
343
|
+
"type": "Bolt action carbine",
|
|
344
|
+
"weaponName": "Jungle Carbine",
|
|
345
|
+
"image": "https://cdn.gametools.network/weapons/bfv/LeeEinfeldNo5-309d1cbe.png",
|
|
346
|
+
},
|
|
347
|
+
"wtypetm1928a1": {
|
|
348
|
+
"type": "Smg",
|
|
349
|
+
"weaponName": "M1928A1",
|
|
350
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Thompson-c31f1ac0.png",
|
|
351
|
+
},
|
|
352
|
+
"wtypemp28": {
|
|
353
|
+
"type": "Smg",
|
|
354
|
+
"weaponName": "MP28",
|
|
355
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MP28-f09c5670.png",
|
|
356
|
+
},
|
|
357
|
+
"wtypesten": {
|
|
358
|
+
"type": "Smg",
|
|
359
|
+
"weaponName": "STEN",
|
|
360
|
+
"image": "https://cdn.gametools.network/weapons/bfv/STENGun-9138fc17.png",
|
|
361
|
+
},
|
|
362
|
+
"wtypeskp31": {
|
|
363
|
+
"type": "Smg",
|
|
364
|
+
"weaponName": "Suomi KP/-31",
|
|
365
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Suomi-2bf82a33.png",
|
|
366
|
+
},
|
|
367
|
+
"wtypmp40": {
|
|
368
|
+
"type": "Smg",
|
|
369
|
+
"weaponName": "MP40",
|
|
370
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MP40-0164787e.png",
|
|
371
|
+
},
|
|
372
|
+
"wtypezk383": {
|
|
373
|
+
"type": "Smg",
|
|
374
|
+
"weaponName": "ZK-383",
|
|
375
|
+
"image": "https://cdn.gametools.network/weapons/bfv/ZK383-374279ef.png",
|
|
376
|
+
},
|
|
377
|
+
"wtypbermod38": {
|
|
378
|
+
"type": "Smg",
|
|
379
|
+
"weaponName": "MAB 38",
|
|
380
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MAB38-e1595a2e.png",
|
|
381
|
+
},
|
|
382
|
+
"wtypet100": {
|
|
383
|
+
"type": "Smg",
|
|
384
|
+
"weaponName": "Type 100",
|
|
385
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Type100_SMG-8b174d3a.png",
|
|
386
|
+
},
|
|
387
|
+
"wtypeM3SMG": {
|
|
388
|
+
"type": "Smg",
|
|
389
|
+
"weaponName": "M3 Grease Gun",
|
|
390
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M3SMG-6cb56d9d.png",
|
|
391
|
+
},
|
|
392
|
+
"wtypenambut2a": {
|
|
393
|
+
"type": "Smg",
|
|
394
|
+
"weaponName": "Type 2A",
|
|
395
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Nambu_Type2A-3b5090e2.png",
|
|
396
|
+
},
|
|
397
|
+
"wtypebwelgun": {
|
|
398
|
+
"type": "Smg",
|
|
399
|
+
"weaponName": "Welgun",
|
|
400
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Welgun-aeb91d41.png",
|
|
401
|
+
},
|
|
402
|
+
"wtypekrag": {
|
|
403
|
+
"type": "Bolt action rifle",
|
|
404
|
+
"weaponName": "Krag–Jørgensen",
|
|
405
|
+
"image": "https://cdn.gametools.network/weapons/bfv/KragJorgensen-30895eb5.png",
|
|
406
|
+
},
|
|
407
|
+
"wtypegewm9530": {
|
|
408
|
+
"type": "Bolt action rifle",
|
|
409
|
+
"weaponName": "Gewehr M95/30",
|
|
410
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Gewehr9530-e1ce76f9.png",
|
|
411
|
+
},
|
|
412
|
+
"wtypesmle4": {
|
|
413
|
+
"type": "Bolt action rifle",
|
|
414
|
+
"weaponName": "Lee-Enfield No.4 Mk I",
|
|
415
|
+
"image": "https://cdn.gametools.network/weapons/bfv/LeeEnfield-85ff8090.png",
|
|
416
|
+
},
|
|
417
|
+
"wtypekar98k": {
|
|
418
|
+
"type": "Bolt action rifle",
|
|
419
|
+
"weaponName": "Kar98k",
|
|
420
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Kar98K-01d381cd.png",
|
|
421
|
+
},
|
|
422
|
+
"wtyperosssrmk3": {
|
|
423
|
+
"type": "Bolt action rifle",
|
|
424
|
+
"weaponName": "Ross Rifle Mk III",
|
|
425
|
+
"image": "https://cdn.gametools.network/weapons/bfv/RossRifle-c930c7e9.png",
|
|
426
|
+
},
|
|
427
|
+
"wtypet99arisaka": {
|
|
428
|
+
"type": "Bolt action rifle",
|
|
429
|
+
"weaponName": "Type 99 Arisaka",
|
|
430
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Type_99_Arisaka-cb8bc4ed.png",
|
|
431
|
+
},
|
|
432
|
+
"wtypek31": {
|
|
433
|
+
"type": "Bolt action rifle",
|
|
434
|
+
"weaponName": "K31/43",
|
|
435
|
+
"image": "https://cdn.gametools.network/weapons/bfv/K3143-910cfbf7.png",
|
|
436
|
+
},
|
|
437
|
+
"wtypersc1918": {
|
|
438
|
+
"type": "Self-loading rifle",
|
|
439
|
+
"weaponName": "RSC",
|
|
440
|
+
"image": "https://cdn.gametools.network/weapons/bfv/RSC-1f58be6c.png",
|
|
441
|
+
},
|
|
442
|
+
"wtypelugersar": {
|
|
443
|
+
"type": "Self-loading rifle",
|
|
444
|
+
"weaponName": "Selbstlader 1906",
|
|
445
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Selbstlader1906-b7f1cea4.png",
|
|
446
|
+
},
|
|
447
|
+
"wtyperemm8slr": {
|
|
448
|
+
"type": "Self-loading rifle",
|
|
449
|
+
"weaponName": "Model 8",
|
|
450
|
+
"image": "https://cdn.gametools.network/weapons/bfv/RemingtonM8-10a6aa82.png",
|
|
451
|
+
},
|
|
452
|
+
"wtypezh29slr": {
|
|
453
|
+
"type": "Self-loading rifle",
|
|
454
|
+
"weaponName": "ZH-29",
|
|
455
|
+
"image": "https://cdn.gametools.network/weapons/bfv/ZH29-62e6adf5.png",
|
|
456
|
+
},
|
|
457
|
+
"wtypes2200": {
|
|
458
|
+
"type": "Mmg",
|
|
459
|
+
"weaponName": "S2-200",
|
|
460
|
+
"image": "https://cdn.gametools.network/weapons/bfv/S2200-d68665c9.png",
|
|
461
|
+
},
|
|
462
|
+
"wtypem1919a6": {
|
|
463
|
+
"type": "Mmg",
|
|
464
|
+
"weaponName": "M1919A6",
|
|
465
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M1919A6-b22db6be.png",
|
|
466
|
+
},
|
|
467
|
+
"wtypemhatchet": {
|
|
468
|
+
"type": "Melee",
|
|
469
|
+
"weaponName": "Hatchet",
|
|
470
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Hatchet-8da526ed.png",
|
|
471
|
+
},
|
|
472
|
+
"wtypemclub": {
|
|
473
|
+
"type": "Melee",
|
|
474
|
+
"weaponName": "Club",
|
|
475
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MeleeClub-41ce6631.png",
|
|
476
|
+
},
|
|
477
|
+
"wtypemshovel": {
|
|
478
|
+
"type": "Melee",
|
|
479
|
+
"weaponName": "Shovel",
|
|
480
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Shovel-767d811e.png",
|
|
481
|
+
},
|
|
482
|
+
"wtypempickaxe": {
|
|
483
|
+
"type": "Melee",
|
|
484
|
+
"weaponName": "Pickaxe",
|
|
485
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Pickaxe-17bf1b74.png",
|
|
486
|
+
},
|
|
487
|
+
"wtypemcricket": {
|
|
488
|
+
"type": "Melee",
|
|
489
|
+
"weaponName": "Cricket Bat",
|
|
490
|
+
"image": "https://cdn.gametools.network/weapons/bfv/CricketBat-b1907335.png",
|
|
491
|
+
},
|
|
492
|
+
"wtypemfsjeager": {
|
|
493
|
+
"type": "Melee",
|
|
494
|
+
"weaponName": "Fallschirmjäger Switchblade",
|
|
495
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Switchblade-f03546ee.png",
|
|
496
|
+
},
|
|
497
|
+
"wtypemsai": {
|
|
498
|
+
"type": "Melee",
|
|
499
|
+
"weaponName": "Sai",
|
|
500
|
+
"image": "https://cdn.gametools.network/weapons/bfv/IronSai-a7911f90.png",
|
|
501
|
+
},
|
|
502
|
+
"wtypemkatana": {
|
|
503
|
+
"type": "Gadget",
|
|
504
|
+
"weaponName": "Katana",
|
|
505
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Katana-273e8e24.png",
|
|
506
|
+
},
|
|
507
|
+
"wtypem30luftd": {
|
|
508
|
+
"type": "Shotgun",
|
|
509
|
+
"weaponName": "M30 Drilling",
|
|
510
|
+
"image": "https://cdn.gametools.network/weapons/bfv/M30LuftwaffeDrilling-93d25c9c.png",
|
|
511
|
+
},
|
|
512
|
+
"wtypetromboncino": {
|
|
513
|
+
"type": "Bolt action carbine",
|
|
514
|
+
"weaponName": "M28 con Tromboncino",
|
|
515
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Tromboncino_M28-e19b76f7.png",
|
|
516
|
+
},
|
|
517
|
+
"wtypemp34s1": {
|
|
518
|
+
"type": "Smg",
|
|
519
|
+
"weaponName": "MP34",
|
|
520
|
+
"image": "https://cdn.gametools.network/weapons/bfv/MP34-82e44afe.png",
|
|
521
|
+
},
|
|
522
|
+
"wtypeemp": {
|
|
523
|
+
"type": "Smg",
|
|
524
|
+
"weaponName": "EMP",
|
|
525
|
+
"image": "https://cdn.gametools.network/weapons/bfv/EMP-5f3287c2.png",
|
|
526
|
+
},
|
|
527
|
+
"gctthrwgat": {
|
|
528
|
+
"type": "Gadget",
|
|
529
|
+
"weaponName": "Anti-Tank Bundle Grenade",
|
|
530
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiTank_Frag_Impact-8e011bdd.png",
|
|
531
|
+
},
|
|
532
|
+
"wtypemgdagger": {
|
|
533
|
+
"type": "Melee",
|
|
534
|
+
"weaponName": "German Naval Dagger",
|
|
535
|
+
"image": "https://cdn.gametools.network/weapons/bfv/GermanNavalDagger-cdc209da.png",
|
|
536
|
+
},
|
|
537
|
+
"gctdfac": {
|
|
538
|
+
"type": "Gadget",
|
|
539
|
+
"weaponName": "Medical Crate",
|
|
540
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Supply_Medical_Crate-b3f2f42a.png",
|
|
541
|
+
},
|
|
542
|
+
"gctldoubleflare": {
|
|
543
|
+
"type": "Gadget",
|
|
544
|
+
"weaponName": "Doppel-Schuss",
|
|
545
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Intel_DoubleBarrelFlareGun-d783a371.png",
|
|
546
|
+
},
|
|
547
|
+
"gctthrwm80cmp": {
|
|
548
|
+
"type": "Gadget",
|
|
549
|
+
"weaponName": "Firecrackers",
|
|
550
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Throwable_M80-b0e5f292.png",
|
|
551
|
+
},
|
|
552
|
+
"gctlgrenrmncmp": {
|
|
553
|
+
"type": "Gadget",
|
|
554
|
+
"weaponName": "RMN50 Rifle Frag",
|
|
555
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_RMN_Grenade-9cd222df.png",
|
|
556
|
+
},
|
|
557
|
+
"gctlflmpistol": {
|
|
558
|
+
"type": "Gadget",
|
|
559
|
+
"weaponName": "Pistol Flamethrower",
|
|
560
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_AntiPersonal_Pistol_Fire-859644ba.png",
|
|
561
|
+
},
|
|
562
|
+
"wtypesm1912": {
|
|
563
|
+
"type": "Sidearm",
|
|
564
|
+
"weaponName": "Repetierpistole M1912",
|
|
565
|
+
"image": "https://cdn.gametools.network/weapons/bfv/SteyrM1912-19c1c826.png",
|
|
566
|
+
},
|
|
567
|
+
"wtypetype94": {
|
|
568
|
+
"type": "Sidearm",
|
|
569
|
+
"weaponName": "Type 94",
|
|
570
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Type94_Pistol-50a47503.png",
|
|
571
|
+
},
|
|
572
|
+
"wtypewelrod": {
|
|
573
|
+
"type": "Sidearm",
|
|
574
|
+
"weaponName": "Welrod",
|
|
575
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Welrod-f4b59480.png",
|
|
576
|
+
},
|
|
577
|
+
"wtypevickers": {
|
|
578
|
+
"type": "Mmg",
|
|
579
|
+
"weaponName": "VGO",
|
|
580
|
+
"image": "https://cdn.gametools.network/weapons/bfv/VickersK-11cb114e.png",
|
|
581
|
+
},
|
|
582
|
+
"wtypemsolveig": {
|
|
583
|
+
"type": "Melee",
|
|
584
|
+
"weaponName": "Solveig's Knife",
|
|
585
|
+
"image": "https://cdn.gametools.network/weapons/bfv/SolveigKnife-9934570a.png",
|
|
586
|
+
},
|
|
587
|
+
"wtypempoignard": {
|
|
588
|
+
"type": "Melee",
|
|
589
|
+
"weaponName": "Poignard",
|
|
590
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Poignard-c8264c7b.png",
|
|
591
|
+
},
|
|
592
|
+
"gctdfap": {
|
|
593
|
+
"type": "Gadget",
|
|
594
|
+
"weaponName": "Bandages",
|
|
595
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Supply_Medical_Pouch-1db89f38.png",
|
|
596
|
+
},
|
|
597
|
+
"vwepbmb500lb": {
|
|
598
|
+
"type": "Gadget",
|
|
599
|
+
"weaponName": "AT Mine",
|
|
600
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Deployable_AT_Mine-4bf207e1.png",
|
|
601
|
+
},
|
|
602
|
+
"gctdboomstick": {
|
|
603
|
+
"type": "Gadget",
|
|
604
|
+
"weaponName": "Lunge Mine",
|
|
605
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Boomstick-68475909.png",
|
|
606
|
+
},
|
|
607
|
+
"gctlflm": {
|
|
608
|
+
"type": "Gadget",
|
|
609
|
+
"weaponName": "M2 Flamethrower",
|
|
610
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Flamethrower_M2-aa650aed.png",
|
|
611
|
+
},
|
|
612
|
+
"wtypeppks": {
|
|
613
|
+
"type": "Sidearm",
|
|
614
|
+
"weaponName": "PPKS",
|
|
615
|
+
"image": "https://cdn.gametools.network/weapons/bfv/WaltherPPKSuppressed-b8bdb5d5.png",
|
|
616
|
+
},
|
|
617
|
+
"wtypecoupe": {
|
|
618
|
+
"type": "Melee",
|
|
619
|
+
"weaponName": "Coupe Coupe",
|
|
620
|
+
"image": "https://cdn.gametools.network/weapons/bfv/CoupeCoupe-a08d5ff6.png",
|
|
621
|
+
},
|
|
622
|
+
"wtypemfireaxe": {
|
|
623
|
+
"type": "Melee",
|
|
624
|
+
"weaponName": "Fire Axe",
|
|
625
|
+
"image": "https://cdn.gametools.network/weapons/bfv/FireAxe-4f17c94d.png",
|
|
626
|
+
},
|
|
627
|
+
"wtypemlpipe": {
|
|
628
|
+
"type": "Melee",
|
|
629
|
+
"weaponName": "Lever Pipe",
|
|
630
|
+
"image": "https://cdn.gametools.network/weapons/bfv/LeverPipe-310bcfe7.png",
|
|
631
|
+
},
|
|
632
|
+
"wtypemm3sdagg": {
|
|
633
|
+
"type": "Melee",
|
|
634
|
+
"weaponName": "MKIII(S) Elite Combat Dagger",
|
|
635
|
+
"image": "https://cdn.gametools.network/weapons/bfv/FirestormKnife-8a6cc848.png",
|
|
636
|
+
},
|
|
637
|
+
"wtypembottle": {
|
|
638
|
+
"type": "Melee",
|
|
639
|
+
"weaponName": "Broken Bottle",
|
|
640
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BrokenBottle-542adc4d.png",
|
|
641
|
+
},
|
|
642
|
+
"wtypemescapeaxe": {
|
|
643
|
+
"type": "Melee",
|
|
644
|
+
"weaponName": "Escape Axe",
|
|
645
|
+
"image": "https://cdn.gametools.network/weapons/bfv/EscapeAxe-f2181991.png",
|
|
646
|
+
},
|
|
647
|
+
"wtypembarbedbat": {
|
|
648
|
+
"type": "Melee",
|
|
649
|
+
"weaponName": "Barbed Baseball Bat",
|
|
650
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BarbedBaseballBat-fdf73eab.png",
|
|
651
|
+
},
|
|
652
|
+
"wtypemarditi": {
|
|
653
|
+
"type": "Melee",
|
|
654
|
+
"weaponName": "Arditi Dagger",
|
|
655
|
+
"image": "https://cdn.gametools.network/weapons/bfv/ArditiDagger-2883ed9b.png",
|
|
656
|
+
},
|
|
657
|
+
"wtypemokinawamachete": {
|
|
658
|
+
"type": "Melee",
|
|
659
|
+
"weaponName": "Commando Machete",
|
|
660
|
+
"image": "https://cdn.gametools.network/weapons/bfv/OkinawaMachete-d66152d3.png",
|
|
661
|
+
},
|
|
662
|
+
"wtypemustrench": {
|
|
663
|
+
"type": "Melee",
|
|
664
|
+
"weaponName": "Knuckle Duster",
|
|
665
|
+
"image": "https://cdn.gametools.network/weapons/bfv/USTrenchKnife-a80da6fb.png",
|
|
666
|
+
},
|
|
667
|
+
"wtypelionheadsword": {
|
|
668
|
+
"type": "Melee",
|
|
669
|
+
"weaponName": "Lion Head Sword",
|
|
670
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Saber-4e5571ac.png",
|
|
671
|
+
},
|
|
672
|
+
"gctthrwgtype99": {
|
|
673
|
+
"type": "Gadget",
|
|
674
|
+
"weaponName": "Type 99 Mine",
|
|
675
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Deployable_Type99_Mine-d96f6efd.png",
|
|
676
|
+
},
|
|
677
|
+
"wtypemkabar": {
|
|
678
|
+
"type": "Melee",
|
|
679
|
+
"weaponName": "Combat Knife",
|
|
680
|
+
"image": "https://cdn.gametools.network/weapons/bfv/KABARKnife-7e48ad8b.png",
|
|
681
|
+
},
|
|
682
|
+
"wtypemhachiwari": {
|
|
683
|
+
"type": "Melee",
|
|
684
|
+
"weaponName": "Hachiwari",
|
|
685
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Hachiwari-a5f5884a.png",
|
|
686
|
+
},
|
|
687
|
+
"wtypembonesaw": {
|
|
688
|
+
"type": "Melee",
|
|
689
|
+
"weaponName": "Bone Saw",
|
|
690
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BoneSaw-df104409.png",
|
|
691
|
+
},
|
|
692
|
+
"wtypemuselite03": {
|
|
693
|
+
"type": "Melee",
|
|
694
|
+
"weaponName": "Golden Eagle",
|
|
695
|
+
"image": "https://cdn.gametools.network/weapons/bfv/GoldenEagleKnife-33c9216a.png",
|
|
696
|
+
},
|
|
697
|
+
"gctthrwgsti": {
|
|
698
|
+
"type": "Gadget",
|
|
699
|
+
"weaponName": "Sticky Grenade",
|
|
700
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiTank_Frag_Sticky-3f809cbe.png",
|
|
701
|
+
},
|
|
702
|
+
"gctthrwgdemo": {
|
|
703
|
+
"type": "Gadget",
|
|
704
|
+
"weaponName": "Demolition Grenade",
|
|
705
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_Demolition-b1577ee3.png",
|
|
706
|
+
},
|
|
707
|
+
"wtypeppk": {
|
|
708
|
+
"type": "Sidearm",
|
|
709
|
+
"weaponName": "PPK",
|
|
710
|
+
"image": "https://cdn.gametools.network/weapons/bfv/WaltherPPK-6528d353.png",
|
|
711
|
+
},
|
|
712
|
+
"wtypembplank": {
|
|
713
|
+
"type": "Melee",
|
|
714
|
+
"weaponName": "Burned Plank",
|
|
715
|
+
"image": "https://cdn.gametools.network/weapons/bfv/BurnedPlank-112da8c0.png",
|
|
716
|
+
},
|
|
717
|
+
"wtypemrustyk": {
|
|
718
|
+
"type": "Melee",
|
|
719
|
+
"weaponName": "EGW Survival Knife",
|
|
720
|
+
"image": "https://cdn.gametools.network/weapons/bfv/RustyEGWSurvivalKnife-846cfb4d.png",
|
|
721
|
+
},
|
|
722
|
+
"wtypemflightstick": {
|
|
723
|
+
"type": "Melee",
|
|
724
|
+
"weaponName": "Control Stick",
|
|
725
|
+
"image": "https://cdn.gametools.network/weapons/bfv/JapaneseFlightStick-199a01ec.png",
|
|
726
|
+
},
|
|
727
|
+
"gctthrwkn": {
|
|
728
|
+
"type": "Gadget",
|
|
729
|
+
"weaponName": "Kunai",
|
|
730
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Throwable_Kunai-9610d695.png",
|
|
731
|
+
},
|
|
732
|
+
"wtypemfair": {
|
|
733
|
+
"type": "Gadget",
|
|
734
|
+
"weaponName": "Firecrackers",
|
|
735
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Throwable_M80-b0e5f292.png",
|
|
736
|
+
},
|
|
737
|
+
"wtypemk98bay": {
|
|
738
|
+
"type": "Melee",
|
|
739
|
+
"weaponName": "K98 Bayonet",
|
|
740
|
+
"image": "https://cdn.gametools.network/weapons/bfv/K98Bayonet-3d5a1a9a.png",
|
|
741
|
+
},
|
|
742
|
+
"wtypemshillelagh": {
|
|
743
|
+
"type": "Melee",
|
|
744
|
+
"weaponName": "Shillelagh",
|
|
745
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Shillelagh-f9dd5573.png",
|
|
746
|
+
},
|
|
747
|
+
"wtypemchristmasbat": {
|
|
748
|
+
"type": "Melee",
|
|
749
|
+
"weaponName": "The Unexpected Gift",
|
|
750
|
+
"image": "https://cdn.gametools.network/weapons/bfv/ChristmasBaseballBat-a3965f86.png",
|
|
751
|
+
},
|
|
752
|
+
"veqlaunch": {
|
|
753
|
+
"type": "Gadget",
|
|
754
|
+
"weaponName": "Type 99 Mine",
|
|
755
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Deployable_Type99_Mine-d96f6efd.png",
|
|
756
|
+
},
|
|
757
|
+
"vweplaunchgr": {
|
|
758
|
+
"type": "Gadget",
|
|
759
|
+
"weaponName": "Frag Grenade",
|
|
760
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiPersonal_Frag_Fuse_UK-51667306.png",
|
|
761
|
+
},
|
|
762
|
+
"vwepshellheat": {
|
|
763
|
+
"type": "Gadget",
|
|
764
|
+
"weaponName": "Medical Crate",
|
|
765
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Supply_Medical_Crate-b3f2f42a.png",
|
|
766
|
+
},
|
|
767
|
+
"veqreptrack": {
|
|
768
|
+
"type": "Gadget",
|
|
769
|
+
"weaponName": "Spotting Scope",
|
|
770
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Intel_Scope-a931f9f1.png",
|
|
771
|
+
},
|
|
772
|
+
"rnwtypm1911": {
|
|
773
|
+
"type": "Lmg",
|
|
774
|
+
"weaponName": "Chauchat",
|
|
775
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Chauchat-10361a12.png",
|
|
776
|
+
},
|
|
777
|
+
"veqrepquick": {
|
|
778
|
+
"type": "Gadget",
|
|
779
|
+
"weaponName": "Frag Grenade Rifle",
|
|
780
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Launcher_SMLE_Grenade-1be05d77.png",
|
|
781
|
+
},
|
|
782
|
+
"gcttndlssyrg": {
|
|
783
|
+
"type": "Gadget",
|
|
784
|
+
"weaponName": "Medical Syringe",
|
|
785
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Supply_Medical_Syringe-aee7e9fa.png",
|
|
786
|
+
},
|
|
787
|
+
"wtypemscout": {
|
|
788
|
+
"type": "Gadget",
|
|
789
|
+
"weaponName": "Type 99 Mine",
|
|
790
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Deployable_Type99_Mine-d96f6efd.png",
|
|
791
|
+
},
|
|
792
|
+
"vwepshellap": {
|
|
793
|
+
"type": "Gadget",
|
|
794
|
+
"weaponName": "Impact Grenade",
|
|
795
|
+
"image": "https://cdn.gametools.network/weapons/bfv/Grenade_AntiPersonal_Frag_Impact_UK-4f81ac0f.png",
|
|
796
|
+
},
|
|
797
|
+
}
|
|
798
|
+
VEHICLES = {
|
|
799
|
+
"taTigISturm": {
|
|
800
|
+
"type": "Tanks",
|
|
801
|
+
"vehicleName": "STURMTIGER",
|
|
802
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Sturmtiger-3c762491.png",
|
|
803
|
+
},
|
|
804
|
+
"trM3Halft": {
|
|
805
|
+
"type": "Transports",
|
|
806
|
+
"vehicleName": "M3",
|
|
807
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/M3-5dc0e0e7.png",
|
|
808
|
+
},
|
|
809
|
+
"trT48GMC": {
|
|
810
|
+
"type": "Transports",
|
|
811
|
+
"vehicleName": "T48 GMC",
|
|
812
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/M3_T48-1bcaca18.png",
|
|
813
|
+
},
|
|
814
|
+
"trSdKfz": {
|
|
815
|
+
"type": "Transports",
|
|
816
|
+
"vehicleName": "SD. KFZ 251 HALFTRACK",
|
|
817
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/HanomagHalftrack-f86c7ef0.png",
|
|
818
|
+
},
|
|
819
|
+
"trPakWag": {
|
|
820
|
+
"type": "Transports",
|
|
821
|
+
"vehicleName": "SD. KFZ. 251 PAKWAGEN",
|
|
822
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/PakwagenHalftrack-17e871af.png",
|
|
823
|
+
},
|
|
824
|
+
"taChuCro": {
|
|
825
|
+
"type": "Tanks",
|
|
826
|
+
"vehicleName": "CHURCHILL CROCODILE",
|
|
827
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/ChurchillCrocodileTank-d0878564.png",
|
|
828
|
+
},
|
|
829
|
+
"stw6pound": {
|
|
830
|
+
"type": "Stationary",
|
|
831
|
+
"vehicleName": "6 POUNDER",
|
|
832
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/QF6Pounder-a98f3167.png",
|
|
833
|
+
},
|
|
834
|
+
"stwFlak": {
|
|
835
|
+
"type": "Stationary",
|
|
836
|
+
"vehicleName": "FLAK 38",
|
|
837
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/FLAK38AA-45078234.png",
|
|
838
|
+
},
|
|
839
|
+
"stwPak": {
|
|
840
|
+
"type": "Stationary",
|
|
841
|
+
"vehicleName": "PAK 40",
|
|
842
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/PAK40-39c3918d.png",
|
|
843
|
+
},
|
|
844
|
+
"stwMGmg34": {
|
|
845
|
+
"type": "Stationary",
|
|
846
|
+
"vehicleName": "STATIONARY MG34",
|
|
847
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/MG34_Stationary-0d84725f.png",
|
|
848
|
+
},
|
|
849
|
+
"stwMGtype93": {
|
|
850
|
+
"type": "Stationary",
|
|
851
|
+
"vehicleName": "TYPE 93 HMG",
|
|
852
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Stationary_Type92_HMG-10e95b63.png",
|
|
853
|
+
},
|
|
854
|
+
"stwBofors": {
|
|
855
|
+
"type": "Stationary",
|
|
856
|
+
"vehicleName": "40MM AA",
|
|
857
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Stationary_40mmAA-91ad1c10.png",
|
|
858
|
+
},
|
|
859
|
+
"stwType10": {
|
|
860
|
+
"type": "Stationary",
|
|
861
|
+
"vehicleName": "TYPE 10",
|
|
862
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Stationary_Type10-5156b60a.png",
|
|
863
|
+
},
|
|
864
|
+
"taSturmIV0": {
|
|
865
|
+
"type": "Tanks",
|
|
866
|
+
"vehicleName": "STURMGESCHUTZ IV",
|
|
867
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/StugIV-133ce60b.png",
|
|
868
|
+
},
|
|
869
|
+
"taValMkVIII": {
|
|
870
|
+
"type": "Tanks",
|
|
871
|
+
"vehicleName": "VALENTINE MK VIII",
|
|
872
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/valentine-2837c094.png",
|
|
873
|
+
},
|
|
874
|
+
"chaA20": {
|
|
875
|
+
"type": "Tanks",
|
|
876
|
+
"vehicleName": "M8 GREYHOUND",
|
|
877
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Greyhound-76b96c18.png",
|
|
878
|
+
},
|
|
879
|
+
"stwMGvick": {
|
|
880
|
+
"type": "Stationary",
|
|
881
|
+
"vehicleName": "VICKERS",
|
|
882
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/VickersStationaryMG-eb5f1bdb.png",
|
|
883
|
+
},
|
|
884
|
+
"taPazIV": {
|
|
885
|
+
"type": "Tanks",
|
|
886
|
+
"vehicleName": "PANZER IV",
|
|
887
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/PanzerIVTank_1-adc5c741.png",
|
|
888
|
+
},
|
|
889
|
+
"chaPazIV": {
|
|
890
|
+
"type": "Transports",
|
|
891
|
+
"vehicleName": "GPW",
|
|
892
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Car_Willys-8ed5b812.png",
|
|
893
|
+
},
|
|
894
|
+
"stwMGm2": {
|
|
895
|
+
"type": "Stationary",
|
|
896
|
+
"vehicleName": "M2 HMG",
|
|
897
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Stationary_M2_HMG-fd3d7264.png",
|
|
898
|
+
},
|
|
899
|
+
"chaMus": {
|
|
900
|
+
"type": "Tanks",
|
|
901
|
+
"vehicleName": "CHURCHILL GUN CARRIER",
|
|
902
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/ChurchillGunCarrierTank-0725b8c6.png",
|
|
903
|
+
},
|
|
904
|
+
"chaM3Halft": {
|
|
905
|
+
"type": "Tanks",
|
|
906
|
+
"vehicleName": "HACHI",
|
|
907
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Chi-Ha_RocketLauncher_DeployVersion-13eacf14.png",
|
|
908
|
+
},
|
|
909
|
+
"chaTigI": {
|
|
910
|
+
"type": "Tanks",
|
|
911
|
+
"vehicleName": "PANZER IV",
|
|
912
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/PanzerIVTank_1-adc5c741.png",
|
|
913
|
+
},
|
|
914
|
+
"chaStuka": {
|
|
915
|
+
"type": "Transports",
|
|
916
|
+
"vehicleName": "TYPE 95 CAR",
|
|
917
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Car_Type95_Kurogane-832fd07e.png",
|
|
918
|
+
},
|
|
919
|
+
"taStagT17E10": {
|
|
920
|
+
"type": "Planes",
|
|
921
|
+
"vehicleName": "P51K Fighter",
|
|
922
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Mustang-0f157d3d.png",
|
|
923
|
+
},
|
|
924
|
+
"chaChu": {
|
|
925
|
+
"type": "Transports",
|
|
926
|
+
"vehicleName": "TYPE 95 CAR",
|
|
927
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Car_Type95_Kurogane-832fd07e.png",
|
|
928
|
+
},
|
|
929
|
+
"chaSdKfz": {
|
|
930
|
+
"type": "Planes",
|
|
931
|
+
"vehicleName": "ZERO A6M2",
|
|
932
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Pac_Zero-32f4d600.png",
|
|
933
|
+
},
|
|
934
|
+
"chaVal": {
|
|
935
|
+
"type": "Planes",
|
|
936
|
+
"vehicleName": "JU-88 C",
|
|
937
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/JU88_C-ad411a79.png",
|
|
938
|
+
},
|
|
939
|
+
"ta": {
|
|
940
|
+
"type": "Tanks",
|
|
941
|
+
"vehicleName": "M8 GREYHOUND",
|
|
942
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Greyhound-76b96c18.png",
|
|
943
|
+
},
|
|
944
|
+
"chaSher": {
|
|
945
|
+
"type": "Transports",
|
|
946
|
+
"vehicleName": "LCVP",
|
|
947
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Boat_Higgins-257e601c.png",
|
|
948
|
+
},
|
|
949
|
+
"trv": {
|
|
950
|
+
"type": "Planes",
|
|
951
|
+
"vehicleName": "BF 109 G-2",
|
|
952
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/BF109-c6bd45c6.png",
|
|
953
|
+
},
|
|
954
|
+
"av": {
|
|
955
|
+
"type": "Tanks",
|
|
956
|
+
"vehicleName": "VALENTINE AA MK I",
|
|
957
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/ValentineCrusaderAA-f7c31668.png",
|
|
958
|
+
},
|
|
959
|
+
"chaCor": {
|
|
960
|
+
"type": "Tanks",
|
|
961
|
+
"vehicleName": "CHURCHILL GUN CARRIER",
|
|
962
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/ChurchillGunCarrierTank-0725b8c6.png",
|
|
963
|
+
},
|
|
964
|
+
"alv": {
|
|
965
|
+
"type": "Tanks",
|
|
966
|
+
"vehicleName": "PANZER IV",
|
|
967
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/PanzerIVTank_1-adc5c741.png",
|
|
968
|
+
},
|
|
969
|
+
"wtypestw": {
|
|
970
|
+
"type": "Transports",
|
|
971
|
+
"vehicleName": "DINGHY",
|
|
972
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/Boat_Dinghy-7722932f.png",
|
|
973
|
+
},
|
|
974
|
+
"taStagT17E11": {
|
|
975
|
+
"type": "Transports",
|
|
976
|
+
"vehicleName": "KETTENKRAD",
|
|
977
|
+
"image": "https://cdn.gametools.network/vehicles/bfv/KettenkradLightTransport-1cefde85.png",
|
|
978
|
+
},
|
|
979
|
+
}
|
|
980
|
+
CLASSES = {
|
|
981
|
+
"assault": {
|
|
982
|
+
"className": "Assault",
|
|
983
|
+
"image": "https://cdn.gametools.network/classes/bf5/white/Assault.png",
|
|
984
|
+
"altImage": "https://cdn.gametools.network/classes/bf5/black/Assault.png",
|
|
985
|
+
},
|
|
986
|
+
"medic": {
|
|
987
|
+
"className": "Medic",
|
|
988
|
+
"image": "https://cdn.gametools.network/classes/bf5/white/Medic.png",
|
|
989
|
+
"altImage": "https://cdn.gametools.network/classes/bf5/black/Medic.png",
|
|
990
|
+
},
|
|
991
|
+
"recon": {
|
|
992
|
+
"className": "Recon",
|
|
993
|
+
"image": "https://cdn.gametools.network/classes/bf5/white/Recon.png",
|
|
994
|
+
"altImage": "https://cdn.gametools.network/classes/bf5/black/Recon.png",
|
|
995
|
+
},
|
|
996
|
+
"support": {
|
|
997
|
+
"className": "Support",
|
|
998
|
+
"image": "https://cdn.gametools.network/classes/bf5/white/Support.png",
|
|
999
|
+
"altImage": "https://cdn.gametools.network/classes/bf5/black/Support.png",
|
|
1000
|
+
},
|
|
1001
|
+
}
|
|
1002
|
+
STAT_GAMEMODE = {
|
|
1003
|
+
"dom": {"gamemodeName": "Domination"},
|
|
1004
|
+
"rush": {"gamemodeName": "Rush"},
|
|
1005
|
+
"frontlines": {"gamemodeName": "Frontlines"},
|
|
1006
|
+
"tdm": {"gamemodeName": "Team Deathmatch"},
|
|
1007
|
+
"outp": {"gamemodeName": "Outpost"},
|
|
1008
|
+
"bth": {"gamemodeName": "Breakthrough"},
|
|
1009
|
+
"conq": {"gamemodeName": "Conquest"},
|
|
1010
|
+
}
|
|
1011
|
+
STAT_GAMEMODE_EXTR = {
|
|
1012
|
+
"dom": "gm_domination",
|
|
1013
|
+
"rush": "gm_rush",
|
|
1014
|
+
"frontlines": "gm_frontlines",
|
|
1015
|
+
"tdm": "gm_tdm",
|
|
1016
|
+
"outp": "gm_outpost",
|
|
1017
|
+
"bth": "gm_breakthrough",
|
|
1018
|
+
"conq": "gm_conquest",
|
|
1019
|
+
}
|
|
1020
|
+
STAT_MAPS = {
|
|
1021
|
+
"arcticfjell": {
|
|
1022
|
+
"mapName": "Fjell 652",
|
|
1023
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_ArcticFjell-df3c1290.jpg",
|
|
1024
|
+
},
|
|
1025
|
+
"arcticfjord": {
|
|
1026
|
+
"mapName": "Narvik",
|
|
1027
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_ArcticFjord-7ba29138.jpg",
|
|
1028
|
+
},
|
|
1029
|
+
"arras": {
|
|
1030
|
+
"mapName": "Arras",
|
|
1031
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Arras-4b610505.jpg",
|
|
1032
|
+
},
|
|
1033
|
+
"devastation": {
|
|
1034
|
+
"mapName": "Devastation",
|
|
1035
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Devastation-623dea60.jpg",
|
|
1036
|
+
},
|
|
1037
|
+
"escaut": {
|
|
1038
|
+
"mapName": "Twisted Steel",
|
|
1039
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Escaut-9764d1fb.jpg",
|
|
1040
|
+
},
|
|
1041
|
+
"foxhunt": {
|
|
1042
|
+
"mapName": "Aerodrome",
|
|
1043
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_AfricanFox-8ad380a5.jpg",
|
|
1044
|
+
},
|
|
1045
|
+
"halfaya": {
|
|
1046
|
+
"mapName": "Hamada",
|
|
1047
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_AfricanHalfaya-31165f9b.jpg",
|
|
1048
|
+
},
|
|
1049
|
+
"rotterdam": {
|
|
1050
|
+
"mapName": "Rotterdam",
|
|
1051
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Rotterdam-55632240.jpg",
|
|
1052
|
+
},
|
|
1053
|
+
"hannut": {
|
|
1054
|
+
"mapName": "Panzerstorm",
|
|
1055
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Hannut-ebbe7197.jpg",
|
|
1056
|
+
},
|
|
1057
|
+
"crete": {
|
|
1058
|
+
"mapName": "Mercury",
|
|
1059
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Crete-304a202d.jpg",
|
|
1060
|
+
},
|
|
1061
|
+
"kalamas": {
|
|
1062
|
+
"mapName": "Marita",
|
|
1063
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Kalamas-c64c8451.jpg",
|
|
1064
|
+
},
|
|
1065
|
+
"provence": {
|
|
1066
|
+
"mapName": "Provence",
|
|
1067
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_ProvenceXL-a950ad3e.jpg",
|
|
1068
|
+
},
|
|
1069
|
+
"sandandsea": {
|
|
1070
|
+
"mapName": "Al Sudan",
|
|
1071
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_SandAndSea-f071e6f7.jpg",
|
|
1072
|
+
},
|
|
1073
|
+
"bunker": {
|
|
1074
|
+
"mapName": "Operation Underground",
|
|
1075
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Bunker-7b518876.jpg",
|
|
1076
|
+
},
|
|
1077
|
+
"iwojima": {
|
|
1078
|
+
"mapName": "Iwo Jima",
|
|
1079
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_IwoJima-760850fc.jpg",
|
|
1080
|
+
},
|
|
1081
|
+
"tropicislands": {
|
|
1082
|
+
"mapName": "Pacific Storm",
|
|
1083
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_TropicIslands-9e0a41c3.jpg",
|
|
1084
|
+
},
|
|
1085
|
+
"wakeisland": {
|
|
1086
|
+
"mapName": "Wake Island",
|
|
1087
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_WakeIsland-3238b455.jpg",
|
|
1088
|
+
},
|
|
1089
|
+
"jungle": {
|
|
1090
|
+
"mapName": "Solomon Islands",
|
|
1091
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Jungle-714218ce.jpg",
|
|
1092
|
+
},
|
|
1093
|
+
"libya": {
|
|
1094
|
+
"mapName": "Al Marj Encampment",
|
|
1095
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Libya-bd54b090.jpg",
|
|
1096
|
+
},
|
|
1097
|
+
"norway": {
|
|
1098
|
+
"mapName": "Lofoten Islands",
|
|
1099
|
+
"image": "https://cdn.gametools.network/maps/bfv/1080p_MP_Norway-7d6d6300.jpg",
|
|
1100
|
+
},
|
|
1101
|
+
}
|
|
1102
|
+
FACTIONS = {
|
|
1103
|
+
"BFFactionId_FactionGER": {
|
|
1104
|
+
"key": "GER",
|
|
1105
|
+
"name": "German Empire",
|
|
1106
|
+
"shortName": "GER",
|
|
1107
|
+
"image": "https://cdn.gametools.network/factions/bfv/BFFactionId_FactionGER.png",
|
|
1108
|
+
},
|
|
1109
|
+
"BFFactionId_FactionUK": {
|
|
1110
|
+
"key": "UK",
|
|
1111
|
+
"name": "British Empire",
|
|
1112
|
+
"shortName": "UK",
|
|
1113
|
+
"image": "https://cdn.gametools.network/factions/bfv/BFFactionId_FactionUK.png",
|
|
1114
|
+
},
|
|
1115
|
+
"BFFactionId_FactionUSA_Pacific": {
|
|
1116
|
+
"key": "USA_Pacific",
|
|
1117
|
+
"name": "UNITED STATES OF AMERICA",
|
|
1118
|
+
"shortName": "USA",
|
|
1119
|
+
"image": "https://cdn.gametools.network/factions/bfv/BFFactionId_FactionUSA_Pacific.png",
|
|
1120
|
+
},
|
|
1121
|
+
"BFFactionId_FactionJPN": {
|
|
1122
|
+
"key": "JPN",
|
|
1123
|
+
"name": "Empire of Japan",
|
|
1124
|
+
"shortName": "JPN",
|
|
1125
|
+
"image": "https://cdn.gametools.network/factions/bfv/BFFactionId_FactionJPN.png",
|
|
1126
|
+
},
|
|
1127
|
+
}
|
|
1128
|
+
INTERNAL_MAP_NAME = {
|
|
1129
|
+
"fjell 652": "MP_ArcticFjell",
|
|
1130
|
+
"narvik": "MP_ArcticFjord",
|
|
1131
|
+
"arras": "MP_Arras",
|
|
1132
|
+
"devastation": "MP_Devastation",
|
|
1133
|
+
"twisted steel": "MP_Escaut",
|
|
1134
|
+
"aerodrome": "MP_Foxhunt",
|
|
1135
|
+
"hamada": "MP_Halfaya",
|
|
1136
|
+
"rotterdam": "MP_Rotterdam",
|
|
1137
|
+
"panzerstorm": "MP_Hannut",
|
|
1138
|
+
"mercury": "MP_Crete",
|
|
1139
|
+
"marita": "MP_Kalamas",
|
|
1140
|
+
"provence": "MP_Provence",
|
|
1141
|
+
"al sudan": "MP_SandAndSea",
|
|
1142
|
+
"operation Underground": "MP_Bunker",
|
|
1143
|
+
"iwo jima": "MP_IwoJima",
|
|
1144
|
+
"pacific storm": "MP_TropicIslands",
|
|
1145
|
+
"wake island": "MP_WakeIsland",
|
|
1146
|
+
"solomon islands": "MP_Jungle",
|
|
1147
|
+
"al marj encampment": "MP_Libya",
|
|
1148
|
+
"lofoten islands": "MP_Norway",
|
|
1149
|
+
}
|
|
1150
|
+
MAP_FACTIONS = {
|
|
1151
|
+
"MP_ArcticFjell": ["BFFactionId_FactionUK", "BFFactionId_FactionGER"],
|
|
1152
|
+
"MP_ArcticFjord": ["BFFactionId_FactionUK", "BFFactionId_FactionGER"],
|
|
1153
|
+
"MP_Arras": ["BFFactionId_FactionGER", "BFFactionId_FactionUK"],
|
|
1154
|
+
"MP_Devastation": ["BFFactionId_FactionGER", "BFFactionId_FactionUK"],
|
|
1155
|
+
"MP_Escaut": ["BFFactionId_FactionGER", "BFFactionId_FactionUSA_Pacific"],
|
|
1156
|
+
"MP_Foxhunt": ["BFFactionId_FactionUK", "BFFactionId_FactionGER"],
|
|
1157
|
+
"MP_Halfaya": ["BFFactionId_FactionUK", "BFFactionId_FactionGER"],
|
|
1158
|
+
"MP_Rotterdam": ["BFFactionId_FactionGER", "BFFactionId_FactionUK"],
|
|
1159
|
+
"MP_Hannut": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionGER"],
|
|
1160
|
+
"MP_Crete": ["BFFactionId_FactionGER", "BFFactionId_FactionUK"],
|
|
1161
|
+
"MP_Kalamas": ["BFFactionId_FactionGER", "BFFactionId_FactionUK"],
|
|
1162
|
+
"MP_Provence": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionGER"],
|
|
1163
|
+
"MP_SandAndSea": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionGER"],
|
|
1164
|
+
"MP_Bunker": ["BFFactionId_FactionUK", "BFFactionId_FactionGER"],
|
|
1165
|
+
"MP_IwoJima": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionJPN"],
|
|
1166
|
+
"MP_TropicIslands": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionJPN"],
|
|
1167
|
+
"MP_WakeIsland": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionJPN"],
|
|
1168
|
+
"MP_Jungle": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionJPN"],
|
|
1169
|
+
"MP_Libya": ["BFFactionId_FactionUSA_Pacific", "BFFactionId_FactionGER"],
|
|
1170
|
+
}
|
|
1171
|
+
SMALLMODES = {
|
|
1172
|
+
"Conquest": "CQ",
|
|
1173
|
+
"Domination": "DM",
|
|
1174
|
+
"TugOfWar": "FL",
|
|
1175
|
+
"Rush": "RS",
|
|
1176
|
+
"BreakthroughLarge": "OP",
|
|
1177
|
+
"Breakthrough": "SO",
|
|
1178
|
+
"Possession": "WP",
|
|
1179
|
+
"TeamDeathMatch": "TM",
|
|
1180
|
+
"ZoneControl": "SD",
|
|
1181
|
+
"AirAssault": "AA",
|
|
1182
|
+
}
|
|
1183
|
+
WEAPON_LIST = [
|
|
1184
|
+
"M1919A6",
|
|
1185
|
+
"Gewehr 43",
|
|
1186
|
+
"M1A1 Carbine",
|
|
1187
|
+
"M1 Garand",
|
|
1188
|
+
"Scout Knife M1916",
|
|
1189
|
+
"Hatchet",
|
|
1190
|
+
"Club",
|
|
1191
|
+
"Pickaxe",
|
|
1192
|
+
"K98 Bayonet",
|
|
1193
|
+
"Frag Grenade Rifle",
|
|
1194
|
+
"Sticky Dynamite",
|
|
1195
|
+
"Panzerfaust",
|
|
1196
|
+
"Bandages",
|
|
1197
|
+
"AP Mine",
|
|
1198
|
+
"Medical Crate",
|
|
1199
|
+
"Spotting Scope",
|
|
1200
|
+
"Flare Gun",
|
|
1201
|
+
"Smoke Grenade",
|
|
1202
|
+
"Frag Grenade",
|
|
1203
|
+
"Incendiary Grenade",
|
|
1204
|
+
"Smoke Grenade Rifle",
|
|
1205
|
+
"Throwing Blade",
|
|
1206
|
+
"Medical Syringe",
|
|
1207
|
+
"Fliegerfaust",
|
|
1208
|
+
"Kunai",
|
|
1209
|
+
"KE7",
|
|
1210
|
+
"Bren Gun",
|
|
1211
|
+
"FG-42",
|
|
1212
|
+
"Chauchat",
|
|
1213
|
+
"M30 Drilling",
|
|
1214
|
+
"M1897",
|
|
1215
|
+
"Model 37",
|
|
1216
|
+
"Repetierpistole M1912",
|
|
1217
|
+
"M1911",
|
|
1218
|
+
"P38 Pistol",
|
|
1219
|
+
"Ruby",
|
|
1220
|
+
"P08 Pistol",
|
|
1221
|
+
"StG 44",
|
|
1222
|
+
"Sturmgewehr 1-5",
|
|
1223
|
+
"Ribeyrolles 1918",
|
|
1224
|
+
"M2 Carbine",
|
|
1225
|
+
"M1928A1",
|
|
1226
|
+
"MP28",
|
|
1227
|
+
"STEN",
|
|
1228
|
+
"Suomi KP/-31",
|
|
1229
|
+
"MP40",
|
|
1230
|
+
"Type 100",
|
|
1231
|
+
"Krag–Jørgensen",
|
|
1232
|
+
"Gewehr M95/30",
|
|
1233
|
+
"Lee-Enfield No.4 Mk I",
|
|
1234
|
+
"Kar98k",
|
|
1235
|
+
"Type 99 Arisaka",
|
|
1236
|
+
"Model 8",
|
|
1237
|
+
"ZH-29",
|
|
1238
|
+
]
|