-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfutreasurepools.treasurepools
1599 lines (1548 loc) · 75.4 KB
/
futreasurepools.treasurepools
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
{
"fucodexRandom" : [
[0, {
"pool" : [
{"weight" : 0.037, "item" : "randombook1-codex"},
{"weight" : 0.037, "item" : "randombook2-codex"},
{"weight" : 0.037, "item" : "randombook3-codex"},
{"weight" : 0.037, "item" : "randombook4-codex"},
{"weight" : 0.037, "item" : "randombook5-codex"},
{"weight" : 0.037, "item" : "randombook6-codex"},
{"weight" : 0.037, "item" : "randombook7-codex"},
{"weight" : 0.037, "item" : "randombook8-codex"},
{"weight" : 0.037, "item" : "randombook9-codex"},
{"weight" : 0.037, "item" : "randombook10-codex"},
{"weight" : 0.037, "item" : "randombook11-codex"},
{"weight" : 0.037, "item" : "randombook12-codex"},
{"weight" : 0.037, "item" : "randombook13-codex"},
{"weight" : 0.037, "item" : "randombook14-codex"},
{"weight" : 0.037, "item" : "dark1-codex"},
{"weight" : 0.037, "item" : "mantizi1-codex"},
{"weight" : 0.037, "item" : "mantizi2-codex"},
{"weight" : 0.037, "item" : "mantizi3-codex"},
{"weight" : 0.037, "item" : "mantizi4-codex"},
{"weight" : 0.037, "item" : "mantizi5-codex"},
{"weight" : 0.037, "item" : "mantizi6-codex"},
{"weight" : 0.037, "item" : "radien1-codex"},
{"weight" : 0.037, "item" : "radien2-codex"},
{"weight" : 0.037, "item" : "radien3-codex"},
{"weight" : 0.037, "item" : "radien4-codex"},
{"weight" : 0.037, "item" : "radien5-codex"},
{"weight" : 0.037, "item" : "radien6-codex"},
{"weight" : 0.037, "item" : "radien7-codex"},
{"weight" : 0.037, "item" : "radien8-codex"},
{"weight" : 0.037, "item" : "radien9-codex"},
{"weight" : 0.037, "item" : "penumbrabiome1-codex"},
{"weight" : 0.037, "item" : "penumbrabiome2-codex"},
{"weight" : 0.037, "item" : "penumbrabiome3-codex"},
{"weight" : 0.037, "item" : "penumbrabiome4-codex"},
{"weight" : 0.037, "item" : "penumbrabiome5-codex"},
{"weight" : 0.037, "item" : "penumbrabiome6-codex"},
{"weight" : 0.037, "item" : "atropusbiome-codex"},
{"weight" : 0.037, "item" : "atropusbiome2-codex"},
{"weight" : 0.037, "item" : "atropusbiome3-codex"},
{"weight" : 0.037, "item" : "atropusbiome4-codex"},
{"weight" : 0.037, "item" : "fleshweave-codex"},
{"weight" : 0.037, "item" : "tapeworm-codex"},
{"weight" : 0.037, "item" : "foodprep-codex"},
{"weight" : 0.037, "item" : "luridmagazine-codex"},
{"weight" : 0.037, "item" : "luridmagazine2-codex"},
{"weight" : 0.037, "item" : "luridmagazine3-codex"},
{"weight" : 0.037, "item" : "luridmagazine4-codex"},
{"weight" : 0.037, "item" : "war1-codex"},
{"weight" : 0.037, "item" : "thelusian1-codex"},
{"weight" : 0.037, "item" : "thelusian2-codex"},
{"weight" : 0.037, "item" : "thelusian3-codex"},
{"weight" : 0.037, "item" : "thelusian4-codex"},
{"weight" : 0.037, "item" : "thelusian5-codex"},
{"weight" : 0.037, "item" : "thelusian6-codex"},
{"weight" : 0.037, "item" : "thelusian7-codex"},
{"weight" : 0.037, "item" : "greg1-codex"},
{"weight" : 0.037, "item" : "greg2-codex"},
{"weight" : 0.037, "item" : "greg3-codex"},
{"weight" : 0.037, "item" : "greg4-codex"},
{"weight" : 0.037, "item" : "greg5-codex"},
{"weight" : 0.037, "item" : "greg6-codex"},
{"weight" : 0.037, "item" : "greg7-codex"},
{"weight" : 0.037, "item" : "greg8-codex"},
{"weight" : 0.037, "item" : "greg9-codex"},
{"weight" : 0.037, "item" : "greg10-codex"},
{"weight" : 0.037, "item" : "kirhos1-codex"},
{"weight" : 0.037, "item" : "kirhos2-codex"},
{"weight" : 0.037, "item" : "kirhos3-codex"},
{"weight" : 0.037, "item" : "kirhos4-codex"},
{"weight" : 0.037, "item" : "kirhos5-codex"},
{"weight" : 0.037, "item" : "kirhos6-codex"}
]
}]
],
"meatBasic" : [
[0, {
"pool" : [
{"weight" : 0.75, "item" : "alienmeat"},
{"weight" : 0.25, "item" : "rawribmeat"}
]
}]
],
"meatFat" : [
[0, {
"pool" : [
{"weight" : 0.333, "item" : "alienmeat"},
{"weight" : 0.333, "item" : "rawribmeat"},
{"weight" : 0.333, "item" : "rawbacon"}
]
}]
],
"deadBodies" : [
[0, {
"pool" : [
{"weight" : 0.05, "item" : "wrappedbody"},
{"weight" : 0.01, "item" : "wrappedbodyputrid"},
{"weight" : 0.34, "item" : "rawribmeat"},
{"weight" : 0.25, "item" : "leather"},
{"weight" : 0.25, "item" : "bone"},
{"weight" : 0.10, "item" : "humaneyeball"},
{"weight" : 0.10, "item" : "severedear"},
{"weight" : 0.10, "item" : "humaneyeball"},
{"weight" : 0.10, "item" : "severedear"},
{"weight" : 0.02, "item" : "severedhandinabagaugment"}
]
}]
],
"woodShed" : [
[0, {
"pool" : [
{"weight" : 0.05, "item" : "wrappedbody"},
{"weight" : 0.01, "item" : "wrappedbodyputrid"},
{"weight" : 0.005, "item" : "wrappedbodyalien"},
{"weight" : 0.34, "item" : ["darkwoodmaterial", 20]},
{"weight" : 0.25, "item" : ["logblock", 20]},
{"weight" : 0.25, "item" : ["fullwood1", 15]},
{"weight" : 0.10, "item" : ["fullwood2", 15]},
{"weight" : 0.10, "item" : ["woodpanelling", 15]},
{"weight" : 0.10, "item" : ["platform", 10]},
{"weight" : 0.10, "item" : ["redwoodbark", 10]},
{"weight" : 0.05, "item" : ["commonaxe", 10]},
{"weight" : 0.02, "item" : ["chainsaw", 1]}
]
}]
],
"fuGenericQuestLoot" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : "fu_lootbox"},
{"weight" : 0.05, "pool" : "fuEssence"},
{"weight" : 0.05, "pool" : "petcollars2"},
{"weight" : 0.05, "pool" : "fuLootStims"},
{"weight" : 0.2, "pool" : "fuBasicMaterials"},
{"weight" : 0.2, "pool" : "fuBasicChemMaterials"},
{"weight" : 0.2, "pool" : "fuGenes"},
{"weight" : 0.025, "pool" : "fuspecialLoot"},
{"weight" : 0.008, "pool" : "augmentsFU"},
{"weight" : 0.008, "pool" : "artifactloot"},
{"weight" : 0.25, "pool" : "nonTieredRichOre"}
]
}]
],
"fuGenericQuestLootMid" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : "fu_lootbox"},
{"weight" : 0.05, "pool" : "fuEssence"},
{"weight" : 0.05, "pool" : "petcollars2"},
{"weight" : 0.05, "pool" : "fuLootStims"},
{"weight" : 0.1, "pool" : "fuSpaceBonus"},
{"weight" : 0.2, "pool" : "fuBasicMaterials"},
{"weight" : 0.2, "pool" : "fuBasicChemMaterials"},
{"weight" : 0.2, "pool" : "fuGenes"},
{"weight" : 0.008, "pool" : "augmentsFU"},
{"weight" : 0.008, "pool" : "artifactloot"},
{"weight" : 0.025, "pool" : "fuspecialLoot"},
{"weight" : 0.25, "pool" : "nonTieredRichOre"}
]
}]
],
"fuGenericQuestLootHigh" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : "fu_lootbox"},
{"weight" : 0.05, "pool" : "fuEssence"},
{"weight" : 0.05, "pool" : "fuEssenceHigh"},
{"weight" : 0.05, "pool" : "petcollars2"},
{"weight" : 0.05, "pool" : "fuLootStims"},
{"weight" : 0.2, "pool" : "fuBasicMaterials"},
{"weight" : 0.2, "pool" : "fuBasicChemMaterials"},
{"weight" : 0.2, "pool" : "fuGenes"},
{"weight" : 0.025, "pool" : "fuspecialLoot"},
{"weight" : 0.15, "pool" : "fuRareOre"},
{"weight" : 0.008, "pool" : "augmentsFU"},
{"weight" : 0.008, "pool" : "artifactloot"},
{"weight" : 0.25, "pool" : "nonTieredRichOre"}
]
}]
],
"fuSpaceBonus" : [
[0, {
"pool" : [
{"weight" : 0.05, "pool" : "fuEssence"},
{"weight" : 0.05, "pool" : "arconLoot"},
{"weight" : 0.05, "pool" : "petcollars2"},
{"weight" : 0.05, "pool" : "fuLootStims"},
{"weight" : 0.05, "pool" : "slopedMaterial"},
{"weight" : 0.2, "pool" : "fuBasicMaterials"},
{"weight" : 0.2, "pool" : "fuBasicChemMaterials"},
{"weight" : 0.2, "pool" : "fuGenes"},
{"weight" : 0.025, "pool" : "fuspecialLoot"},
{"weight" : 0.25, "pool" : "nonTieredRichOre"}
]
}]
],
"fuMadnessVoxelSmall" : [
[0, {
"pool" : [
{"weight" : 1, "item" : ["fumadnessresource", 500]}
]
}]
],
"fuMadnessVoxel" : [
[0, {
"pool" : [
{"weight" : 1, "item" : ["fumadnessresource", 1000]}
]
}]
],
"fuMadnessVoxelLarge" : [
[0, {
"pool" : [
{"weight" : 1, "item" : ["fumadnessresource", 5000]}
]
}]
],
"fuResearchVoxelSmall" : [
[0, {
"pool" : [
{"weight" : 1, "item" : ["fuscienceresource", 500]}
]
}]
],
"fuResearchVoxel" : [
[0, {
"pool" : [
{"weight" : 1, "item" : ["fuscienceresource", 1000]}
]
}]
],
"fuResearchVoxelLarge" : [
[0, {
"pool" : [
{"weight" : 1, "item" : ["fuscienceresource", 5000]}
]
}]
],
"fuResearchPool" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : ["fuscienceresource", 25]},
{"weight" : 0.1, "item" : ["fuscienceresource", 50]},
{"weight" : 0.05, "item" : ["fuscienceresource", 100]},
{"weight" : 0.04, "item" : ["fuscienceresource", 200]},
{"weight" : 0.03, "item" : ["fuscienceresource", 320]},
{"weight" : 0.02, "item" : ["fuscienceresource", 400]},
{"weight" : 0.01, "item" : ["fuscienceresource", 550]},
{"weight" : 0.008, "item" : ["fuscienceresource", 600]},
{"weight" : 0.006, "item" : ["fuscienceresource", 750]},
{"weight" : 0.005, "item" : ["fuscienceresource", 800]},
{"weight" : 0.003, "item" : ["fuscienceresource", 900]},
{"weight" : 0.002, "item" : ["fuscienceresource", 1000]},
{"weight" : 0.001, "item" : ["fuscienceresource", 1200]}
]
}]
],
"poGolemLoot" : [
[0, {
"fill" : [
{"item" : [ "poop", 25]}
],
"pool" : [
{"weight" : 0.2, "item" : ["feces", 12]},
{"weight" : 0.1, "item" : ["poop", 25]},
{"weight" : 0.4, "pool" : "money"},
{"weight" : 0.3, "pool" : "basicTreasure"}
]
}]
],
"fuEssence" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : ["essence", 5]},
{"weight" : 0.1, "item" : ["essence", 25]},
{"weight" : 0.05, "item" : ["essence", 55]},
{"weight" : 0.04, "item" : ["essence", 100]},
{"weight" : 0.03, "item" : ["essence", 220]},
{"weight" : 0.02, "item" : ["essence", 300]},
{"weight" : 0.01, "item" : ["essence", 350]},
{"weight" : 0.008, "item" : ["essence", 400]},
{"weight" : 0.006, "item" : ["essence", 450]},
{"weight" : 0.005, "item" : ["essence", 500]},
{"weight" : 0.003, "item" : ["essence", 600]},
{"weight" : 0.002, "item" : ["essence", 700]},
{"weight" : 0.001, "item" : ["essence", 800]}
]
}]
],
"fuEssenceHigh" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : ["essence", 125]},
{"weight" : 0.1, "item" : ["essence", 225]},
{"weight" : 0.05, "item" : ["essence", 355]},
{"weight" : 0.04, "item" : ["essence", 400]},
{"weight" : 0.03, "item" : ["essence", 520]},
{"weight" : 0.02, "item" : ["essence", 600]},
{"weight" : 0.01, "item" : ["essence", 750]},
{"weight" : 0.008, "item" : ["essence", 800]},
{"weight" : 0.006, "item" : ["essence", 950]},
{"weight" : 0.005, "item" : ["essence", 1000]},
{"weight" : 0.003, "item" : ["essence", 1200]},
{"weight" : 0.002, "item" : ["essence", 1400]},
{"weight" : 0.001, "item" : ["essence", 1600]}
]
}]
],
"carbonRock" : [
[0, {
"pool" : [
{"weight" : 0.4, "item" : ["fu_carbon", 2]},
{"weight" : 0.3, "item" : ["fu_carbon", 3]},
{"weight" : 0.2, "item" : ["fu_carbon", 4]},
{"weight" : 0.1, "item" : ["fu_carbon", 6]},
{"weight" : 0.05, "item" : ["fu_carbon", 8]}
]
}]
],
"carbonRockSmall" : [
[0, {
"pool" : [
{"weight" : 0.7, "item" : ["fu_carbon", 1]},
{"weight" : 0.2, "item" : ["fu_carbon", 3]},
{"weight" : 0.1, "item" : ["fu_carbon", 5]}
]
}]
],
"fuRareOre" : [
[0, {
"pool" : [
{"weight" : 0.05, "item" : ["isogenbar", 1]},
{"weight" : 0.06, "item" : ["pyreitebar", 1]},
{"weight" : 0.005, "item" : ["aetheriumalloy", 1]},
{"weight" : 0.04, "item" : ["tritaniumbar", 1]},
{"weight" : 0.02, "item" : ["nocxiumore", 1]},
{"weight" : 0.005, "item" : ["nocxiumbar", 1]},
{"weight" : 0.07, "item" : ["xithricitecrystal", 1]}
]
}]
],
"fuBasicMaterials" : [
[0, {
"pool" : [
{"weight" : 0.02, "item" : [ "deuterium", 2]},
{"weight" : 0.03, "item" : [ "tritium", 2]},
{"weight" : 0.333, "item" : [ "polymer", 10]},
{"weight" : 0.08, "item" : ["beesilk", 5]},
{"weight" : 0.5, "item" : ["darkwoodmaterial", 10]},
{"weight" : 0.5, "item" : ["plantfibre", 10]},
{"weight" : 0.5, "item" : ["bandage", 3]},
{"weight" : 0.5, "item" : ["throwingspear", 3]},
{"weight" : 0.5, "item" : ["flare", 5]},
{"weight" : 0.5, "item" : ["throwingdagger", 5]},
{"weight" : 0.8, "item" : ["climbingrope", 3]},
{"weight" : 0.05, "item" : ["molotov", 3]},
{"weight" : 0.5, "item" : ["throwingspear", 5]},
{"weight" : 0.5, "item" : ["throwingaxe", 5]},
{"weight" : 0.01, "item" : "cactusjuice"},
{"weight" : 0.002, "item" : "cactislammer"},
{"weight" : 0.002, "item" : "mininglantern"},
{"weight" : 0.003, "item" : "lanternstickback"},
{"weight" : 0.09, "item" : ["cactiblock", 5]},
{"weight" : 0.09, "item" : ["glassmaterial", 5]},
{"weight" : 0.333, "item" : [ "cryonicextract", 1]},
{"weight" : 0.333, "item" : [ "hardenedcarapace", 1]},
{"weight" : 0.333, "item" : [ "vanusflower", 1]},
{"weight" : 0.333, "item" : [ "phasematter", 1]},
{"weight" : 0.333, "item" : [ "scorchedcore", 1]},
{"weight" : 0.333, "item" : [ "staticcell", 1]},
{"weight" : 0.333, "item" : [ "sharpenedclaw", 1]},
{"weight" : 0.333, "item" : [ "stickofram", 1]},
{"weight" : 0.333, "item" : [ "venomsample", 1]},
{"weight" : 0.0333, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.085, "item" : [ "laboil", 1]},
{"weight" : 0.0211, "item" : [ "berliniteore", 9]},
{"weight" : 0.0211, "item" : [ "volatilepowder", 9]},
{"weight" : 0.0211, "item" : [ "magnesiumore", 9]},
{"weight" : 0.0210, "item" : [ "cinnabarore", 5]},
{"weight" : 0.0210, "item" : [ "sulphur", 5]},
{"weight" : 0.0210, "item" : [ "lead", 5]},
{"weight" : 0.0266, "item" : [ "agaranichor", 4]},
{"weight" : 0.0211, "item" : [ "protociteore", 5]},
{"weight" : 0.0211, "item" : [ "penumbriteore", 5]},
{"weight" : 0.0211, "item" : [ "ff_spareparts", 5]},
{"weight" : 0.0211, "item" : [ "protorockmaterial", 5]},
{"weight" : 0.0266, "item" : [ "bamboo", 25]},
{"weight" : 0.0266, "item" : [ "algaegreen", 5]},
{"weight" : 0.0266, "item" : [ "biospore", 5]},
{"weight" : 0.0266, "item" : [ "cellmatter", 5]},
{"weight" : 0.0266, "item" : [ "fuscienceresource", 15]},
{"weight" : 0.0266, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.0266, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.0266, "item" : [ "methanol", 3]},
{"weight" : 0.0266, "item" : [ "phosphorus", 3]},
{"weight" : 0.0266, "item" : [ "silk", 5]},
{"weight" : 0.0266, "item" : [ "ff_plastic", 3]},
{"weight" : 0.0266, "item" : [ "silk", 10]},
{"weight" : 0.0266, "item" : [ "iodine", 3]},
{"weight" : 0.0266, "item" : [ "ff_mercury", 3]},
{"weight" : 0.1, "item" : [ "aquapod", 5]},
{"weight" : 0.1, "item" : [ "blizzberry", 3]},
{"weight" : 0.1, "item" : [ "leafshell", 3]},
{"weight" : 0.1, "item" : [ "blexsap", 3]},
{"weight" : 0.1, "item" : [ "blisterbushplantfood", 3]},
{"weight" : 0.1, "item" : [ "oonfortaglobule", 7]},
{"weight" : 0.1, "item" : [ "capriole", 5]},
{"weight" : 0.1, "item" : [ "erithianalgae", 6]},
{"weight" : 0.1, "item" : [ "ignuschili", 4]},
{"weight" : 0.1, "item" : [ "gazelemon", 3]},
{"weight" : 0.1, "item" : [ "glarestalkeye", 2]},
{"weight" : 0.1, "item" : [ "goldenglowleaf", 1]},
{"weight" : 0.1, "item" : [ "lasherstem", 1]},
{"weight" : 0.1, "item" : [ "diodiahybrid", 3]},
{"weight" : 0.1, "item" : [ "miraclegrass", 3]},
{"weight" : 0.1, "item" : [ "mireurchin", 3]},
{"weight" : 0.1, "item" : [ "slimeleaf", 2]},
{"weight" : 0.1, "item" : [ "pasaka", 3]},
{"weight" : 0.1, "item" : [ "thornitox", 3]},
{"weight" : 0.1, "item" : [ "tyvokkhook", 1]},
{"weight" : 0.1, "item" : [ "vashtaclaw", 1]},
{"weight" : 0.1, "item" : [ "fuscienceresource", 15]}
]
}]
],
"fuBasicChemMaterials" : [
[0, {
"pool" : [
{"weight" : 0.02, "item" : [ "deuterium", 2]},
{"weight" : 0.03, "item" : [ "tritium", 2]},
{"weight" : 0.333, "item" : [ "polymer", 10]},
{"weight" : 0.333, "item" : [ "fu_nitrogen", 10]},
{"weight" : 0.333, "item" : [ "fu_oxygen", 10]},
{"weight" : 0.333, "item" : [ "fu_hydrogen", 10]},
{"weight" : 0.333, "item" : [ "fu_carbon", 10]},
{"weight" : 0.333, "item" : [ "cryonicextract", 1]},
{"weight" : 0.333, "item" : [ "hardenedcarapace", 1]},
{"weight" : 0.333, "item" : [ "vanusflower", 1]},
{"weight" : 0.333, "item" : [ "phasematter", 1]},
{"weight" : 0.333, "item" : [ "scorchedcore", 1]},
{"weight" : 0.333, "item" : [ "staticcell", 1]},
{"weight" : 0.333, "item" : [ "sharpenedclaw", 1]},
{"weight" : 0.333, "item" : [ "stickofram", 1]},
{"weight" : 0.333, "item" : [ "venomsample", 1]},
{"weight" : 0.0333, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.0211, "item" : [ "volatilepowder", 9]},
{"weight" : 0.0211, "item" : [ "magnesiumore", 9]},
{"weight" : 0.0211, "item" : [ "mascagniteore", 9]},
{"weight" : 0.0210, "item" : [ "cinnabarore", 5]},
{"weight" : 0.0210, "item" : [ "sulphur", 5]},
{"weight" : 0.0210, "item" : [ "lead", 5]},
{"weight" : 0.0211, "item" : [ "glassmaterial", 25]},
{"weight" : 0.0211, "item" : [ "protociteore", 5]},
{"weight" : 0.0211, "item" : [ "penumbriteore", 5]},
{"weight" : 0.0211, "item" : [ "ff_spareparts", 5]},
{"weight" : 0.0211, "item" : [ "protorockmaterial", 5]},
{"weight" : 0.0266, "item" : [ "bamboo", 25]},
{"weight" : 0.0266, "item" : [ "algaegreen", 5]},
{"weight" : 0.0266, "item" : [ "biospore", 5]},
{"weight" : 0.0266, "item" : [ "cellmatter", 5]},
{"weight" : 0.1, "item" : [ "fuscienceresource", 15]},
{"weight" : 0.0266, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.0266, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.0266, "item" : [ "methanol", 3]},
{"weight" : 0.0266, "item" : [ "phosphorus", 3]},
{"weight" : 0.0266, "item" : [ "silk", 5]},
{"weight" : 0.1, "item" : [ "ff_plastic", 3]},
{"weight" : 0.0266, "item" : [ "silk", 10]},
{"weight" : 0.0266, "item" : [ "ff_plastic", 6]},
{"weight" : 0.0266, "item" : [ "iodine", 3]},
{"weight" : 0.0266, "item" : [ "ff_mercury", 3]},
{"weight" : 0.1, "item" : [ "oonfortaglobule", 7]},
{"weight" : 0.1, "item" : [ "erithianalgae", 6]},
{"weight" : 0.1, "item" : [ "fuscienceresource", 15]}
]
}]
],
"fuLootStims" : [
[0, {
"pool" : [
{"weight" : 0.008, "item" : [ "ultrastim", 1]},
{"weight" : 0.005, "item" : [ "thesauce", 1]},
{"weight" : 0.01, "item" : [ "powderednarcotics", 1]},
{"weight" : 0.01, "item" : [ "myphisinjector", 1]},
{"weight" : 0.01, "item" : [ "shieldpatch", 1]},
{"weight" : 0.005, "item" : [ "uberstim", 1]},
{"weight" : 0.01, "item" : [ "waterstim", 1]},
{"weight" : 0.008, "item" : [ "protostim", 1]},
{"weight" : 0.008, "item" : [ "serumstim", 1]},
{"weight" : 0.005, "item" : [ "gravstim", 1]},
{"weight" : 0.005, "item" : [ "killpod", 1]},
{"weight" : 0.03, "item" : [ "portaljuice", 1]},
{"weight" : 0.04, "item" : [ "crunchychick", 1]},
{"weight" : 0.02, "item" : [ "crunchychickdeluxe", 1]},
{"weight" : 0.02, "item" : [ "crunchychickevil", 1]},
{"weight" : 0.005, "item" : [ "fu_beebriefcasekevin", 1]},
{"weight" : 0.04, "item" : [ "portablelight", 1]}
]
}]
],
"fuGenes" : [
[0, {
"pool" : [
{"weight" : 0.005, "item" : "gene_adaptivecell"},
{"weight" : 0.005, "item" : "gene_agility"},
{"weight" : 0.005, "item" : "gene_aquacelerity"},
{"weight" : 0.005, "item" : "gene_aquahomeo"},
{"weight" : 0.005, "item" : "gene_assimilate"},
{"weight" : 0.005, "item" : "gene_avian"},
{"weight" : 0.005, "item" : "gene_bioluminescent"},
{"weight" : 0.005, "item" : "gene_adaptivecell"},
{"weight" : 0.005, "item" : "gene_chloroplast"},
{"weight" : 0.005, "item" : "gene_corrosive"},
{"weight" : 0.005, "item" : "gene_cryo"},
{"weight" : 0.005, "item" : "gene_defense"},
{"weight" : 0.005, "item" : "gene_electric"},
{"weight" : 0.005, "item" : "gene_energy"},
{"weight" : 0.005, "item" : "gene_fish"},
{"weight" : 0.005, "item" : "gene_harden"},
{"weight" : 0.005, "item" : "gene_immunity"},
{"weight" : 0.005, "item" : "gene_insectoid"},
{"weight" : 0.005, "item" : "gene_mammal"},
{"weight" : 0.005, "item" : "gene_mimetic"},
{"weight" : 0.005, "item" : "gene_muscle"},
{"weight" : 0.005, "item" : "gene_nervebundle"},
{"weight" : 0.005, "item" : "gene_ocular"},
{"weight" : 0.005, "item" : "gene_poisonous"},
{"weight" : 0.005, "item" : "gene_pyro"},
{"weight" : 0.005, "item" : "gene_rage"},
{"weight" : 0.005, "item" : "gene_reactive"},
{"weight" : 0.005, "item" : "gene_regen"},
{"weight" : 0.005, "item" : "gene_reproductive"},
{"weight" : 0.005, "item" : "gene_resist"},
{"weight" : 0.005, "item" : "gene_skeletal"},
{"weight" : 0.005, "item" : "gene_stealth"},
{"weight" : 0.005, "item" : "gene_stimulant"},
{"weight" : 0.005, "item" : "gene_void"}
]
}]
],
"artifactloot" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : "artifact1"},
{"weight" : 0.1, "item" : "artifact2"},
{"weight" : 0.2, "item" : "artifact3"},
{"weight" : 0.1, "item" : "artifact4"},
{"weight" : 0.15, "item" : "artifact5"},
{"weight" : 0.008, "item" : "ancientlongsword-recipe"},
{"weight" : 0.008, "item" : "ancientquarterstaff-recipe"},
{"weight" : 0.008, "item" : "ancientcarbine-recipe"},
{"weight" : 0.008, "item" : "ancientrapier-recipe"},
{"weight" : 0.008, "item" : "ancientbroadsword-recipe"},
{"weight" : 0.008, "item" : "ancientscythe-recipe"},
{"weight" : 0.008, "item" : "flailancient-recipe"},
{"weight" : 0.008, "item" : "ancientspear-recipe"},
{"weight" : 0.06, "item" : "wrappedbody"},
{"weight" : 0.03, "item" : "wrappedbodyputrid"},
{"weight" : 0.01, "item" : "wrappedbodyalien"}
]
}]
],
"petcollars2" : [
[0, {
"pool" : [
{"weight" : 0.6, "item" : "damagecollar1"},
{"weight" : 0.6, "item" : "healingcollar1"},
{"weight" : 0.6, "item" : "healthcollar1"},
{"weight" : 0.4, "item" : "swimcollar"},
{"weight" : 0.6, "item" : "lightcollar"},
{"weight" : 0.6, "item" : "bouncycollar"},
{"weight" : 0.3, "item" : "weee"},
{"weight" : 0.3, "item" : "partytimecollar"}
]
}],
[1.9, {
"pool" : [
{"weight" : 0.6, "item" : "damagecollar1"},
{"weight" : 0.6, "item" : "healingcollar1"},
{"weight" : 0.6, "item" : "healthcollar1"},
{"weight" : 0.6, "item" : "lightcollar"},
{"weight" : 0.6, "item" : "bouncycollar"},
{"weight" : 0.4, "item" : "swimcollar"},
{"weight" : 0.4, "item" : "lowgravcollar"},
{"weight" : 0.6, "item" : "firebombcollar"},
{"weight" : 0.6, "item" : "icebombcollar"},
{"weight" : 0.6, "item" : "electricbombcollar"},
{"weight" : 0.6, "item" : "poisonbombcollar"},
{"weight" : 0.6, "item" : "fireauracollar"},
{"weight" : 0.6, "item" : "iceauracollar"},
{"weight" : 0.6, "item" : "poisonauracollar"},
{"weight" : 0.6, "item" : "electricauracollar"},
{"weight" : 0.6, "item" : "shadowauracollar"},
{"weight" : 0.6, "item" : "cosmicauracollar"},
{"weight" : 0.6, "item" : "radioactiveauracollar"},
{"weight" : 0.3, "item" : "weee"},
{"weight" : 0.3, "item" : "partytimecollar"}
]
}],
[2.9, {
"pool" : [
{"weight" : 0.3, "item" : "damagecollar1"},
{"weight" : 0.3, "item" : "healingcollar1"},
{"weight" : 0.3, "item" : "healthcollar1"},
{"weight" : 0.3, "item" : "lightcollar"},
{"weight" : 0.3, "item" : "bouncycollar"},
{"weight" : 0.3, "item" : "swimcollar"},
{"weight" : 0.3, "item" : "lowgravcollar"},
{"weight" : 0.3, "item" : "firebombcollar"},
{"weight" : 0.3, "item" : "icebombcollar"},
{"weight" : 0.3, "item" : "electricbombcollar"},
{"weight" : 0.3, "item" : "poisonbombcollar"},
{"weight" : 0.6, "item" : "damagecollar2"},
{"weight" : 0.6, "item" : "healingcollar2"},
{"weight" : 0.6, "item" : "healthcollar2"},
{"weight" : 0.6, "item" : "fireauracollar"},
{"weight" : 0.6, "item" : "iceauracollar"},
{"weight" : 0.6, "item" : "poisonauracollar"},
{"weight" : 0.6, "item" : "electricauracollar"},
{"weight" : 0.6, "item" : "shadowauracollar"},
{"weight" : 0.6, "item" : "cosmicauracollar"},
{"weight" : 0.6, "item" : "radioactiveauracollar"},
{"weight" : 0.3, "item" : "weee"},
{"weight" : 0.3, "item" : "partytimecollar"}
]
}],
[3.9, {
"pool" : [
{"weight" : 0.3, "item" : "damagecollar1"},
{"weight" : 0.3, "item" : "healingcollar1"},
{"weight" : 0.3, "item" : "healthcollar1"},
{"weight" : 0.3, "item" : "lightcollar"},
{"weight" : 0.3, "item" : "bouncycollar"},
{"weight" : 0.3, "item" : "firebombcollar"},
{"weight" : 0.3, "item" : "icebombcollar"},
{"weight" : 0.3, "item" : "electricbombcollar"},
{"weight" : 0.3, "item" : "poisonbombcollar"},
{"weight" : 0.3, "item" : "shadowcollar"},
{"weight" : 0.3, "item" : "slaughterbite"},
{"weight" : 0.6, "item" : "damagecollar2"},
{"weight" : 0.6, "item" : "healingcollar2"},
{"weight" : 0.6, "item" : "healthcollar2"},
{"weight" : 0.6, "item" : "obliviouscollar"},
{"weight" : 0.6, "item" : "fireauracollar"},
{"weight" : 0.6, "item" : "iceauracollar"},
{"weight" : 0.6, "item" : "poisonauracollar"},
{"weight" : 0.6, "item" : "electricauracollar"},
{"weight" : 0.6, "item" : "shadowauracollar"},
{"weight" : 0.6, "item" : "cosmicauracollar"},
{"weight" : 0.6, "item" : "radioactiveauracollar"},
{"weight" : 0.3, "item" : "weee"},
{"weight" : 0.3, "item" : "partytimecollar"}
]
}],
[4.9, {
"pool" : [
{"weight" : 0.1, "item" : "damagecollar1"},
{"weight" : 0.1, "item" : "healingcollar1"},
{"weight" : 0.1, "item" : "healthcollar1"},
{"weight" : 0.1, "item" : "lightcollar"},
{"weight" : 0.1, "item" : "bouncycollar"},
{"weight" : 0.1, "item" : "firebombcollar"},
{"weight" : 0.1, "item" : "icebombcollar"},
{"weight" : 0.1, "item" : "electricbombcollar"},
{"weight" : 0.1, "item" : "poisonbombcollar"},
{"weight" : 0.3, "item" : "damagecollar2"},
{"weight" : 0.3, "item" : "healingcollar2"},
{"weight" : 0.3, "item" : "healthcollar2"},
{"weight" : 0.3, "item" : "obliviouscollar"},
{"weight" : 0.5, "item" : "shadowcollar"},
{"weight" : 0.5, "item" : "slaughterbite"},
{"weight" : 0.6, "item" : "damagecollar3"},
{"weight" : 0.6, "item" : "healingcollar3"},
{"weight" : 0.6, "item" : "healthcollar3"},
{"weight" : 0.6, "item" : "fireauracollar"},
{"weight" : 0.6, "item" : "iceauracollar"},
{"weight" : 0.6, "item" : "poisonauracollar"},
{"weight" : 0.6, "item" : "electricauracollar"},
{"weight" : 0.6, "item" : "shadowauracollar"},
{"weight" : 0.6, "item" : "cosmicauracollar"},
{"weight" : 0.6, "item" : "radioactiveauracollar"},
{"weight" : 0.3, "item" : "weee"},
{"weight" : 0.3, "item" : "partytimecollar"}
]
}],
[5.9, {
"pool" : [
{"weight" : 0.1, "item" : "damagecollar1"},
{"weight" : 0.1, "item" : "healingcollar1"},
{"weight" : 0.1, "item" : "healthcollar1"},
{"weight" : 0.1, "item" : "lightcollar"},
{"weight" : 0.1, "item" : "bouncycollar"},
{"weight" : 0.5, "item" : "shadowcollar"},
{"weight" : 0.5, "item" : "slaughterbite"},
{"weight" : 0.1, "item" : "firebombcollar"},
{"weight" : 0.1, "item" : "icebombcollar"},
{"weight" : 0.1, "item" : "electricbombcollar"},
{"weight" : 0.1, "item" : "poisonbombcollar"},
{"weight" : 0.3, "item" : "damagecollar2"},
{"weight" : 0.3, "item" : "healingcollar2"},
{"weight" : 0.3, "item" : "healthcollar2"},
{"weight" : 0.3, "item" : "obliviouscollar"},
{"weight" : 0.6, "item" : "damagecollar3"},
{"weight" : 0.6, "item" : "healingcollar3"},
{"weight" : 0.6, "item" : "healthcollar3"},
{"weight" : 0.6, "item" : "fireauracollar"},
{"weight" : 0.6, "item" : "iceauracollar"},
{"weight" : 0.6, "item" : "poisonauracollar"},
{"weight" : 0.6, "item" : "electricauracollar"},
{"weight" : 0.6, "item" : "shadowauracollar"},
{"weight" : 0.6, "item" : "cosmicauracollar"},
{"weight" : 0.6, "item" : "radioactiveauracollar"},
{"weight" : 0.3, "item" : "weee"},
{"weight" : 0.3, "item" : "partytimecollar"}
]
}]
],
"fuspecialLoot" : [
[0, {
"pool" : [
{"weight" : 0.003, "pool" : "artifactloot" },
{"weight" : 0.08, "item" : "quantumball"},
{"weight" : 0.08, "item" : "bluegravball"},
{"weight" : 0.08, "item" : "orangegravball"},
{"weight" : 0.04, "item" : [ "mantizanwine", 1]},
{"weight" : 0.04, "item" : [ "duncecap", 1]},
{"weight" : 0.01, "item" : [ "labroof-recipe", 1]},
{"weight" : 0.01, "item" : [ "labtile-recipe", 1]},
{"weight" : 0.01, "item" : [ "labwall-recipe", 1]},
{"weight" : 0.01, "item" : [ "labwall1-recipe", 1]},
{"weight" : 0.01, "item" : [ "labbeam-recipe", 1]},
{"weight" : 0.01, "item" : [ "labsupport-recipe", 1]},
{"weight" : 0.01, "item" : [ "labwallfence-recipe", 1]},
{"weight" : 0.01, "item" : [ "labframedglass-recipe", 1]},
{"weight" : 0.01, "item" : [ "hitechmetalblock-recipe", 1]},
{"weight" : 0.01, "item" : [ "fureinforcedglass-recipe", 1]},
{"weight" : 0.01, "item" : [ "labgirdir-recipe", 1]},
{"weight" : 0.003, "item" : [ "yellowguardianback-recipe", 1]},
{"weight" : 0.003, "item" : [ "blueguardianback-recipe", 1]},
{"weight" : 0.003, "item" : [ "pinkguardianback-recipe", 1]},
{"weight" : 0.003, "item" : [ "greenguardianback-recipe", 1]},
{"weight" : 0.03, "item" : [ "ff_labchest-recipe", 1]},
{"weight" : 0.01, "item" : [ "ff_stonechest-recipe", 1]},
{"weight" : 0.01, "item" : [ "ff_stonechest2-recipe", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff2-recipe", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff3-recipe", 1]},
{"weight" : 0.009, "item" : [ "floatstaff2", 1]},
{"weight" : 0.01, "item" : [ "ff_gasmask", 1]},
{"weight" : 0.02, "item" : [ "ff_divingmaskhead", 1]},
{"weight" : 0.02, "item" : [ "fuearphones-recipe", 1]},
{"weight" : 0.007, "item" : [ "fuhoodedmask-recipe", 1]},
{"weight" : 0.02, "item" : [ "fumementomori", 1]},
{"weight" : 0.03, "item" : [ "headinjar", 1]},
{"weight" : 0.01, "item" : [ "gyrostabilizer", 1]},
{"weight" : 0.01, "item" : [ "fu_monsterdetector", 1]},
{"weight" : 0.008, "item" : [ "herocowl", 1]},
{"weight" : 0.003, "item" : [ "seekerhelm", 1]},
{"weight" : 0.008, "item" : [ "kungfuheadband", 1]},
{"weight" : 0.03, "item" : [ "jokeglasses", 1]},
{"weight" : 0.03, "item" : [ "duncecap", 1]},
{"weight" : 0.01, "item" : [ "ffwizardhat", 1]},
{"weight" : 0.03, "item" : ["ironkatana2", 1]},
{"weight" : 0.1, "pool" : "fucodexRandom" },
{"weight" : 0.04, "item" : "randomharpoongun"},
{"weight" : 0.02, "item" : "dblade"},
{"weight" : 0.02, "item" : "dbladelong"},
{"weight" : 0.009, "item" : "flailcookie"},
{"weight" : 0.009, "item" : "flailtrollfist"}
]
}],
[1.9, {
"pool" : [
{"weight" : 0.08, "pool" : "fuGravBalls"},
{"weight" : 0.05, "pool" : "fuLabParts"},
{"weight" : 0.003, "pool" : "fuGuardianWings"},
{"weight" : 0.04, "item" : [ "duncecap", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff2-recipe", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff3-recipe", 1]},
{"weight" : 0.009, "item" : [ "ff_gasmask", 1]},
{"weight" : 0.009, "item" : [ "ff_divingmaskhead", 1]},
{"weight" : 0.009, "item" : [ "armoredsnowpants", 1]},
{"weight" : 0.025, "item" : [ "fuearphones-recipe", 1]},
{"weight" : 0.005, "item" : [ "fuhoodedmask-recipe", 1]},
{"weight" : 0.04, "item" : [ "fumementomori", 1]},
{"weight" : 0.03, "item" : [ "headinjar", 1]},
{"weight" : 0.01, "item" : [ "gyrostabilizer", 1]},
{"weight" : 0.01, "item" : [ "fu_monsterdetector", 1]},
{"weight" : 0.004, "item" : [ "herocowl", 1]},
{"weight" : 0.0035, "item" : [ "seekerhelm", 1]},
{"weight" : 0.008, "item" : [ "kungfuheadband", 1]},
{"weight" : 0.035, "item" : [ "jokeglasses", 1]},
{"weight" : 0.004, "item" : [ "armcannon-recipe", 1]},
{"weight" : 0.003, "item" : [ "verdantcarbine-recipe", 1]},
{"weight" : 0.003, "item" : [ "verdantrailgun-recipe", 1]},
{"weight" : 0.003, "item" : [ "druidstaff-recipe", 1]},
{"weight" : 0.003, "item" : [ "biopistol-recipe", 1]},
{"weight" : 0.007, "item" : [ "laspistol", 1]},
{"weight" : 0.007, "item" : [ "bloodyknife", 1]},
{"weight" : 0.005, "item" : [ "ffwizardhat", 1]},
{"weight" : 0.09, "item" : ["ironkatana2", 1]},
{"weight" : 0.1, "pool" : "fucodexRandom" },
{"weight" : 0.003, "item" : "flailcookie"},
{"weight" : 0.003, "item" : "flailtrollfist"}
]
}],
[2.9, {
"pool" : [
{"weight" : 0.08, "pool" : "fuGravBalls"},
{"weight" : 0.05, "pool" : "fuLabParts"},
{"weight" : 0.003, "pool" : "fuGuardianWings"},
{"weight" : 0.04, "item" : [ "duncecap", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff2-recipe", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff3-recipe", 1]},
{"weight" : 0.009, "item" : [ "ff_gasmask", 1]},
{"weight" : 0.09, "item" : ["ironkatana2", 1]},
{"weight" : 0.01, "item" : ["gumballgun", 1]},
{"weight" : 0.009, "item" : [ "ff_divingmaskhead", 1]},
{"weight" : 0.009, "item" : [ "armoredsnowpants", 1]},
{"weight" : 0.025, "item" : [ "fuearphones-recipe", 1]},
{"weight" : 0.005, "item" : [ "fuhoodedmask-recipe", 1]},
{"weight" : 0.04, "item" : [ "fumementomori", 1]},
{"weight" : 0.03, "item" : [ "headinjar", 1]},
{"weight" : 0.01, "item" : [ "gyrostabilizer", 1]},
{"weight" : 0.01, "item" : [ "fu_monsterdetector", 1]},
{"weight" : 0.004, "item" : [ "herocowl", 1]},
{"weight" : 0.0035, "item" : [ "seekerhelm", 1]},
{"weight" : 0.008, "item" : [ "kungfuheadband", 1]},
{"weight" : 0.035, "item" : [ "jokeglasses", 1]},
{"weight" : 0.004, "item" : [ "armcannon-recipe", 1]},
{"weight" : 0.003, "item" : [ "verdantcarbine-recipe", 1]},
{"weight" : 0.003, "item" : [ "verdantrailgun-recipe", 1]},
{"weight" : 0.003, "item" : [ "druidstaff-recipe", 1]},
{"weight" : 0.003, "item" : [ "biopistol-recipe", 1]},
{"weight" : 0.007, "item" : [ "laspistol", 1]},
{"weight" : 0.007, "item" : [ "bloodyknife", 1]},
{"weight" : 0.005, "item" : [ "ffwizardhat", 1]},
{"weight" : 0.004, "item" : [ "fupowerglove", 1]},
{"weight" : 0.004, "item" : [ "fugoldengun", 1]},
{"weight" : 0.007, "item" : [ "facebreaker", 1]},
{"weight" : 0.004, "item" : [ "gravitonpistolunique", 1]},
{"weight" : 0.004, "item" : [ "fuicaruswings", 1]},
{"weight" : 0.004, "item" : [ "fufallenangelwings", 1]},
{"weight" : 0.004, "item" : [ "fufireangelwings", 1]},
{"weight" : 0.004, "item" : ["bmcglowscoutvisor-recipe", 1]},
{"weight" : 0.003, "item" : "randomharpoongun"},
{"weight" : 0.1, "pool" : "fucodexRandom" },
{"weight" : 0.001, "item" : "flailcookie"},
{"weight" : 0.001, "item" : "flailtrollfist"}
]
}],
[3.9, {
"pool" : [
{"weight" : 0.08, "pool" : "fuGravBalls"},
{"weight" : 0.05, "pool" : "fuLabParts"},
{"weight" : 0.003, "pool" : "fuGuardianWings"},
{"weight" : 0.01, "pool" : "arconLoot"},
{"weight" : 0.02, "item" : "deathbringer-recipe"},
{"weight" : 0.02, "item" : "shadowburst-recipe"},
{"weight" : 0.07, "item" : [ "duncecap", 1]},
{"weight" : 0.01, "item" : [ "freedombird", 1]},
{"weight" : 0.01, "item" : ["gumballgun", 1]},
{"weight" : 0.003, "item" : [ "cultiststaff2-recipe", 1]},
{"weight" : 0.003, "item" : [ "cultiststaff3-recipe", 1]},
{"weight" : 0.05, "item" : [ "ff_gasmask", 1]},
{"weight" : 0.05, "item" : [ "ff_divingmaskhead", 1]},
{"weight" : 0.05, "item" : [ "armoredsnowpants", 1]},
{"weight" : 0.05, "item" : [ "fuearphones-recipe", 1]},
{"weight" : 0.03, "item" : [ "fuhoodedmask-recipe", 1]},
{"weight" : 0.04, "item" : [ "fumementomori", 1]},
{"weight" : 0.07, "item" : [ "headinjar", 1]},
{"weight" : 0.01, "item" : [ "gyrostabilizer", 1]},
{"weight" : 0.01, "item" : [ "fu_monsterdetector", 1]},
{"weight" : 0.008, "item" : [ "herocowl", 1]},
{"weight" : 0.008, "item" : [ "seekerhelm", 1]},
{"weight" : 0.03, "item" : [ "kungfuheadband", 1]},
{"weight" : 0.03, "item" : [ "jokeglasses", 1]},
{"weight" : 0.002, "item" : [ "murdermask", 1]},
{"weight" : 0.002, "item" : [ "murdermachete", 1]},
{"weight" : 0.004, "item" : [ "armcannon-recipe", 1]},
{"weight" : 0.003, "item" : [ "verdantcarbine-recipe", 1]},
{"weight" : 0.003, "item" : [ "verdantrailgun-recipe", 1]},
{"weight" : 0.003, "item" : [ "druidstaff-recipe", 1]},
{"weight" : 0.003, "item" : [ "biopistol-recipe", 1]},
{"weight" : 0.06, "item" : [ "laspistol", 1]},
{"weight" : 0.009, "item" : [ "bloodyknife", 1]},
{"weight" : 0.03, "item" : [ "ffwizardhat", 1]},
{"weight" : 0.004, "item" : [ "fupowerglove", 1]},
{"weight" : 0.004, "item" : [ "fugoldengun", 1]},
{"weight" : 0.007, "item" : [ "facebreaker", 1]},
{"weight" : 0.004, "item" : [ "gravitonpistolunique", 1]},
{"weight" : 0.003, "item" : [ "skullreaperhelm", 1]},
{"weight" : 0.002, "item" : [ "skullreaperhelm2", 1]},
{"weight" : 0.001, "item" : [ "skullreaperhelm3", 1]},
{"weight" : 0.003, "item" : [ "powerhelm", 1]},
{"weight" : 0.01, "item" : [ "enforcerhelm-recipe", 1]},
{"weight" : 0.004, "item" : [ "fuicaruswings", 1]},
{"weight" : 0.004, "item" : [ "fufallenangelwings", 1]},
{"weight" : 0.004, "item" : [ "fufireangelwings", 1]},
{"weight" : 0.004, "item" : ["bmcglowscoutvisor-recipe", 1]},
{"weight" : 0.007, "item" : "randomharpoongun"},
{"weight" : 0.009, "item" : [ "shovelspear", 1]},
{"weight" : 0.012, "item" : [ "fushovelspear", 1]},
{"weight" : 0.01, "item" : [ "panishment", 1]},
{"weight" : 0.002, "item" : [ "burrowerrang", 1]},
{"weight" : 0.01, "item" : [ "vai-recipe", 1]},
{"weight" : 0.02, "item" : ["teslagun2", 1]},
{"weight" : 0.01, "item" : "razorneedler"},
{"weight" : 0.01, "item" : "radneedler"},
{"weight" : 0.01, "item" : "scorchneedler"},
{"weight" : 0.01, "item" : "shockneedler"},
{"weight" : 0.01, "item" : "toxicneedler"},
{"weight" : 0.004, "item" : "teslagun2"},
{"weight" : 0.008, "item" : [ "ff_bubblegun2", 1]},
{"weight" : 0.005, "item" : [ "erchiusghostback2", 1]},
{"weight" : 0.003, "item" : [ "erchiusghostback3", 1]},
{"weight" : 0.008, "item" : [ "randomharpoongun2", 1]},
{"weight" : 0.008, "item" : [ "sniperknife2", 1]},
{"weight" : 0.008, "item" : [ "friendmaker2", 1]},
{"weight" : 0.004, "item" : [ "tethersnap2", 1]},
{"weight" : 0.004, "item" : [ "tethersnap3", 1]},
{"weight" : 0.004, "item" : [ "iceaxe2", 1]},
{"weight" : 0.004, "item" : [ "classiczapper", 1]},
{"weight" : 0.09, "item" : ["ironkatana2", 1]},
{"weight" : 0.001, "item" : "shockarang"},
//removed bosses loot
{"weight" : 0.001, "item" : "fuapexclaws"},
{"weight" : 0.001, "item" : "stormwarden"},
{"weight" : 0.001, "item" : "gorgolithtail"},
{"weight" : 0.001, "item" : "flailcookie"},
{"weight" : 0.001, "item" : "flailtrollfist"},
{"weight" : 0.1, "pool" : "fucodexRandom" }
]
}],
[4.9, {
"pool" : [
{"weight" : 0.08, "pool" : "fuGravBalls"},
{"weight" : 0.05, "pool" : "fuLabParts"},
{"weight" : 0.003, "pool" : "fuGuardianWings"},
{"weight" : 0.01, "pool" : "arconLoot"},
{"weight" : 0.004, "item" : "deathbringer"},
{"weight" : 0.004, "item" : "deathbringer-recipe"},
{"weight" : 0.004, "item" : "shadowburst"},
{"weight" : 0.004, "item" : "shadowburst-recipe"},
{"weight" : 0.04, "item" : [ "duncecap", 1]},
{"weight" : 0.01, "item" : ["gumballgun", 1]},
{"weight" : 0.01, "item" : [ "freedombird", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff2-recipe", 1]},
{"weight" : 0.001, "item" : [ "cultiststaff3-recipe", 1]},
{"weight" : 0.009, "item" : [ "ff_gasmask", 1]},
{"weight" : 0.009, "item" : [ "ff_divingmaskhead", 1]},
{"weight" : 0.009, "item" : [ "armoredsnowpants", 1]},
{"weight" : 0.025, "item" : [ "fuearphones-recipe", 1]},
{"weight" : 0.005, "item" : [ "fuhoodedmask-recipe", 1]},
{"weight" : 0.04, "item" : [ "fumementomori", 1]},
{"weight" : 0.03, "item" : [ "headinjar", 1]},
{"weight" : 0.03, "item" : [ "shovelspear", 1]},
{"weight" : 0.03, "item" : [ "fushovelspear", 1]},
{"weight" : 0.01, "item" : [ "gyrostabilizer", 1]},
{"weight" : 0.01, "item" : [ "fu_monsterdetector", 1]},
{"weight" : 0.004, "item" : [ "herocowl", 1]},
{"weight" : 0.0035, "item" : [ "seekerhelm", 1]},
{"weight" : 0.002, "item" : [ "murdermask", 1]},