-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHDCINFO.spawnTables
More file actions
2579 lines (2148 loc) · 235 KB
/
HDCINFO.spawnTables
File metadata and controls
2579 lines (2148 loc) · 235 KB
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
clearSpawnHandlerMapBlacklist => {}
clearSpawnHandlerThingBlacklist => {}
removeAllSpawnTables => {}
// ------------------------------------------------------------
// SPAWN HANDLER BLACKLISTS
// ------------------------------------------------------------
addSpawnHandlerMapBlacklist => { "name": "RANGE" }
addSpawnHandlerMapBlacklist => { "name": "HUBMAP" }
addSpawnHandlerMapBlacklist => { "name": "VR" }
addSpawnHandlerThingBlacklist => { "name": "BFGSpark" }
addSpawnHandlerThingBlacklist => { "name": "BloodSplatSilent" }
addSpawnHandlerThingBlacklist => { "name": "BloodTrail" }
addSpawnHandlerThingBlacklist => { "name": "BountyBodyTrail" }
addSpawnHandlerThingBlacklist => { "name": "BountyThinker" }
addSpawnHandlerThingBlacklist => { "name": "btAdrenaline" }
addSpawnHandlerThingBlacklist => { "name": "BulletSoundTrail" }
addSpawnHandlerThingBlacklist => { "name": "CheckPuff" }
addSpawnHandlerThingBlacklist => { "name": "DistanceCheckerCeiling" }
addSpawnHandlerThingBlacklist => { "name": "DustCloud" }
addSpawnHandlerThingBlacklist => { "name": "DynamicLight" }
addSpawnHandlerThingBlacklist => { "name": "FragShard" }
addSpawnHandlerThingBlacklist => { "name": "GrenadeSmokeTrail" }
addSpawnHandlerThingBlacklist => { "name": "hasHelmet" }
addSpawnHandlerThingBlacklist => { "name": "HDAIOverride" }
addSpawnHandlerThingBlacklist => { "name": "HDArmourWorn" }
addSpawnHandlerThingBlacklist => { "name": "HDBulletActor" }
addSpawnHandlerThingBlacklist => { "name": "HDBulletPuff" }
addSpawnHandlerThingBlacklist => { "name": "HDDebris" }
addSpawnHandlerThingBlacklist => { "name": "HDExplosion" }
addSpawnHandlerThingBlacklist => { "name": "HDFireball" }
addSpawnHandlerThingBlacklist => { "name": "HDFireballTail" }
addSpawnHandlerThingBlacklist => { "name": "HDFireDouse" }
addSpawnHandlerThingBlacklist => { "name": "HDFlameRed" }
addSpawnHandlerThingBlacklist => { "name": "HDFlameRedBig" }
addSpawnHandlerThingBlacklist => { "name": "HDFollower" }
addSpawnHandlerThingBlacklist => { "name": "HDLadderSection" }
addSpawnHandlerThingBlacklist => { "name": "HDMagicShield" }
addSpawnHandlerThingBlacklist => { "name": "HDMasterBlood" }
addSpawnHandlerThingBlacklist => { "name": "HDMerchant" }
addSpawnHandlerThingBlacklist => { "name": "HDPlayerCorpse" }
addSpawnHandlerThingBlacklist => { "name": "HDPlayerPawn" }
addSpawnHandlerThingBlacklist => { "name": "HDPuff" }
addSpawnHandlerThingBlacklist => { "name": "HDSmoke" }
addSpawnHandlerThingBlacklist => { "name": "HDSmokeChunk" }
addSpawnHandlerThingBlacklist => { "name": "HDTracerYellow" }
addSpawnHandlerThingBlacklist => { "name": "HHArmourNerf" }
addSpawnHandlerThingBlacklist => { "name": "HHelmet" }
addSpawnHandlerThingBlacklist => { "name": "HHelmetWorn" }
addSpawnHandlerThingBlacklist => { "name": "HideousBubble" }
addSpawnHandlerThingBlacklist => { "name": "IA_Sound" }
addSpawnHandlerThingBlacklist => { "name": "ImmunityToFire" }
addSpawnHandlerThingBlacklist => { "name": "LDLegendaryMonsterChooserHard" }
addSpawnHandlerThingBlacklist => { "name": "MapMarker" }
addSpawnHandlerThingBlacklist => { "name": "NullSpawner" }
addSpawnHandlerThingBlacklist => { "name": "ParticleWhiteSmall" }
addSpawnHandlerThingBlacklist => { "name": "PlantBit" }
addSpawnHandlerThingBlacklist => { "name": "RainBase" }
addSpawnHandlerThingBlacklist => { "name": "RainSpawner" }
addSpawnHandlerThingBlacklist => { "name": "REItemGlow" }
addSpawnHandlerThingBlacklist => { "name": "ReverseImpBallTail" }
addSpawnHandlerThingBlacklist => { "name": "RocketSmokeTrail" }
addSpawnHandlerThingBlacklist => { "name": "ScopeCamera" }
addSpawnHandlerThingBlacklist => { "name": "ShieldSpark" }
addSpawnHandlerThingBlacklist => { "name": "SoundEnvironment" }
addSpawnHandlerThingBlacklist => { "name": "SpicyAirSinkToken" }
addSpawnHandlerThingBlacklist => { "name": "SpicyAirSourceToken" }
addSpawnHandlerThingBlacklist => { "name": "TeleportDest" }
addSpawnHandlerThingBlacklist => { "name": "UaS_AI_Handler" }
addSpawnHandlerThingBlacklist => { "name": "UaS_VisWeps_Updater" }
addSpawnHandlerThingBlacklist => { "name": "VerySimpleRainItem" }
addSpawnHandlerThingBlacklist => { "name": "VisualFighterImp_Updater" }
addSpawnHandlerThingBlacklist => { "name": "VisualHealerImp_Updater" }
addSpawnHandlerThingBlacklist => { "name": "VisualJackboot_Updater" }
addSpawnHandlerThingBlacklist => { "name": "VisualMageImp_Updater" }
addSpawnHandlerThingBlacklist => { "name": "VisualOperator_Updater" }
addSpawnHandlerThingBlacklist => { "name": "VisualStormtrooper_Updater" }
addSpawnHandlerThingBlacklist => { "name": "WallChunk" }
// ------------------------------------------------------------
// SPAWN REPLACEMENT TABLES
// ------------------------------------------------------------
// HDEST-DEFINED
// ------------
// Random Ammo Box
newSpawnTable => { "spawnName": "HDAB", "tableName": "HDAB" }
addSpawnTableSingleEntry => { "tableName": "HDAB", "name": "HDAmBoxUnarmed", "weight": "6", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDAB", "name": "HDAmBox", "weight": "1", "persists": "true" }
// Casing Bits
newSpawnTable => { "spawnName": "HDCasingBits", "tableName": "HDCasingBits" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Dead_HumanVictim", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "EvilSprite", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "GibMonster", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HD9mMag50Empty", "weight": "0.96", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDBallAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDCoyoteMagEmpty", "weight": "0.8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDKiller7MagEmpty", "weight": "0.64", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDLLSpentShell", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDNDMBigEmptyMag", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDNDMEmptyMag", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSHAKMagEmpty", "weight": "0.64", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent069Bore", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent10mm", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent3006", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent420", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent45LC", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent4GB", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent4GS", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent500", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent50AM", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent5mmMR", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent6mmFlechette", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpentBirdshotShell", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpentGold45LC", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpentNDM", "weight": "24", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable069BoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable10mmBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable20mmGrenadeBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable3006BoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable300SavageBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable45LCBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable4gaShellBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable4gaSlugBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable500HeavyBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable500LightBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable50AMBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable5mmBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable6mmBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable762TokarevBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableBirdshotShellBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableLessLethalBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableNDMBoxEmpty", "weight": "8", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Savage300Brass", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "TokarevBrass", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "WitheredSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ZombieScientistSpawner", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent9mm", "weight": "24", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent355", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent45ACP", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable45ACPBoxEmpty", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpentExplosiveShell", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableExplosiveShellBoxEmpty", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpentShell", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableShellBoxEmpty", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpentSlug", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableSlugBoxEmpty", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HD4mmMagEmpty", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDFumblingShell", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDTrogEmptyMag", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableFlareBoxEmpty", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent7mm", "weight": "6", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSpent50OMG", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HD9mClipEmpty", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDPistolEmptyMag", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDSMGEmptyMag", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable9mmBoxEmpty", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable355BoxEmpty", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HD355EmptyMag", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable4mmBoxEmpty", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "ReusableRocketBoxEmpty", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDFumblingShell", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "TerrorCasing", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable7mmBoxEmpty", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "LiberatorEmptyMag", "weight": "1", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "HDZM94EmptyMag", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDCasingBits", "name": "Reusable50OMGBoxEmpty", "weight": "1", "persists": "true" }
// Gore Bits
newSpawnTable => { "spawnName": "HDGoreBits", "tableName": "HDGoreBits" }
// addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "EvilSprite", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "WitheredSpawner", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "ZombieScientistSpawner", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "GibMonster", "weight": "1", "persists": "false" }
// addSpawnTableNestedEntry => { "tableName": "HDGoreBits", "name": "HDCasingBits", "weight": "32", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "SmallBloodPool", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "BarrelGibs", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "SpentRadiCola", "weight": "6", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "ColonGibs", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "Gibs", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "DeadDemon", "weight": "1", "chance": "128", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "DeadDoomImp", "weight": "1", "chance": "128", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "DeadRifleman", "weight": "1", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "DeadShotgunGuy", "weight": "1", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "DeadZombieMan", "weight": "1", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "Dead_HumanVictim", "weight": "1", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDGoreBits", "name": "ReallyDeadRifleman", "weight": "1", "chance": "48", "persists": "true" }
// Handgun Mob Drop
newSpawnTable => { "spawnName": "HDHandgunRandomDrop", "tableName": "HDHandgunRandomDrop" }
// addSpawnTableNestedEntry => { "tableName": "HDHandgunRandomDrop", "name": "JuanRandom", "weight": "0", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HD_AutoMag", "weight": "0", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HD_AutoMagFA", "weight": "0", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HD_FlintlockPistol", "weight": "0", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HD10mmPistol", "weight": "15", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDAurochs", "weight": "0.16", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDAurochs", "weight": "1", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDDEagle", "weight": "5", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDGFBlaster", "weight": "25", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDGoldSingleActionRevolver", "weight": "0", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDMAC10", "weight": "5", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDMajestic", "weight": "1", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDNyx", "weight": "20", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDPlasmaPistol", "weight": "25", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDSilencedPistol", "weight": "1", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDSingleActionRevolver", "weight": "0", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDTT33Pistol", "weight": "0", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDViper", "weight": "1", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HushPuppyPistol", "weight": "50", "chance": "16", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "PhazerPistol", "weight": "0", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDPistol", "weight": "50", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDBoxCannon", "weight": "30", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDRafficaPistol", "weight": "30", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "COP357Pistol", "weight": "20", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDRevolver", "weight": "20", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDSnubNoseRevolver", "weight": "20", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HelzingDrop", "weight": "20", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDColt1911", "weight": "15", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDFP45", "weight": "15", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDMK23SOCOM", "weight": "15", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDUSP", "weight": "15", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDExhuRev", "weight": "15", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDUragan5", "weight": "12", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "FireBlooper", "weight": "10", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "MetalFireBlooper", "weight": "10", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "ZS_UMS_AUTOMAG", "weight": "3", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDMinebeaPM9", "weight": "1", "chance": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HDHandgunRandomDrop", "name": "HDNCT", "weight": "1", "chance": "16", "persists": "true" }
// WEAPONS
// ------------
// Weapon Variant Tables
// Altis O/U Shotgun
newSpawnTable => { "spawnName": "WildAltis", "tableName": "WildAltis" }
addSpawnTableSingleEntry => { "tableName": "WildAltis", "name": "WildAltisShells", "weight": "9", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "WildAltis", "name": "WildAltisSlugs", "weight": "1", "persists": "true" }
// Boss Rifle
newSpawnTable => { "spawnName": "BossRifleSpawner", "addOriginalThing": "true", "weight": "44", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "BossRifleButItsFuckingPink", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "HexaNoScopeBossSpawner", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "ObrozzSpawner", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "BossRifleNine", "weight": "15", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "BossRifleFour", "weight": "15", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "Bossmerg", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "BogRifleSpawner", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "RedlineRandom", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "ScorpionSpawner", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BossRifleSpawner", "name": "BossRifleButItsTheWorst", "weight": "1", "persists": "true" }
// Brontornis Rifle
newSpawnTable => { "spawnName": "Brontornis", "addOriginalThing": "true", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "Brontornis", "name": "RIBrontoBuddy", "weight": "1", "persists": "true" }
// ZM-66 Assault Rifle
newSpawnTable => { "spawnName": "ZM66Random", "addOriginalThing": "true", "weight": "19", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ZM66Random", "name": "HackedZM66Random", "weight": "1", "persists": "true" }
// // Weapon Type Type Tables
// // Handguns
// // 9mm Firearms
// newSpawnTable => { "spawnName": "9mmFirearms", "tableName": "9mmFirearms" }
// addSpawnTableSingleEntry => { "tableName": "9mmFirearms", "name": "MinervaRandom", "weight": "0.52", "persists": "true" }
// // .355 Firearms
// newSpawnTable => { "spawnName": "355Firearms", "tableName": "355Firearms" }
// addSpawnTableSingleEntry => { "tableName": "355Firearms", "name": "PB_Colt9mm_Spawn", "weight": "#colt355_chaingun_spawn_bias", "persists": "true" }
// // 12ga Firearms
// newSpawnTable => { "spawnName": "12gaFirearms", "tableName": "12gaFirearms" }
// // 4mm Firearms
// newSpawnTable => { "spawnName": "4mmFirearms", "tableName": "4mmFirearms" }
// addSpawnTableSingleEntry => { "tableName": "4mmFirearms", "name": "PDFourRandom", "weight": "42", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "4mmFirearms", "name": "Vulcanette", "weight": "10", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "4mmFirearms", "name": "HDVera", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "4mmFirearms", "name": "HDBastardRifle", "weight": "1", "persists": "true" }
// // 40mm Rocquette Firearms
// newSpawnTable => { "spawnName": "40mmFirearms", "tableName": "40mmFirearms" }
// // 7mm Firearms
// newSpawnTable => { "spawnName": "7mmFirearms", "tableName": "7mmFirearms" }
// // addSpawnTableSingleEntry => { "tableName": "7mmFirearms", "name": "HDGarandRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "7mmFirearms", "name": "LiberatorRandom", "weight": "100", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "7mmFirearms", "name": "PB_SmartgunSpawn", "weight": "#smartgun_bfg_spawn_bias", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "7mmFirearms", "name": "HD_FNFAL", "weight": "#fal_liberator_spawn_bias", "persists": "true" }
// // Energy Firearms
// newSpawnTable => { "spawnName": "EnergyFirearms", "tableName": "EnergyFirearms" }
// addSpawnTableSingleEntry => { "tableName": "EnergyFirearms", "name": "BFG9K", "weight": "100", "persists": "true" }
// // 35mm Bronto Firearms
// newSpawnTable => { "spawnName": "35mmFirearms", "tableName": "35mmFirearms" }
// addSpawnTableSingleEntry => { "tableName": "35mmFirearms", "name": "Brontornis", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "35mmFirearms", "name": "RIBrontoBuddy", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "35mmFirearms", "name": "PB_KelenkenSpawn", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "35mmFirearms", "name": "ScorpionSpawner", "weight": "#scorpion_bfg_spawn_bias", "persists": "true" }
// // .45 ACP Firearms
// newSpawnTable => { "spawnName": "45acpFirearms", "tableName": "45acpFirearms" }
// addSpawnTableSingleEntry => { "tableName": "45acpFirearms", "name": "UMPRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "45acpFirearms", "name": "ThompsonRandom", "weight": "1", "persists": "true" }
// // .50 OMG Firearms
// newSpawnTable => { "spawnName": "50omgFirearms", "tableName": "50omgFirearms" }
// addSpawnTableSingleEntry => { "tableName": "50omgFirearms", "name": "HD_M2HB", "weight": "#m2hb_bfg_spawn_bias", "persists": "true" }
// // Monster Type Type Tables
// Melee Monsters
// Zombie Men
// Shotgunners
// Chaingunners
// Imps
// Demons
// Spectres
//
// Spawn Slot Tables
// BFG-9000
newSpawnTable => { "spawnName": "BFG9000", "tableName": "BFG9000Replaces" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "BogRifleSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "FlamethrowerSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "GungnirRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "HD_M2HB", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "NCTRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "PB_KelenkenSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "PB_RailGunSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "PB_SmartgunSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "ScorpionSpawner", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "BFG9K", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BFG9000Replaces", "name": "UZBHGen", "weight": "1", "persists": "true" }
// Chaingun
newSpawnTable => { "spawnName": "Chaingun", "tableName": "ChaingunReplaces" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "BitchRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "BossRifleButItsFuckingPink", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "BossRifleFour", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "BPXSpawn", "weight": "64","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "ClipBoxPickupHLAR", "weight": "9", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "ClipBoxPickupTrog", "weight": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "DERPUsable", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HammerheadRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HD_FNFAL", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HDAutoPistol", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HDGarandRandom", "weight": "0.26", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HDSTENRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HDTarongaRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "LiberatorRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "MBRRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_A180Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_BeowulfRifle_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_Colt9mm_Spawn", "weight": "32", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_G11Spawn_Normal", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_G11Spawn_Scoped", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_HKCAWS_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_SteyrACR_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PB_SteyrAICW_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "PDFourRandom", "weight": "42", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "UMPRandom", "weight": "1.5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HDVera", "weight": "20", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "UZRipper", "weight": "18", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "Vulcanette", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HERPUsable", "weight": "12", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "MinervaRandom", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "HDBastardRifle", "weight": "5", "persists": "true" }
addSpawnTableNestedEntry => { "tableName": "ChaingunReplaces", "name": "BossRifleSpawner", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChaingunReplaces", "name": "ThompsonRandom", "weight": "2", "persists": "true" }
// Chainsaw
newSpawnTable => { "spawnName": "Chainsaw", "tableName": "ChainsawReplaces" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "ChargerRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDArcanumTome", "weight": "0.015625", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDOddball", "weight": "6.4", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDPlasmaPistol", "weight": "5.125", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDPS20", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDSoulCube", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDStunGun", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDZorcher", "weight": "3.84", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "MG13GrenadeP", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "NCTRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "StonePileSpawner", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDCombatKnife", "weight": "30", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDPipeWrench", "weight": "20", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "NHDACrowbar", "weight": "15", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDCleaver", "weight": "15", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDFireExtinguisher", "weight": "12", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDFireAxe", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "HDSledgehammer", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ChainsawReplaces", "name": "Lumberjack", "weight": "5", "persists": "true" }
addSpawnTableNestedEntry => { "tableName": "ChainsawReplaces", "name": "Slogstin.SabreDrop", "weight": "5", "persists": "true" }
// Fists
newSpawnTable => { "spawnName": "Fist", "tableName": "FistReplaces" }
addSpawnTableSingleEntry => { "tableName": "FistReplaces", "name": "HDFist", "persists": "true" }
// Frag Grenade
newSpawnTable => { "spawnName": "FragGrenadeSingle", "tableName": "FragGrenadeSingle" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "StoneGrenadeP", "weight": "25", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "FragP", "weight": "20", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "ImpactFragP", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "HDGasGrenadeAmmo", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "UZLandMinePickup", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "HDDynamiteAmmo", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "HDIEDKit", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "UZPipeBombP", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "UZClaymoreMine", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "UZLaserTripBombP", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "ThunderFragP", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadeSingle", "name": "HDWilliePeteGrenadeAmmo", "weight": "2", "persists": "true" }
// Frag Grenade 6-Pack
newSpawnTable => { "spawnName": "FragGrenadePack", "tableName": "FragGrenadePack" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "StonePileSpawner", "weight": "25", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "HDFragGrenadePickup", "weight": "20", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "HDImpactGrenadePickup", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "HDGasGrenadePickup", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "UZLandMineBoxPickup", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "HDDynamitePickup", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "HDIEDPack", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "UZPipeBombPickup", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "UZClaymoreMineBox", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "UZLaserTripBombPickup", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "HDThunderGrenadePickup", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "HDWilliePeteGrenadePickup", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "FragGrenadePack", "name": "MG13GrenadeP", "weight": "1", "persists": "true" }
// Liberator Battle Rifle
// newSpawnTable => { "spawnName": "LiberatorRandom", "addOriginalThing": "true", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "LiberatorRandom", "name": "HDGarandRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "LiberatorRandom", "name": "HD_FNFAL", "weight": "0", "persists": "true" }
// Pistol
newSpawnTable => { "spawnName": "Pistol", "tableName": "PistolReplaces" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "BossRifleNine", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "DEagleRandom", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "GFBlasterRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "GoldSADeinoSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HD10mmPistol", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HushPuppyPistol", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "MajesticRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "OldMajesticRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "PB_HDAutoMagSpawn_FA", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "PB_HDAutoMagSpawn_SA", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "PhazerPistol", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "SADeinoSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "TT33Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "ViperRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "NyxRandom", "weight": "12", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "DERPUsable", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HDPistol", "weight": "32", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "BC24Spawn", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "COP357Spawn", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "SnubNoseSpawn", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "DeinoSpawn", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HDMinebeaPM9", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HDExhuRev", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HDRafficaPistol", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "ZS_UMS_AUTOMAG", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HDColt1911Spawn", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HD_Uragan5Spawn", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "HDFP45Spawn", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "PB_MK23SOCOMSpawn", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "USPRandom", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "PB_MAC11Spawn", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PistolReplaces", "name": "NCTRandom", "weight": "1", "persists": "true" }
// Plasma Rifle
newSpawnTable => { "spawnName": "PlasmaRifle", "tableName": "PlasmaRifleReplaces" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "BogRifleSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "CrossPulseThunderBuster", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "FenrisRandom", "weight": "3", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HD_ATCDevincenzia", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HD_FNFAL", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HD_M14K_Random", "weight": "3", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HD_M60", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HDCBT", "weight": "0.875","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HDMancCannon", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "IronsLiberatorRandom", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "LiberatorRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "SHAK12Spawner", "weight": "0.4375","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "WyvernRandom", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "PlasmaBuster", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HDMauler", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HDLaserMachinegun", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "MaserSpawn", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HDGreenline", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "ThunderBuster", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "PlasmaRifleReplaces", "name": "HammerheadRandom", "weight": "1", "persists": "true" }
// Rocket Launcher
newSpawnTable => { "spawnName": "RocketLauncher", "tableName": "RocketLauncherReplaces" }
// addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "BlackhawkRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "HDDeployableBarricade", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "HDMancCannon", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "HDWeaponCrate", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "ZM94Random", "weight": "5.125", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "BloopMapPickup", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "HDRLMapPickup", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "YeyuzeSpawner", "weight": "2","persists": "true" }
addSpawnTableSingleEntry => { "tableName": "RocketLauncherReplaces", "name": "FlamethrowerSpawner", "weight": "1", "persists": "true" }
// Shotgun
newSpawnTable => { "spawnName": "Shotgun", "tableName": "ShotgunReplaces" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "AA12ShellSpawn", "weight": "0.625","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "AurochsSpawn", "weight": "0.625","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "AurochsSpawn", "weight": "3.84", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "BarracudaRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "BC24Spawn", "weight": "1.28", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "BlackjackRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "BlackjackRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "BossRifleNine", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "COP357Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "DeinoSpawn", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "DuckHunter", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "ExplosiveHunter", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "FrontierSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "GuillotineSpawn", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "HD_Uragan5Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "HDCombatShotgunRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "HelzingSpawn", "weight": "1.28", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "LisaSpawn", "weight": "5.125", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "LLHunter", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "MajesticRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "NyxRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "OldMajesticRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "PB_BeowulfRifle_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "PB_HDAutoMagSpawn_SA", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "PB_LeverGat_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "PB_PSG1_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "PB_Ruger1022Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "RIKhleb", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "SADeinoSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "Savage99RifleSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "ScopeRevSpawn", "weight": "0.64", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "Six12Random", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "SlayerRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "SnubNoseSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "ViperRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "WyvernRandom", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "DoomHunterRandom", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "HunterRandom", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "Auto5Spawn", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "SlayerRandom", "weight": "3", "persists": "true" }
addSpawnTableNestedEntry => { "tableName": "ShotgunReplaces", "name": "WildAltis", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "GreelySpawn", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "DelvSpawn", "weight": "1","persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShotgunReplaces", "name": "ReaperRandom", "weight": "1", "persists": "true" }
// Super Shotgun
newSpawnTable => { "spawnName": "SuperShotgun", "tableName": "SuperShotgunReplaces" }
// addSpawnTableNestedEntry => { "tableName": "SuperShotgunReplaces", "name": "BossRifleSpawner", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "AA12SlugSpawn", "weight": "0.4375","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "Auto5Spawn", "weight": "0.875","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "BarracudaRandom", "weight": "3", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "BloopMapPickup", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "BossRifleNine", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "CoyoteSpawn", "weight": "0.875","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "CoyoteSpawn", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "FrontierSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "GoldSADeinoSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HD_M14K_Random", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HD_Uragan5Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HDAutoPistol", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HDCBT", "weight": "0.383","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HDGreenline", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HDJetpack", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HDSilencedAutoPistol", "weight": "1","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HDStreetSweeper", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HunterRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "Killer7Spawn", "weight": "0.875","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "Killer7Spawn", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "LiberatorRandom", "weight": "3", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "LotusSpawn", "weight": "1.28", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "MajesticRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "NoScopeBossSpawner", "weight": "2","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "NyxRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "OldMajesticRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "OtisSpawn", "weight": "3.84", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "PB_BeowulfRifle_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "PB_HDAutoMagSpawn_FA", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "PB_HKCAWS_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "PB_LeverGat_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "PB_PSG1_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "ReaperRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "SawedSpawn", "weight": "5.125", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "ScopedSlayer", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "SHAK12Spawner", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "Six12Random", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "ViperRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "WiseauSpawn", "weight": "5.125", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HD_M14K_Random", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "LiberatorRandom", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "HD_FNFAL", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "SuperShotgunReplaces", "name": "WyvernRandom", "weight": "1", "persists": "true" }
// AMMUNITION
// ------------
// Cell
newSpawnTable => { "spawnName": "Cell", "tableName": "CellReplaces" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "BFGNecroShard", "weight": "1", "chance": "128", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HD8mmECAmmoBox", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HDGasTank", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HDMicroCell", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HDNapalmTank", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HDSHAKMag", "weight": "0.32", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HDSHAKMag", "weight": "0.1016","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "LadderLauncher", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "ChargerRandom", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HDBattery", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "HD7mMag", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellReplaces", "name": "BrontornisRound", "weight": "1", "persists": "true" }
// Cell Pack
newSpawnTable => { "spawnName": "CellPack", "tableName": "CellPackReplaces" }
// addSpawnTableNestedEntry => { "tableName": "CellPackReplaces", "name": "HDAB", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "BFGNecroShard", "weight": "1", "chance": "196", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "DoorBuster", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "HD7mBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "HD9mBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "FragGrenadePack", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "PortableLadder", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "YokaiSpawner", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "HDBattery", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "HD7mMag", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "HD_FALMag", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "HDZM94Mag", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "CellPackReplaces", "name": "BrontornisSpawner", "weight": "1", "persists": "true" }
// Clip
newSpawnTable => { "spawnName": "Clip", "tableName": "ClipReplaces" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "ArmorBonus", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "BPXSpawn", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD_CAWSMag", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD_M165Mag", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD10mMag25", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD10mMag8", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD355BoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD50AM_Mag", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD9mBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD9mMag50", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDBlackjackMag355", "weight": "3", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDDEagleMag", "weight": "3", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDG11Mag", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDHorseshoe9m", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDJuncoRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDMajesticMag", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDMBRMagHeavy", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDMBRMagLight", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDNDMBigMag", "weight": "0.64", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDNDMMag", "weight": "2.56", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDNyxMag", "weight": "4", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDSShotpistolRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDTokarevMag8", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDUMPMag", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDViperMag", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "PapashaMagSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "PB_HDSteyrACRMag", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "PB_SteyrACR_MultiMagSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "RITmpsD70", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD4mMag", "weight": "32", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDPDFourMag", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDTrogMag", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD9mClip", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD9mMag15", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDColtMag7", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD9mMag30", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD355Mag", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDUSPMag", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDMK23SOCOM_Mag", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDColt9mmMag25", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "RITmpsM20", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HDMAC10_Mag", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "RITmpsD50", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipReplaces", "name": "HD_FALMag", "weight": "1", "persists": "true" }
// Clip Box
newSpawnTable => { "spawnName": "ClipBox", "tableName": "ClipBoxReplaces" }
// addSpawnTableNestedEntry => { "tableName": "ClipBoxReplaces", "name": "BossRifleSpawner", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "BlackjackRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "BossRifleNine", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "BPXSpawn", "weight": "2","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "ClipBoxPickupHLAR", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "ClipBoxPickupTrog", "weight": "10", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "GFBlasterRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HackedZM66Random", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD_FlintlockPistol", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD_MusketDropper", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD10mBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD10mmPistol", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD3006BoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD420BoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD45LCBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD6mmFlechetteBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD762TokarevBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDColt1911Spawn", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDCurrawongRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDFP45Spawn", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDGold45LCBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDNDMBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDRafficaPistol", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDYureiClipbox", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HushPuppyPistol", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "JackdawRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "MBRRandom", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "MinervaRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "NyxRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "ObrozzSpawner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PapashaSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_50AMBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_5mmBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_A180Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_G11Spawn_Normal", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_G11Spawn_Scoped", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_MK23SOCOMSpawn", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_Ruger1022Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_SteyrACR_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_SteyrAICW_Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PDFourRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PhazerPistol", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PNSpawn", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "SigCowRandomSpawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "TT33Spawn", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "UMPRandom", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "USPRandom", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "DMRSpawn", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "ClipBoxPickup1", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDMinebeaPM9", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HDSTENRandom", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "ClipBoxPickup2", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "PB_Colt9mm_Spawn", "weight": "2", "persists": "true" }
addSpawnTableNestedEntry => { "tableName": "ClipBoxReplaces", "name": "HDAB", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD9mBoxPickup", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD355BoxPickup", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "Reusable4mmBox", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD45ACPBoxPickup", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD7mBoxPickup", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ClipBoxReplaces", "name": "HD50OMGBoxPickup", "weight": "1", "persists": "true" }
// Rocket
newSpawnTable => { "spawnName": "RocketAmmo", "tableName": "RocketAmmoReplaces" }
// addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HD3006BoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HD500SWHeavyBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HDBlackhawkBoltBundle", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HDDynamiteAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HDMBRMagHeavy", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HDNapalmTank", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HDGasTank", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "RocketAmmoReplaces", "name": "HDRocketAmmo", "weight": "2", "persists": "true" }
addSpawnTableNestedEntry => { "tableName": "RocketAmmoReplaces", "name": "FragGrenadeSingle", "weight": "1", "persists": "true" }
// Rocket Box
newSpawnTable => { "spawnName": "RocketBox", "tableName": "RocketBoxReplaces" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "FragCannonPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HD500SWHeavyBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HD50OMGBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HD7mBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HD9mBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HDAT4_WEP", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HDCGM25_WEP", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HDCO2GrenadePickup", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HDGasGrenadePickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HDIEDPack", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HDWilliePeteGrenadePickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "LadderLauncher", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "PortableLadder", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "WAN_20mmGrenadeBox", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "WAN_ThuRKTAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "WAN_TortRktAmmo", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "RocketBigPickup", "weight": "5", "persists": "true" }
addSpawnTableNestedEntry => { "tableName": "RocketBoxReplaces", "name": "FragGrenadePack", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "RocketBoxReplaces", "name": "HDGasTank", "weight": "1", "persists": "true" }
// Shotgun Shell
newSpawnTable => { "spawnName": "Shell", "tableName": "ShellReplaces" }
// addSpawnTableNestedEntry => { "tableName": "ShellReplaces", "name": "HDAB", "weight": "1", "chance": "200", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "BFGNecroShard", "weight": "1", "chance": "200", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "BirdshotShellPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "DecoPusher", "weight": "4", "chance": "200", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "DoorBuster", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HD4GBAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HD4GBPickup", "weight": "3", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HD4GSAmmo", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HD4mMag", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDBattery", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDBirdshotShellAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDBlackjackMagShells", "weight": "12", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDExplosiveShellAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDFlareAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDFumbled4GS", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDFumblingShell", "weight": "4", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDIEDPack", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDLLShellAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDMBRMagLight", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDMicroCell", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDSavage300Pickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDSix12MagShells", "weight": "12", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDSix12MagSlugs", "weight": "6", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDSlugAmmo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "LLShellPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "Savage300Ammo", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "YokaiSpawner", "weight": "1", "chance": "128", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "ShellPickup", "weight": "32", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "FlareShellPickup", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HD_CAWSMag", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "SlugPickup", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "HDSlugSpeedloader", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellReplaces", "name": "ExplosiveShellPickup", "weight": "1", "persists": "true" }
// Shotgun Shell Box
newSpawnTable => { "spawnName": "ShellBox", "tableName": "ShellBoxReplaces" }
// addSpawnTableNestedEntry => { "tableName": "ShellBoxReplaces", "name": "HDAB", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "DecoPusher", "weight": "1", "chance": "200", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HD069BoreBox", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HD500SWLightBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HD7mBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HD9mBoxPickup", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDA12MagShell", "weight": "0.1328","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDAT4_WEP", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDBattery", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDBirdshotShellBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDCGM25_WEP", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDCoyoteMag", "weight": "0.3984","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDCoyoteMag", "weight": "0.96", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "FragGrenadePack", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDKiller7Mag", "weight": "0.2656","persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDKiller7Mag", "weight": "0.64", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HDSavage300BoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "LLShellBoxPickup", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "SlugMagSpawn", "weight": "0.0664","persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "ShellBoxPickup", "weight": "32", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "FlareShellBoxPickup", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "RIReapM8", "weight": "12", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "RIReapD20", "weight": "12", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "SlugBoxPickup", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HD4GBBox", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "HD4GSSpawn", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ShellBoxReplaces", "name": "ExplosiveShellBoxPickup", "weight": "1", "persists": "true" }
// POWERUPS
// ------------
// All-Map
newSpawnTable => { "spawnName": "AllMap", "tableName": "AllMapReplaces" }
addSpawnTableSingleEntry => { "tableName": "AllMapReplaces", "name": "UaS_Automap", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "AllMapReplaces", "name": "HDMap", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "AllMapReplaces", "name": "HDSecretFinder", "weight": "1", "persists": "true" }
// Armor Bonus
newSpawnTable => { "spawnName": "ArmorBonus", "tableName": "ArmorBonusReplaces" }
// addSpawnTableNestedEntry => { "tableName": "ArmorBonusReplaces", "name": "HDAB", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "ClipBox", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "Dead_HumanVictim", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "HD4mMag", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "HD7mMag", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "HDBattery", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "HDFragGrenades", "weight": "1", "chance": "72", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "PortableStimpack", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "ZombieScientistSpawner", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "DecoPusher", "weight": "32", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "HDCO2GrenadeAmmo", "weight": "24", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "HDArmorPlate", "weight": "16", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "Despicyto", "weight": "10", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "DespicytoFilter", "weight": "5", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "ShieldCore", "weight": "3", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "VirShieldBadge", "weight": "2", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "ArmorBonusReplaces", "name": "BFGNecroShard", "weight": "1", "chance": "96", "persists": "true" }
// Backpack
newSpawnTable => { "spawnName": "Backpack", "tableName": "BackpackReplaces" }
addSpawnTableSingleEntry => { "tableName": "BackpackReplaces", "name": "UaS_WildAssaultPack", "weight": "16", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BackpackReplaces", "name": "WildHalfPack", "weight": "8", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BackpackReplaces", "name": "WildBackpack", "weight": "4", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BackpackReplaces", "name": "WildGearBox", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BackpackReplaces", "name": "DSDInterface", "weight": "1", "persists": "true" }
// Berserk Pack
newSpawnTable => { "spawnName": "Berserk", "tableName": "BerserkReplaces" }
// addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "BattleArmour", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "HD4mMag", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "HDJetpack", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "HDScanner", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "HEATAmmo", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "UaS_EmptyZerkpack", "weight": "3", "persists": "false" }
addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "PortableSuperStimpack", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BerserkReplaces", "name": "PortableBerserkPack", "weight": "1", "persists": "true" }
// Blue Armor
newSpawnTable => { "spawnName": "BlueArmor", "tableName": "BlueArmorReplaces" }
// addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "Despicyto", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "HDLeatherArmour", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "HDRiotShieldItem", "weight": "0.25", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "PsgRandom", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "BattleArmour", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "HEVArmour", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "HDCorporateArmour", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BlueArmorReplaces", "name": "OldPsgRandom", "weight": "1", "persists": "true" }
// Blur Sphere
newSpawnTable => { "spawnName": "BlurSphere", "tableName": "BlurSphereReplaces" }
// addSpawnTableSingleEntry => { "tableName": "BlurSphereReplaces", "name": "GarrisonArmour", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BlurSphereReplaces", "name": "HDCO2GrenadePickup", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BlurSphereReplaces", "name": "HDFragGrenades", "weight": "6", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BlurSphereReplaces", "name": "HDHealingPotion", "weight": "2", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "BlurSphereReplaces", "name": "HDJetpack", "weight": "1", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BlurSphereReplaces", "name": "SquadSummoner", "weight": "14", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "BlurSphereReplaces", "name": "HDBlurSphere", "weight": "1", "persists": "true" }
// Green Armor
newSpawnTable => { "spawnName": "GreenArmor", "tableName": "GreenArmorReplaces" }
// addSpawnTableSingleEntry => { "tableName": "GreenArmorReplaces", "name": "Despicyto", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "GreenArmorReplaces", "name": "HDCorporateArmour", "weight": "0.046875", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "GreenArmorReplaces", "name": "HEVArmour", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "GreenArmorReplaces", "name": "PB_ArmorPlate_MultipleDrops", "weight": "0.076923", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "GreenArmorReplaces", "name": "HDLeatherArmour", "weight": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "GreenArmorReplaces", "name": "WAN_SneakingSuit", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "GreenArmorReplaces", "name": "GarrisonArmour", "weight": "1", "persists": "true" }
// Health Bonus
newSpawnTable => { "spawnName": "HealthBonus", "tableName": "HealthBonusReplaces" }
// addSpawnTableNestedEntry => { "tableName": "HealthBonusReplaces", "name": "HDAB", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "Dead_HumanVictim", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "Despicyto", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "DespicytoFilter", "weight": "0", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "HD9mMag15", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "HDBattery", "weight": "1", "chance": "72", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "HDFragGrenades", "weight": "1", "chance": "72", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "PortableMedikit", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "PortableStimpack", "weight": "1", "chance": "48", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "ZombieScientistSpawner", "weight": "0", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "DecoPusher", "weight": "32", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "HDCO2GrenadeAmmo", "weight": "5", "chance": "64", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "VIRMealkit", "weight": "3", "chance": "128", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "SecondBlood", "weight": "3", "chance": "128", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "HDHealingPotion", "weight": "2", "chance": "196", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "HealthBonusReplaces", "name": "BFGNecroShard", "weight": "1", "chance": "96", "persists": "true" }
// Lite-Amp Goggles
newSpawnTable => { "spawnName": "Infrared", "tableName": "InfraredReplaces" }
addSpawnTableSingleEntry => { "tableName": "InfraredReplaces", "name": "WildFlareGun", "weight": "10", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "InfraredReplaces", "name": "WildMetalFlareGun", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "InfraredReplaces", "name": "HDFlashlight", "chance": "3", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "InfraredReplaces", "name": "UaS_BrokenLiteAmp", "weight": "2", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "InfraredReplaces", "name": "PortableLiteAmp", "weight": "1", "persists": "true" }
// Invulnerability Sphere
newSpawnTable => { "spawnName": "InvulnerabilitySphere", "tableName": "InvulnerabilitySphereReplaces" }
addSpawnTableSingleEntry => { "tableName": "InvulnerabilitySphereReplaces", "name": "HDInvulnerabilitySphere", "weight": "1", "persists": "true" }
// Medikit
newSpawnTable => { "spawnName": "Medikit", "tableName": "MedikitReplaces" }
// addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "HD4mMag", "weight": "5", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "HDFirstAidSpray", "weight": "10", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "HDHealingPotion", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "PortableStimpack", "weight": "5", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "UaS_EmptyMedikit", "weight": "10", "chance": "64", "persists": "false" }
addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "HDFieldMedicKit", "weight": "5", "chance": "96", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "HDScanner", "weight": "3", "chance": "128", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "UaS_TraumaKit", "weight": "2", "chance": "128", "persists": "true" }
addSpawnTableSingleEntry => { "tableName": "MedikitReplaces", "name": "PortableMedikit", "weight": "1", "chance": "196", "persists": "true" }
// Mega Sphere
newSpawnTable => { "spawnName": "MegaSphere", "tableName": "MegaSphereReplaces" }
addSpawnTableSingleEntry => { "tableName": "MegaSphereReplaces", "name": "HDMegaSphere", "weight": "1", "persists": "true" }
// addSpawnTableSingleEntry => { "tableName": "MegaSphereReplaces", "name": "HDPowersuitSpawnerPickup", "weight": "0.3", "persists": "true" }
// Radsuit
newSpawnTable => { "spawnName": "RadSuit", "tableName": "RadSuitReplaces" }
addSpawnTableSingleEntry => { "tableName": "RadSuitReplaces", "name": "PortableRadsuit", "weight": "1", "persists": "true" }
// Soul Sphere
newSpawnTable => { "spawnName": "SoulSphere", "tableName": "SoulSphereReplaces" }
addSpawnTableSingleEntry => { "tableName": "SoulSphereReplaces", "name": "HDSoulSphere", "weight": "1", "persists": "true" }
// Stimpack