forked from Xetro/tarkov-AH-scrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwiki-categories.json
executable file
·1416 lines (1414 loc) · 48.5 KB
/
wiki-categories.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"weapons": {
"name": "weapons",
"searchExceptions" : {
"OP-SKS": "Simonov Semi-Automatic Carbine",
"M9A3": "Beretta M9A3"
},
"positionExceptions": {
"OP-SKS": 1,
"MP-133": 7,
"APS": 1
},
"usePages": [1, 9, 14, 15],
"nameIndex": 0,
"imgFileIndex": 1,
"ignore": [
"AK-74",
"AKS-74"
],
"useRegex": 1,
"variants": {
"FN 5-7": {
"FN Five-seveN MK2 5.7x28 pistol Black": {
"search_name": "FN Five-seveN MK2 5.7x28 pistol",
"variant": "black",
"gif_position": 0
},
"FN Five-seveN MK2 FDE Frame 5.7x28 pistol": {
"variant": "FDE",
"gif_position": 0
}
}
}
},
"headwear": {
"name": "headwear",
"searchExceptions" : {
"SSh-68 helmet (1968 steel helmet)": "SSh-68 helmet"
},
"positionExceptions": {
"Baseball cap": 2
},
"usePages": [1, 2, 3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 0,
"variants": {
"Team Wendy EXFIL Ballistic Helmet": {
"Team Wendy EXFIL Ballistic Helmet Black": {
"variant": "black",
"gif_position": 0
},
"Team Wendy EXFIL Ballistic Helmet Coyote": {
"variant": "coyote",
"gif_position": 0
}
},
"Maska 1Sch helmet": {
"Maska 1Sch helmet (green)": {
"search_name": "Maska 1Sch helmet",
"variant": "classic",
"gif_position": 0
},
"Maska 1Sch helmet (Killa)": {
"variant": "killa",
"gif_position": 0
}
},
"Highcom Striker ULACH IIIA helmet": {
"Highcom Striker ULACH IIIA black helmet": {
"variant": "black",
"gif_position": 0
},
"Highcom Striker ULACH IIIA tan helmet": {
"variant": "tan",
"gif_position": 0
}
},
"Highcom Striker ACHHC IIIA helmet": {
"Highcom Striker ACHHC IIIA black helmet": {
"variant": "black",
"gif_position": 0
},
"Highcom Striker ACHHC IIIA olive helmet": {
"variant": "olive",
"gif_position": 0
}
},
"6B47 Ratnik-BSh Helmet": {
"6B47 Ratnik-BSh Helmet": {
"variant": "classic",
"gif_position": 0
},
"6B47 Helmet with cover (flora digital)": {
"variant": "flora digital",
"gif_position": 0
}
},
"ZSh-1-2M helmet": {
"ZSh-1-2M helmet (green)": {
"search_name": "ZSh-1-2M helmet",
"variant": "classic",
"gif_position": 0
},
"ZSh-1-2M helmet (black)": {
"variant": "black",
"gif_position": 0
}
}
}
},
"face_cover": {
"name": "face_cover",
"searchExceptions" : {},
"positionExceptions": {
},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 0
},
"eyewear": {
"name": "eyewear",
"searchExceptions" : {},
"positionExceptions": {
"Anti-fragmentation glasses": 1,
"Tactical glasses": 1
},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 0
},
"headsets": {
"name": "headsets",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 0
},
"chest_rigs": {
"name": "chest_rigs",
"searchExceptions" : {
"Belt-A + Belt-B gear rig": "Belt-A"
},
"positionExceptions": {},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 0,
"variants": {
"Blackhawk! Commando Chest Harness": {
"Blackhawk! Commando Chest Harness (tan)": {
"search_name:": "Blackhawk! Commando Chest Harness",
"variant": "classic",
"gif_position": 0
},
"Blackhawk! Commando Chest Harness (black)": {
"variant": "black",
"gif_position": 0
}
}
}
},
"armored_chest_rigs": {
"name": "chest_rigs",
"searchExceptions" : { },
"positionExceptions": {},
"usePages": [2],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 0
},
"armor_vests": {
"name": "armor_vests",
"searchExceptions" : { },
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 0,
"variants": {
"6B13 assault armor": {
"6B13 assault armor (digital flora pattern)": {
"variant": "digital flora",
"gif_position": 0
},
"6B13 assault armor (flora pattern)": {
"variant": "flora",
"gif_position": 0
}
}
}
},
"bipods": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Bipods(.|\n)+Foregrips"
},
"foregrips": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {
},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Foregrips(.|\n)+Flashlights",
"variants": {
"Magpul M-LOK AFG Tactical grip": {
"Magpul M-LOK AFG (Black) Tactical grip": {
"search_name:": "Magpul M-LOK AFG Tactical grip",
"variant": "black",
"gif_position": 0
},
"Magpul M-LOK AFG (Flat Dark Earth) Tactical grip": {
"variant": "flat dark earth",
"gif_position": 0
},
"Magpul M-LOK AFG (Olive Drab) Tactical grip": {
"variant": "olive drab",
"gif_position": 0
},
"Magpul M-LOK AFG (Stealth Gray) Tactical grip": {
"variant": "stealth gray",
"gif_position": 0
}
},
"Magpul AFG grip": {
"Magpul AFG grip black": {
"variant": "black",
"gif_position": 0
},
"Magpul AFG grip FG": {
"variant": "fg",
"gif_position": 0
},
"Magpul AFG grip OD": {
"variant": "od",
"gif_position": 0
},
"Magpul AFG grip FDE": {
"variant": "fde",
"gif_position": 0
}
},
"Tango Down Stubby BGV-MK46K tactical grip": {
"Tango Down Stubby BGV-MK46K tactical grip Black": {
"variant": "black",
"gif_position": 0
},
"Tango Down Stubby BGV-MK46K tactical grip FDE": {
"variant": "fde",
"gif_position": 0
},
"Tango Down Stubby BGV-MK46K tactical grip FG": {
"variant": "fg",
"gif_position": 0
}
}
}
},
"flashlights": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Flashlights(.|\n)+Laser target pointers"
},
"laser_target_pointers": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Laser target pointers(.|\n)+Tactical combo devices"
},
"tactical_combo_devices": {
"name": "weapon_mods",
"searchExceptions" : {
"2IRS Klesch flashlight + laser designator": "2IRS Klesch flashlight",
"2P Klesch flashlight + laser designator": "2P Klesch flashlight"
},
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Tactical combo devices(.|\n)+Auxiliary parts"
},
"auxiliary_parts": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Auxiliary parts(.|\n)+",
"variants": {
"KAC stopper panel for URX 3/3.1": {
"KAC stopper panel for URX 3/3.1 Black": {
"search_name:": "KAC stopper panel for URX 3/3.1",
"variant": "black",
"gif_position": 0
},
"KAC stopper panel for URX 3/3.1 FDE": {
"variant": "FDE",
"gif_position": 0
}
},
"KAC long panel for URX 3/3.1": {
"KAC long panel for URX 3/3.1 black": {
"search_name:": "KAC long panel for URX 3/3.1",
"variant": "black",
"gif_position": 0
},
"KAC long panel for URX 3/3.1 FDE": {
"variant": "FDE",
"gif_position": 0
}
},
"KAC short panel for URX 3/3.1": {
"KAC short panel for URX 3/3.1 black": {
"search_name:": "KAC short panel for URX 3/3.1",
"variant": "black",
"gif_position": 0
},
"KAC short panel for URX 3/3.1 FDE": {
"variant": "FDE",
"gif_position": 0
}
}
}
},
"muzzle_adapters": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [2],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [
"GK-01 compensator",
"SilencerCo choke adapter for 12ga shotguns"
],
"useRegex": 1,
"additionalRegex": "Muzzle adapters(.|\n)+Flash hiders & muzzle brakes"
},
"flash_hiders_muzzle_brakes": {
"name": "weapon_mods",
"searchExceptions" : {
"SRVV 7.62x39 AK muzzlebrake & compensator": "SRVV 7.62x39 Ак muzzlebrake & compensator",
"SRVV 5.45x39 AK-74 muzzlebrake": "SRVV 5.45x39 Ак-74 muzzlebrake",
"Socom 16 7.62x51 muzzlebrake & compensator for M1A (threaded)": "Socom 16 7.62x51 muzzlebrake & compensator for M1A",
"Socom 16 7.62x51 muzzlebrake & compensator for M1A (unthreaded)": "Socom 16 7.62x51 muzzlebrake & compensator for M1A",
"Izhmash 5.56x45 АK-102 muzzlebrake & compensator (6P44 0-20)": "Izhmash 5.56x45 Ак-102 muzzlebrake & compensator (6P44 0-20)",
"Izhmash 7.62x39 АK-103 muzzlebrake & compensator": "Izhmash 7.62x39 Ак-103 muzzlebrake & compensator",
"Izhmash 7.62x39 АK-104 muzzlebrake & compensator (6P46 0-20)": "Izhmash 7.62x39 Ак-104 muzzlebrake & compensator (6P46 0-20)",
"Izhmash 5.45x39 АK-105 muzzlebrake & compensator (6P44 0-20)": "Izhmash 5.45x39 Ак-105 muzzlebrake & compensator (6P44 0-20)",
"Izhmash 5.45x39 АK-74M muzzlebrake & compensator (6P20 0-20)": "Izhmash 5.45x39 Ак-74M muzzlebrake & compensator (6P20 0-20)",
"Izhmash 5.45x39 AK-74 muzzlebrake & compensator (6P20 0-20)": "Izhmash 5.45x39 Ак-74 muzzlebrake & compensator (6P20 0-20)",
"Izhmash 5.56x45 АK-101 muzzlebrake & compensator": "Izhmash 5.56x45 Ак-101 muzzlebrake & compensator",
"Izhmash 7.62x39 AKM muzzlebrake & compensator (6P1 0-14)": "Izhmash 7.62x39 АкM muzzlebrake & compensator (6P1 0-14)",
"DVL-10 M2 muzzle break": "DVL-10 м2 muzzle break",
"Izhmash 5.45x39 RPK-16 muzzlebrake & compensator": "Izhmash 5.45x39 RPK-16 muzzlebrake & compensator",
"Venom Antidote muzzlebrake & compensator for AK": "Venom Antidote muzzlebrake & compensator for Ак"
},
"positionExceptions": {
},
"usePages": [2],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Flash hiders & muzzle brakes(.|\n)+Suppressors"
},
"suppressors": {
"name": "weapon_mods",
"searchExceptions" : {
"Zenit DTK-4M muzzle brake": "Zenit DTK-4м muzzle brake",
"Makeshift 7.62x25 TT silencer": "Makeshift 7.62x25 тт silencer"
},
"positionExceptions": {},
"usePages": [2],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Suppressors(.|\n)+",
"variants": {
"KAC QDSS NT-4 5.56x45 silencer": {
"KAC QDSS NT-4 Black 5.56x45 silencer": {
"variant": "black",
"gif_position": 0
},
"KAC QDSS NT-4 FDE 5.56x45 silencer": {
"variant": "FDE",
"gif_position": 0
}
}
}
},
"assault_scopes": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {
},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": ["ELCAN Specter OS4x assault scope"],
"useRegex": 1,
"additionalRegex": "Assault scopes(.|\n)+Reflex sights",
"variants": {
"ELCAN SpecterDR 1x/4x Scope": {
"ELCAN SpecterDR 1x/4x Scope Black": {
"search_name": "ELCAN SpecterDR 1x/4x Scope",
"variant": "black",
"gif_position": 0
},
"ELCAN SpecterDR 1x/4x Scope FDE": {
"variant": "FDE",
"gif_position": 0
}
},
"Trijicon ACOG TA01NSN 4x32 scope": {
"Trijicon ACOG TA01NSN 4x32 scope Black": {
"search_name": "Trijicon ACOG TA01NSN 4x32 scope",
"variant": "black",
"gif_position": 0
},
"Trijicon ACOG TA01NSN 4x32 scope TAN": {
"variant": "TAN",
"gif_position": 0
}
}
}
},
"reflex_sights": {
"name": "weapon_mods",
"searchExceptions" : {
"OKP-7 reflex sight (Dovetail)": "OKP-7 reflex sight"
},
"positionExceptions": {
"OKP-7 reflex sight": 1,
"OKP-7 reflex sight (Dovetail)": 1
},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Reflex sights(.|\n)+Compact reflex sights",
"variants": {
"Eotech HHS-1 sight": {
"Eotech HHS-1 sight Black": {
"search_name": "Eotech HHS-1 sight",
"variant": "black",
"gif_position": 0
},
"Eotech HHS-1 sight Tan": {
"variant": "TAN",
"gif_position": 0
}
}
}
},
"compact_reflex_sights": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {
"Trijicon RMR": 2
},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Compact reflex sights(.|\n)+Iron sights"
},
"iron_sights": {
"name": "weapon_mods",
"searchExceptions" : {
"Izhmash rear sight for PP-19-01": "Izhmash rear sight fro PP-19-01"
},
"positionExceptions": {
"Glock Front Sight": 1,
"Glock Rear Sight": 1
},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Iron sights(.|\n)+Scopes",
"variants": {
"Magpul MBUS Gen.2 Frontsight": {
"Magpul MBUS Gen.2 Frontsight Black": {
"search_name": "Magpul MBUS Gen.2 Frontsight",
"variant": "black",
"gif_position": 0
},
"Magpul MBUS Gen.2 Frontsight FDE": {
"variant": "FDE",
"gif_position": 0
}
},
"Magpul MBUS Gen.2 Rearsight": {
"Magpul MBUS Gen.2 Rearsight Black": {
"search_name": "Magpul MBUS Gen.2 Rearsight",
"variant": "black",
"gif_position": 0
},
"Magpul MBUS Gen.2 Rearsight FDE": {
"variant": "FDE",
"gif_position": 0
}
}
}
},
"scopes": {
"name": "weapon_mods",
"searchExceptions" : {
"VOMZ Pilad 4х32 riflescope":"VOMZ Pilad 4x32 riflescope"
},
"positionExceptions": {},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [
"Nightforce NXS 2.5-10x24 scope",
"PAG-17 scope"
],
"useRegex": 1,
"additionalRegex": "Scopes(.|\n)+Special scopes"
},
"special_scopes": {
"name": "weapon_mods",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Special scopes(.|\n)+"
},
"charging_handles": {
"name": "weapon_mods",
"searchExceptions" : {
"B&T charging handle for MP9": "B&T charging handle for MP9"
},
"positionExceptions": {},
"usePages": [4],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Charging handles(.|\n)+Grenade launchers"
},
"magazines": {
"name": "weapon_mods",
"searchExceptions" : {
"PUFGUN SG-919 20 20-round 9x19 magazine for PP-19-01": "PUFGUN SG-919 20 20-round 9x19 magazine for",
"30-round 5.45x39 magazine for AK-12 and compatibles": "30-round 5.45x39 magazine for ак-12 and compatibles",
"6L29 30-round 5.56x45 magazine for АK-101 and compatible weapons": "6L29 30-round 5.56x45 magazine for ак-101 and compatible weapons",
"30-round 7.62x39 magazine for АK-103 and compatible weapons": "30-round 7.62x39 magazine for ак-103 and compatible weapons",
"30-round 6L23 5.45x39 magazine for AK-74 and compatibles": "30-round 6L23 5.45x39 magazine for ак-74 and compatibles",
"45-round 6L26 5.45x39 magazine for AK-74 and compatibles": "45-round 6L26 5.45x39 magazine for ак-74 and compatibles",
"MP-153 5-rd magazine extension": "мP-153 5-rd magazine extension",
"MP-153 6-rd magazine extension": "мP-153 6-rd magazine extension",
"MP-153 7-rd magazine extension": "мP-153 7-rd magazine extension",
"MP-153 8-rd magazine extension": "мP-153 8-rd magazine extension",
"60-round 6L31 5.45x39 magazine for AK-74 and compatibles": "60-round 6L31 5.45x39 magazine for ак-74 and compatibles",
"TT-105 7.62x25 TT Magazine": "TT-105 7.62x25 тт Magazine",
"6L20 30-round 5.45x39 magazine for AK-74 and compatible weapons": "6L20 30-round 5.45x39 magazine for ак-74 and compatible weapons",
"6L18 45-round 5.45x39 magazine for AK-74 and compatible weapons": "6L18 45-round 5.45x39 magazine for ак-74 and compatible weapons",
"10-round Saiga 545 5.45x39 magazine for AK-74 and compatibles": "10-round Saiga 545 5.45x39 magazine for ак-74 and compatibles",
"2-shot MC 20-01 Sb.3 20ga magazine for TOZ-106": "2-shot MC 20-01 Sb.3 20ga magazine for",
"Standard MP7 40-round 4.6x30 magazine": "Standard MP7 40-round4.6x30 magazine"
},
"positionExceptions": {
},
"usePages": [4],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [
"100 rounds belt",
"MP-153 foreend cap",
"AGS-30 30-Grenades box 30x29"
],
"useRegex": 1,
"additionalRegex": "Magazines(.|\n)+Mounts",
"variants": {
"40-round PMAG GEN M3 40 5.56x45 STANAG magazine": {
"40-round PMAG GEN M3 Black 40 5.56x45 STANAG magazine": {
"search_name": "40-round PMAG GEN M3 40 5.56x45 STANAG magazine",
"variant": "black",
"gif_position": 0
},
"40-round PMAG GEN M3 FDE 40 5.56x45 STANAG magazine": {
"variant":"FDE",
"gif_position": 0
}
},
"PMAG GEN M3 W 30 5.56x45 STANAG 30-round magazine": {
"PMAG GEN M3 Black W 30 5.56x45 STANAG 30-round magazine": {
"search_name": "PMAG GEN M3 W 30 5.56x45 STANAG 30-round magazine",
"variant": "black",
"gif_position": 0
},
"PMAG GEN M3 FDE W 30 5.56x45 STANAG 30-round magazine": {
"variant": "FDE",
"gif_position": 0
}
}
}
},
"mounts": {
"name": "weapon_mods",
"searchExceptions" : {
"Arbalet Patriot K+W mount": "Arbalet Patriot K",
"Arms 18 mount for M14": "Arms #18 mount"
},
"positionExceptions": {},
"usePages": [4],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Mounts(.|\n)+Stocks & chassis",
"variants": {
"Medium length rail for Hexagon": {
"Medium length rail for Hexagon (black)": {
"search_name": "Medium length rail for Hexagon",
"variant": "black",
"gif_position": 0
},
"Medium length rail for Hexagon(Anodized Red)": {
"variant": "anodized red",
"gif_position": 0
}
}
}
},
"stocks_chassis": {
"name": "weapon_mods",
"searchExceptions" : {
"Regular VPO-101 \"Vepr Hunter\" stock": "Regular VPO-101 \"Vepr Hunter\" stock",
"M14 M14ALCS(MOD. 0) stock (buttstock)": "M14 M14ALCS(MOD. 0) stock",
"AK74/AK100 PT Lock": "AK74/",
"ME adapter for AK": "ME adapter for",
"UBR GEN2 stock": "UBR GEN2",
"AKS-74/AKS-74U PT Lock": "AKS-74/",
"Izhmash SOK-12 AK type stock": "type stock",
"Izhmash wooden AKM stock (6P1 Sb.5)": "Izhmash wooden",
"Izhmash polymer AK-74 stock (6P20 Sb.7)": "Izhmash polymer",
"Plastic pistol grip for MP-133/153": "Plastic pistol grip for",
"Troy M7A1 PDW stock": "Troy M7A1 PDW blk",
"Early produced SIG collapsing/telescoping MCX/MPX stock": "SIG collaps",
"Izhmash wooden AK-74 stock (6P20 Sb.5)": "Izhmash wooden",
"CAA AKTS AK-74 Buffer Tube for AK and compatable (foldable)": "CAA AKTS AK-74 Buffer Tube for AK and compatable",
"HK End Cap Stock for MP5 Kurz": "HK End Cap Stock for MP5"
},
"positionExceptions": {
"M14 M14ALCS(MOD. 0) stock": 1,
"M14 M14ALCS(MOD. 0) stock (buttstock)": 1,
"Izhmash wooden AKM stock (6P1 Sb.5)": 1,
"Izhmash polymer AK-74 stock (6P20 Sb.7)": 1,
"CAA AKTS AK-74 Buffer Tube for AK and compatable": 1
},
"usePages": [4],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Stocks & chassis(.|\n)+",
"variants": {
"SI Advanced receiver extension buffer tube": {
"SI Advanced receiver extension buffer tube (black)": {
"search_name": "SI Advanced receiver extension buffer tube",
"variant": "black",
"gif_position": 0
},
"SI Advanced receiver extension buffer tube (anodized red)": {
"variant": "anodized red",
"gif_position": 0
}
},
"UBR GEN2 stock": {
"UBR GEN2 FDE stock": {
"variant": "FDE",
"gif_position": 0
},
"UBR GEN2 black stock": {
"variant": "FG",
"gif_position": 0
}
},
"MOE Carbine stock OD": {
"MOE Carbine stock": {
"variant": "OD",
"gif_position": 0
},
"MOE Carbine stock SG": {
"variant": "SG",
"gif_position": 0
}
}
}
},
"barrels": {
"name": "weapon_mods",
"searchExceptions" : {
"Homespun 121mm 7.62x25 TT barrel with threading": "Homespun 121mm 7.62x25",
"540mm barrel for MR-133 12ga shotgun with rib" : "540mm barrel for мR-133 12ga shotgun with rib",
"660mm barrel for MR-133 12ga shotgun": "660mm barrel for мR-133 12ga shotgun",
"710mm barrel for MR-133 12ga shotgun with rib": "710mm barrel for мR-133 12ga shotgun with rib",
"116mm 7.62x25 TT barrel": "116mm 7.62x25 тт barrel"
},
"positionExceptions": {
},
"usePages": [5],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": ["510mm barrel for MP-43e-1c 12ga", "725mm barrel for MP-43e-1s 12ga"],
"useRegex": 1,
"additionalRegex": "Barrels(.|\n)+Gas blocks"
},
"gas_blocks": {
"name": "weapon_mods",
"searchExceptions" : {
"UltiMAK M1-B gas tube for AK": "UltiMAK M1-B gas tube for"
},
"positionExceptions": {},
"usePages": [5],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Gas blocks(.|\n)+Handguards",
"variants": {
"VS-24 Handguard with a VS-33c gas block combo for AK": {
"VS-24 Handguard with a VS-33c gas block combo for AK Black": {
"variant": "black",
"gif_position": 0
},
"VS-24 white handguard with a VS-33c gas block combo for AK": {
"variant": "white",
"gif_position": 0
}
}
}
},
"handguards": {
"name": "weapon_mods",
"searchExceptions" : {
"Magpul MOE SL carbine length M-LOK foregrip for AR15": "Magpul MOE SL carbine length M-LOK foregrip",
"LOBAEV Arms DVL-10 M2 handguard": "LOBAEV Arms DVL-10",
"B-10M foregrip and rail mount B-19": "B-10м foregrip and rail mount B-19",
"Strike Industries Viper carbine length M-LOK foregrip for AR-15": "Strike Industries Viper carbine length M-LOK foregrip"
},
"positionExceptions": {},
"usePages": [5],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Handguards(.|\n)+Pistol grips",
"variants": {
"Magpul MOE AKM HAND GUARD for AK": {
"Magpul MOE AKM HAND GUARD (Black) for AK": {
"variant": "black",
"gif_position": 0
},
"Magpul MOE AKM HAND GUARD (Flat Dark Earth) for AK": {
"variant": "flat dark earth",
"gif_position": 0
},
"Magpul MOE AKM HAND GUARD (Plum) for AK": {
"variant": "plum",
"gif_position": 0
},
"Magpul MOE AKM HAND GUARD (Stealth Gray) for AK": {
"variant": "stealth gray",
"gif_position": 0
}
},
"Hexagon handguard for AK": {
"Hexagon handguard for AK (black)": {
"variant": "black",
"gif_position": 0
},
"Hexagon handguard for AK(anodized red)": {
"variant": "anodized red",
"gif_position": 0
}
},
"Daniel Defence RIS II 9.5 foregrip for AR-15-compatible systems": {
"Daniel Defence RIS II 9.5 foregrip for AR-15-compatible systems (red)": {
"variant": "red",
"gif_position": 0,
"search_name": "Daniel Defence RIS II 9.5 foregrip for AR-15-compatible systems"
},
"Daniel Defence RIS II 9.5 foregrip for AR-15-compatible systems (black)": {
"variant": "black",
"gif_position": 0,
"search_name": "Daniel Defence RIS II 9.5 foregrip for AR-15-compatible systems"
}
},
"Magpul Zhukov-U HAND GUARD for AK": {
"Magpul Zhukov-U HAND GUARD (Black) for AK": {
"variant": "black",
"gif_position": 0
},
"Magpul Zhukov-U HAND GUARD (FDE) for AK": {
"variant": "FDE",
"gif_position": 0
},
"Magpul Zhukov-U HAND GUARD (Plum) for AK": {
"variant": "plum",
"gif_position": 0
}
},
"TDI AKM-L handguard for AK": {
"TDI AKM-L handguard for AK Black": {
"search_name": "TDI AKM-L handguard for AK",
"variant": "black",
"gif_position": 0
},
"TDI AKM-L handguard for AK Anodized Bronze": {
"variant": "anodized bronze",
"gif_position": 0
},
"TDI AKM-L handguard for AK Anodized Red": {
"variant": "anodized red",
"gif_position": 0
}
}
}
},
"pistol_grips": {
"name": "weapon_mods",
"searchExceptions" : {
"Regular \"DS Arms\" pistol grip for SA-58": "Regular \"DS Arms\" pistol grip for SA-58"
},
"positionExceptions": {
},
"usePages": [5],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Pistol grips(.|\n)+Receivers & slides ",
"variants": {
"Hogue OverMolded Rubber Grip": {
"Hogue OverMolded Rubber Grip Black": {
"variant": "black",
"gif_position": 0
},
"Hogue OverMolded Rubber Grip FDE": {
"variant": "FDE",
"gif_position": 0
},
"Hogue OverMolded Rubber Grip Ghillie Earth": {
"variant": "ghillie earth",
"gif_position": 0
},
"Hogue OverMolded Rubber Grip Ghillie Green": {
"variant": "ghillie green",
"gif_position": 0
},
"Hogue OverMolded Rubber Grip OD Green": {
"variant": "od greem",
"gif_position": 0
}
},
"TAPCO SAW-Style pistol grip for AK": {
"TAPCO SAW-Style black pistol grip for AK": {
"variant": "black",
"gif_position": 0
},
"TAPCO SAW-Style FDE pistol grip for AK": {
"variant": "FDE",
"gif_position": 0
}
},
"Stark AR Rifle Grip for AR-15-compatible weapons": {
"Stark AR Rifle Grip (black) for AR-15-compatible weapons": {
"variant": "black",
"gif_position": 0
},
"Stark AR Rifle Grip (FDE) for AR-15-compatible weapons": {
"variant": "FDE",
"gif_position": 0
}
},
"Desert Tech pistol grip for MDR": {
"Desert Tech pistol grip for MDR FDE": {
"search_name": "Desert Tech pistol grip for MDR",
"variant": "FDE",
"gif_position": 0
},
"Desert Tech pistol grip for MDR Black": {
"variant": "black",
"gif_position": 0
}
},
"Sig Sauer pistol grip for P226": {
"Black polymer Sig Sauer pistol grip for P226": {
"variant": "black",
"gif_position": 0
},
"Sig Sauer FDE pistol grip for P226 (combat)": {
"variant": "FDE",
"gif_position": 0
}
}
}
},
"receivers_slides": {
"name": "weapon_mods",
"searchExceptions" : {
"Izhmash АK-74M dust cover (6P34 0-1)": "Izhmash Ак-74M dust cover (6p34 0-1)",
"Izhmash AK-74 dust cover (6P1 0-1)": "Izhmash Ак-74 dust cover (6P1 0-1)",
"Izhmash AKM dust cover (6P1 0-1)": "Izhmash АкM dust cover (6P1 0-1)",
"Molot AKM type dust cover": "Molot АкM type dust cover",
"Zenit B-33 dust cover for AK-74": "Zenit B-33 dust cover for Ак-74",
"AKademia Bastion dust cover for AK": "AKademia Bastion dust cover for Ак-74",
"Fab Defence PDC dust cover for AK-74": "Fab Defence PDC dust cover for Ак-74",
"TWS Dog leg rail dust cover for AK": "TWS Dog leg rail dust cover for Ак"
},
"positionExceptions": {
},
"usePages": [5],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1,
"additionalRegex": "Receivers & slides(.|\n)+</tabber>"
},
"night_vision_devices": {
"name": "gear_components",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [1],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1
},
"thermal_vision_devices": {
"name": "gear_components",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [2],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1
},
"helmet_headsets": {
"name": "gear_components",
"searchExceptions" : {},
"positionExceptions": {},
"usePages": [3],
"nameIndex": 1,
"imgFileIndex": 0,
"ignore": [],
"useRegex": 1
},