-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfutreasurepools.treasurepools
2327 lines (2246 loc) · 107 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
{
"pestTreasure" : [
[1, {
"fill" : [
{"item" : "fupest"}
],
"allowDuplication" : false
}]
],
"brokenMechLoot" : [
[0, {
"pool" : [
{"weight" : 0.001, "item" : "stationtransponder"},
{"weight" : 0.10, "pool" : "salvageComponent"},
{"weight" : 0.15, "pool" : "fumechPartBlueprint"},
{"weight" : 0.01, "pool" : "fuResearchVoxelItems"},
{"weight" : 0.02, "item" : [ "ff_spareparts", 12]},
{"weight" : 0.10, "item" : ["liquidmechfuel",80]},
{"weight" : 0.10, "item" : ["liquidoil",120]},
{"weight" : 0.20, "item" : ["liquidfuel",120]},
{"weight" : 0.30, "item" : ["unrefinedliquidmechfuel",250]},
{"weight" : 0.05, "item" : ["powercore",1]}
]
}
],
[2.9, {
"pool" : [
{"weight" : 0.003, "item" : "stationtransponder"},
{"weight" : 0.10, "pool" : "salvageComponent"},
{"weight" : 0.15, "pool" : "fumechPartBlueprint"},
{"weight" : 0.01, "pool" : "fuResearchVoxelItems"},
{"weight" : 0.02, "item" : [ "ff_spareparts", 20]},
{"weight" : 0.10, "item" : ["liquidmechfuel",80]},
{"weight" : 0.10, "item" : ["liquidoil",120]},
{"weight" : 0.20, "item" : ["liquidfuel",120]},
{"weight" : 0.30, "item" : ["unrefinedliquidmechfuel",250]},
{"weight" : 0.05, "item" : ["powercore",1]}
]
}
],
[3.9, {
"pool" : [
{"weight" : 0.005, "item" : "stationtransponder"},
{"weight" : 0.10, "pool" : "salvageComponent"},
{"weight" : 0.15, "pool" : "fumechPartBlueprint"},
{"weight" : 0.01, "pool" : "fuResearchVoxelItems"},
{"weight" : 0.02, "item" : [ "ff_spareparts", 35]},
{"weight" : 0.10, "item" : ["liquidmechfuel",90]},
{"weight" : 0.10, "item" : ["liquidoil",150]},
{"weight" : 0.20, "item" : ["liquidfuel",150]},
{"weight" : 0.30, "item" : ["unrefinedliquidmechfuel",300]},
{"weight" : 0.05, "item" : ["powercore",1]}
]
}
],
[4.9, {
"pool" : [
{"weight" : 0.008, "item" : "stationtransponder"},
{"weight" : 0.10, "pool" : "salvageComponent"},
{"weight" : 0.15, "pool" : "fumechPartBlueprint"},
{"weight" : 0.01, "pool" : "fuResearchVoxelItems"},
{"weight" : 0.02, "item" : [ "ff_spareparts", 40]},
{"weight" : 0.10, "item" : ["liquidmechfuel",100]},
{"weight" : 0.10, "item" : ["liquidoil",180]},
{"weight" : 0.20, "item" : ["liquidfuel",170]},
{"weight" : 0.30, "item" : ["unrefinedliquidmechfuel",350]},
{"weight" : 0.05, "item" : ["powercore",1]}
]
}
],
[5.9, {
"pool" : [
{"weight" : 0.01, "item" : "stationtransponder"},
{"weight" : 0.10, "pool" : "salvageComponent"},
{"weight" : 0.15, "pool" : "fumechPartBlueprint"},
{"weight" : 0.01, "pool" : "fuResearchVoxelItems"},
{"weight" : 0.02, "item" : [ "ff_spareparts", 50]},
{"weight" : 0.10, "item" : ["liquidmechfuel",120]},
{"weight" : 0.20, "item" : ["liquidfuel",200]},
{"weight" : 0.30, "item" : ["unrefinedliquidmechfuel",400]},
{"weight" : 0.05, "item" : ["powercore",1]},
{"weight" : 0.01, "item" : ["schrodingerscat",1]}
]
}
]
],
"fumechPartBlueprint" : [
[0, {
"pool" : []
}],
[2.9, {
"pool" : [
{"weight" : 1, "item" : "mechbodypirate-recipe"},
{"weight" : 1, "item" : "mechbodyreactor-recipe"},
{"weight" : 1, "item" : "mechbodymilitary-recipe"},
{"weight" : 1, "item" : "mechbodybad-recipe"},
{"weight" : 1, "item" : "mechboosterzed-recipe"},
{"weight" : 1, "item" : "mechboosterstalwart-recipe"},
{"weight" : 1, "item" : "mechboosterastro-recipe"},
{"weight" : 1, "item" : "mechlegstwinjet-recipe"},
{"weight" : 1, "item" : "mechlegshopper-recipe"},
{"weight" : 1, "item" : "mechlegsarc-recipe"},
{"weight" : 1, "item" : "mecharmheatrifle-recipe"},
{"weight" : 1, "item" : "mecharmtommygun-recipe"}
]
}],
[3.9, {
"pool" : [
{"weight" : 1, "item" : "mechboostersleek-recipe"},
{"weight" : 1, "item" : "mechlegssleek-recipe"},
{"weight" : 1, "item" : "mecharmcannon-recipe"},
{"weight" : 1, "item" : "mecharmgatling-recipe"},
{"weight" : 1, "item" : "mecharmchainsaw-recipe"},
{"weight" : 1, "item" : "mecharmhomingmissile-recipe"},
{"weight" : 1, "item" : "mecharmplasmadrone-recipe"},
{"weight" : 1, "item" : "mecharmclustermine-recipe"},
{"weight" : 1, "item" : "mecharmwobbleshot-recipe"}
]
}],
[4.9, {
"pool" : [
{"weight" : 1, "item" : "mechbodyhero-recipe"},
{"weight" : 1, "item" : "mechbodyskull-recipe"},
{"weight" : 1, "item" : "mechbodyshark-recipe"},
{"weight" : 1, "item" : "mechboostergallant-recipe"},
{"weight" : 1, "item" : "mechboosterzero-recipe"},
{"weight" : 1, "item" : "mechboosterhammer-recipe"},
{"weight" : 1, "item" : "mechlegsronin-recipe"},
{"weight" : 1, "item" : "mechlegsintrepid-recipe"},
{"weight" : 1, "item" : "mechlegshermes-recipe"},
{"weight" : 1, "item" : "mecharmenergyrifle-recipe"},
{"weight" : 1, "item" : "mecharmdualrifle-recipe"},
{"weight" : 1, "item" : "mecharmenergyblade-recipe"},
{"weight" : 1, "item" : "mecharmguidedmissiles-recipe"},
{"weight" : 1, "item" : "mecharmshielddrone-recipe"},
{"weight" : 1, "item" : "mecharmspikefist-recipe"},
{"weight" : 1, "item" : "mecharmbeamdrill-recipe"}
]
}],
[5.9, {
"pool" : [
{"weight" : 1, "item" : "mechbodyhero-recipe"},
{"weight" : 1, "item" : "mechbodyskull-recipe"},
{"weight" : 1, "item" : "mechbodyshark-recipe"},
{"weight" : 1, "item" : "mechboostergallant-recipe"},
{"weight" : 1, "item" : "mechboosterzero-recipe"},
{"weight" : 1, "item" : "mechboosterhammer-recipe"},
{"weight" : 1, "item" : "mechlegsronin-recipe"},
{"weight" : 1, "item" : "mechlegsintrepid-recipe"},
{"weight" : 1, "item" : "mechlegshermes-recipe"},
{"weight" : 1, "item" : "mecharmenergyrifle-recipe"},
{"weight" : 1, "item" : "mecharmdualrifle-recipe"},
{"weight" : 1, "item" : "mecharmenergyblade-recipe"},
{"weight" : 1, "item" : "mecharmguidedmissiles-recipe"},
{"weight" : 1, "item" : "mecharmshielddrone-recipe"},
{"weight" : 1, "item" : "mecharmspikefist-recipe"},
{"weight" : 1, "item" : "mecharmbeamdrill-recipe"},
{"weight" : 1, "item" : "mechbodyexodus-recipe"},
{"weight" : 1, "item" : "mechbodyiris-recipe"},
{"weight" : 1, "item" : "mecharmmultidrone-recipe"},
{"weight" : 1, "item" : "mecharmbeamsniper-recipe"},
{"weight" : 1, "item" : "mecharmgravitymine-recipe"},
{"weight" : 1, "item" : "mecharmteslastream-recipe"}
]
}]
],
"fucodexRandom" : [
[0, {
"pool" : [
{"weight" : 0.025, "pool" : "fuMadnessVoxelItem"},
{"weight" : 0.037, "item" : "thesubstance-codex"},
{"weight" : 0.037, "item" : "agarans-codex"},
{"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" : "randombook15-codex"},
{"weight" : 0.037, "item" : "randombook16-codex"},
{"weight" : 0.037, "item" : "randombook17-codex"},
{"weight" : 0.037, "item" : "randombook18-codex"},
{"weight" : 0.037, "item" : "randombook19-codex"},
{"weight" : 0.037, "item" : "dark1-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" : "fupeglacicannibals-codex"},
{"weight" : 0.037, "item" : "fupeglacicannibals2-codex"},
{"weight" : 0.037, "item" : "fupeglacicannibals3-codex"},
{"weight" : 0.037, "item" : "fupeglacigiants-codex"},
{"weight" : 0.037, "item" : "fupeglaciorigins-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" : "pharitu1-codex"},
{"weight" : 0.037, "item" : "pharitu2-codex"},
{"weight" : 0.037, "item" : "pharitu3-codex"},
{"weight" : 0.037, "item" : "pharitu4-codex"},
{"weight" : 0.037, "item" : "pharitu5-codex"},
{"weight" : 0.037, "item" : "pharitu6-codex"},
{"weight" : 0.037, "item" : "pharitu7-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" : "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" : "fenerox1-codex"},
{"weight" : 0.037, "item" : "fenerox2-codex"},
{"weight" : 0.037, "item" : "fenerox3-codex"},
{"weight" : 0.037, "item" : "fenerox4-codex"},
{"weight" : 0.037, "item" : "fenerox5-codex"},
{"weight" : 0.037, "item" : "fenerox6-codex"},
{"weight" : 0.037, "item" : "fenerox7-codex"},
{"weight" : 0.037, "item" : "fenerox8-codex"},
{"weight" : 0.037, "item" : "fenerox9-codex"},
{"weight" : 0.037, "item" : "fenerox10-codex"},
{"weight" : 0.037, "item" : "fenerox11-codex"},
{"weight" : 0.037, "item" : "fenerox12-codex"},
{"weight" : 0.037, "item" : "fenerox13-codex"},
{"weight" : 0.037, "item" : "fenerox14-codex"},
{"weight" : 0.037, "item" : "fenerox15-codex"},
{"weight" : 0.037, "item" : "fenerox16-codex"},
{"weight" : 0.037, "item" : "fenerox17-codex"},
{"weight" : 0.037, "item" : "fenerox18-codex"},
{"weight" : 0.037, "item" : "fenerox19-codex"},
{"weight" : 0.037, "item" : "fenerox20-codex"},
{"weight" : 0.037, "item" : "fenerox21-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"},
{"weight" : 0.037, "item" : "kirhos7-codex"},
{"weight" : 0.037, "item" : "funightardoc1-codex"},
{"weight" : 0.037, "item" : "funightardoc2-codex"},
{"weight" : 0.037, "item" : "funightardoc3-codex"},
{"weight" : 0.037, "item" : "funightardoc4-codex"},
{"weight" : 0.037, "item" : "funightarhistory1-codex"},
{"weight" : 0.037, "item" : "funightarhistory2-codex"},
{"weight" : 0.037, "item" : "funightarhistory3-codex"},
{"weight" : 0.037, "item" : "funightarhistory4-codex"},
{"weight" : 0.037, "item" : "funightarhistory5-codex"},
{"weight" : 0.037, "item" : "funightarhistory6-codex"},
{"weight" : 0.037, "item" : "shadow1-codex"},
{"weight" : 0.037, "item" : "shadow2-codex"},
{"weight" : 0.037, "item" : "shadow3-codex"},
{"weight" : 0.037, "item" : "shadow4-codex"},
{"weight" : 0.037, "item" : "veluuish1-codex"},
{"weight" : 0.037, "item" : "veluuish2-codex"},
{"weight" : 0.037, "item" : "veluuish3-codex"},
{"weight" : 0.037, "item" : "veluuish4-codex"},
{"weight" : 0.037, "item" : "elduukhar1-codex"},
{"weight" : 0.037, "item" : "elduukhar2-codex"},
{"weight" : 0.037, "item" : "elduukhar3-codex"},
{"weight" : 0.037, "item" : "elduukhar4-codex"},
{"weight" : 0.037, "item" : "elduukhar5-codex"},
{"weight" : 0.037, "item" : "elduukhar6-codex"},
{"weight" : 0.037, "item" : "elduukhar7-codex"},
{"weight" : 0.037, "item" : "elduukhar8-codex"},
{"weight" : 0.037, "item" : "elduukhar9-codex"},
{"weight" : 0.037, "item" : "elduukhar10-codex"}
]
}]
],
//paintings
"paintingTreasure" : [
[0, {
"pool" : [
// fu art pieces
{"weight" : 0.037, "item" : "painting_formergallery"},
{"weight" : 0.037, "item" : "painting_fabricatedworld"},
{"weight" : 0.037, "item" : "kittenpainting"},
{"weight" : 0.037, "item" : "puppypainting"},
{"weight" : 0.037, "item" : "starrynightpainting"},
{"weight" : 0.037, "item" : "stripepainting"},
{"weight" : 0.037, "item" : "stripe2painting"},
{"weight" : 0.037, "item" : "stripe3painting"},
{"weight" : 0.037, "item" : "stripe4painting"},
{"weight" : 0.037, "item" : "paintingstarrynight"},
{"weight" : 0.037, "item" : "vinapainting"},
{"weight" : 0.037, "item" : "painting_patch"},
//vanillas
{"weight" : 0.037, "item" : "apexwallpainting2"},
{"weight" : 0.037, "item" : "paintingapexpixellisa"},
{"weight" : 0.002, "item" : "persistenceofpixels"},
{"weight" : 0.037, "item" : "frontierpainting2"},
{"weight" : 0.037, "item" : "glitchianman"},
{"weight" : 0.037, "item" : "selfportraitofhylotlshu"},
{"weight" : 0.037, "item" : "frontierpainting3"},
{"weight" : 0.037, "item" : "floranpainting4"},
{"weight" : 0.037, "item" : "frontierpainting1"},
{"weight" : 0.037, "item" : "tenstudiesinfemalehylotlgy"},
{"weight" : 0.037, "item" : "apexmocksign"},
{"weight" : 0.037, "item" : "hylotlpainting2"},
{"weight" : 0.037, "item" : "apexwallpainting1"},
{"weight" : 0.037, "item" : "paintinggothic"},
{"weight" : 0.037, "item" : "paintingshakespeare"},
{"weight" : 0.037, "item" : "hylotlpainting3"},
{"weight" : 0.037, "item" : "genericpainting1"},
{"weight" : 0.037, "item" : "apexpainting4"},
{"weight" : 0.037, "item" : "hylotlpainting1"},
{"weight" : 0.037, "item" : "apexpainting1"},
{"weight" : 0.037, "item" : "paintingmonalisa"}
]
}]
],
"paintingMadnessTreasure" : [
[0, {
"pool" : [
// fu sane art pieces
{"weight" : 0.037, "item" : "kittenpainting"},
{"weight" : 0.037, "item" : "puppypainting"},
{"weight" : 0.037, "item" : "starrynightpainting"},
{"weight" : 0.037, "item" : "stripepainting"},
{"weight" : 0.037, "item" : "stripe2painting"},
{"weight" : 0.037, "item" : "stripe3painting"},
{"weight" : 0.037, "item" : "stripe4painting"},
{"weight" : 0.037, "item" : "vinapainting"},
// fu insanity paintings
{"weight" : 0.004, "item" : "painting_germ"},
{"weight" : 0.004, "item" : "logpainting"},
{"weight" : 0.005, "item" : "demiurgepainting"},
{"weight" : 0.005, "item" : "dreamspainting"},
{"weight" : 0.005, "item" : "fleshpainting"},
{"weight" : 0.005, "item" : "homepainting"},
{"weight" : 0.005, "item" : "hordepainting"},
{"weight" : 0.005, "item" : "nightmarepainting"},
{"weight" : 0.005, "item" : "theexpansepainting"},
{"weight" : 0.005, "item" : "thefishpainting"},
{"weight" : 0.005, "item" : "thehuntpainting"},
{"weight" : 0.005, "item" : "thepalacepainting"},
{"weight" : 0.005, "item" : "theroompainting"},
{"weight" : 0.005, "item" : "thingsinthedarkpainting"},
{"weight" : 0.005, "item" : "elderhugepainting"},
{"weight" : 0.005, "item" : "elderpainting1"},
{"weight" : 0.005, "item" : "elderpainting2"},
{"weight" : 0.005, "item" : "elderpainting3"},
{"weight" : 0.005, "item" : "elderpainting4"},
{"weight" : 0.005, "item" : "elderpainting5"},
{"weight" : 0.005, "item" : "elderpainting6"},
{"weight" : 0.005, "item" : "elderpainting7"},
{"weight" : 0.005, "item" : "elderpainting8"},
{"weight" : 0.005, "item" : "elderpainting9"},
{"weight" : 0.005, "item" : "elderpainting10"},
{"weight" : 0.005, "item" : "elderpainting11"},
{"weight" : 0.005, "item" : "fu_creepyeyepainting"},
// maps
{"weight" : 0.01, "item" : "verdantruinsmap"},
{"weight" : 0.01, "item" : "towerinvinciblemap"},
{"weight" : 0.01, "item" : "pavillionmap"},
{"weight" : 0.01, "item" : "sunsetridersmap"},
{"weight" : 0.01, "item" : "snowcrashmap"},
{"weight" : 0.01, "item" : "skytemplemap"},
{"weight" : 0.01, "item" : "penguinhighwaymap"},
{"weight" : 0.01, "item" : "magickaforestmap"},
{"weight" : 0.01, "item" : "lethialabsmap"},
{"weight" : 0.01, "item" : "letheiafacilitymap"},
{"weight" : 0.01, "item" : "grandarenamap"},
{"weight" : 0.01, "item" : "japaneseruinsmap"},
{"weight" : 0.01, "item" : "infiltrationmap"},
{"weight" : 0.01, "item" : "forestoffaemap"},
{"weight" : 0.01, "item" : "evernightmap"},
{"weight" : 0.01, "item" : "avianhydromap"},
{"weight" : 0.01, "item" : "ancienttemplemap"},
{"weight" : 0.01, "item" : "alienjunglemap"},
// vanillas
{"weight" : 0.037, "item" : "paintingstarrynight"},
{"weight" : 0.037, "item" : "apexwallpainting2"},
{"weight" : 0.037, "item" : "paintingapexpixellisa"},
{"weight" : 0.037, "item" : "persistenceofpixels"},
{"weight" : 0.037, "item" : "frontierpainting2"},
{"weight" : 0.037, "item" : "glitchianman"},
{"weight" : 0.037, "item" : "selfportraitofhylotlshu"},
{"weight" : 0.037, "item" : "frontierpainting3"},
{"weight" : 0.037, "item" : "floranpainting4"},
{"weight" : 0.037, "item" : "frontierpainting1"},
{"weight" : 0.037, "item" : "tenstudiesinfemalehylotlgy"},
{"weight" : 0.037, "item" : "apexmocksign"},
{"weight" : 0.037, "item" : "hylotlpainting2"},
{"weight" : 0.037, "item" : "apexwallpainting1"},
{"weight" : 0.037, "item" : "paintinggothic"},
{"weight" : 0.037, "item" : "paintingshakespeare"},
{"weight" : 0.037, "item" : "hylotlpainting3"},
{"weight" : 0.037, "item" : "genericpainting1"},
{"weight" : 0.037, "item" : "apexpainting4"},
{"weight" : 0.037, "item" : "hylotlpainting1"},
{"weight" : 0.037, "item" : "apexpainting1"},
{"weight" : 0.037, "item" : "paintingmonalisa"}
]
}]
],
//garflipp
"garflippTreasure" : [
[0, {
"pool" : [
{"weight" : 1, "item" : "garflipp"}
]
}]
],
//brains
"brain" : [
[0, {
"pool" : [
{"weight" : 0.29, "item" : "brain"},
{"weight" : 0.01, "item" : "sanityleech"},
{"weight" : 0.70, "item" : "inferiorbrain"},
{"weight" : 0.01, "item" : "brainpeerless"}
]
}]
],
//specific codexes
"gregCodex" : [
[0, {
"pool" : [
{"weight" : 0.037, "item" : "greg1-codex"},
{"weight" : 0.037, "item" : "greg2-codex"},
{"weight" : 0.002, "pool" : "fuMadnessVoxelItem"},
{"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"}
]
}]
],
"thelusianCodex" : [
[0, {
"pool" : [
{"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"}
]
}]
],
"nightarCodex" : [
[0, {
"pool" : [
{"weight" : 0.037, "item" : "funightardoc1-codex"},
{"weight" : 0.037, "item" : "funightardoc2-codex"},
{"weight" : 0.037, "item" : "funightardoc3-codex"},
{"weight" : 0.037, "item" : "funightardoc4-codex"},
{"weight" : 0.037, "item" : "funightarhistory1-codex"},
{"weight" : 0.037, "item" : "funightarhistory2-codex"},
{"weight" : 0.037, "item" : "funightarhistory3-codex"},
{"weight" : 0.037, "item" : "funightarhistory4-codex"},
{"weight" : 0.037, "item" : "funightarhistory5-codex"},
{"weight" : 0.037, "item" : "funightarhistory6-codex"}
]
}]
],
"shadowCodex" : [
[0, {
"pool" : [
{"weight" : 0.037, "item" : "shadow1-codex"},
{"weight" : 0.037, "item" : "shadow2-codex"},
{"weight" : 0.037, "item" : "shadow3-codex"},
{"weight" : 0.037, "item" : "shadow4-codex"}
]
}]
],
"kirhosCodex" : [
[0, {
"pool" : [
{"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"}
]
}]
],
"elduuCodex" : [
[0, {
"pool" : [
{"weight" : 0.037, "item" : "elduukhar1-codex"},
{"weight" : 0.037, "item" : "elduukhar2-codex"},
{"weight" : 0.037, "item" : "elduukhar3-codex"},
{"weight" : 0.037, "item" : "elduukhar4-codex"},
{"weight" : 0.037, "item" : "elduukhar5-codex"},
{"weight" : 0.037, "item" : "elduukhar6-codex"},
{"weight" : 0.037, "item" : "elduukhar7-codex"},
{"weight" : 0.037, "item" : "elduukhar8-codex"},
{"weight" : 0.037, "item" : "elduukhar9-codex"},
{"weight" : 0.037, "item" : "elduukhar10-codex"}
]
}]
],
"mantiziCodex" : [
[0, {
"pool" : [
{"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"}
]
}]
],
"radienCodex" : [
[0, {
"pool" : [
{"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"}
]
}]
],
"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"}
]
}]
],
"deadBodiesAvian" : [
[0, {
"pool" : [
{"weight" : 0.5, "item" : "wrappedbodybirb"},
{"weight" : 0.1, "item" : "blooddiamond"},
{"weight" : 0.1, "item" : "diamond"},
{"weight" : 0.3, "item" : "wrappedbody"},
{"weight" : 0.03, "item" : "jarredfetus"}
]
}]
],
"deadBodiesApex" : [
[0, {
"pool" : [
{"weight" : 0.05, "item" : "wrappedbody"},
{"weight" : 0.01, "item" : "wrappedbodyputrid"},
{"weight" : 0.10, "item" : "humaneyeball"},
{"weight" : 0.10, "item" : "severedear"},
{"weight" : 0.04, "item" : "sanityleech"},
{"weight" : 0.10, "item" : "humaneyeball"},
{"weight" : 0.10, "item" : "severedear"},
{"weight" : 0.02, "item" : "severedhandinabagaugment"},
{"weight" : 0.06, "item" : "jarredfetus"},
{"weight" : 0.002, "item" : "protheonshard"}
]
}]
],
"deadBodies" : [
[0, {
"pool" : [
{"weight" : 0.05, "item" : "wrappedbody"},
{"weight" : 0.05, "item" : "wrappedbodybirb"},
{"weight" : 0.02, "item" : "wrappedbodyputrid"},
{"weight" : 0.05, "item" : ["rawribmeat",2]},
{"weight" : 0.05, "item" : ["rawribmeat",4]},
{"weight" : 0.05, "item" : ["rawribmeat",6]},
{"weight" : 0.05, "item" : ["rawribmeat",1]},
{"weight" : 0.03, "item" : "futooth"},
{"weight" : 0.03, "item" : ["futooth",2]},
{"weight" : 0.03, "item" : ["futooth",6]},
{"weight" : 0.03, "item" : ["futooth",8]},
{"weight" : 0.03, "item" : ["futooth",12]},
{"weight" : 0.05, "item" : ["bone",3]},
{"weight" : 0.05, "item" : ["bone",5]},
{"weight" : 0.05, "item" : ["bone",7]},
{"weight" : 0.05, "item" : ["bone",11]},
{"weight" : 0.04, "item" : "sanityleech"},
{"weight" : 0.02, "item" : ["humaneyeball",1]},
{"weight" : 0.02, "item" : ["humaneyeball",2]},
{"weight" : 0.02, "item" : ["humaneyeball",4]},
{"weight" : 0.02, "item" : ["humaneyeball",6]},
{"weight" : 0.02, "item" : ["humaneyeball",8]},
{"weight" : 0.02, "item" : "severedear"},
{"weight" : 0.02, "item" : ["severedear",2]},
{"weight" : 0.02, "item" : ["severedear",3]},
{"weight" : 0.02, "item" : ["severedear",5]},
{"weight" : 0.01, "pool" : "fuResearchVoxelItems"},
{"weight" : 0.02, "item" : "fuheart"},
{"weight" : 0.02, "item" : ["fuheart",2]},
{"weight" : 0.02, "item" : ["fuheart",3]},
{"weight" : 0.02, "item" : "fuheartalien"},
{"weight" : 0.02, "item" : ["fuheartalien",2]},
{"weight" : 0.02, "item" : "fufemur"},
{"weight" : 0.05, "item" : "fuflesh"},
{"weight" : 0.02, "item" : ["fufemur",2]},
{"weight" : 0.02, "item" : ["fufemur",3]},
{"weight" : 0.02, "item" : ["fufemur",4]},
{"weight" : 0.02, "item" : "fuhair"},
{"weight" : 0.02, "item" : ["fuhair",2]},
{"weight" : 0.02, "item" : "fubrain"},
{"weight" : 0.02, "item" : ["fubrain",2]},
{"weight" : 0.02, "item" : ["fubrain",3]},
{"weight" : 0.02, "item" : "severedhandinabagaugment"},
{"weight" : 0.008, "item" : "orphanpaste"},
{"weight" : 0.03, "item" : "jarredfetus"}
],
"poolRounds" : [
[0.13, 1],
[0.23, 2],
[0.33, 3],
[0.43, 4],
[0.53, 5]
],
"allowDuplication" : true
}]
],
"woodShed" : [
[0, {
"pool" : [
{"weight" : 0.05, "item" : "wrappedbody"},
{"weight" : 0.01, "item" : "wrappedbodyputrid"},
{"weight" : 0.005, "item" : "wrappedbodyalien"},
{"weight" : 0.002, "pool" : "fuMadnessVoxelItem"},
{"weight" : 0.34, "item" : ["darkwoodmaterial", 20]},
{"weight" : 0.25, "item" : ["logblock", 20]},
{"weight" : 0.25, "item" : ["fullwood1", 15]},
{"weight" : 0.04, "item" : "sanityleech"},
{"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]},
{"weight" : 0.01, "item" : ["orphanpaste", 2]},
{"weight" : 0.01, "item" : "jarredfetus"}
]
}]
],
"fuGenericQuestLoot" : [
[0, {
"pool" : [
{"weight" : 0.2, "item" : "fu_lootbox"},
{"weight" : 0.002, "pool" : "fuMadnessVoxelItem"},
{"weight" : 0.05, "pool" : "fuEssence"},
{"weight" : 0.05, "pool" : "petcollars2"},
{"weight" : 0.05, "pool" : "fuLootStims"},
{"weight" : 0.2, "pool" : "fuBasicMaterials"},
{"weight" : 0.04, "item" : "sanityleech"},
{"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.002, "pool" : "fuMadnessVoxelItem"},
{"weight" : 0.05, "pool" : "petcollars2"},
{"weight" : 0.05, "pool" : "fuLootStims"},
{"weight" : 0.1, "pool" : "fuSpaceBonus"},
{"weight" : 0.04, "item" : "sanityleech"},
{"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.002, "pool" : "fuMadnessVoxelItem"},
{"weight" : 0.05, "pool" : "fuEssenceHigh"},
{"weight" : 0.05, "pool" : "petcollars2"},
{"weight" : 0.04, "item" : "sanityleech"},
{"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.002, "pool" : "fuMadnessVoxelItem"},
{"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"}
]
}]
],
"fuMadnessVoxelItem" : [
[0, {
"pool" : [
{"weight" : 0.30, "item" : ["madness_knowledge", 1]},
{"weight" : 0.20, "item" : ["voynich", 1]},
{"weight" : 0.20, "item" : ["madnesstoken", 1]},
{"weight" : 0.05, "item" : ["whispercrystal", 1]},
{"weight" : 0.10, "item" : ["beachscene", 1]},
{"weight" : 0.10, "item" : ["madnesstoken2", 1]},
{"weight" : 0.01, "item" : ["madnesstoken3", 1]},
{"weight" : 0.01, "item" : ["madcomb", 1]},
{"weight" : 0.01, "item" : ["chipotle", 1]},
{"weight" : 0.01, "item" : ["motedust", 1]},
{"weight" : 0.01, "item" : ["madmask", 1]},
{"weight" : 0.01, "item" : ["madstatue", 1]},
{"weight" : 0.01, "item" : ["blindingenvelope", 1]},
{"weight" : 0.01, "item" : ["bloodyfinger", 1]},
{"weight" : 0.01, "item" : ["candleofstench", 1]},
{"weight" : 0.01, "item" : ["crayonoflies", 1]},
{"weight" : 0.01, "item" : ["lawbook", 1]},
{"weight" : 0.01, "item" : ["mapofdreamland", 1]},
{"weight" : 0.01, "item" : "sanityleech"},
{"weight" : 0.01, "item" : ["mirrormirror", 1]},
{"weight" : 0.01, "item" : ["sharpenedmouse", 1]},
{"weight" : 0.01, "item" : ["stickoftruth", 1]},
{"weight" : 0.01, "item" : ["terracottastatue", 1]},
{"weight" : 0.01, "item" : ["threecoins", 1]},
{"weight" : 0.01, "item" : ["tonsil", 1]},
{"weight" : 0.01, "item" : ["undulator", 1]},
{"weight" : 0.01, "item" : ["universalparking", 1]},
{"weight" : 0.01, "item" : ["vileconch", 1]},
{"weight" : 0.01, "item" : ["attunedpaper", 25]},
{"weight" : 0.01, "item" : ["nicepaper", 50]},
{"weight" : 0.01, "item" : "jarredfetus"}
]
}]
],
"fuResearchVoxelItems" : [
[0, {
"pool" : [
{"weight" : 0.55, "item" : ["smalldata", 1]},
{"weight" : 0.3, "item" : ["researchvoxelsmall", 1]},
{"weight" : 0.1, "item" : ["researchvoxel", 1]},
{"weight" : 0.05, "item" : ["researchvoxellarge", 1]},
{"weight" : 0.005, "item" : ["researchvoxelalien", 1]}
]
}]
],
"fuResearchVoxelTiny" : [
[0, {
"pool" : [
{"weight" : 0.4, "item" : ["fuscienceresource", 50]},
{"weight" : 0.3, "item" : ["fuscienceresource", 100]},
{"weight" : 0.2, "item" : ["fuscienceresource", 150]},
{"weight" : 0.05, "item" : ["fuscienceresource", 200]},
{"weight" : 0.05, "item" : ["fuscienceresource", 250]}
]
}]
],
"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.3, "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]},
{"weight" : 0.01, "pool" : "fuMadnessVoxelItem"}
]
}]
],
"fuRareOre" : [
[0, {
"pool" : [
{"weight" : 0.50, "item" : ["fuMadnessVoxelItem", 1]},
{"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]},
{"weight" : 0.01, "pool" : "fuMadnessVoxelItem"},
{"weight" : 0.005, "item" : "protheonshard"}