-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLANGUAGE
1730 lines (1376 loc) · 68.5 KB
/
LANGUAGE
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
[enu default]
TAG_BUX = "Mercenary Bucks";
PICKUP_BUX = "You got some paper currency.";
TAG_COIN = "Demon Coin";
PICKUP_COIN = "You got some demonic currency.";
TAG_GEM = "Demon Gem";
PICKUP_GEM = "You got a demonic gemstone.";
// ----------------
// WEAPONS
// ----------------
// 10mm Pistol
MERCH_CAT_10MMPISTOL = "RadTech Inc.";
MERCH_TAG_10MMPISTOL = "10mm Pistol";
MERCH_FLAVOR_10MMPISTOL = "Hope your wrists can handle the recoil.";
// Arcanum
MERCH_CAT_ARCANUM = "AceCorp";
MERCH_TAG_ARCANUM = "Arcanum Tome";
MERCH_FLAVOR_ARCANUM = "I don't understand a damn thing that's written in it.";
// Altis O/U Shotgun
MERCH_CAT_ALTIS = "FDA Approved";
MERCH_TAG_ALTIS = "Altis Over-and-Under Shotgun";
MERCH_FLAVOR_ALTIS = "It's like the Slayer, but vertical.";
// AT-4
MERCH_CAT_AT4 = "Bangers & Mash";
MERCH_TAG_AT4 = "RAT-84 HEAT Rocket Launcher";
MERCH_FLAVOR_AT4 = "Mind the backblast.";
// ATC Devincenzia
MERCH_CAT_DEVINCENZIA = "Bangers & Mash";
MERCH_TAG_DEVINCENZIA = "Berlinghoff XM135 'Devincenzia' Cannon";
MERCH_FLAVOR_DEVINCENZIA = "Whoa, a new toy!.";
// ATC Kelenken
MERCH_CAT_KELENKEN = "Bangers & Mash";
MERCH_TAG_KELENKEN = "M5-AT 'Kelenken' 35mm Autocannon";
MERCH_FLAVOR_KELENKEN = "The chances of being surrounded by ten Cyberdemons is low but never zero.";
// ATCM-35
MERCH_CAT_ATCM35 = "Bangers & Mash";
MERCH_TAG_ATCM35 = "ATCM-35 Tracking Cluster Missile Launcher";
MERCH_FLAVOR_ATCM35 = "The operator casualty rate for these are... well, I'll leave it to imagination.";
// Aurochs
MERCH_CAT_AUROCHS = "Peppergrinder";
MERCH_TAG_AUROCHS = "Aurochs SAA";
MERCH_FLAVOR_AUROCHS = "I love to reload during a battle.";
// Auto5
MERCH_CAT_AUTO5 = "Peppergrinder";
MERCH_TAG_AUTO5 = "Baileya Repeater Slug Gun";
MERCH_FLAVOR_AUTO5 = "Old but gold.";
// Automag
MERCH_CAT_AUTOMAG = "Bangers & Mash";
MERCH_TAG_AUTOMAG = "SP-50 Magnum";
MERCH_FLAVOR_AUTOMAG = "Now you too can be a Bleedin' Action Man!";
// Barracuda
MERCH_CAT_BARRACUDA = "Icarus Innovations";
MERCH_TAG_BARRACUDA = "Barracuda";
MERCH_FLAVOR_BARRACUDA = "The time for vengeance is now.";
// Bastard Rifle
MERCH_CAT_BASTARDRIFLE = "Peppergrinder";
MERCH_TAG_BASTARDRIFLE = "Bastard Rifle";
MERCH_FLAVOR_BASTARDRIFLE = "Has no familiar relationship with the bastard sword.";
// BFG 9000
MERCH_CAT_BFG = "Vanilla";
MERCH_TAG_BFG = "BFG 9000";
MERCH_FLAVOR_BFG = "Same as the Brontornis but casts mass disappearance instead.";
// Bitch
MERCH_CAT_BITCH = "Icarus Innovations";
MERCH_TAG_BITCH = "The Bitch";
MERCH_FLAVOR_BITCH = "Pour Your Little Heart Out.";
// Blackhawk
MERCH_CAT_BLACKHAWK = "AceCorp";
MERCH_TAG_BLACKHAWK = "Blackhawk";
MERCH_FLAVOR_BLACKHAWK = "Shhhhh... we're hunting demons.";
// Blackjack
MERCH_CAT_BLACKJACK = "AceCorp";
MERCH_TAG_BLACKJACK = "'Blackjack' .355 Rifle";
MERCH_FLAVOR_BLACKJACK = "23. Bust.";
// Blooper
MERCH_CAT_BLOOPER = "Vanilla";
MERCH_TAG_BLOOPER = "Blooper";
MERCH_FLAVOR_BLOOPER = "Chunk 'n' cheese bosses with this.";
// Boss Rifle
MERCH_CAT_BOSS = "Vanilla";
MERCH_TAG_BOSS = "Boss Rifle";
MERCH_FLAVOR_BOSS = "Hey, as long as it w- What? It jammed again!?";
// Boss Rifle (9mm)
MERCH_CAT_9MMBOSS = "Hexadoken Industries";
MERCH_TAG_9MMBOSS = "Boss Rifle (9mm)";
MERCH_FLAVOR_9MMBOSS = "Why is it greasy?";
// Boss Rifle (4mm)
MERCH_CAT_4MMBOSS = "Hexadoken Industries";
MERCH_TAG_4MMBOSS = "Boss Rifle (4mm)";
MERCH_FLAVOR_4MMBOSS = "Feels like cheap plastic.";
// Boss Rifle (5mm)
MERCH_CAT_5MMBOSS = "Hexadoken Industries";
MERCH_TAG_5MMBOSS = "Boss Rifle (5mm)";
MERCH_FLAVOR_5MMBOSS = "IT'S PINK!";
// Boss Rifle (.50 OMG)
MERCH_CAT_OMGBOSS = "Hexadoken Industries";
MERCH_TAG_OMGBOSS = "Boss Rifle (.50 OMG)";
MERCH_FLAVOR_OMGBOSS = "A bit of oomph to go with that.";
// Bossmerg
MERCH_CAT_12GBOSS = "Hexadoken Industries";
MERCH_TAG_12GBOSS = "Bossmerg 12 gauge Shotgun";
MERCH_FLAVOR_12GBOSS = "It's the best of all three!";
// Box Cannon
MERCH_CAT_BOXCANNON = "Peppergrinder";
MERCH_TAG_BOXCANNON = "Box Cannon";
MERCH_FLAVOR_BOXCANNON = "HALT!";
// BPX
MERCH_CAT_BPX = "Peppergrinder";
MERCH_TAG_BPX = "BPX Pistol Caliber Carbine";
MERCH_FLAVOR_BPX = "The standard-issue handgun after a complete makeover.";
// Brontornis
MERCH_CAT_BRONTO = "Vanilla";
MERCH_TAG_BRONTO = "Brontornis";
MERCH_FLAVOR_BRONTO = "And now I will show you a magic trick. Watch as this Hell Noble disappears.";
// Bronto-Buddy
MERCH_CAT_BRONTOBUDDY = "RightInfinity";
MERCH_TAG_BRONTOBUDDY = "Brontornis Cannon W/Bolt Rack";
MERCH_FLAVOR_BRONTOBUDDY = "It's a buddy, for your Bronto.";
// Cawsgun
MERCH_CAT_CAWSGUN = "Bangers & Mash";
MERCH_TAG_CAWSGUN = "H&M CROWS 'Presslufthammer' Shotgun";
MERCH_FLAVOR_CAWSGUN = "Just don't expect your shells to chamber reliably.";
// Chainsaw
MERCH_CAT_CHAINSAW = "Vanilla";
MERCH_TAG_CHAINSAW = "Lumberjack";
MERCH_FLAVOR_CHAINSAW = "VRRRRRRRRRRRRRR!";
// Colt .355
MERCH_CAT_355SMG = "Bangers & Mash";
MERCH_TAG_355SMG = "Volt M35A1 HPC SMG";
MERCH_FLAVOR_355SMG = "Armored marines got you down? No problem!";
// Colt 1911
MERCH_CAT_COLT1911 = "RadTech Inc.";
MERCH_TAG_COLT1911 = "Colt 1911";
MERCH_FLAVOR_COLT1911 = "Hoo-ah!";
// Combat Knife
MERCH_CAT_KNIFE = "Bangers & Mash";
MERCH_TAG_KNIFE = "Combat Knife";
MERCH_FLAVOR_KNIFE = "A no-frills combat knife, in case you want to keep your hands clean.";
// Combat Shotgun
MERCH_CAT_COMBATSHOTGUN = "RadTech Inc.";
MERCH_TAG_COMBATSHOTGUN = "Combat Shotgun";
MERCH_FLAVOR_COMBATSHOTGUN = "Hasta la vista, baby!";
// DM-93 Plasmabuster
MERCH_CAT_D93 = "RadTech Inc.";
MERCH_TAG_D93 = "DM-93 Plasma Rifle";
MERCH_FLAVOR_D93 = "Melting demons like it's 1993!";
// DMR
MERCH_CAT_DMR = "Peppergrinder";
MERCH_TAG_DMR = "PG667 Designated Marksman Rifle";
MERCH_FLAVOR_DMR = "Shoot through that marine's visor from 200 meters away. If it doesn't misfeed.";
// Doomed Hunter
MERCH_CAT_DOOMHUNTER = "RadTech Inc.";
MERCH_TAG_DOOMHUNTER = "Doomed Shotgun";
MERCH_FLAVOR_DOOMHUNTER = "I have a feeling you won't be using this for duck hunting.";
// Duck Hunter
MERCH_CAT_DUCKHUNTER = "RadTech Inc.";
MERCH_TAG_DUCKHUNTER = "Duck Hunter";
MERCH_FLAVOR_DUCKHUNTER = "Mind the retriever.";
// Executioner
MERCH_CAT_EXECUTIONER = "AceCorp";
MERCH_TAG_EXECUTIONER = "Executioner";
MERCH_FLAVOR_EXECUTIONER = "Just get it the fuck away from me. This thing is fucking cursed.";
// Explosive Hunter
MERCH_CAT_XHUNTER = "RadTech Inc.";
MERCH_TAG_XHUNTER = "Explosive Shotgun";
MERCH_FLAVOR_XHUNTER = "It's like a Hunter and a Blooper had a one night stand.";
// Fenris
MERCH_CAT_FENRIS = "Icarus Innovations";
MERCH_TAG_FENRIS = "Fenris";
MERCH_FLAVOR_FENRIS = "It's a cold day in hell.";
// Finger of God
MERCH_CAT_FOG = "Icarus Innovations";
MERCH_TAG_FOG = "Finger of God";
MERCH_FLAVOR_FOG = "Now go and touch some Viles.";
// Fire Axe
MERCH_CAT_FIREAXE = "Bangers & Mash";
MERCH_TAG_FIREAXE = "Fire Axe";
MERCH_FLAVOR_FIREAXE = "Why is it called a Fire Axe if it's not on fire?";
// Flamenwerfer 77
MERCH_CAT_FLAMENWERFER = "Icarus Innovations";
MERCH_TAG_FLAMENWERFER = "Flamenwerfer 77";
MERCH_FLAVOR_FLAMENWERFER = "It werfs flammen.";
// Flare Gun (Metal)
MERCH_CAT_FLAREGUNMETAL = "RadTech Inc.";
MERCH_TAG_FLAREGUNMETAL = "Steel Flare Gun";
MERCH_FLAVOR_FLAREGUNMETAL = "Doubles as an emergency survival shotgun.";
// Flare Gun (Plastic)
MERCH_CAT_FLAREGUN = "RadTech Inc.";
MERCH_TAG_FLAREGUN = "Flare Gun";
MERCH_FLAVOR_FLAREGUN = "Useful for finding your way through dark places.";
// Flintlock Pistol
MERCH_CAT_FLINTLOCK = "Cozi's Offworld Wares";
MERCH_TAG_FLINTLOCK = "Flintlock Pistol";
MERCH_FLAVOR_FLINTLOCK = "Gunslingin' like it's 1749!";
// FNFAL
MERCH_CAT_FNFAL = "Bangers & Mash";
MERCH_TAG_FNFAL = "UN-AF L7A1 MG";
MERCH_FLAVOR_FNFAL = "Give those abominations a taste of true freedom.";
// FP-45
MERCH_CAT_FP45 = "RadTech Inc.";
MERCH_TAG_FP45 = "FP-45 'Liberator' Pistol";
MERCH_FLAVOR_FP45 = "Do you even need more than one shot?";
// Frag Cannon
MERCH_CAT_FRAGCANNON = "RadTech Inc.";
MERCH_TAG_FRAGCANNON = "'Frag Cannon' Frag Grenade Launcher";
MERCH_FLAVOR_FRAGCANNON = "Is your arm tired?";
// Frontiersman
MERCH_CAT_FRONTIERSMAN = "Icarus Innovations";
MERCH_TAG_FRONTIERSMAN = "Frontiersman";
MERCH_FLAVOR_FRONTIERSMAN = "A bare-bones gun for a bare-bones man.";
// Fulgur
MERCH_CAT_FULGUR = "Peppergrinder";
MERCH_TAG_FULGUR = "Fulgur Laser Machinegun";
MERCH_FLAVOR_FULGUR = "This will be DAKKA in 2013!";
// G11
MERCH_CAT_G11 = "Bangers & Mash";
MERCH_TAG_G11 = "H&M G26A1 Assault Rifle";
MERCH_FLAVOR_G11 = "Kraut Space Magic!";
// G11 (Scoped)
MERCH_CAT_G11SCOPED = "Bangers & Mash";
MERCH_TAG_G11SCOPED = "H&M G26SD Service Rifle";
MERCH_FLAVOR_G11SCOPED = "A very sneaky G26A1 capable of 'hyperburst'.";
// GFB-9
MERCH_CAT_GFB9 = "Icarus Innovations";
MERCH_TAG_GFB9 = "GFB-9 'Backup Plan'";
MERCH_FLAVOR_GFB9 = "For when all else fails.";
// Golden Single Action Revolver
MERCH_CAT_GOLDENSAREVOLVER = "RadTech Inc.";
MERCH_TAG_GOLDENSAREVOLVER = "The Golden Gun";
MERCH_FLAVOR_GOLDENSAREVOLVER = "I don't expect these demons to talk, I expect them to die!";
// Greely
MERCH_CAT_GREELY = "Peppergrinder";
MERCH_TAG_GREELY = "Greely 12";
MERCH_FLAVOR_GREELY = "Might fit in your pockets.";
// Guillotine
MERCH_CAT_GUILLOTINE = "Peppergrinder";
MERCH_TAG_GUILLOTINE = "Guillotine";
MERCH_FLAVOR_GUILLOTINE = "Chop, chop.";
// Gungnir
MERCH_CAT_GUNGNIR = "AceCorp";
MERCH_TAG_GUNGNIR = "'Gungnir' Frag beam Rifle";
MERCH_FLAVOR_GUNGNIR = "Stole it right out of some deity's closet. I hope they don't need it.";
// Hacked ZM66
MERCH_CAT_HZM = "RadTech Inc.";
MERCH_TAG_HZM = "Hacked ZM66 Rifle";
MERCH_FLAVOR_HZM = "Better hope Volt doesn't find out about these, or we're both screwed.";
// Hammerhead
MERCH_CAT_HAMMERHEAD = "AceCorp";
MERCH_TAG_HAMMERHEAD = "Hammerhead";
MERCH_FLAVOR_HAMMERHEAD = "Do you hate batteries? Do you hate imps more? This gun lets you get rid of both!";
// Helzing
MERCH_CAT_HELZING = "Peppergrinder";
MERCH_TAG_HELZING = "Helzing";
MERCH_FLAVOR_HELZING = "In the name of the Lord!";
// HLAR
MERCH_CAT_HLAR = "Peppergrinder";
MERCH_TAG_HLAR = "HLAR";
MERCH_FLAVOR_HLAR = "Makes more noise and throws grenades, but that's about it.";
// Hunter
MERCH_CAT_HUNTER = "Vanilla";
MERCH_TAG_HUNTER = "Hunter";
MERCH_FLAVOR_HUNTER = "Come on, baby, just pump it.";
// Hush Puppy
MERCH_CAT_HUSHPUPPY = "RadTech Inc.";
MERCH_TAG_HUSHPUPPY = "'Hush Puppy' Silenced Pistol";
MERCH_FLAVOR_HUSHPUPPY = "It's a shame the slide sticks, though";
// Ironsight Lib
MERCH_CAT_ILIB = "Peppergrinder";
MERCH_TAG_ILIB = "Irons Liberator";
MERCH_FLAVOR_ILIB = "Liberator rifle in and out. Almost.";
// Jackdaw
MERCH_CAT_JACKDAW = "AceCorp";
MERCH_TAG_JACKDAW = "'Jackdaw' 9mm SMG";
MERCH_FLAVOR_JACKDAW = "It's like five SMGs strapped together, but you can only fire one at a time.";
// Juan Horeshoe Pistol
MERCH_CAT_JUAN = "RadTech Inc.";
MERCH_TAG_JUAN = "Juan";
MERCH_FLAVOR_JUAN = "J u a n .";
// Kharon
MERCH_CAT_KHARON = "Bangers & Mash";
MERCH_TAG_KHARON = "Replica Kharon";
MERCH_FLAVOR_KHARON = "Filled with a history of violence and anguish... except this one's a replica. Still effective.";
// Khleb
MERCH_CAT_KHLEB = "RightInfinity";
MERCH_TAG_KHLEB = "Khleb";
MERCH_FLAVOR_KHLEB = "It's Khlebberin' time!";
// Less-Lethal Shotgun
MERCH_CAT_LLHUNTER = "RadTech Inc.";
MERCH_TAG_LLHUNTER = "Bernoulli M1053";
MERCH_FLAVOR_LLHUNTER = "Whatcha gonna do with this, arrest the demons?";
// Levergun
MERCH_CAT_LEVERGUN = "Bangers & Mash";
MERCH_TAG_LEVERGUN = "LR37 'Big Boy' Hunting Carbine";
MERCH_FLAVOR_LEVERGUN = "Contrary to what its name suggests, you don't HAVE to use it against 'big boys'.";
// Liberator
MERCH_CAT_LIBERATOR = "Vanilla";
MERCH_TAG_LIBERATOR = "Liberator";
MERCH_FLAVOR_LIBERATOR = "Vive la révolution!";
// Lisa
MERCH_CAT_LISA = "Peppergrinder";
MERCH_TAG_LISA = "'Lisa' Plasma DMR";
MERCH_FLAVOR_LISA = "This rifle has not been hit.";
// Lotus
MERCH_CAT_LOTUS = "Peppergrinder";
MERCH_TAG_LOTUS = "Lotus Rifle";
MERCH_FLAVOR_LOTUS = "Rifle, but it's really a revolver. Why?";
// M1 Garand
MERCH_CAT_M1GARAND = "Hexadoken Industries";
MERCH_TAG_M1GARAND = "M1 Garand";
MERCH_FLAVOR_M1GARAND = "PING! PING!";
// M2HB
MERCH_CAT_M2HB = "Bangers & Mash";
MERCH_TAG_M2HB = "AM-HMG50 'MKII Stinger' HMG";
MERCH_FLAVOR_M2HB = "This was made for tanks, not infantry. How you'll use this is a mystery to me.";
// M5165
MERCH_CAT_M5165 = "Bangers & Mash";
MERCH_TAG_M5165 = "Arkoudi M5/165c SMG";
MERCH_FLAVOR_M5165 = "It really does hold 165 rounds. Very tiny rounds.";
// M60
MERCH_CAT_M60 = "Bangers & Mash";
MERCH_TAG_M60 = "USGI M60E1 'Fat Boar' GPMG";
MERCH_FLAVOR_M60 = "Just don't load them as much.";
// MA-75B
MERCH_CAT_MA75B = "WAN Industries";
MERCH_TAG_MA75B = "MA-75B Battle Rifle";
MERCH_FLAVOR_MA75B = "Don't try to be a marksman with this weapon.";
// MA-76C
MERCH_CAT_MA76C = "WAN Industries";
MERCH_TAG_MA76C = "MA-76C Assault Rifle";
MERCH_FLAVOR_MA76C = "It's like the MA-75B but smaller.";
// MAC10
MERCH_CAT_MAC10 = "Bangers & Mash";
MERCH_TAG_MAC10 = "RAC-10/45 Machine Pistol";
MERCH_FLAVOR_MAC10 = "Ferocious little box that spits hot lead and anger. Don't lose your grip.";
// Majestic
MERCH_CAT_MAJESTIC = "AceCorp";
MERCH_TAG_MAJESTIC = "Majestic";
MERCH_FLAVOR_MAJESTIC = "Aliens may or may not have been involved in the production of this.";
// Mancubus Cannon
MERCH_CAT_MANCCANNON = "Bangers & Mash";
MERCH_TAG_MANCCANNON = "Modified Mancubus Arm Cannon";
MERCH_FLAVOR_MANCCANNON = "I hope you aren't planning to use this for grilling.";
// Mauler
MERCH_CAT_MAULER = "Peppergrinder";
MERCH_TAG_MAULER = "Mauler Frag Cannon";
MERCH_FLAVOR_MAULER = "Might turn you into a radioactive corpse over time, but who cares?";
// Microgun
MERCH_CAT_MICROGUN = "Bangers & Mash";
MERCH_TAG_MICROGUN = "H*M H576 Smartgun";
MERCH_FLAVOR_MICROGUN = "Keep the trigger squeezed down and it'll do the thinking for you.";
// Minerva
MERCH_CAT_MINERVA = "RadTech Inc.";
MERCH_TAG_MINERVA = "Minerva";
MERCH_FLAVOR_MINERVA = "She ain't no mouse , I'll tell you that much.";
// MK23 SOCOM
MERCH_CAT_MK23SOCOM = "Bangers & Mash";
MERCH_TAG_MK23SOCOM = "Mk.45 Combat Handgun";
MERCH_FLAVOR_MK23SOCOM = "They won't even hear you coming.";
// Modular Battle Rifle
MERCH_CAT_MBR = "Icarus Innovations";
MERCH_TAG_MBR = "Modular Battle Rifle";
MERCH_FLAVOR_MBR = "The Liberator's better, bigger brother.";
// Musket
MERCH_CAT_MUSKET = "Cozi's Offworld Wares";
MERCH_TAG_MUSKET = "Musket";
MERCH_FLAVOR_MUSKET = "Do demons even have whites in their eyes?";
// No-Scope Boss
MERCH_CAT_NSB = "Hexadoken Industries";
MERCH_TAG_NSB = "Scopeless Boss Rifle";
MERCH_FLAVOR_NSB = "Who needs a scope when you've got a BOLT-ACTION!";
// NS3-Cr.Kt
MERCH_CAT_NCT = "Icarus Innovations";
MERCH_TAG_NCT = "NS3-Cr.Kt";
MERCH_FLAVOR_NCT = "It's some sort of weird tiny... gun? thing?";
// Nyx
MERCH_CAT_NYX = "Icarus Innovations";
MERCH_TAG_NYX = "CM-3 'Nyx'";
MERCH_FLAVOR_NYX = "The Queen of Thicc.";
// Obrozz
MERCH_CAT_OBROZZ = "RadTech Inc.";
MERCH_TAG_OBROZZ = "'Obrozz' Sawn-Off Boss";
MERCH_FLAVOR_OBROZZ = "Now yer a real gunslinger.";
// Oddball
MERCH_CAT_ODDBALL = "Peppergrinder";
MERCH_TAG_ODDBALL = "Oddball";
MERCH_FLAVOR_ODDBALL = "Crank it up.";
// Otis-5
MERCH_CAT_OTIS5 = "Peppergrinder";
MERCH_TAG_OTIS5 = "Otis-5";
MERCH_FLAVOR_OTIS5 = "Feeling lucky, punk?";
// P90
MERCH_CAT_P90 = "Peppergrinder";
MERCH_TAG_P90 = "BreakerTek P90";
MERCH_FLAVOR_P90 = "A veritable bullet-hose with no apparent downsides.";
// P90 (Princess)
MERCH_CAT_P90PRINCESS = "Peppergrinder";
MERCH_TAG_P90PRINCESS = "BreakerTek Red Crown P90";
MERCH_FLAVOR_P90PRINCESS = "Perfect for rapid-fire exsanguination. And parties.";
// PD-42
MERCH_CAT_PD42 = "Icarus Innovations";
MERCH_TAG_PD42 = "PD-42";
MERCH_FLAVOR_PD42 = "Silent and deadlier.";
// Pistol
MERCH_CAT_PISTOL = "Vanilla";
MERCH_TAG_PISTOL = "Pistol";
MERCH_FLAVOR_PISTOL = "A dime a dozen.";
// Phazer
MERCH_CAT_PHAZER = "RadTech Inc.";
MERCH_TAG_PHAZER = "'Phazer' Energy Pistol";
MERCH_FLAVOR_PHAZER = "Some secret agent dropped this outside some skyscraper.";
// Plasma Pistol
MERCH_CAT_PLASMAPISTOL = "Peppergrinder";
MERCH_TAG_PLASMAPISTOL = "Plasma Pistol";
MERCH_FLAVOR_PLASMAPISTOL = "Don't overcharge it, this baby gets hot!";
// PPSh-41
MERCH_CAT_PPSH41 = "RadTech Inc.";
MERCH_TAG_PPSH41 = "PPSh-41 'Papasha' SMG";
MERCH_FLAVOR_PPSH41 = "Give 'em some indigestion!";
// PS20
MERCH_CAT_PS20 = "Bangers & Mash";
MERCH_TAG_PS20 = "Denton Light Arms and Munitions PS-451";
MERCH_FLAVOR_PS20 = "A deceivingly effective package for the marine you just can't kill.";
// PSG1
MERCH_CAT_PSG1 = "Bangers & Mash";
MERCH_TAG_PSG1 = "H&M PSG2A1 Sniper Rifle";
MERCH_FLAVOR_PSG1 = "See that Baron over there? Now you don't.";
// Railgun
MERCH_CAT_RAILGUN = "Bangers & Mash";
MERCH_TAG_RAILGUN = "XM99 Experimental Railgun";
MERCH_FLAVOR_RAILGUN = "You've seen the fires of Hell, haven't you?";
// Railgun Dynamo
MERCH_CAT_RAILGUNDYNAMO = "Bangers & Mash";
MERCH_TAG_RAILGUNDYNAMO = "XM99 Experimental Railgun Dynamo";
MERCH_FLAVOR_RAILGUNDYNAMO = "A recharging device for the XM99. Required for continued operation of the weapon.";
// Reaper
MERCH_CAT_REAPER = "RightInfinity";
MERCH_TAG_REAPER = "Reaper Automatic Shotgun";
MERCH_FLAVOR_REAPER = "Don't fear the reaper? Oh, they will.";
// Redline
MERCH_CAT_REDLINE = "AceCorp";
MERCH_TAG_REDLINE = "'Redline' Thermal Lance";
MERCH_FLAVOR_REDLINE = "Look here. Smile. Wait for flash.";
// Revolver
MERCH_CAT_REVOLVER = "Vanilla";
MERCH_TAG_REVOLVER = "Revolver";
MERCH_FLAVOR_REVOLVER = "It's high noon.";
// Rocket Launcher
MERCH_CAT_ROCKETLAUNCHER = "Vanilla";
MERCH_TAG_ROCKETLAUNCHER = "Rocket Launcher";
MERCH_FLAVOR_ROCKETLAUNCHER = "Now you're packing heat. ...Are you?";
// Ruby Maser
MERCH_CAT_RUBYMASER = "Peppergrinder";
MERCH_TAG_RUBYMASER = "Ruby Maser";
MERCH_FLAVOR_RUBYMASER = "It can even heat up leftover pizza! Once.";
// Ruger1022
MERCH_CAT_RUGER1022 = "Bangers & Mash";
MERCH_TAG_RUGER1022 = "Buger M22 Target Rifle";
MERCH_FLAVOR_RUGER1022 = "Gone from plinkin' beer cans to plinkin' babuins.";
// Savage 99
MERCH_CAT_SAVAGE99 = "RadTech Inc.";
MERCH_TAG_SAVAGE99 = "Savage 99 Lever-Action Rifle";
MERCH_FLAVOR_SAVAGE99 = "Goin' big game huntin'?";
// Sawed-off Slayer
MERCH_CAT_SAWEDOFFSLAYER = "Peppergrinder";
MERCH_TAG_SAWEDOFFSLAYER = "Sawed-off Slayer";
MERCH_FLAVOR_SAWEDOFFSLAYER = "Size doesn't matter, right?";
// Scoped Revolver
MERCH_CAT_SCOPEDREVOLVER = "Peppergrinder";
MERCH_TAG_SCOPEDREVOLVER = "Scoped Revolver";
MERCH_FLAVOR_SCOPEDREVOLVER = "Only a dark lord would.";
// Scoped Slayer
MERCH_CAT_SCOPEDSLAYER = "Peppergrinder";
MERCH_TAG_SCOPEDSLAYER = "Scoped Slayer";
MERCH_FLAVOR_SCOPEDSLAYER = "Budget sniper rifle.";
// Scorpion
MERCH_CAT_SCORPION = "AceCorp";
MERCH_TAG_SCORPION = "'Scorpion' 35mm Sniper Cannon";
MERCH_FLAVOR_SCORPION = "Deletes just about anything.";
// Sig-Cow
MERCH_CAT_SIGCOW = "RadTech Inc.";
MERCH_TAG_SIGCOW = "M-211 Sig-Cow";
MERCH_FLAVOR_SIGCOW = "Don't have a Cow, man? Then buy yourself one of these!";
// Single Action Revolver
MERCH_CAT_SAREVOLVER = "RadTech Inc.";
MERCH_TAG_SAREVOLVER = "Single Action Revolver";
MERCH_FLAVOR_SAREVOLVER = "This thing probably belonged to one of your ancestors. Hope it still shoots well.";
// Slayer
MERCH_CAT_SLAYER = "Vanilla";
MERCH_TAG_SLAYER = "Slayer";
MERCH_FLAVOR_SLAYER = "The barrel grew back.";
// Sledgehammer
MERCH_CAT_SLEDGEHAMMER = "Bangers & Mash";
MERCH_TAG_SLEDGEHAMMER = "Sledgehammer";
MERCH_FLAVOR_SLEDGEHAMMER = "A hefty master key for any locked doors (or demons), doorbuster be damned.";
// Six-12
MERCH_CAT_SIX12 = "Icarus Innovations";
MERCH_TAG_SIX12 = "Six-12";
MERCH_FLAVOR_SIX12 = "The magazine! It spins!";
// SMG
MERCH_CAT_SMG = "Vanilla";
MERCH_TAG_SMG = "SMG";
MERCH_FLAVOR_SMG = "Silent, but deadly... If you shoot it for long enough, that is.";
// Snubnose Revolver
MERCH_CAT_SNUBNOSE = "RadTech Inc.";
MERCH_TAG_SNUBNOSE = "Detective Special";
MERCH_FLAVOR_SNUBNOSE = "Hands up! Grab air, you babies! Or I'll squeeze this thing, and I don't mean maybe!";
// Soul Cube
MERCH_CAT_SOULCUBE = "AceCorp";
MERCH_TAG_SOULCUBE = "Soul Cube";
MERCH_FLAVOR_SOULCUBE = "I have no idea what this is, but it won't shut up.";
// SPNKR
MERCH_CAT_SPNKR = "WAN Industries";
MERCH_TAG_SPNKR = "SPNKR-XP SSM Launcher";
MERCH_FLAVOR_SPNKR = "Sometimes a cigar is just a cigar, this is one expensive cigar.";
// Sten Mk2
MERCH_CAT_STENMK2 = "RadTech Inc.";
MERCH_TAG_STENMK2 = "Sten Mk.2(S) Silenced SMG";
MERCH_FLAVOR_STENMK2 = "I thought these things were mass produce...";
// Steyr ACR
MERCH_CAT_STEYR = "Bangers & Mash";
MERCH_TAG_STEYR = "Austere M17 Flechette Rifle";
MERCH_FLAVOR_STEYR = "Don't judge this gun by its appearance.";
// Street Sweeper
MERCH_CAT_STREETSWEEPER = "Bangers & Mash";
MERCH_TAG_STREETSWEEPER = "Raycob Urban Destroyer";
MERCH_FLAVOR_STREETSWEEPER = "All fun and games until you need to reload.";
// Stun Gun
MERCH_CAT_STUNGUN = "RadTech Inc.";
MERCH_TAG_STUNGUN = "'ShokStop' Stun Gun";
MERCH_FLAVOR_STUNGUN = "Don't taze me, bro!";
// Thompson
MERCH_CAT_THOMPSON = "RightInfinity";
MERCH_TAG_THOMPSON = "Thompson Submachine Gun (9mm Repro)";
MERCH_FLAVOR_THOMPSON = "Merry Christmas, ya filthy animal.";
// Thunderbuster
MERCH_CAT_THUNDERBUSTER = "Vanilla";
MERCH_TAG_THUNDERBUSTER = "ThunderBuster";
MERCH_FLAVOR_THUNDERBUSTER = "Zap zap BOOM!";
// TRO-G
MERCH_CAT_TROG = "Peppergrinder";
MERCH_TAG_TROG = "TRO-G Rifle";
MERCH_FLAVOR_TROG = "Blast from the past.";
// TT-33
MERCH_CAT_TT33 = "RadTech Inc.";
MERCH_TAG_TT33 = "TT-33 'Tokarev' Pistol";
MERCH_FLAVOR_TT33 = "Make them go blyat.";
// UMP-45
MERCH_CAT_UMP45 = "Icarus Innovations";
MERCH_TAG_UMP45 = "UMP-45";
MERCH_FLAVOR_UMP45 = "Doesn't sit at home plate all day.";
// UMS Automag
MERCH_CAT_UMSAUTOMAG = "ZikShadow";
MERCH_TAG_UMSAUTOMAG = "UMS Automag";
MERCH_FLAVOR_UMSAUTOMAG = "a bit heavy for such light ammunition.";
// Uragan
MERCH_CAT_URAGAN = "Bangers & Mash";
MERCH_TAG_URAGAN = "Arkoudi M12/5 Shotgun";
MERCH_FLAVOR_URAGAN = "An itty-bitty shotgun that'll fit in your purse.";
// USP-45
MERCH_CAT_USP45 = "Icarus Innovations";
MERCH_TAG_USP45 = "USP-45";
MERCH_FLAVOR_USP45 = "When you want modern performance and MUH TWO WORLD WARS.";
// Vera
MERCH_CAT_VERA = "Peppergrinder";
MERCH_TAG_VERA = "Vera";
MERCH_FLAVOR_VERA = "Diet Vulcanette.";
// Viper
MERCH_CAT_VIPER = "AceCorp";
MERCH_TAG_VIPER = "'Viper' .50 AM Handgun";
MERCH_FLAVOR_VIPER = "Excellent for pretending to be the last action hero.";
// Vulcanette
MERCH_CAT_VULCANETTE = "Vanilla";
MERCH_TAG_VULCANETTE = "Vulcanette";
MERCH_FLAVOR_VULCANETTE = "I hope you can feed this monster.";
// Wiseau
MERCH_CAT_WISEAU = "Peppergrinder";
MERCH_TAG_WISEAU = "WF-60 Plasma Magnum";
MERCH_FLAVOR_WISEAU = "You're going to tear me apart if you don't buy this.";
// Worst Boss
MERCH_CAT_WORSTBOSS = "Hexadoken Industries";
MERCH_TAG_WORSTBOSS = "Boss Rifle but It's the Worst";
MERCH_FLAVOR_WORSTBOSS = "Seriously, do not fire this thing. You've been warned.";
// WSTE-M5
MERCH_CAT_WSTEM5 = "WAN Industries";
MERCH_TAG_WSTEM5 = "WSTE-M5 Combat Shotgun";
MERCH_FLAVOR_WSTEM5 = "I won't waste my time trying to explain the loading mechanism.";
// Wyvern
MERCH_CAT_WYVERN = "AceCorp";
MERCH_TAG_WYVERN = "Wyvern";
MERCH_FLAVOR_WYVERN = "No more \"WIIW\".";
// Yeyuze
MERCH_CAT_YEYUZE = "Peppergrinder";
MERCH_TAG_YEYUZE = "Yeyuze Grenade Launcher";
MERCH_FLAVOR_YEYUZE = "Yes, you CAN slam-fire this one!";
// Yurei
MERCH_CAT_YUREI = "Peppergrinder";
MERCH_TAG_YUREI = "Yurei High-Capacity SMG";
MERCH_FLAVOR_YUREI = "When 30 rounds isn't enough.";
// ZM69
MERCH_CAT_ZM69 = "HoagieTech";
MERCH_TAG_ZM69 = "ZM69 Anti-Materiel Rifle";
MERCH_FLAVOR_ZM69 = "For hunting very large, murderous, demonic game.";
// ZM94
MERCH_CAT_ZM94 = "Peppergrinder";
MERCH_TAG_ZM94 = "ZM94 Sabrewolf Anti-Materiel Rifle";
MERCH_FLAVOR_ZM94 = "Great for assassinating MBTs and other force-equilizers.";
// Zorcher
MERCH_CAT_ZORCHER = "Peppergrinder";
MERCH_TAG_ZORCHER = "Zorcher";
MERCH_FLAVOR_ZORCHER = "These don't come with a cereal box. Sorry.";
// ------------------
// ITEMS
// ------------------
// 10mm Reloading Device
MERCH_CAT_10MMRELOADER = "RadTech Inc.";
MERCH_TAG_10MMRELOADER = "10mm Auto-Reloader";
MERCH_FLAVOR_10MMRELOADER = "Turns pistol ammo into better pistol ammo.";
// .300 Savage Reloading Device
MERCH_CAT_300SAVAGERELOADER = "RadTech Inc.";
MERCH_TAG_300SAVAGERELOADER = ".300 Savage Auto-Reloader";
MERCH_FLAVOR_300SAVAGERELOADER = "Turns rifle ammo into Russian rifle ammo.";
// 7.62 Tokarev Reloading Device
MERCH_CAT_762TOKAREVRELOADER = "RadTech Inc.";
MERCH_TAG_762TOKAREVRELOADER = "7mm Tokarev Auto-Reloader";
MERCH_FLAVOR_762TOKAREVRELOADER = "Turns pistol ammo into Russian pistol ammo.";
// 7mm Reloading Device
MERCH_CAT_7MMRELOADER = "Vanilla";
MERCH_TAG_7MMRELOADER = "7mm Reloading Device";
MERCH_FLAVOR_7MMRELOADER = "BRBRBRBRBRBRBRBR *clack*";
// Adhesive
MERCH_CAT_ADHESIVE = "Takemi Medical Clinic";
MERCH_TAG_ADHESIVE = "Velvet Adhesive";
MERCH_FLAVOR_ADHESIVE = "Hand-made poultice that slowly invigorates you.";
// Ammo Box
MERCH_CAT_AMMOBOX = "Vanilla";
MERCH_TAG_AMMOBOX = "Ammo Box";
MERCH_FLAVOR_AMMOBOX = "I take no responsibility if this explodes. Just don't open it in front of my face.";
// Ammo Pouch
MERCH_CAT_AMMOPOUCH = "Ugly as Sin";
MERCH_TAG_AMMOPOUCH = "Ammo Pouch";
MERCH_FLAVOR_AMMOPOUCH = "I swear I had some ammo in here somewhere.";
// Anti-Gravity Boots
MERCH_CAT_ANTIGRAVBOOTS = "RadTech Inc.";
MERCH_TAG_ANTIGRAVBOOTS = "Anti-Gravity Boots";
MERCH_FLAVOR_ANTIGRAVBOOTS = "Powered by radiation! I'm sure they're safe.";
// Anti-Radiation Boots
MERCH_CAT_ANTIRADBOOTS = "RadTech Inc.";
MERCH_TAG_ANTIRADBOOTS = "Anti-Radiation Boots";
MERCH_FLAVOR_ANTIRADBOOTS = "When you don't want your feet getting irradiated.";
// Area Map
MERCH_CAT_ALLMAP = "Vanilla";
MERCH_TAG_ALLMAP = "Area map";
MERCH_FLAVOR_ALLMAP = "It won't treat your topographical cretinism, but you'll surely made it to the exit.";
// Armour Patch Kit
MERCH_CAT_ARMOURPATCHKIT = "AceCorp";
MERCH_TAG_ARMOURPATCHKIT = "Armor Patch Kit";
MERCH_FLAVOR_ARMOURPATCHKIT = "Patch yerself up, soldier!";
// Assault Pack
MERCH_CAT_ASSAULTPACK = "Ugly as Sin";
MERCH_TAG_ASSAULTPACK = "Assault Pack";
MERCH_FLAVOR_ASSAULTPACK = "May or may not contain anything useful inside.";
// Augmentation Canister
MERCH_CAT_AUGCANISTER = "UNATCO";
MERCH_TAG_AUGCANISTER = "Augmentation Canister";
MERCH_FLAVOR_AUGCANISTER = "My vision is augmented.";
// Augmentation Upgrade Canister
MERCH_CAT_AUGUPGRADE = "UNATCO";
MERCH_TAG_AUGUPGRADE = "Augmentation Upgrade Canister";
MERCH_FLAVOR_AUGUPGRADE = "My special eyes.";
// Backpack
MERCH_CAT_BACKPACK = "Vanilla";
MERCH_TAG_BACKPACK = "Backpack";
MERCH_FLAVOR_BACKPACK = "May or may not contain anything useful inside.";
// Ball Crafter
MERCH_CAT_BALLCRAFTER = "Bryan's Armory";
MERCH_TAG_BALLCRAFTER = "Ball Crafter";
MERCH_FLAVOR_BALLCRAFTER = "Balls of steel.";
// Berserk Pack
MERCH_CAT_BERSERK = "Vanilla";
MERCH_TAG_BERSERK = "Berserk Pack";
MERCH_FLAVOR_BERSERK = "Do not overdose. Oh who am I kidding, of course you will.";
// Binoculars
MERCH_CAT_BINOCULARS = "Peppergrinder";
MERCH_TAG_BINOCULARS = "Binoculars";
MERCH_FLAVOR_BINOCULARS = "A pair of binoculars. Attuned so well that you can see yourself in the demon's eyes from a mile away.";
// Bioelectric Cell
MERCH_CAT_BIOELECTRICCELL = "UNATCO";
MERCH_TAG_BIOELECTRICCELL = "Bioelectric Cell";
MERCH_FLAVOR_BIOELECTRICCELL = "Running low on juice?";
// Blood Bag
MERCH_CAT_BLOODBAG = "Vanilla";
MERCH_TAG_BLOODBAG = "Synthetic Blood";
MERCH_FLAVOR_BLOODBAG = "'Tis but a scratch.";
// Blue Keycard
MERCH_CAT_BLUEKEYCARD = "Vanilla";
MERCH_TAG_BLUEKEYCARD = "Blue Keycard";
MERCH_FLAVOR_BLUEKEYCARD = "Don't ask where I got it from.";
// Blue Skull
MERCH_CAT_BLUESKULL = "Vanilla";
MERCH_TAG_BLUESKULL = "Blue skull";
MERCH_FLAVOR_BLUESKULL = "Blue, the way of the heaven forever lost to you.";
// Blue Potion
MERCH_CAT_BLUEPOTION = "Vanilla";
MERCH_TAG_BLUEPOTION = "Blue Potion";
MERCH_FLAVOR_BLUEPOTION = "For what ails you.";
// Blue Sphere
MERCH_CAT_BLUESPHERE = "Vanilla";
MERCH_TAG_BLUESPHERE = "Blue sphere";
MERCH_FLAVOR_BLUESPHERE = "For what ails you — but now it's too much.";
// Bluepack
MERCH_CAT_BLUEPACK = "Benitez";
MERCH_TAG_BLUEPACK = "Bluepack";
MERCH_FLAVOR_BLUEPACK = "For what ails you — now comes in a compact package!";
// Carcano Scope Attachment
MERCH_CAT_CARCANOSCOPE = "Mickromash";
MERCH_TAG_CARCANOSCOPE = "Carcano scope";
MERCH_FLAVOR_CARCANOSCOPE = "Scope!";
// Booster Jets
MERCH_CAT_BOOSTERJETS = "AceCorp";
MERCH_TAG_BOOSTERJETS = "Booster Jets";
MERCH_FLAVOR_BOOSTERJETS = "Wheeeeeeeeeeeee!";
// Bullet Assembler
MERCH_CAT_BULLETASSEMBLER = "Bryan's Armory";
MERCH_TAG_BULLETASSEMBLER = "Bullet Assembler";
MERCH_FLAVOR_BULLETASSEMBLER = "Will you create the regular ammo?";
// Cacodemon Plush Doll (Radtech)
MERCH_CAT_CACOPLUSH = "RadTech Inc.";
MERCH_TAG_CACOPLUSH = "Cacodemon Plush Doll";
MERCH_FLAVOR_CACOPLUSH = "Come on, look at that face. How can you say no to that?";
// Cacodemon Plushie (Kiri/SnekTek)
MERCH_CAT_CACODEMONPLUSHIE = "SnekTech";
MERCH_TAG_CACODEMONPLUSHIE = "Cursed Cacodemon Plushie";
MERCH_FLAVOR_CACODEMONPLUSHIE = "Even in death, I will protect you, and not even the gods can stop me.";
// Case Crafter
MERCH_CAT_CASECRAFTER = "Bryan's Armory";
MERCH_TAG_CASECRAFTER = "Case Crafter";
MERCH_FLAVOR_CASECRAFTER = "I rest my case.";
// Cross-Pulse Thunder Buster Modification Kit
MERCH_CAT_CROSSPULSEMODKIT = "BeatCrazed";
MERCH_TAG_CROSSPULSEMODKIT = "Cross Pulse Modification kit";
MERCH_FLAVOR_CROSSPULSEMODKIT = "Take your plasmagun to the next level of hideous destruction.";
// Deployable Barricade
MERCH_CAT_BARRICADE = "AceCorp";
MERCH_TAG_BARRICADE = "Deployable Barricade";
MERCH_FLAVOR_BARRICADE = "Enjoy your safe space.";
// Defence, Engagement, Reconnaissance and Patrol Robot
MERCH_CAT_DERP = "Vanilla";
MERCH_TAG_DERP = "D.E.R.P.";
MERCH_FLAVOR_DERP = "A H.E.R.P.'s lil' 9mm brother.";
// Dimensional Storage Device
MERCH_CAT_DSD = "AceCorp";
MERCH_TAG_DSD = "Dimensional Storage Device";
MERCH_FLAVOR_DSD = "This item is out of this world!";
// Door Buster
MERCH_CAT_DOORBUSTER = "Vanilla";
MERCH_TAG_DOORBUSTER = "Door Buster";
MERCH_FLAVOR_DOORBUSTER = "Breaching, breaching!";
// Deployable Overcharging Robot for Killjoys
MERCH_CAT_DORK = "Benitez";
MERCH_TAG_DORK = "Deployable Overcharging Robot for Killjoys";
MERCH_FLAVOR_DORK = "D.E.R.P., but it's flying and carrying a Thunder Buster. A truly diabolical creation.";
// Experimental Configurable Teleportation Device
MERCH_CAT_ECTD = "Benitez";
MERCH_TAG_ECTD = "Experimental Configurable Teleportation Device";
MERCH_FLAVOR_ECTD = "I'm gone.";
// Factory Reloader
MERCH_CAT_FACTORYRELOADER = "General Goods";
MERCH_TAG_FACTORYRELOADER = "Factory reloader";
MERCH_FLAVOR_FACTORYRELOADER = "Please don't tell anyone that I sold you this.";
// Field Assembly Kit
MERCH_CAT_FAK = "AceCorp";
MERCH_TAG_FAK = "Field Assembly Kit";
MERCH_FLAVOR_FAK = "Armor almost gone? Shield generator giving out? Well go FAK yourself.";
// Fanny Pack
MERCH_CAT_FANNYPACK = "Cannibal Hunter";
MERCH_TAG_FANNYPACK = "Fanny Pack";
MERCH_FLAVOR_FANNYPACK = "An extended version of your pockets.";
// Field Medic Kit
MERCH_CAT_FIELDMEDICKIT = "RadTech Inc.";
MERCH_TAG_FIELDMEDICKIT = "Field Medical Kit";
MERCH_FLAVOR_FIELDMEDICKIT = "Better than improvising it yourself.";
// Fire Extinguisher
MERCH_CAT_FIREEXTINGUISHER = "Bangers & Mash";
MERCH_TAG_FIREEXTINGUISHER = "Fire Extinguisher";
MERCH_FLAVOR_FIREEXTINGUISHER = "This might just save your bacon.";
// First Aid Spray
MERCH_CAT_FIRSTAIDSPRAY = "RadTech Inc.";
MERCH_TAG_FIRSTAIDSPRAY = "First Aid Spray";
MERCH_FLAVOR_FIRSTAIDSPRAY = "A secret recipe of herbs and spices.";
// Flashlight
MERCH_CAT_DDZFLASHLIGHT = "AceCorp";
MERCH_TAG_DDZFLASHLIGHT = "Flashlight";
MERCH_FLAVOR_DDZFLASHLIGHT = "The clicking mechanism is really satisfying.";
// Food Ration
MERCH_CAT_FOODRATION = "Ugly as Sin";
MERCH_TAG_FOODRATION = "Food Ration";
MERCH_FLAVOR_FOODRATION = "Crunchy.";