-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfftreasure.treasurepools
2167 lines (2136 loc) · 105 KB
/
fftreasure.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
{
"arconLoot" : [
[0, {
"pool" : [
{"weight" : 0.09, "item" : "conquerorhead-recipe"},
{"weight" : 0.09, "item" : "arconback-recipe"},
{"weight" : 0.09, "item" : "conquerorchest-recipe"},
{"weight" : 0.09, "item" : "conquerorlegs-recipe"},
{"weight" : 0.09, "item" : "arconshield-recipe"},
{"weight" : 0.10, "item" : "arconrifle-recipe"},
{"weight" : 0.10, "item" : "warden-recipe"},
{"weight" : 0.10, "item" : "longinus-recipe"},
{"weight" : 0.10, "item" : "zenith-recipe"},
{"weight" : 0.10, "item" : "blastcannon-recipe"},
{"weight" : 0.10, "item" : "arconcannon-recipe"}
]
}]
],
"fusalvageComponent" : [
[0, {
"pool" : []
}],
[2.9, {
"pool" : [
{"weight" : 2, "item" : "salvagearm"},
{"weight" : 1, "item" : "salvagelegs"},
{"weight" : 2, "item" : "salvagebody"},
{"weight" : 1, "item" : "salvagebooster"},
{"weight" : 3, "item" : "salvagetier4"}
]
}],
[3.9, {
"pool" : [
{"weight" : 2.5, "item" : "salvagearm"},
{"weight" : 1, "item" : "salvagelegs"},
{"weight" : 1.5, "item" : "salvagebody"},
{"weight" : 1, "item" : "salvagebooster"},
{"weight" : 3, "item" : "salvagetier5"}
]
}],
[4.9, {
"pool" : [
{"weight" : 3, "item" : "salvagearm"},
{"weight" : 1, "item" : "salvagelegs"},
{"weight" : 2, "item" : "salvagebody"},
{"weight" : 1, "item" : "salvagebooster"},
{"weight" : 3.5, "item" : "salvagetier6"}
]
}]
],
"furobotTreasure" : [
[0, {
"pool" : [
{"weight" : 0.3, "pool" : "money"},
{"weight" : 0.02, "pool" : "augments"},
{"weight" : 0.05, "item" : "manipulatormodule"},
{"weight" : 0.3, "item" : "wire"},
{"weight" : 0.2, "item" : "stickofram"},
{"weight" : 0.01, "pool" : "fuprecursorResources"},
{"weight" : 0.2, "pool" : "fusalvageComponent"}
],
"poolRounds" : [
[0.4, 0],
[0.5, 1],
[0.1, 2]
]
}],
[1.9, {
"pool" : [
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.63, "pool" : "money"},
{"weight" : 0.06, "item" : "manipulatormodule"},
{"weight" : 0.10, "item" : "laserdiode"},
{"weight" : 0.10, "item" : "wire"},
{"weight" : 0.10, "item" : "siliconboard"},
{"weight" : 0.01, "pool" : "fuprecursorResources"},
{"weight" : 0.1, "pool" : "fusalvageComponent"}
],
"poolRounds" : [
[0.2, 0],
[0.6, 1],
[0.2, 2]
]
}],
[3.9, {
"pool" : [
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.48, "pool" : "money"},
{"weight" : 0.06, "item" : "manipulatormodule"},
{"weight" : 0.15, "item" : "laserdiode"},
{"weight" : 0.15, "item" : "staticcell"},
{"weight" : 0.15, "item" : "siliconboard"},
{"weight" : 0.01, "pool" : "fuprecursorResources"},
{"weight" : 0.1, "pool" : "fusalvageComponent"}
],
"poolRounds" : [
[0.1, 0],
[0.6, 1],
[0.3, 2]
]
}]
],
"furobotHunting" : [
[0, {
"pool" : [
{"weight" : 0.1, "item" : "stickofram"},
{"weight" : 0.1, "item" : "siliconboard"},
{"weight" : 0.2, "item" : "smallbattery"},
{"weight" : 0.2, "item" : "wire"},
{"weight" : 0.1, "item" : "ff_spareparts"},
{"weight" : 0.1, "item" : "laserdiode"},
{"weight" : 0.1, "pool" : "fusalvageComponent"}
]
}]
],
"furobotHuntingnoChassis" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : "stickofram"},
{"weight" : 0.2, "item" : "siliconboard"},
{"weight" : 0.2, "item" : "smallbattery"},
{"weight" : 0.2, "item" : "wire"},
{"weight" : 0.2, "pool" : "fusalvageComponent"}
]
}]
],
"fuspaceElevatorChest" : [
[1, {
"fill" : [
{"pool" : "valuableTreasure"}
],
"pool" : [
{"weight" : 0.5, "pool" : "ffbasicTreasure"},
{"weight" : 0.5, "pool" : "techTreasure"},
{"weight" : 0.08, "pool" : "arconLoot"},
{"weight" : 0.5, "pool" : "ffchemTreasure"},
{"weight" : 0.5, "pool" : "ffwastelandChest"},
{"weight" : 0.5, "pool" : "ffmetallicChest"}
],
"poolRounds" : [
[0.85, 1],
[0.70, 2],
[0.60, 3],
[0.55, 4],
[0.40, 5]
],
"allowDuplication" : false
}]
],
"fficeChestTreasure" : [
[1, {
"fill" : [
{"pool" : "valuableTreasure"}
],
"pool" : [
{"weight" : 0.5, "pool" : "basicTreasure"},
{"weight" : 0.5, "pool" : "fficeTreasure"}
],
"poolRounds" : [
[0.05, 1],
[0.40, 2],
[0.30, 3],
[0.15, 4],
[0.10, 5]
],
"allowDuplication" : false
}]
],
"fficeTreasure" : [
[1, {
"pool" : [
{"weight" : 0.001, "pool" : "artifactloot" },
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.03, "pool" : "petcollars2"},
{"weight" : 1.0, "item" : ["snowball", 10]},
{"weight" : 0.1, "item" : ["mediumsnowball", 2]},
{"weight" : 0.3, "item" : "snowgun"}, // TODO: replace old gun
{"weight" : 0.2, "item" : ["mediumsnowball", 1]},
{"weight" : 0.3, "item" : "survivalgearback"},
{"weight" : 0.3, "item" : "snowinfantryhead"},
{"weight" : 0.3, "item" : "snowinfantrychest"},
{"weight" : 0.3, "item" : "snowinfantrypants"},
{"weight" : 0.05, "item" : "wrappedbody"},
{"weight" : 0.01, "item" : "wrappedbodyputrid"},
{"weight" : 0.005, "item" : "wrappedbodyalien"},
{"weight" : 0.09, "item" : ["icecrystal", 1]},
{"weight" : 0.09, "item" : ["crystal", 3]},
{"weight" : 0.08, "item" : ["icecrystal", 2]},
{"weight" : 0.08, "item" : ["crystal", 6]},
{"weight" : 0.08, "item" : ["isogenbar", 3]},
{"weight" : 0.1, "item" : ["cryonicextract", 1]},
{"weight" : 0.09, "item" : ["cryonicextract", 2]},
{"weight" : 0.08, "item" : ["cryonicextract", 3]},
{"weight" : 0.07, "item" : ["cryonicextract", 4]},
{"weight" : 0.1, "item" : "snowcone"},
{"weight" : 0.02, "item" : "frostcannonarm-recipe"},
{"weight" : 0.02, "item" : "fufreezecannon-recipe"},
{"weight" : 0.02, "item" : "chargemachinegun-recipe"},
{"weight" : 0.07, "item" : "ff_icechucker"}
]
}]
],
"ffchemTreasure" : [
[1, {
"pool" : [
{"weight" : 0.008, "pool" : "augments"},
{"weight" : 0.008, "pool" : "petcollars2"},
{"weight" : 0.04, "pool" : "fuBasicChemMaterials"},
{"weight" : 0.01, "pool" : "fuGenes"},
{"weight" : 0.5, "item" : ["bandage", 3]},
{"weight" : 0.05, "item" : ["molotov", 3]},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.01, "item" : [ "ultrastim", 1]},
{"weight" : 0.01, "item" : [ "thesauce", 1]},
{"weight" : 0.01, "item" : [ "shieldpatch", 1]},
{"weight" : 0.01, "item" : [ "thesauce", 1]},
{"weight" : 0.01, "item" : [ "uberstim", 1]},
{"weight" : 0.01, "item" : [ "waterstim", 1]},
{"weight" : 0.01, "item" : [ "bagoffarts", 1]},
{"weight" : 0.01, "item" : [ "protostim", 1]},
{"weight" : 0.01, "item" : [ "serumstim", 1]},
{"weight" : 0.01, "item" : [ "gravstim", 1]},
{"weight" : 0.01, "item" : [ "portaljuice", 1]},
{"weight" : 0.04, "item" : [ "crunchychick", 1]},
{"weight" : 0.04, "item" : [ "portablelight", 1]},
{"weight" : 0.01, "item" : [ "honeyboon", 1]},
{"weight" : 0.03, "item" : [ "ff_labchest-recipe", 1]},
{"weight" : 0.009, "item" : [ "ff_gasmask", 1]}
],
"poolRounds" : [
[0.05, 1],
[0.40, 2],
[0.30, 3],
[0.15, 4],
[0.10, 5]
],
"allowDuplication" : false
}]
],
"ffbasicTreasure" : [
[1, {
"pool" : [
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.03, "pool" : "petcollars2"},
{"weight" : 0.8, "pool" : "fuBasicMaterials"},
{"weight" : 0.05, "pool" : "fuspecialLoot"},
{"weight" : 0.1, "pool" : "fuGenes"},
{"weight" : 0.20, "pool" : "money"},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.15, "pool" : "ore"},
{"weight" : 0.1, "pool" : "weapon"},
{"weight" : 0.1, "pool" : "food"},
{"weight" : 0.05, "pool" : "seed"},
{"weight" : 0.04, "pool" : "tool"},
{"weight" : 0.04, "pool" : "shield"},
{"weight" : 0.012, "pool" : "instrument"},
{"weight" : 0.005, "pool" : "costume"},
{"weight" : 0.003, "item" : "teleportercore"},
{"weight" : 0.025, "item" : "torch" }
],
"poolRounds" : [
[0.23, 1],
[0.33, 2],
[0.33, 3],
[0.33, 4],
[0.23, 5]
],
"allowDuplication" : true
}]
],
"bogLoot" : [
[1, {
"pool" : [
{"weight" : 0.001, "pool" : "artifactloot" },
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.03, "pool" : "petcollars2"},
{"weight" : 0.40, "pool" : "money"},
{"weight" : 0.08, "item" : ["beesilk", 5]},
{"weight" : 0.333, "item" : [ "hardenedcarapace", 1]},
{"weight" : 0.333, "item" : [ "vanusflower", 1]},
{"weight" : 0.333, "item" : [ "sharpenedclaw", 1]},
{"weight" : 0.333, "item" : [ "venomsample", 1]},
{"weight" : 0.25, "item" : [ "algaegreen", 1]},
{"weight" : 0.25, "item" : [ "fuscienceresource", 1]},
{"weight" : 0.25, "item" : [ "fuscienceresource", 1]},
{"weight" : 0.25, "item" : [ "fuscienceresource", 1]} ,
{"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.09, "item" : ["thornfruit", 5]},
{"weight" : 0.05, "item" : ["thorngrenade", 3]},
{"weight" : 0.005, "item" : "coolfezhead"},
{"weight" : 0.1, "item" : "thornjuice"},
{"weight" : 0.05, "item" : "wrappedbody"},
{"weight" : 0.01, "item" : "wrappedbodyputrid"},
{"weight" : 0.005, "item" : "wrappedbodyalien"},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.15, "pool" : "ore"},
{"weight" : 0.05, "pool" : "weapon"},
{"weight" : 0.1, "pool" : "food"},
{"weight" : 0.05, "pool" : "seed"},
{"weight" : 0.04, "pool" : "tool"},
{"weight" : 0.04, "pool" : "shield"},
{"weight" : 0.012, "pool" : "instrument"},
{"weight" : 0.005, "pool" : "costume"},
{"weight" : 0.003, "item" : "teleportercore"},
{"weight" : 0.025, "item" : "torch" },
{"weight" : 0.0333, "item" : [ "fuscienceresource", 5]},
{"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", 7]},
{"weight" : 0.0511, "item" : [ "glassmaterial", 25]},
{"weight" : 0.0311, "item" : [ "protociteore", 5]},
{"weight" : 0.0311, "item" : [ "penumbriteore", 5]},
{"weight" : 0.0311, "item" : [ "liquidwater", 25]},
{"weight" : 0.0311, "item" : [ "liquidwater", 5]},
{"weight" : 0.0411, "item" : [ "ff_spareparts", 5]},
{"weight" : 0.0200, "item" : [ "fleshstrand", 50]},
{"weight" : 0.0100, "item" : [ "fleshstrand", 100]},
{"weight" : 0.0100, "item" : [ "cellmatter", 50]},
{"weight" : 0.0100, "item" : [ "cellmatter", 50]},
{"weight" : 0.0566, "item" : [ "biospore", 5]},
{"weight" : 0.0566, "item" : [ "cellmatter", 5]},
{"weight" : 0.0566, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.0566, "item" : [ "fuscienceresource", 5]},
{"weight" : 0.0566, "item" : [ "methanol", 30]},
{"weight" : 0.0566, "item" : [ "phosphorus", 3]},
{"weight" : 0.0566, "item" : [ "silk", 15]},
{"weight" : 0.0566, "item" : [ "agaranichor", 12]},
{"weight" : 0.0426, "item" : [ "agaranichor", 24]},
{"weight" : 0.0566, "item" : [ "ff_plastic", 6]},
{"weight" : 0.0566, "item" : [ "iodine", 4]},
{"weight" : 0.0566, "item" : [ "ff_mercury", 6]},
{"weight" : 0.01, "item" : [ "greenguardianback-recipe", 1]}
],
"poolRounds" : [
[0.33, 1],
[0.43, 2],
[0.43, 3],
[0.33, 4],
[0.23, 5]
],
"allowDuplication" : true
}
]
],
"ffwastelandChest" : [
[1, {
"pool" : [
{"weight" : 0.001, "pool" : "artifactloot" },
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.03, "pool" : "petcollars2"},
{"weight" : 0.40, "pool" : "money"},
{"weight" : 0.20, "pool" : "money"},
{"weight" : 0.333, "item" : [ "polymer", 20]},
{"weight" : 0.1, "item" : "thornjuice"},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.15, "pool" : "ore"},
{"weight" : 0.1, "pool" : "weapon"},
{"weight" : 0.1, "pool" : "food"},
{"weight" : 0.05, "pool" : "seed"},
{"weight" : 0.04, "pool" : "tool"},
{"weight" : 0.04, "pool" : "shield"},
{"weight" : 0.012, "pool" : "instrument"},
{"weight" : 0.005, "pool" : "costume"},
{"weight" : 0.003, "item" : "teleportercore"},
{"weight" : 0.025, "item" : "torch" },
{"weight" : 0.008, "item" : ["isogenbar", 1]},
{"weight" : 0.008, "item" : ["pyreitebar", 1]},
{"weight" : 0.001, "item" : ["tritaniumbar", 1]},
{"weight" : 0.001, "item" : ["nocxiumbar", 1]},
{"weight" : 0.008, "item" : ["xithricitecrystal", 1]},
{"weight" : 0.0211, "item" : [ "glassmaterial", 25]},
{"weight" : 0.0211, "item" : [ "protociteore", 5]},
{"weight" : 0.0211, "item" : [ "penumbriteore", 5]},
{"weight" : 0.0211, "item" : [ "liquidwater", 25]},
{"weight" : 0.0211, "item" : [ "liquidwater", 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.05, "item" : "wrappedbody"},
{"weight" : 0.01, "item" : "wrappedbodyputrid"},
{"weight" : 0.005, "item" : "wrappedbodyalien"},
{"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]},
{"weight" : 0.04, "item" : [ "ultrastim", 1]},
{"weight" : 0.04, "item" : [ "thesauce", 1]},
{"weight" : 0.04, "item" : [ "shieldpatch", 1]},
{"weight" : 0.04, "item" : [ "thesauce", 1]},
{"weight" : 0.04, "item" : [ "uberstim", 1]},
{"weight" : 0.04, "item" : [ "waterstim", 1]},
{"weight" : 0.04, "item" : [ "protostim", 1]},
{"weight" : 0.04, "item" : [ "serumstim", 1]},
{"weight" : 0.04, "item" : [ "gravstim", 1]},
{"weight" : 0.04, "item" : [ "portaljuice", 1]},
{"weight" : 0.04, "item" : [ "crunchychick", 1]},
{"weight" : 0.04, "item" : [ "portablelight", 1]},
{"weight" : 0.04, "item" : [ "honeyboon", 1]},
{"weight" : 0.01, "item" : [ "trooperhead", 1]},
{"weight" : 0.01, "item" : [ "trooperhead2", 1]},
{"weight" : 0.01, "item" : [ "beammasterhelm", 1]},
{"weight" : 0.008, "item" : [ "fusteampunkgun", 1]},
{"weight" : 0.008, "item" : [ "fusteampunkhead", 1]},
{"weight" : 0.008, "item" : [ "fusteampunkchest", 1]},
{"weight" : 0.008, "item" : [ "fusteampunklegs", 1]},
{"weight" : 0.012, "item" : [ "longarmpistol-recipe", 1]},
{"weight" : 0.012, "item" : [ "longarm-recipe", 1]},
{"weight" : 0.0006, "item" : [ "targetinggoggles", 1]},
{"weight" : 0.005, "item" : [ "fieldscientisthead2", 1]},
{"weight" : 0.004, "item" : [ "fieldscientisthead3", 1]},
{"weight" : 0.003, "item" : [ "fieldscientisthead4", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechlamp1-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechlamp2-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitecharmchair-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechbath-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechbed-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechbookcase2-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechcounter-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechcupboard-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechforcedoor-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechforcedoor2-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechdrawer-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechfridge-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechoven-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechsafe-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechsofa-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechstool-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechtable-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechtoaster-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechtoilet-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechvrchair-recipe", 1]},
{"weight" : 0.025, "item" : ["mobiuschest-recipe", 1]},
{"weight" : 0.025, "item" : ["mobiushead-recipe", 1]},
{"weight" : 0.025, "item" : ["mobiuspants-recipe", 1]},
{"weight" : 0.025, "item" : ["mobiuspistol-recipe", 1]},
{"weight" : 0.025, "item" : ["mobiusrifle-recipe", 1]},
{"weight" : 0.015, "item" : ["mobiusrailgun-recipe", 1]},
{"weight" : 0.006, "item" : ["mobiuschest", 1]},
{"weight" : 0.006, "item" : ["mobiushead", 1]},
{"weight" : 0.006, "item" : ["mobiuspants", 1]},
{"weight" : 0.01, "item" : ["mobiuspistol", 1]},
{"weight" : 0.01, "item" : ["mobiusrifle", 1]},
{"weight" : 0.01, "item" : ["mobiusrailgun", 1]},
{"weight" : 0.01, "item" : ["tristab", 1]},
{"weight" : 0.0005, "item" : ["atomsmasher", 1]},
{"weight" : 0.01, "item" : "razorneedler"},
{"weight" : 0.01, "item" : "scorchneedler"},
{"weight" : 0.01, "item" : "shockneedler"},
{"weight" : 0.01, "item" : "toxicneedler"},
{"weight" : 0.04, "item" : "randomharpoongun"},
{"weight" : 0.06, "item" : "ff_spareparts"},
{"weight" : 0.06, "item" : "laserdiode"},
{"weight" : 0.01, "item" : "sentrybotcraft-recipe"},
{"weight" : 0.008, "item" : "sentrybotcraft2-recipe"},
{"weight" : 0.003, "item" : "sentrybotcraft3-recipe"},
{"weight" : 0.02, "item" : "sentrybotdeathdroid-recipe"}
],
"poolRounds" : [
[0.23, 1],
[0.33, 2],
[0.33, 3],
[0.33, 4],
[0.23, 5]
],
"allowDuplication" : true
}
]
],
"tidewaterChestTreasure" : [
[1, {
"fill" : [
{"pool" : "valuableTreasure"}
],
"pool" : [
{"weight" : 0.3, "pool" : "basicTreasure"},
{"weight" : 0.7, "pool" : "tidewaterTreasure"}
],
"poolRounds" : [
[0.05, 1],
[0.40, 2],
[0.30, 3],
[0.15, 4],
[0.10, 5]
],
"allowDuplication" : false
}]
],
"tidewaterTreasure" : [
[1, {
"pool" : [
{"weight" : 0.001, "pool" : "artifactloot" },
{"weight" : 0.08, "item" : ["beesilk", 5]},
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.03, "pool" : "petcollars2"},
{"weight" : 0.333, "item" : [ "hardenedcarapace", 1]},
{"weight" : 0.333, "item" : [ "vanusflower", 1]},
{"weight" : 0.333, "item" : [ "sharpenedclaw", 1]},
{"weight" : 0.333, "item" : [ "venomsample", 1]},
{"weight" : 1.0, "item" : ["waterballoon", 3]},
{"weight" : 0.6, "item" : ["waterballoon", 6]},
{"weight" : 0.3, "item" : ["waterballoon", 9]},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.3, "item" : "watersword"},
{"weight" : 0.05, "item" : "watergun"},
{"weight" : 0.3, "item" : [ "generatedshield", 1, { "definition" : "seashellshield" } ]},
{"weight" : 0.05, "item" : "hawaiianhead"},
{"weight" : 0.05, "item" : "hawaiianchest"},
{"weight" : 0.05, "item" : "hawaiianlegs"},
{"weight" : 0.05, "item" : "piratehead"},
{"weight" : 0.05, "item" : "piratechest"},
{"weight" : 0.05, "item" : "piratelegs"},
{"weight" : 0.05, "item" : "pirateback"},
{"weight" : 0.20, "pool" : "money"},
{"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.09, "item" : ["thornfruit", 5]},
{"weight" : 0.05, "item" : ["thorngrenade", 3]},
{"weight" : 0.005, "item" : "coolfezhead"},
{"weight" : 0.1, "item" : "thornjuice"},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.15, "pool" : "ore"},
{"weight" : 0.1, "pool" : "weapon"},
{"weight" : 0.1, "pool" : "food"},
{"weight" : 0.05, "pool" : "seed"},
{"weight" : 0.04, "pool" : "tool"},
{"weight" : 0.04, "pool" : "shield"},
{"weight" : 0.012, "pool" : "instrument"},
{"weight" : 0.005, "pool" : "costume"},
{"weight" : 0.003, "item" : "teleportercore"},
{"weight" : 0.025, "item" : "torch" },
{"weight" : 0.0333, "item" : [ "fuscienceresource", 5]},
{"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.1, "item" : [ "agaranichor", 4]},
{"weight" : 0.05, "item" : [ "agaranichor", 8]},
{"weight" : 0.03, "item" : [ "agaranichor", 12]},
{"weight" : 0.01, "item" : [ "agaranichor", 18]},
{"weight" : 0.0211, "item" : [ "glassmaterial", 25]},
{"weight" : 0.0211, "item" : [ "protociteore", 5]},
{"weight" : 0.0211, "item" : [ "penumbriteore", 5]},
{"weight" : 0.0211, "item" : [ "liquidwater", 25]},
{"weight" : 0.0211, "item" : [ "liquidwater", 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" : [ "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]},
{"weight" : 0.01, "item" : ["tristab", 1]},
{"weight" : 0.01, "item" : [ "ultrastim", 1]},
{"weight" : 0.01, "item" : [ "thesauce", 1]},
{"weight" : 0.01, "item" : [ "shieldpatch", 1]},
{"weight" : 0.01, "item" : [ "thesauce", 1]},
{"weight" : 0.01, "item" : [ "uberstim", 1]},
{"weight" : 0.01, "item" : [ "waterstim", 1]},
{"weight" : 0.01, "item" : [ "protostim", 1]},
{"weight" : 0.01, "item" : [ "serumstim", 1]},
{"weight" : 0.01, "item" : [ "gravstim", 1]},
{"weight" : 0.01, "item" : [ "portaljuice", 1]},
{"weight" : 0.04, "item" : [ "crunchychick", 1]},
{"weight" : 0.04, "item" : [ "portablelight", 1]},
{"weight" : 0.01, "item" : [ "honeyboon", 1]},
{"weight" : 0.003, "item" : [ "skullreaperhelm", 1]},
{"weight" : 0.002, "item" : [ "skullreaperhelm2", 1]},
{"weight" : 0.001, "item" : [ "skullreaperhelm3", 1]},
{"weight" : 0.008, "item" : [ "kungfuheadband", 1]},
{"weight" : 0.035, "item" : [ "jokeglasses", 1]},
{"weight" : 0.04, "item" : [ "duncecap", 1]},
{"weight" : 0.05, "item" : [ "fudiverhead-recipe", 1]},
{"weight" : 0.05, "item" : [ "fudiverchest-recipe", 1]},
{"weight" : 0.05, "item" : [ "fudiverlegs-recipe", 1]},
{"weight" : 0.003, "item" : [ "negablade", 1]},
{"weight" : 0.01, "item" : ["gene_adaptivecell", 1]},
{"weight" : 0.01, "item" : ["gene_agility", 1]},
{"weight" : 0.01, "item" : ["gene_aquacelerity", 1]},
{"weight" : 0.01, "item" : ["gene_aquahomeo", 1]},
{"weight" : 0.01, "item" : ["gene_assimilate", 1]},
{"weight" : 0.01, "item" : ["gene_avian", 1]},
{"weight" : 0.01, "item" : ["gene_bioluminescent", 1]},
{"weight" : 0.01, "item" : ["gene_adaptivecell", 1]},
{"weight" : 0.01, "item" : ["gene_chloroplast", 1]},
{"weight" : 0.01, "item" : ["gene_corrosive", 1]},
{"weight" : 0.01, "item" : ["gene_cryo", 1]},
{"weight" : 0.01, "item" : ["gene_defense", 1]},
{"weight" : 0.01, "item" : ["gene_electric", 1]},
{"weight" : 0.01, "item" : ["gene_energy", 1]},
{"weight" : 0.01, "item" : ["gene_fish", 1]},
{"weight" : 0.01, "item" : ["gene_harden", 1]},
{"weight" : 0.01, "item" : ["gene_immunity", 1]},
{"weight" : 0.01, "item" : ["gene_insectoid", 1]},
{"weight" : 0.01, "item" : ["gene_mammal", 1]},
{"weight" : 0.01, "item" : ["gene_mimetic", 1]},
{"weight" : 0.01, "item" : ["gene_muscle", 1]},
{"weight" : 0.01, "item" : ["gene_nervebundle", 1]},
{"weight" : 0.01, "item" : ["gene_ocular", 1]},
{"weight" : 0.01, "item" : ["gene_poisonous", 1]},
{"weight" : 0.01, "item" : ["gene_pyro", 1]},
{"weight" : 0.01, "item" : ["gene_rage", 1]},
{"weight" : 0.01, "item" : ["gene_reactive", 1]},
{"weight" : 0.01, "item" : ["gene_regen", 1]},
{"weight" : 0.01, "item" : ["gene_reproductive", 1]},
{"weight" : 0.01, "item" : ["gene_resist", 1]},
{"weight" : 0.01, "item" : ["gene_skeletal", 1]},
{"weight" : 0.01, "item" : ["gene_stealth", 1]},
{"weight" : 0.01, "item" : ["gene_stimulant", 1]},
{"weight" : 0.01, "item" : ["gene_void", 1]}
]
}]
],
"tidewaterFloorChestTreasure" : [
[1, {
"fill" : [
{"pool" : "valuableTreasure"}
],
"pool" : [
{"weight" : 0.3, "pool" : "basicTreasure"},
{"weight" : 0.7, "pool" : "tidewaterFloorTreasure"}
],
"poolRounds" : [
[0.05, 1],
[0.40, 2],
[0.30, 3],
[0.15, 4],
[0.10, 5]
],
"allowDuplication" : false
}]
],
"tidewaterFloorTreasure" : [
[1, {
"pool" : [
{"weight" : 0.001, "pool" : "artifactloot" },
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.03, "pool" : "petcollars2"},
{"weight" : 0.08, "item" : ["beesilk", 5]},
{"weight" : 0.20, "pool" : "money"},
{"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.09, "item" : ["thornfruit", 5]},
{"weight" : 0.05, "item" : ["thorngrenade", 3]},
{"weight" : 0.005, "item" : "coolfezhead"},
{"weight" : 0.1, "item" : "thornjuice"},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.15, "pool" : "ore"},
{"weight" : 0.1, "pool" : "weapon"},
{"weight" : 0.1, "pool" : "food"},
{"weight" : 0.05, "pool" : "seed"},
{"weight" : 0.04, "pool" : "tool"},
{"weight" : 0.04, "pool" : "shield"},
{"weight" : 0.012, "pool" : "instrument"},
{"weight" : 0.005, "pool" : "costume"},
{"weight" : 0.003, "item" : "teleportercore"},
{"weight" : 0.025, "item" : "torch" },
{"weight" : 0.0333, "item" : [ "fuscienceresource", 5]},
{"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" : [ "sharkmask", 1]},
{"weight" : 0.0210, "item" : [ "lead", 5]},
{"weight" : 0.1, "item" : [ "agaranichor", 4]},
{"weight" : 0.05, "item" : [ "agaranichor", 8]},
{"weight" : 0.03, "item" : [ "agaranichor", 12]},
{"weight" : 0.01, "item" : [ "agaranichor", 18]},
{"weight" : 0.01, "item" : ["tristab", 1]},
{"weight" : 0.0211, "item" : [ "glassmaterial", 25]},
{"weight" : 0.0211, "item" : [ "protociteore", 5]},
{"weight" : 0.0211, "item" : [ "penumbriteore", 5]},
{"weight" : 0.0211, "item" : [ "liquidwater", 25]},
{"weight" : 0.0211, "item" : [ "liquidwater", 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" : [ "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]},
{"weight" : 0.01, "item" : [ "ultrastim", 1]},
{"weight" : 0.01, "item" : [ "thesauce", 1]},
{"weight" : 0.01, "item" : [ "shieldpatch", 1]},
{"weight" : 0.01, "item" : [ "thesauce", 1]},
{"weight" : 0.01, "item" : [ "uberstim", 1]},
{"weight" : 0.01, "item" : [ "waterstim", 1]},
{"weight" : 0.01, "item" : [ "protostim", 1]},
{"weight" : 0.01, "item" : [ "serumstim", 1]},
{"weight" : 0.01, "item" : [ "gravstim", 1]},
{"weight" : 0.01, "item" : [ "portaljuice", 1]},
{"weight" : 0.04, "item" : [ "crunchychick", 1]},
{"weight" : 0.04, "item" : [ "portablelight", 1]},
{"weight" : 0.01, "item" : [ "honeyboon", 1]},
{"weight" : 0.003, "item" : [ "skullreaperhelm", 1]},
{"weight" : 0.002, "item" : [ "skullreaperhelm2", 1]},
{"weight" : 0.001, "item" : [ "skullreaperhelm3", 1]},
{"weight" : 0.008, "item" : [ "kungfuheadband", 1]},
{"weight" : 0.035, "item" : [ "jokeglasses", 1]},
{"weight" : 0.04, "item" : [ "duncecap", 1]},
{"weight" : 1.0, "item" : ["waterballoon", 4]},
{"weight" : 0.6, "item" : ["waterballoon", 6]},
{"weight" : 0.3, "item" : ["waterballoon", 8]},
{"weight" : 0.3, "item" : "silverdrill"},
{"weight" : 0.2, "item" : "deepdiverhead"},
{"weight" : 0.3, "item" : "buccaneerhead"},
{"weight" : 0.3, "item" : "buccaneerchest"},
{"weight" : 0.3, "item" : "buccaneerlegs"},
{"weight" : 0.3, "item" : "oxygentank"},
{"weight" : 0.5, "item" : "snorkelhead"},
{"weight" : 0.05, "item" : "sharkhead"},
{"weight" : 0.01, "item" : [ "fudiverhead-recipe", 1]},
{"weight" : 0.01, "item" : [ "fudiverchest-recipe", 1]},
{"weight" : 0.01, "item" : [ "fudiverlegs-recipe", 1]},
{"weight" : 0.005, "item" : [ "coralsword", 1]},
{"weight" : 0.005, "item" : [ "coralspear", 1]},
{"weight" : 0.005, "item" : [ "coralsword2", 1]}
]
}]
],
"ffmetallicChest" : [
[1, {
"pool" : [
{"weight":0.1, "pool":"salvageComponent"},
{"weight" : 0.001, "pool" : "artifactloot" },
{"weight" : 0.08, "item" : ["beesilk", 5]},
{"weight" : 0.03, "pool" : "augments"},
{"weight" : 0.03, "pool" : "petcollars2"},
{"weight" : 0.40, "pool" : "money"},
{"weight" : 0.333, "item" : [ "polymer", 5]},
{"weight" : 0.333, "item" : [ "siliconboard", 1]},
{"weight" : 0.333, "item" : [ "laserdiode", 1]},
{"weight" : 0.333, "item" : [ "stickofram", 1]},
{"weight" : 0.1, "item" : "thornjuice"},
{"weight" : 0.3, "item" : "medkit"},
{"weight" : 0.15, "pool" : "ore"},
{"weight" : 0.1, "pool" : "weapon"},
{"weight" : 0.04, "pool" : "tool"},
{"weight" : 0.04, "pool" : "shield"},
{"weight" : 0.003, "item" : "teleportercore"},
{"weight" : 0.0211, "item" : [ "glassmaterial", 25]},
{"weight" : 0.0211, "item" : [ "protociteore", 5]},
{"weight" : 0.0211, "item" : [ "penumbriteore", 5]},
{"weight" : 0.0211, "item" : [ "liquidwater", 25]},
{"weight" : 0.0211, "item" : [ "liquidwater", 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" : [ "fuscienceresource", 15]},
{"weight" : 0.04, "item" : [ "ultrastim", 1]},
{"weight" : 0.04, "item" : [ "thesauce", 1]},
{"weight" : 0.04, "item" : [ "shieldpatch", 1]},
{"weight" : 0.04, "item" : [ "thesauce", 1]},
{"weight" : 0.04, "item" : [ "uberstim", 1]},
{"weight" : 0.04, "item" : [ "waterstim", 1]},
{"weight" : 0.04, "item" : [ "protostim", 1]},
{"weight" : 0.04, "item" : [ "serumstim", 1]},
{"weight" : 0.04, "item" : [ "gravstim", 1]},
{"weight" : 0.04, "item" : [ "portaljuice", 1]},
{"weight" : 0.04, "item" : [ "crunchychick", 1]},
{"weight" : 0.04, "item" : [ "portablelight", 1]},
{"weight" : 0.04, "item" : [ "honeyboon", 1]},
{"weight" : 0.005, "item" : [ "densiniumore", 1]},
{"weight" : 0.005, "item" : [ "aliencompound", 2]},
{"weight" : 0.005, "item" : [ "blisterbushplantfood", 2]},
{"weight" : 0.005, "item" : [ "graphene", 5]},
{"weight" : 0.005, "item" : [ "quietusore", 5]},
{"weight" : 0.005, "item" : [ "triangliumore", 5]},
{"weight" : 0.005, "item" : [ "trooperhead", 1]},
{"weight" : 0.005, "item" : [ "trooperhead2", 1]},
{"weight" : 0.022, "item" : [ "metalliccleaver", 1]},
{"weight" : 0.022, "item" : [ "metallicsword", 1]},
{"weight" : 0.022, "item" : [ "metallichammer", 1]},
{"weight" : 0.022, "item" : [ "metallicspear", 1]},
{"weight" : 0.005, "item" : [ "beammasterhelm", 1]},
{"weight" : 0.012, "item" : [ "longarmpistol-recipe", 1]},
{"weight" : 0.012, "item" : [ "longarm-recipe", 1]},
{"weight" : 0.0006, "item" : [ "trooperhead", 1]},
{"weight" : 0.0006, "item" : [ "trooperhead2", 1]},
{"weight" : 0.005, "item" : [ "fieldscientisthead2", 1]},
{"weight" : 0.004, "item" : [ "fieldscientisthead3", 1]},
{"weight" : 0.003, "item" : [ "fieldscientisthead4", 1]},
{"weight" : 0.01, "item" : [ "furustedhead-recipe", 1]},
{"weight" : 0.01, "item" : [ "furustedchest-recipe", 1]},
{"weight" : 0.01, "item" : [ "furustedlegs-recipe", 1]},
{"weight" : 0.01, "item" : [ "rusthead2-recipe", 1]},
{"weight" : 0.01, "item" : [ "rustchest2-recipe", 1]},
{"weight" : 0.01, "item" : [ "rustlegs2-recipe", 1]},
{"weight" : 0.001, "item" : ["agilitysuitchest-recipe", 1]},
{"weight" : 0.001, "item" : ["agilitysuithead-recipe", 1]},
{"weight" : 0.001, "item" : ["agilitysuitlegs-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechlamp1-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechlamp2-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitecharmchair-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechbath-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechbed-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechbookcase2-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechcounter-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechcupboard-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechforcedoor-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechforcedoor2-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechdrawer-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechfridge-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechoven-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechsafe-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechsofa-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechstool-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechtable-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechtoaster-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechtoilet-recipe", 1]},
{"weight" : 0.015, "item" : ["fuokeahitechvrchair-recipe", 1]},
{"weight" : 0.001, "item" : "razorneedler"},
{"weight" : 0.001, "item" : "tristab"},
{"weight" : 0.001, "item" : "scorchneedler"},
{"weight" : 0.001, "item" : "shockneedler"},
{"weight" : 0.001, "item" : "toxicneedler"},
{"weight" : 0.004, "item" : "randomharpoongun"},
{"weight" : 0.004, "item" : ["enforcerchest-recipe", 1]},
{"weight" : 0.004, "item" : ["enforcerhead-recipe", 1]},
{"weight" : 0.004, "item" : ["enforcerpants-recipe", 1]},
{"weight" : 0.06, "item" : "ff_spareparts"},
{"weight" : 0.06, "item" : "laserdiode"},
{"weight" : 0.005, "item" : "sentrybotcraft-recipe"},
{"weight" : 0.003, "item" : "sentrybotcraft2-recipe"},
{"weight" : 0.001, "item" : "sentrybotcraft3-recipe"},
{"weight" : 0.008, "item" : "sentrybotdeathdroid-recipe"}
],
"poolRounds" : [