forked from pogobanane/foxhole-screenparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.js
4755 lines (4750 loc) · 150 KB
/
items.js
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
// downloaded from https://foxholelogi.com/ and added imgPath as icon from github.com/foxholetools/assets/
// Items from update 48 are added, but values of existing items are still the old ones.
const gameitems = [
{
"displayId": 0,
"faction": [
"warden"
],
"imgName": "Cascadier_873.png",
"imgPath": "icons/items/pistollightwitem.png",
"imgUasset": "ItemIcons/PistolLightWItemIcon.png",
"itemName": "Cascadier 873",
"itemDesc": "This unique sidearm fires in three-round bursts. The Cascadier may not have the stopping power of its cousins, but it more than makes up for it with its lightweight frame, concealability, and fire rate.",
"itemCategory": "small_arms",
"itemClass": "Pistol",
"ammoUsed": "8mm",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 60
}
},
{
"displayId": 1,
"faction": [
"colonial",
"warden"
],
"imgName": "8mm.png",
"imgPath": "icons/items/pistolammoitem.png",
"imgUasset": "ItemIcons/PistolAmmoItemIcon.png",
"itemName": "8mm",
"itemDesc": "Standard ammunition for pistols.",
"itemCategory": "small_arms",
"numberProduced": 40,
"stockpileLimitPrivate": 100,
"damageType": "Deals light kinetic damage",
"extraIcon": "light_kinetic",
"isTeched": false,
"isMpfCraftable": true,
"cost": {
"bmat": 40
}
},
{
"displayId": 2,
"faction": [
"colonial",
"warden"
],
"imgName": "Cometa_T2_9.png",
"imgPath": "icons/items/revolveritem.png",
"imgUasset": "ItemIcons/RevolverItemIcon.png",
"itemName": "Cometa T2-9",
"itemDesc": "The Cometa T2-9 boasts remarkable stopping power for a sidearm. This Estrellan mainstay has lived through several generations due to its fine craftsmanship design.",
"itemCategory": "small_arms",
"itemClass": "Revolver",
"ammoUsed": ".44",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 2,
"cratesIdeal": 8,
},
"cost": {
"bmat": 60
}
},
{
"displayId": 3,
"faction": [
"warden"
],
"imgName": "The_Hangman_757.png",
"imgPath": "icons/items/revolvingriflewitem.png",
"imgUasset": "ItemIcons/RevolvingRifleWItemIcon.png",
"itemName": "The Hangman 757",
"itemDesc": "The weapon of choice for pirates and smugglers, its legend is well-earned. With incredibly high stopping power and unique revolver mechanism, the Hangman often playes judge, jury, and executioner.",
"itemCategory": "small_arms",
"itemClass": "Heavy Rifle",
"ammoUsed": ".44",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 125
}
},
{
"displayId": 4,
"faction": [
"colonial",
"warden"
],
"imgName": "44.png",
"imgPath": "icons/items/revolverammoitem.png",
"imgUasset": "ItemIcons/RevolverAmmoItemIcon.png",
"itemName": ".44",
"itemDesc": "Standard ammunition for revolvers.",
"itemCategory": "small_arms",
"numberProduced": 40,
"stockpileLimitPrivate": 100,
"damageType": "Deals light kinetic damage",
"extraIcon": "light_kinetic",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 2,
"cratesIdeal": 6,
},
"cost": {
"bmat": 40
}
},
{
"displayId": 5,
"faction": [
"warden"
],
"imgName": "No_2_Loughcaster.png",
"imgPath": "icons/items/riflew.png",
"imgUasset": "ItemIcons/RifleW.png",
"itemName": "No.2 Loughcaster",
"itemDesc": "Standard-issue Warden rifle. This bolt-action firearm is as robust as they come and has seen over a century of use on the battlefield.",
"itemCategory": "small_arms",
"itemClass": "Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 1,
"cratesIdeal": 12,
},
"cost": {
"bmat": 100
}
},
{
"displayId": 6,
"faction": [
"warden"
],
"imgName": "Blakerow_871.png",
"imgPath": "icons/items/carbineitem.png",
"imgUasset": "ItemIcons/CarbineItemIcon.png",
"itemName": "Blakerow 871",
"itemDesc": "The Blakerow is a carbine with a high rate of fire compared to its bolt-action predecessor. This increased fire rate does come at the cost of innate stopping power; however, its versatility and lightweight frame more than makes up for any perceived shortcomings.",
"itemCategory": "small_arms",
"itemClass": "Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 2,
"cratesIdeal": 10,
},
"cost": {
"bmat": 140
}
},
{
"displayId": 7,
"faction": [
"warden"
],
"imgName": "Clancy_Cinder_M3.png",
"imgPath": "icons/items/riflelongw.png",
"imgUasset": "ItemIcons/RifleLongW.png",
"itemName": "Clancy Cinder M3",
"itemDesc": "The Clancy Cinder is a classic, high-powered long rifle designed for use in mid-to-long range encounters. First deployed with the Hands during a high-risk operation in Acrithia.",
"itemCategory": "small_arms",
"itemClass": "Long Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 15,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 130
}
},
{
"displayId": 8,
"faction": [
"warden"
],
"imgName": "Sampo_Auto_Rifle_77.png",
"imgPath": "icons/items/rifleautomaticw.png",
"imgUasset": "ItemIcons/RifleAutomaticW.png",
"itemName": "Sampo Auto-Rifle 77",
"itemDesc": "The precursor to the storm rifle, the Sampo Auto-Rifle, is a mastercraft of its day. With a single shot and automatic fire mode, this versatile rifle may not reach the fire rates of automatic weapons but more than makes up for it with utility.",
"itemCategory": "small_arms",
"itemClass": "Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 125
}
},
{
"displayId": 9,
"faction": [
"colonial"
],
"imgName": "Argenti_R_II.png",
"imgPath": "icons/items/riflecitem.png",
"imgUasset": "ItemIcons/RifleCItemIcon.png",
"itemName": "Argenti r.II Rifle",
"itemDesc": "The primary infantry rifle of the Colonial legion. Its predecessor, the Volta repeater, was a sturdy, reliable firearm but had many limitations, namely, fire rate. The Argenti solves this limitation as well as being more compact and lightweight.",
"itemCategory": "small_arms",
"itemClass": "Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": false,
"isMpfCraftable": true,
"cost": {
"bmat": 100
}
},
{
"displayId": 10,
"faction": [
"colonial"
],
"imgName": "Fuscina_pi_I.png",
"imgPath": "icons/items/riflelightcitem.png",
"imgUasset": "ItemIcons/RifleLightCItemIcon.png",
"itemName": "Fuscina pi.I",
"itemDesc": "This unique rifle fires three rounds in rapid succession. The Fuscina is the first of its kind, designed for laying down suppressive fire during assaults on fortified enemy entrenchments.",
"itemCategory": "small_arms",
"itemClass": "Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": false,
"isMpfCraftable": true,
"cost": {
"bmat": 140
}
},
{
"displayId": 11,
"faction": [
"colonial"
],
"imgName": "KRR2_790_Omen.png",
"imgPath": "icons/items/riflelongc.png",
"imgUasset": "ItemIcons/RifleLongC.png",
"itemName": "KRR2-790 Omen",
"itemDesc": "An older but reliable model of Kraunian long rifle. The Omen is a sturdy, simple weapon best used in long-distance skirmishes.",
"itemCategory": "small_arms",
"itemClass": "Long Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 15,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 155
}
},
{
"displayId": 12,
"faction": [
"colonial"
],
"imgName": "Volta_r_I_Repeater.png",
"imgPath": "icons/items/rifleheavycitem.png",
"imgUasset": "ItemIcons/RifleHeavyCItemIcon.png",
"itemName": "Volta r.I Repeater",
"itemDesc": "An old war Mesean rifle. It boasts high stopping power, but not as accurate as its modern variant. A weapon of legend, the Howling Lions wielded the Volta during their raid on the beaches of Fisherman's Row.",
"itemCategory": "small_arms",
"itemClass": "Heavy Rifle",
"ammoUsed": "7.62mm",
"numberProduced": 15,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 100
}
},
{
"displayId": 13,
"faction": [
"colonial",
"warden"
],
"imgName": "7_62mm.png",
"imgPath": "icons/items/rifleammoitem.png",
"imgUasset": "ItemIcons/RifleAmmoItemIcon.png",
"itemName": "7.62mm",
"itemDesc": "Standard ammunition for rifles.",
"itemCategory": "small_arms",
"numberProduced": 40,
"stockpileLimitPrivate": 100,
"damageType": "Deals light kinetic damage",
"extraIcon": "light_kinetic",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 1,
"cratesIdeal": 12,
},
"cost": {
"bmat": 80
}
},
{
"displayId": 14,
"faction": [
"warden"
],
"imgName": "Fiddler_Submachine_Gun_Model_868.png",
"imgPath": "icons/items/submachinegun.png",
"imgUasset": "ItemIcons/SubMachineGunIcon.png",
"itemName": "Fiddler Submachine Gun Model 868",
"itemDesc": "The Fiddler Submachine gun is a widely used urban combat weapon. Its high rate of fire and compact frame makes it ideal for close-quarters engagements.",
"itemCategory": "small_arms",
"itemClass": "Submachine Gun",
"ammoUsed": "9mm SMG",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 3,
"cratesIdeal": 12,
},
"cost": {
"bmat": 120
}
},
{
"displayId": 15,
"faction": [
"warden"
],
"imgName": "No_1_The_Liar_Submachine_Gun.png",
"imgPath": "icons/items/smgheavywitem.png",
"imgUasset": "ItemIcons/SMGHeavyWItemIcon.png",
"itemName": "No.1 \"The Liar\" Submachinegun",
"itemDesc": "This unique, heavy-duty submachine gun is not very useful on the run, but with careful aim and adequate cover, becomes a razorblade in the night.",
"itemCategory": "small_arms",
"itemClass": "Submachine Gun",
"ammoUsed": "9mm SMG",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 3,
"cratesIdeal": 12,
},
"cost": {
"bmat": 120
}
},
{
"displayId": 16,
"faction": [
"colonial"
],
"imgName": "The_Pitch_Gun_mc_V.png",
"imgPath": "icons/items/smgcitem.png",
"imgUasset": "ItemIcons/SMGCItemIcon.png",
"itemName": "\"The Pitch Gun\" mc. V",
"itemDesc": "This classic submachine gun is sturdy and irreplaceable as a general tool for close-range engagements. The \"Pitch Gun\" earned its namesake from Mesean sailors who employed the weapon to successfully defend against a night raid on the Geraston docks.",
"itemCategory": "small_arms",
"itemClass": "Submachine Gun",
"ammoUsed": "9mm SMG",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 80
}
},
{
"displayId": 17,
"faction": [
"colonial"
],
"imgName": "Lionclaw_mc_VIII.png",
"imgPath": "icons/items/smgheavycitem.png",
"imgUasset": "ItemIcons/SMGHeavyCItemIcon.png",
"itemName": "\"Lionclaw\" mc.VIII",
"itemDesc": "A heavier, modern variation of the Pitch Gun, the Lionclaw Performs well as a decent, all-around submachine gun designed as a primary firearm in urban and close-quarters combat operations.",
"itemCategory": "small_arms",
"itemClass": "Submachine Gun",
"ammoUsed": "9mm SMG",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 120
}
},
{
"displayId": 18,
"faction": [
"colonial",
"warden"
],
"imgName": "9mm_SMG.png",
"imgPath": "icons/items/submachinegunammo.png",
"imgUasset": "ItemIcons/SubMachineGunAmmoIcon.png",
"itemName": "9mm SMG",
"itemDesc": "Standard ammunition for submachine guns.",
"itemCategory": "small_arms",
"numberProduced": 40,
"stockpileLimitPrivate": 100,
"damageType": "Deals light kinetic damage",
"extraIcon": "light_kinetic",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 3,
"cratesIdeal": 12,
},
"cost": {
"bmat": 80
}
},
{
"displayId": 19,
"faction": [
"colonial",
"warden"
],
"imgName": "Brasa_Shotgun.png",
"imgPath": "icons/items/shotgunitem.png",
"imgUasset": "ItemIcons/ShotgunItemIcon.png",
"itemName": "Brasa Shotgun",
"itemDesc": "This close-range firearm is an Estrellan import originally designed for hunting wild game. The Brasa is primarily used in urban operations.",
"itemCategory": "small_arms",
"itemClass": "Shotgun",
"ammoUsed": "Buckshot",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 120
}
},
{
"displayId": 20,
"faction": [
"colonial",
"warden"
],
"imgName": "Buckshot.png",
"imgPath": "icons/items/shotgunammoitem.png",
"imgUasset": "ItemIcons/ShotgunAmmoItemIcon.png",
"itemName": "Buckshot",
"itemDesc": "Standard ammunition for Shotguns.",
"itemCategory": "small_arms",
"numberProduced": 40,
"stockpileLimitPrivate": 100,
"damageType": "Deals light kinetic damage",
"extraIcon": "light_kinetic",
"isTeched": false,
"isMpfCraftable": true,
"cost": {
"bmat": 80
}
},
{
"displayId": 21,
"faction": [
"warden"
],
"imgName": "Aalto_Storm_Rifle_24.png",
"imgPath": "icons/items/assaultrifleitem.png",
"imgUasset": "ItemIcons/AssaultRifleItemIcon.png",
"itemName": "Aalto Storm Rifle 24",
"itemDesc": "Widely considered to be the first storm rifle, the Aalto is a marvel in Caoivish engineering. With its two fire modes, it can be used as a rapid-fire assault weapon or a mid-range rifle.",
"itemCategory": "small_arms",
"itemClass": "Assault Rifle",
"ammoUsed": "7.92mm",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 2,
"cratesIdeal": 24,
},
"cost": {
"bmat": 165
}
},
{
"displayId": 22,
"faction": [
"warden"
],
"imgName": "Booker_Storm_Rifle_Model_838.png",
"imgPath": "icons/items/assaultrifleheavywitem.png",
"imgUasset": "ItemIcons/AssaultRifleHeavyWItemIcon.png",
"itemName": "Booker Storm Rifle Model 838",
"itemDesc": "The Booker is a high-impact three-round burst Storm Rifle for those who like to shoot first.",
"itemCategory": "small_arms",
"itemClass": "Assault Rifle",
"ammoUsed": "7.92mm",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 3,
"cratesIdeal": 20,
},
"cost": {
"bmat": 165
}
},
{
"displayId": 23,
"faction": [
"colonial"
],
"imgName": "Catara_mo_II.png",
"imgPath": "icons/items/lightmachinegun.png",
"imgUasset": "ItemIcons/LightMachineGunIcon.png",
"itemName": "Catara mo.II",
"itemDesc": "A titanic light machine gun capable of scattering infantry lines with ease, the Catara is a modern weapon for the modern Colonial.",
"itemCategory": "small_arms",
"itemClass": "Light Machine Gun",
"ammoUsed": "12.7mm",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 165
}
},
{
"displayId": 24,
"faction": [
"colonial"
],
"imgName": "Dusk_ce_III.png",
"imgPath": "icons/items/assaultrifleheavycitem.png",
"imgUasset": "ItemIcons/AssaultRifleHeavyCItemIcon.png",
"itemName": "\"Dusk\" ce.III",
"itemDesc": "This unique assault rifle includes a high-capacity drum magazine designed for sustained rapid fire.",
"itemCategory": "small_arms",
"itemClass": "Assault Rifle",
"ammoUsed": "7.92mm",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 165
}
},
{
"displayId": 25,
"faction": [
"colonial",
"warden"
],
"imgName": "7_92mm.png",
"imgPath": "icons/items/assaultrifleammoitem.png",
"imgUasset": "ItemIcons/AssaultRifleAmmoItemIcon.png",
"itemName": "7.92mm",
"itemDesc": "Standard ammunition for storm rifles, light machine guns, and armored cars.",
"itemCategory": "small_arms",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"damageType": "Deals light kinetic damage",
"extraIcon": "light_kinetic",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 2,
"cratesIdeal": 16,
},
"cost": {
"bmat": 120
}
},
{
"displayId": 26,
"faction": [
"warden"
],
"imgName": "Clancy_Raca_M4.png",
"imgPath": "icons/items/sniperrifleitem.png",
"imgUasset": "ItemIcons/SniperRifleItemIcon.png",
"itemName": "Clancy-Raca M4",
"itemDesc": "A heavy-duty, long-range marksman rifle. The Clancy-Raca has one hell of a kick but is fitted with a powerful scope, allowing infantry to survey the battlefield and provide support from a safe location.",
"itemCategory": "small_arms",
"itemClass": "Sniper Rifle",
"ammoUsed": "8.5mm",
"numberProduced": 5,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 200,
"rmat": 15
}
},
{
"displayId": 27,
"faction": [
"colonial"
],
"imgName": "KRR3_792_Auger.png",
"imgPath": "icons/items/sniperriflecitem.png",
"imgUasset": "ItemIcons/SniperRifleCItemIcon.png",
"itemName": "KRR3-792 Auger",
"itemDesc": "A Kraunian rifle modified for long-range engagements. It doesn't have the range or stopping power of other marksman rifles but more than makes up for it with unmatched reliability in a range of environments and a superior effective rate of fire.",
"itemCategory": "small_arms",
"itemClass": "Sniper Rifle",
"ammoUsed": "8.5mm",
"numberProduced": 5,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 200,
"rmat": 15
}
},
{
"displayId": 28,
"faction": [
"colonial",
"warden"
],
"imgName": "8_5mm.png",
"imgPath": "icons/items/sniperrifleammoitem.png",
"imgUasset": "ItemIcons/SniperRifleAmmoItemIcon.png",
"itemName": "8.5mm",
"itemDesc": "Standard ammunition for sniper rifles.",
"itemCategory": "small_arms",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"damageType": "Deals light kinetic damage",
"extraIcon": "light_kinetic",
"isTeched": false,
"isMpfCraftable": true,
"cost": {
"bmat": 150
}
},
{
"displayId": 29,
"faction": [
"colonial"
],
"imgName": "KRN886_127_Gast_Machine_Gun.png",
"imgPath": "icons/items/mgcitem.png",
"imgUasset": "ItemIcons/MGCItemIcon.png",
"itemName": "KRN886-127 Gast Machine Gun",
"itemDesc": "The Gast is a deadly but cumbersome Kraunian heavy machine gun. It is best suited to holding and defending established fortifications or garrisoned structures against encroaching infantry.",
"itemCategory": "small_arms",
"itemClass": "Machine Gun",
"ammoUsed": "12.7mm",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"damageType": "Deals heavy kinetic damage",
"cost": {
"rmat": 30
}
},
{
"displayId": 30,
"faction": [
"warden"
],
"imgName": "Malone_MK_2.png",
"imgPath": "icons/items/mgwitem.png",
"imgUasset": "ItemIcons/MGWItemIcon.png",
"itemName": "Malone MK.2",
"itemDesc": "This heavy machine gun is bulky enough to require a steady surface to maintain stability. The Malone series of machine guns are unmatched defenders on the battlefield.",
"itemCategory": "small_arms",
"itemClass": "Machine Gun",
"ammoUsed": "12.7mm",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"rmat": 30
}
},
{
"displayId": 31,
"faction": [
"colonial",
"warden"
],
"imgName": "12_7mm.png",
"imgPath": "icons/items/machinegunammo.png",
"imgUasset": "ItemIcons/MachineGunAmmoIcon.png",
"itemName": "12.7mm",
"itemDesc": "Standard ammunition for all machine guns, including vehicle mounted weapons like those on the half-track and battle tank.",
"itemCategory": "small_arms",
"extraIcon": "heavy_kinetic",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 3,
"cratesIdeal": 12,
},
"cost": {
"bmat": 100
}
},
{
"displayId": 32,
"faction": [
"colonial",
"warden"
],
"imgName": "PT_815_Smoke_Grenade.png",
"imgPath": "icons/items/smokegrenadeicon1.png",
"imgUasset": "ItemIcons/Smokegrenadeicon1.png",
"itemName": "PT-815 Smoke Grenade",
"itemDesc": "A standard smoke grenade designed for concealing allied movement or screening the enemy's vision.",
"itemCategory": "small_arms",
"itemClass": "Smoke Grenade",
"extraIcon": "smoke",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 3,
"cratesIdeal": 12,
},
"cost": {
"bmat": 120
}
},
{
"displayId": 0,
"faction": [
"colonial"
],
"imgName": "Typhon_ra_XII.png",
"itemName": "\"Typhon\" ra.XII",
"imgPath": "icons/items/atrifletc.png",
"imgUasset": "ItemIcons/ATRifleTCIcon.png",
"itemDesc": "This mounted anti-tank rifle boasts improved accuracy over its free-standing counterparts. The Typhon was specifically designed with shock absorption in mind, allowing for faster, more consistent firing patterns.",
"itemCategory": "heavy_arms",
"itemClass": "Mounted Anti-Tank Rifle",
"highVelocityBonus": "Equipped with a high velocity barrel that deals 50% extra damage per shot.",
"ammoUsed": "20mm",
"isMountable": true,
"numberProduced": 5,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 150
}
},
{
"displayId": 1,
"faction": [
"warden"
],
"imgName": "135_Neville_Anti_Tank_Rifle.png",
"imgPath": "icons/items/atrifleitem.png",
"imgUasset": "ItemIcons/ATRifleItemIcon.png",
"itemName": "135 Neville Anti-Tank Rifle",
"itemDesc": "The Neville is unmatched in its versatility as a portable, magazine-based anti-armor firearm.",
"itemCategory": "heavy_arms",
"itemClass": "Anti-Tank Rifle",
"ammoUsed": "20mm",
"numberProduced": 5,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 4,
"cratesIdeal": 14,
},
"cost": {
"bmat": 150
}
},
{
"displayId": 2,
"faction": [
"colonial",
"warden"
],
"imgName": "20mm.png",
"imgPath": "icons/items/atrifleammoitem.png",
"imgUasset": "ItemIcons/ATRifleAmmoItemIcon.png",
"itemName": "20mm",
"itemDesc": "Standard ammunition for anti-tank rifles.",
"itemCategory": "heavy_arms",
"numberProduced": 10,
"stockpileLimitPrivate": 100,
"damageType": "Deals anti-tank explosive damage", // TODO this is kinetic damage https://foxhole.fandom.com/wiki/20mm
"damageDesc": "Can penetrate armored vehicles",
"extraIcon": "at_kinetic",
"vehiclePen": "Damage to the sides and rear of armored vehicles have a higher chance to penetrate at close range and at direct angles.",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 4,
"cratesIdeal": 30,
},
"cost": {
"bmat": 100
}
},
{
"displayId": 3,
"faction": [
"colonial"
],
"imgName": "Daucus_isg_III.png",
"imgPath": "icons/items/infantrysupportgunitem.png",
"imgUasset": "ItemIcons/InfantrySupportGunItemIcon.png",
"itemName": "Daucus isg.III",
"itemDesc": "This heavy infantry cannon requires a tripod for stability. The Daucus is designed to give infantry a foothold against enemy vehicles and light fortifications or established fortified garrisons.",
"itemCategory": "heavy_arms",
"itemClass": "Infantry Support Gun",
"ammoUsed": "30mm",
"numberProduced": 5,
"stockpileLimitPrivate": 100,
"extraIcon": "explosive",
"isTeched": true,
"isMpfCraftable": true,
"cost": {
"bmat": 150
}
},
{
"displayId": 4,
"faction": [
"colonial",
"warden"
],
"imgName": "30mm.png",
"imgPath": "icons/items/minitankammoitem.png",
"imgUasset": "ItemIcons/MiniTankAmmoItemIcon.png",
"itemName": "30mm",
"itemDesc": "Standard explosive shell for small vehicles or infantry weapons.",
"itemCategory": "heavy_arms",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"damageType": "Deals explosive damage",
"damageDesc": "Can penetrate armored vehicles",
"extraIcon": "explosive",
"vehiclePen": "Damage to the sides and rear of armored vehicles have a higher chance to penetrate at close range and at direct angles.",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 3,
"cratesIdeal": 8,
},
"cost": {
"bmat": 80,
"emat": 20
}
},
{
"displayId": 5,
"faction": [
"colonial",
"warden"
],
"imgName": "40mm.png",
"imgPath": "icons/items/lighttankammoitem.png",
"imgUasset": "ItemIcons/LightTankAmmoItemIcon.png",
"itemName": "40mm",
"itemDesc": "Standard payload for light tanks.",
"itemCategory": "heavy_arms",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"damageType": "Deals explosive damage",
"damageDesc": "Can penetrate armored vehicles",
"extraIcon": "explosive",
"vehiclePen": "Damage to the sides and rear of armored vehicles have a higher chance to penetrate at close range and at direct angles.",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 7,
"cratesIdeal": 10,
},
"cost": {
"bmat": 160,
"emat": 120
}
},
{
"displayId": 6,
"faction": [
"colonial",
"warden"
],
"imgName": "68mm.png",
"imgPath": "icons/items/atammo.png",
"imgUasset": "ItemIcons/ATAmmoIcon.png",
"itemName": "68mm AT",
"itemDesc": "An anti-tank shell that's effective against penetrating tank armor.",
"itemCategory": "heavy_arms",
"numberProduced": 20,
"stockpileLimitPrivate": 100,
"damageType": "Deals armor piercing damage",
"damageDesc": "Can penetrate armored vehicles",
"extraIcon": "armour_piercing",
"vehiclePen": "Damage to the sides and rear of armored vehicles have a higher chance to penetrate at close range and at direct angles.",
"vehiclePenChance": "High chance to penetrate armored vehicles.",
"isTeched": false,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 8,
"cratesIdeal": 10,
},
"cost": {
"bmat": 120,
"emat": 120
}
},
{
"displayId": 7,
"faction": [
"warden"
],
"imgName": "Cutler_Launcher_4.png",
"imgPath": "icons/items/rpgitem.png",
"imgUasset": "ItemIcons/RpgItemIcon.png",
"itemName": "Cutler Launcher 4",
"itemDesc": "The Cutler Launcher is capable of firing and unguided, rocket-propelled grenade over short distances with startling efficiency. Its simple design allows for easy deployment and storage.",
"itemCategory": "heavy_arms",
"itemClass": "RPG",
"ammoUsed": "R.P.G. Shell",
"damageType": "Deals explosive damage",
"damageDesc": "Can penetrate armored vehicles",
"extraIcon": "explosive",
"vehiclePen": "Damage to the sides and rear of armored vehicles have a higher chance to penetrate at close range and at direct angles.",
"numberProduced": 5,
"stockpileLimitPrivate": 100,
"isTeched": true,
"isMpfCraftable": true,
"supplyPyramid": {
"priority": 4,
"cratesIdeal": 6,
},
"cost": {
"bmat": 100,
"rmat": 25
}
},
{
"displayId": 8,
"faction": [
"warden"
],
"imgName": "Cutler_Foebreaker.png",
"imgPath": "icons/items/atrpgtw.png",
"imgUasset": "ItemIcons/ATRPGTWIcon.png",
"itemName": "Cutler Foebreaker",
"itemClass": "Mounted RPG Launcher",
"itemDesc": "This unique duel-barrelled RPG launcher can fire two RPG shells in relatively quick succession. This increase in firepower makes it nearly impossible for a single soldier to operate without the support of a sturdy mount.",
"itemCategory": "heavy_arms",
"extraIcon": "explosive",
"numberProduced": 5,
"stockpileLimitPrivate": 100,
"damageType": "Deals explosive damage",
"damageDesc": "Can penetrate armored vehicles",
"vehiclePen": "Damage to the sides and rear of armored vehicles have a higher chance to penetrate at close range and at direct angles.",
"isTeched": true,
"ammoUsed": "R.P.G. Shell",
"isMpfCraftable": true,
"cost": {
"bmat": 200