forked from wunderelf/FrackinUniverse_RC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterrestrial_worlds.config.patch
4983 lines (4641 loc) · 205 KB
/
terrestrial_worlds.config.patch
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
[
{ "op" : "add",
"path" : "/planetSizes/huge",
"value" : {
"size" : [8000, 6000],
"gravityRange" : [80, 110],
"layerDefaults" : {
"secondaryRegionPeriod" : [5000, 5000],
"secondaryRegionSize" : [1000, 2500],
"dungeonCountRange" : [0, 9]
},
"layers" : {
"space" : { "baseHeight" : 4000, "layerLevel" : 3200 },
"atmosphere" : { "baseHeight" : 3000, "layerLevel" : 2500 },
"surface" : { "baseHeight" : 2200, "layerLevel" : 2000 },
"subsurface" : { "baseHeight" : 1900, "layerLevel" : 1700 },
"underground1" : { "baseHeight" : 1600, "layerLevel" : 1400 },
"underground2" : { "baseHeight" : 1300, "layerLevel" : 1000 },
"underground3" : { "baseHeight" : 900, "layerLevel" : 800 },
"underground4" : { "baseHeight" : 700, "layerLevel" : 600 },
"underground5" : { "baseHeight" : 500, "layerLevel" : 400 },
"underground6" : { "baseHeight" : 300, "layerLevel" : 200 },
"underground7" : { "enabled" : false },
"underground8" : { "enabled" : false },
"core" : { "baseHeight" : 100, "layerLevel" : 0 }
}
}
},
{ "op" : "add",
"path" : "/planetSizes/mega",
"value" : {
"size" : [11000, 7000],
"gravityRange" : [90, 150],
"layerDefaults" : {
"secondaryRegionPeriod" : [7000, 7000],
"secondaryRegionSize" : [1500, 3500],
"dungeonCountRange" : [0, 12]
},
"layers" : {
"space" : { "baseHeight" : 6000, "layerLevel" : 6000 },
"atmosphere" : { "baseHeight" : 5000, "layerLevel" : 5000 },
"surface" : { "baseHeight" : 4500, "layerLevel" : 4000 },
"subsurface" : { "baseHeight" : 3500, "layerLevel" : 3000 },
"underground1" : { "baseHeight" : 2600, "layerLevel" : 2000 },
"underground2" : { "baseHeight" : 1600, "layerLevel" : 1000 },
"underground3" : { "baseHeight" : 1200, "layerLevel" : 800 },
"underground4" : { "baseHeight" : 700, "layerLevel" : 600 },
"underground5" : { "baseHeight" : 500, "layerLevel" : 400 },
"underground6" : { "baseHeight" : 300, "layerLevel" : 200 },
"underground7" : { "baseHeight" : 725, "layerLevel" : 550 },
"underground8" : { "baseHeight" : 475, "layerLevel" : 300 },
"core" : { "baseHeight" : 100, "layerLevel" : 0 }
}
}
},
{ "op" : "add", "path" : "/planetSizes/immense",
"value" : {
"size" : [16000, 8000],
"gravityRange" : [90, 180],
"dayLengthRange" : [1500, 4000],
"layerDefaults" : {
"secondaryRegionPeriod" : [10000, 10000],
"secondaryRegionSize" : [2000, 5000],
"dungeonCountRange" : [0, 18]
},
"layers" : {
"space" : { "baseHeight" : 7500, "layerLevel" : 7000 },
"atmosphere" : { "baseHeight" : 6500, "layerLevel" : 6000 },
"surface" : { "baseHeight" : 5700, "layerLevel" : 4600 },
"subsurface" : { "baseHeight" : 4425, "layerLevel" : 3400 },
"underground1" : { "baseHeight" : 3325, "layerLevel" : 2250 },
"underground2" : { "baseHeight" : 2175, "layerLevel" : 1800 },
"underground3" : { "baseHeight" : 1725, "layerLevel" : 1550 },
"underground4" : { "baseHeight" : 1475, "layerLevel" : 1300 },
"underground5" : { "baseHeight" : 1225, "layerLevel" : 1050 },
"underground6" : { "baseHeight" : 975, "layerLevel" : 800 },
"underground7" : { "baseHeight" : 725, "layerLevel" : 550 },
"underground8" : { "baseHeight" : 475, "layerLevel" : 300 },
"core" : { "baseHeight" : 200, "layerLevel" : 0 }
}
}
},
{ "op" : "replace", "path" : "/planetDefaults/dayLengthRange", "value" : [300, 3000] },
// Vanilla Biome Merges
{ "op" : "add",
"path" : "/planetTypes/alien/layers/surface/secondaryRegion",
"value" : [ "wartfield", "hellhive", "aliendesert", "alienforest", "sulphuricmagma", "icefire", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "bloodstonefield", "cellfield", "elder", "energyorbforest", "hauntedforest", "hellhive" ]
},
{ "op" : "add",
"path" : "/planetTypes/arctic/layers/surface/secondaryRegion",
"value" : [ "icefire", "taiga", "pineforest", "hellhive", "snowyforest" ]
},
{ "op" : "add",
"path" : "/planetTypes/barren/layers/surface/secondaryRegion",
"value" : [ "wastelandmini", "aliendesert", "crystalswamp", "alienforest", "icefire", "sulphuricplain", "badlands", "reddesert", "desertoasis", "calichefield", "bloodgulch", "deadwood", "ashgarden", "dryriverbed" ]
},
{ "op" : "add",
"path" : "/planetTypes/desert/layers/surface/secondaryRegion",
"value" : [ "wastelandmini", "aliendesert", "cactiplace", "crystalswamp", "reddesert", "finesand", "badlands", "desertoasis", "dryriverbed", "calichefield", "hellfirefield", "pitchfield", "sulphuricplain" ]
},
{ "op" : "add",
"path" : "/planetTypes/forest/layers/surface/secondaryRegion",
"value" : [ "ffhive", "birchforest", "alienforest", "cloudforest", "corruptedforest", "deadwood", "energyorbforest", "fieldofbracken", "fieldofcarrots", "fieldofcorn", "fieldofgrape", "fieldofpotato", "fieldoftomato", "primevalforest", "fieldofwheat", "flowerforest", "hauntedforest", "hauntedgraveyard", "meadow", "hellhive", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "rainbowforest", "snowyforest", "taiga" ]
},
{ "op" : "add",
"path" : "/planetTypes/garden/layers/surface/secondaryRegion",
"value" : [ "crystalswamp", "ffhive", "birchforest", "cloudforest", "fieldofcarrots", "fieldofcorn", "fieldofgrape", "fieldofpotato", "fieldofbracken", "fieldoftomato", "fieldofwheat", "flowerforest", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "snowyforest", "taiga" ]
},
{ "op" : "add",
"path" : "/planetTypes/jungle/layers/surface/secondaryRegion",
"value" : [ "wartfield", "wastelandmini", "ffhive", "crystalswamp", "birchforest", "alienforest", "pitchfield", "irradiatedwaste", "blackslimebog", "bloodgulch", "corruptedforest", "deadwood", "elder", "energyorbforest", "hotsprings", "meadow", "primevalforest", "badlands", "reddesert" ]
},
{ "op" : "add",
"path" : "/planetTypes/magma/layers/surface/secondaryRegion",
"value" : [ "sulphuricmagma", "pitchfield", "icefire", "sulphuricplain", "hellfirefield", "hellhive", "irradiatedwaste", "reddesert", "bloodgulch", "badlands", "ashgarden", "bloodstonefield", "dryriverbed" ]
},
{ "op" : "add",
"path" : "/planetTypes/savannah/layers/surface/secondaryRegion",
"value" : [ "wartfield", "wastelandmini", "ffhive", "cactiplace", "crystalswamp", "birchforest", "alienforest", "sulphuricmagma", "pitchfield", "hellhive","fieldofbracken", "flowerforest", "hauntedforest", "bloodgulch", "hauntedgraveyard", "irradiatedwaste", "meadow", "badlands", "finesand", "reddesert", "calichefield", "sulphuricplain" ]
},
{ "op" : "add",
"path" : "/planetTypes/scorched/layers/surface/secondaryRegion",
"value" : [ "wartfield", "wastelandmini", "crystalswamp", "sulphuricmagma", "icefire", "hellhive", "elder", "deadwood" ]
},
{ "op" : "add",
"path" : "/planetTypes/snow/layers/surface/secondaryRegion",
"value" : [ "wastelandmini", "taiga", "pineforest", "hellhive", "snowyforest", "magicsnowland" ]
},
{ "op" : "add",
"path" : "/planetTypes/toxic/layers/surface/secondaryRegion",
"value" : [ "wartfield", "wastelandmini", "ffhive", "cactiplace", "crystalswamp", "blisterbushfield", "corruptedforest", "bloodgulch", "elder", "primevalforest", "sulphuricplain", "pitchfield" ]
},
{ "op" : "add",
"path" : "/planetTypes/tundra/layers/surface/secondaryRegion",
"value" : [ "taiga", "pineforest", "hellhive", "snowyforest", "magicsnowland" ]
},
{ "op" : "add",
"path" : "/planetTypes/volcanic/layers/surface/secondaryRegion",
"value" : [ "wastelandmini", "crystalswamp", "sulphuricmagma", "hellfirefield", "sulphuricplain", "hellhive", "elder" ]
},
{ "op" : "add",
"path" : "/planetTypes/moon/layers/surface/primaryRegion",
"value" : [ "moon_desert", "moon_volcanic", "moon_toxic", "moon_stone" ]
},
{ "op" : "add",
"path" : "/planetTypes/moon/layers/surface/secondaryRegion",
"value" : [ "moon_desert", "moon_volcanic", "moon_toxic", "moon_stone" ]
},
{ "op" : "add",
"path" : "/planetTypes/moon/layers/surface/subsurface",
"value" : [ "moondesertunderground", "moonvolcanicunderground", "moontoxicunderground", "moonstoneunderground" ]
},
{ "op" : "add",
"path" : "/planetTypes/ocean/layers/subsurface/secondaryRegion",
"value" : [ "deepseavent", "kelpforest", "coralreef" ]
},
{"op" : "add",
"path" : "/planetTypes/ffunknown",
"value" :
{
"threatRange" : [3, 8],
"layers" : {
"surface" : {
"primaryRegion" : [ "midnight", "chromatic", "arborealdark", "icewastedark", "sulphuricdark", "eden", "tarball", "arboreal2", "desertwastes","mountainous", "tidewater", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "savannah", "scorched", "snow", "tundra", "volcanic" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "magicsnowland", "eden", "fieldofbracken", "supermatterzone", "aliendesert", "goreforest", "cactiplace", "metalworks", "metalhive", "metalworks2", "metalworks3", "metalworks4", "metaljungle", "crystalswamp", "ffhive", "corruptmoon", "birchforest", "alienforest", "sulphuricmagma", "cellfield", "reddesert", "finesand", "cloudforest", "hauntedforest", "hauntedgraveyard", "rainbowforest", "swamp", "mountainous", "tidewater", "estuary", "breakwater", "corrupt", "spring", "mushroom", "oasis", "tar", "alpine", "bioluminescence", "colourful", "bones", "giantflowers", "eyepatch", "ice", "rust", "crystalline", "alien", "arctic", "barren", "desert", "forest", "steamspring", "prism", "hive", "jungle", "magma", "ocean", "savannah", "scorched", "snow", "toxic", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "moonshadowunderground", "tarball", "arboreal2", "desertwastes","ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "corruptmoonunderground", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "wastelandunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "metalhive", "moonshadowunderground", "metalworksunderground1", "metalworksunderground2", "metalworksunderground3", "metalworksunderground4", "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "wastelandunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "garden", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ]
},
"underground1" : {
"primaryRegion" : [ "tarball", "arboreal2", "desertwastes","ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "corruptmoonunderground","moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "fftarunderground","tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground", "icecaves", "bonecaves", "stonecaves", "luminouscaves", "fleshcaves", "cellcaves","fffleshcaves", "ffcellcaves", "arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "wastelandunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "ffcoalmine", "ffcoppermine", "ffcoralcave", "ffcrystalcavern", "fffrostcavern", "ffgoldmine", "ffshadow", "ffvolcanic", "ffzen"],
"secondaryRegion" : [ "wartfield", "wastelandmini", "metalhive", "metalworksunderground1", "metalworksunderground2", "metalworksunderground3", "metalworksunderground4", "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "bloodstoneunderground", "wastelandunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ]
},
"underground2" : {
"primaryRegion" : [ "tarball", "arboreal2", "desertwastes","ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "corruptmoonunderground","moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "fftarunderground","tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground", "icecaves", "bonecaves", "stonecaves", "luminouscaves", "fleshcaves", "cellcaves", "fffleshcaves", "ffcellcaves","arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "wastelandunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "ffcoalmine", "ffcoppermine", "ffcoralcave", "ffcrystalcavern", "fffrostcavern", "ffgoldmine", "ffshadow", "ffvolcanic", "ffzen" ],
"secondaryRegion" : [ "wartfield", "metalhive", "metalworksunderground1", "metalworksunderground2", "metalworksunderground3", "metalworksunderground4", "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "bloodstoneunderground", "wastelandunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ]
},
"underground3" : {
"primaryRegion" : [ "tarball", "arboreal2", "desertwastes","ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "corruptmoonunderground","moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "fftarunderground","tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground", "icecaves", "bonecaves", "stonecaves", "luminouscaves", "fleshcaves", "cellcaves", "fffleshcaves", "ffcellcaves","arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "wastelandunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "ffcoalmine", "ffcoppermine", "ffcoralcave", "ffcrystalcavern", "fffrostcavern", "ffgoldmine", "ffshadow", "ffvolcanic", "ffzen" ],
"secondaryRegion" : [ "wartfield", "metalhive", "metalworksunderground1", "metalworksunderground2", "metalworksunderground3", "metalworksunderground4", "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "bloodstoneunderground", "wastelandunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ]
},
"underground4" : {
"primaryRegion" : [ "tarball", "arboreal2", "desertwastes","ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "corruptmoonunderground","moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "fftarunderground","tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground", "icecaves", "bonecaves", "stonecaves", "luminouscaves", "fleshcaves", "cellcaves", "fffleshcaves", "ffcellcaves","arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "wastelandunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "ffcoalmine", "ffcoppermine", "ffcoralcave", "ffcrystalcavern", "fffrostcavern", "ffgoldmine", "ffshadow", "ffvolcanic", "ffzen" ],
"secondaryRegion" : [ "wartfield", "metalhive", "metalworksunderground1", "metalworksunderground2", "metalworksunderground3", "metalworksunderground4", "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "bloodstoneunderground", "wastelandunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ]
},
"underground5" : {
"primaryRegion" : [ "tarball", "arboreal2", "desertwastes","ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "corruptmoonunderground","moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "fftarunderground","tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground", "icecaves", "bonecaves", "stonecaves", "luminouscaves", "fleshcaves", "cellcaves", "fffleshcaves", "ffcellcaves","arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "ffcoalmine", "ffcoppermine", "ffcoralcave", "ffcrystalcavern", "fffrostcavern", "ffgoldmine", "ffshadow", "ffvolcanic", "ffzen" ],
"secondaryRegion" : [ "wartfield", "metalhive", "metalworksunderground1", "metalworksunderground2", "metalworksunderground3", "metalworksunderground4", "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ]
},
"underground6" : {
"primaryRegion" : [ "tarball", "arboreal2", "desertwastes","ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "corruptmoonunderground","moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "fftarunderground","tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground", "icecaves", "bonecaves", "stonecaves", "luminouscaves", "fleshcaves", "cellcaves", "fffleshcaves", "ffcellcaves","arborealunderground", "atropusunderground", "bloodstoneunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "wastelandunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "ffcoalmine", "ffcoppermine", "ffcoralcave", "ffcrystalcavern", "fffrostcavern", "ffgoldmine", "ffshadow", "ffvolcanic", "ffzen" ],
"secondaryRegion" : [ "wartfield", "metalhive", "metalworksunderground1", "metalworksunderground2", "metalworksunderground3", "metalworksunderground4", "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "shadow", "crystalcave", "abandonedmines", "hive", "moondesertunderground", "moonstoneunderground", "moonvolcanicunderground", "moontoxicunderground", "rainbowforest", "ffspidernest", "mountainous", "ffsupermatter", "deepseavent", "tidewater", "tidewaterfloor", "tidewaterunderground", "lightlessshadowsea", "metallicmoonshadowsea", "icemoonheliumsea", "metallicmoonheliumsea", "bloodstonesea", "sulphuricoceanfloor", "magmaoceanfloor", "arcticoceanfloor", "toxicoceanfloor", "oceanfloor", "nitrogenseafloor", "desertsubsurface", "barrenunderground", "shallowunderground", "arborealunderground", "atropusunderground", "bloodstoneunderground", "wastelandunderground", "bogunderground", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "irradiatedunderground", "lightlessunderground", "metallicunderground", "penumbraunderground", "slimeworldunderground", "sulphuricunderground", "thickjungleunderground", "arboreal", "atropus", "bloodstone", "bog", "crystalmoon", "icemoon", "icewaste", "infernus", "irradiated", "lightless", "metallicmoon", "nitrogensea", "penumbra", "protoworld", "sulphuric", "thickjungle", "urbanwasteland", "alien", "barren", "desert", "forest", "jungle", "magma", "savannah", "scorched", "snow", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ]
},
"core" : {
"primaryRegion" : [ "mooncore", "nitrogencore", "protocore", "core", "liquidprotocore", "irradiumcore" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/strangesea",
"value" :
{
"threatRange" : [4, 7],
"layers" : {
"surface" : {
"primaryRegion" : [ "ocean", "magma", "toxic", "nitrogensea", "sulphuricocean", "tidewater", "bloodstonesea", "arctic" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "corruptmoon", "corruptedforest", "magicsnowland", "eden", "fieldofbracken", "supermatterzone", "aliendesert", "goreforest", "cactiplace", "metalworks", "metalhive", "metalworks2", "metalworks3", "metalworks4", "metaljungle", "crystalswamp", "ffhive", "corruptmoon", "birchforest", "alienforest", "sulphuricmagma", "cellfield", "reddesert", "finesand", "cloudforest", "hauntedforest", "hauntedgraveyard", "rainbowforest", "swamp", "mountainous", "tidewater", "estuary", "breakwater", "corrupt", "spring", "mushroom", "oasis", "tar", "alpine", "bioluminescence", "colourful", "bones", "giantflowers", "eyepatch", "ice", "rust", "crystalline", "alien", "arctic", "barren", "desert", "forest", "jungle", "magma", "ocean", "savannah", "scorched", "snow", "toxic", "tundra", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "oceanfloor", "toxicoceanfloor", "magmaoceanfloor", "arcticoceanfloor","nitrogenseafloor", "bloodstoneseafloor", "sulphuricoceanfloor" ]
},
"underground1" : {
"secondaryRegion" : [ "colourful", "zen", "shadow", "crystalcave", "abandonedmines", "hive","coralcavern", "luminouscaves", "stonecaves", "bonecaves", "icecaves" ]
},
"underground2" : {
"secondaryRegion" : [ "colourful", "zen", "shadow", "crystalcave", "abandonedmines", "hive","coralcavern", "luminouscaves", "stonecaves", "bonecaves", "icecaves" ]
},
"underground3" : {
"secondaryRegion" : [ "colourful", "zen", "shadow", "crystalcave", "abandonedmines", "hive","coralcavern", "luminouscaves", "stonecaves", "bonecaves", "icecaves" ]
},
"underground4" : {
"secondaryRegion" : [ "colourful", "zen", "shadow", "crystalcave", "abandonedmines", "hive","coralcavern", "luminouscaves", "stonecaves", "bonecaves", "icecaves" ]
},
"underground5" : {
"secondaryRegion" : [ "colourful", "zen", "shadow", "crystalcave", "abandonedmines", "hive","coralcavern", "luminouscaves", "stonecaves", "bonecaves", "icecaves" ]
},
"underground6" : {
"secondaryRegion" : [ "colourful", "zen", "shadow", "crystalcave", "abandonedmines", "hive","coralcavern", "luminouscaves", "stonecaves", "bonecaves", "icecaves" ]
},
"core" : {
"primaryRegion" : [ "mooncore", "nitrogencore", "protocore", "core", "liquidprotocore", "irradiumcore" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/shadow",
"value" :
{
"gravityRange" : [10, 120],
"threatRange" : [4, 7],
"layers" : {
"space" : {
"primaryRegion" : [ "elderasteroid", "elderasteroid", "asteroids" ]
},
"surface" : {
"primaryRegion" : [ "midnight", "metallicmoon", "penumbra", "lightless", "moon_shadow", "atropusdark", "arborealdark", "sulphuricdark", "icewastedark" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "wastelandmini", "midnight", "corruptmoon", "tarball", "atropus","supermatterzone", "metalworks", "metalworks2", "metalworks3", "metalworks4", "metaljungle", "metalhive", "sulphuricmagma", "tar", "desert", "scorched", "volcanic", "elder", "pitchfield", "sulphuricplain" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "penumbraunderground", "metallicunderground", "moonshadowunderground", "lightlessunderground", "atropusunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground1" : {
"primaryRegion" : [ "penumbraunderground", "metallicunderground", "moonshadowunderground", "lightlessunderground", "atropusunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground2" : {
"primaryRegion" : [ "penumbraunderground", "metallicunderground", "moonshadowunderground", "lightlessunderground", "atropusunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground3" : {
"primaryRegion" : [ "penumbraunderground", "metallicunderground", "moonshadowunderground", "lightlessunderground", "atropusunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground4" : {
"primaryRegion" : [ "penumbraunderground", "metallicunderground", "moonshadowunderground", "lightlessunderground", "atropusunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground5" : {
"primaryRegion" : [ "penumbraunderground", "metallicunderground", "moonshadowunderground", "lightlessunderground", "atropusunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground6" : {
"primaryRegion" : [ "penumbraunderground", "metallicunderground", "moonshadowunderground", "lightlessunderground", "atropusunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"core" : {
"primaryRegion" : [ "mooncore", "nitrogencore", "protocore", "core", "liquidprotocore", "irradiumcore" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/superdense",
"value" :
{
"gravityRange" : [100, 170],
"threatRange" : [4, 6],
"layers" : {
"space" : {
"primaryRegion" : [ "elderasteroid", "elderasteroid", "asteroids" ]
},
"surface" : {
"primaryRegion" : [ "mountainous", "atropus", "bloodstone", "crystalmoon", "icewaste", "infernus", "metallicmoon", "sulphuric", "urbanwasteland", "alien", "desert", "scorched", "volcanic" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "fieldofbracken", "supermatterzone", "aliendesert", "metalworks", "metalworks2", "metalworks3", "metalworks4", "metalhive", "sulphuricmagma","reddesert", "mountainous", "tar","crystalline", "alien", "desert", "scorched", "volcanic", "ashgarden", "badlands", "blackslimebog", "blisterbushfield", "bloodgulch", "calichefield", "bloodstonefield", "corruptedforest", "crystalplain", "deadwood", "desertoasis", "dryriverbed", "elder", "energyorbforest", "flowerforest", "hellfirefield", "hellhive", "icefire", "irradiatedwaste", "meadow", "orchardapple", "orchardpeach", "orchardpear", "pineforest", "pitchfield", "primevalforest", "snowyforest", "sulphuricplain", "taiga" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "crystalmoonunderground", "metallicunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground1" : {
"primaryRegion" : [ "crystalmoonunderground", "metallicunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground2" : {
"primaryRegion" : [ "crystalmoonunderground", "metallicunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground3" : {
"primaryRegion" : [ "crystalmoonunderground", "metallicunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground4" : {
"primaryRegion" : [ "crystalmoonunderground", "metallicunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground5" : {
"primaryRegion" : [ "crystalmoonunderground", "metallicunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground6" : {
"primaryRegion" : [ "crystalmoonunderground", "metallicunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"core" : {
"primaryRegion" : [ "mooncore", "nitrogencore", "protocore", "core", "liquidprotocore", "irradiumcore" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/arboreal",
"value" :
{
"threatRange" : [2, 5],
"layers" : {
"atmosphere" : {
"primaryRegion" : [ "clouds" ]
},
"surface" : {
"primaryRegion" : [ "arboreal" ],
"secondaryRegion" : [ "wartfield", "fieldofbracken", "ffhive", "aliendesert", "cactiplace", "crystalswamp", "birchforest", "alienforest", "cloudforest", "rainbowforest", "swamp", "elder", "corruptedforest", "fieldofwheat", "fieldofsugar", "fieldofpotato", "fieldofcorn", "fieldofgrape", "fieldoftomato", "pineforest", "flowerforest", "snowyforest", "giantflowers", "forest", "jungle", "savannah", "snow", "tundra" ],
"dungeonCountRange" : [2, 10],
"dungeons" : [ "shipwreck", "avianfloatingislands", "avianpyramid", "glitchfarm", "glitchjoust", "uscmbase", "lakes", "volcano", "greenruins", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "arborealunderground" ]
},
"underground1" : {
"secondaryRegion" : [ "ffhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground2" : {
"secondaryRegion" : [ "ffhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground3" : {
"secondaryRegion" : [ "ffhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground4" : {
"secondaryRegion" : [ "zen", "shroomcave", "shadow", "colorfulcave", "crystalcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground5" : {
"secondaryRegion" : [ "zen", "shroomcave", "shadow", "colorfulcave", "crystalcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground6" : {
"secondaryRegion" : [ "zen", "shroomcave", "shadow", "colorfulcave", "crystalcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/eden",
"value" :
{
"gravityRange" : [40, 90],
"threatRange" : [1, 6],
"layers" : {
"atmosphere" : {
"primaryRegion" : [ "clouds" ]
},
"surface" : {
"primaryRegion" : [ "eden" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "steamspring", "prism", "fieldofbracken", "birchforest", "cloudforest", "rainbowforest", "swamp", "fieldofwheat", "fieldofsugar", "fieldofpotato", "fieldofcorn", "fieldofgrape", "fieldoftomato", "pineforest", "flowerforest", "snowyforest", "giantflowers", "forest", "jungle", "savannah" ],
"dungeonCountRange" : [0, 0],
"dungeons" : [ ]
},
"subsurface" : {
"primaryRegion" : [ "arborealunderground" ]
},
"underground1" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground2" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground3" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground4" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground5" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground6" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/barren",
"value" :
{
"layers" : {
"surface" : {
"primaryRegion" : [ "barren2", "barren3" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/arboreal2",
"value" :
{
"threatRange" : [3, 5],
"layers" : {
"atmosphere" : {
"primaryRegion" : [ "clouds" ]
},
"surface" : {
"primaryRegion" : [ "arboreal2" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "steamspring", "corruptedforest", "ffhive", "goreforest", "cactiplace", "crystalswamp", "birchforest", "alienforest", "swamp", "hellhive", "elder", "corruptedforest", "flowerforest", "deadwood", "giantflowers" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "shipwreck", "avianfloatingislands", "avianpyramid", "glitchfarm", "glitchjoust", "uscmbase", "lakes", "volcano", "greenruins", "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "arborealunderground" ]
},
"underground1" : {
"secondaryRegion" : [ "ffhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground2" : {
"secondaryRegion" : [ "ffhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground3" : {
"secondaryRegion" : [ "ffhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground4" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground5" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground6" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/arborealdark",
"value" :
{
"threatRange" : [4, 7],
"layers" : {
"space" : {
"primaryRegion" : [ "elderasteroid", "asteroids", "corruptasteroid" ]
},
"atmosphere" : {
"primaryRegion" : [ "clouds" ]
},
"surface" : {
"primaryRegion" : [ "arboreal2" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "steamspring", "corruptedforest", "hellhive", "goreforest", "cactiplace", "crystalswamp", "birchforest", "alienforest", "swamp", "hellhive", "elder", "corruptedforest", "flowerforest", "deadwood", "giantflowers" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "elderruins", "crystalcavern", "shipwreck", "avianfloatingislands", "avianpyramid", "glitchfarm", "glitchjoust", "uscmbase", "lakes", "volcano", "greenruins", "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "arborealunderground" ]
},
"underground1" : {
"secondaryRegion" : [ "ffhellhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground2" : {
"secondaryRegion" : [ "ffhellhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground3" : {
"secondaryRegion" : [ "ffhellhiveunderground", "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground4" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground5" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"underground6" : {
"secondaryRegion" : [ "zen", "shroomcave", "colorfulcave", "ffspidernest", "luminouscaves", "minivillageunderground", "mushroomunderground", "wildernessunderground", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/atropus",
"value" :
{
"threatRange" : [4, 7],
"layers" : {
"space" : {
"primaryRegion" : [ "elderasteroid", "asteroids", "corruptasteroid" ]
},
"surface" : {
"primaryRegion" : [ "atropus" ],
"secondaryRegion" : [ "wartfield", "midnight", "corruptmoon", "corruptedforest", "goreforest", "cellfield", "reddesert", "bloodgulch", "hellhive", "elder" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "elderruins", "wreck", "apexresearchlab", "apextestchamber", "aviantomb", "aviantemple" ]
},
"subsurface" : {
"primaryRegion" : [ "atropusunderground" ]
},
"underground1" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground2" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground3" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground4" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground5" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground6" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"core" : {
"primaryRegion" : [ "puscore" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/atropusdark",
"value" :
{
"threatRange" : [4, 7],
"layers" : {
"space" : {
"primaryRegion" : [ "elderasteroid", "asteroids", "corruptasteroid" ]
},
"surface" : {
"primaryRegion" : [ "atropusdark" ],
"secondaryRegion" : [ "wartfield", "midnight", "corruptmoon", "goreforest", "cellfield", "reddesert", "bloodgulch", "hellhive", "elder", "corruptedforest" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "elderruins", "wreck", "apexresearchlab", "apextestchamber", "aviantomb", "aviantemple" ]
},
"subsurface" : {
"primaryRegion" : [ "atropusunderground" ]
},
"underground1" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground2" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground3" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground4" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground5" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground6" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"core" : {
"primaryRegion" : [ "puscore" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/bloodstone",
"value" :
{
"threatRange" : [3, 6],
"layers" : {
"space" : {
"primaryRegion" : [ "elderasteroid", "asteroids", "corruptasteroid" ]
},
"surface" : {
"primaryRegion" : [ "bloodstone" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "midnight", "corruptmoon", "supermatterzone", "goreforest", "crystalswamp", "ffhive", "alienforest", "sulphuricmagma", "cellfield", "reddesert", "rainbowforest", "bloodgulch", "hellhive", "elder", "corruptedforest" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "apexresearchlab", "apextestchamber", "apextowerblock","avianairship"]
},
"subsurface" : {
"primaryRegion" : [ "bloodstoneunderground" ]
},
"underground1" : {
"primaryRegion" : [ "bloodstoneunderground" ],
"secondaryRegion" : [ "ffhellhiveunderground", "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground2" : {
"primaryRegion" : [ "bloodstoneunderground" ],
"secondaryRegion" : [ "ffhellhiveunderground", "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground3" : {
"primaryRegion" : [ "bloodstoneunderground" ],
"secondaryRegion" : [ "ffhellhiveunderground", "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground4" : {
"primaryRegion" : [ "bloodstoneunderground" ],
"secondaryRegion" : [ "ffhellhiveunderground", "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground5" : {
"primaryRegion" : [ "bloodstoneunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"underground6" : {
"primaryRegion" : [ "bloodstoneunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "hive", "shadow", "ffspidernest", "ffsupermatter", "ffshadow", "fffleshcaves", "ffvolcanic", "ffcrystalcavern" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/bloodstonesea",
"value" :
{
"threatRange" : [3, 6],
"layers" : {
"space" : {
"primaryRegion" : [ "elderasteroid", "asteroids", "corruptasteroid" ]
},
"surface" : {
"primaryRegion" : [ "bloodstonesea" ]
},
"subsurface" : {
"primaryRegion" : [ "bloodstoneseafloor" ],
"secondaryRegion" : [ "deepseaventblood" ]
},
"underground1" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground2" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground3" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground4" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground5" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"underground6" : {
"primaryRegion" : [ "atropusunderground" ],
"secondaryRegion" : [ "bloodstoneunderground", "corruptmoonunderground", "ffhellhiveunderground", "ffpoopit", "heck", "shadow", "hive", "ffspidernest", "fffleshcaves", "ffcellcaves", "ffshadow" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/bog",
"value" :
{
"threatRange" : [1, 4],
"layers" : {
"atmosphere" : {
"primaryRegion" : [ "clouds" ]
},
"surface" : {
"primaryRegion" : [ "bog" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "prism", "fieldofbracken", "cactiplace", "crystalswamp", "ffhive", "alienforest", "energyorbforest", "deadwood", "blackslimebog", "pitchfield", "giantflowers", "forest", "jungle" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple","humanbunker", "floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "bogunderground" ]
},
"underground1" : {
"secondaryRegion" : [ "ffhiveunderground", "ffpoopit", "ffhiveunderground", "zen", "ffspidernest", "bogunderground", "stonecaves", "bonecaves", "tarunderground", "wildernessunderground", "luminouscaves", "ffshadow", "ffzen", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine", "ffcrystalcavern", "ffcoralcave" ]
},
"underground2" : {
"secondaryRegion" : [ "ffhiveunderground", "ffpoopit", "ffhiveunderground", "zen", "ffspidernest", "bogunderground", "stonecaves", "bonecaves", "tarunderground", "wildernessunderground", "luminouscaves", "ffshadow", "ffzen", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine", "ffcrystalcavern", "ffcoralcave" ]
},
"underground3" : {
"secondaryRegion" : [ "ffhiveunderground", "ffpoopit", "ffhiveunderground", "zen", "ffspidernest", "bogunderground", "stonecaves", "bonecaves", "tarunderground", "wildernessunderground", "luminouscaves", "ffshadow", "ffzen", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine", "ffcrystalcavern", "ffcoralcave" ]
},
"underground4" : {
"secondaryRegion" : [ "ffpoopit", "ffhiveunderground", "zen", "ffspidernest", "bogunderground", "stonecaves", "bonecaves", "tarunderground", "icecaves", "luminouscaves", "ffshadow", "ffzen", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine", "ffcrystalcavern", "ffcoralcave" ]
},
"underground5" : {
"secondaryRegion" : [ "ffpoopit", "hive", "zen", "shroomcave", "shadow", "colorfulcave", "crystalcave", "ffspidernest", "bogunderground", "stonecaves", "bonecaves", "tarunderground", "icecaves", "ffshadow", "ffzen", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine", "ffcrystalcavern", "ffcoralcave" ]
},
"underground6" : {
"secondaryRegion" : [ "ffpoopit", "hive", "zen", "shroomcave", "shadow", "colorfulcave", "crystalcave", "ffspidernest", "bogunderground", "stonecaves", "bonecaves", "tarunderground", "icecaves", "ffshadow", "ffzen", "ffvolcanic", "ffsilvermine", "ffcoalmine", "ffgoldmine", "ffcoppermine", "ffcrystalcavern", "ffcoralcave" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/crystalmoon",
"value" :
{
"gravityRange" : [25, 80],
"threatRange" : [2, 5],
"layers" : {
"surface" : {
"primaryRegion" : [ "crystalmoon" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "prism", "supermatterzone", "aliendesert", "crystalswamp", "crystalplain", "crystaldesert", "ffhive", "corruptmoon", "cloudforest", "rainbowforest", "irradiatedwaste", "bloodstonefield", "volcanic" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "avianairship", "aviantemple", "humanbunker", "humanprison", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "crystalmoonunderground" ],
"secondaryRegion" : [ "ffcrystalrealm", "hive", "zen", "crystalcave", "corruptmoonunderground", "ffsupermatter", "icecaves", "luminouscaves", "ffshadow", "ffcrystalcavern", "ffcoralcave" ]
},
"underground1" : {
"primaryRegion" : [ "crystalmoonunderground" ],
"secondaryRegion" : [ "ffcrystalrealm", "hive", "zen", "crystalcave", "corruptmoonunderground", "ffsupermatter", "icecaves", "luminouscaves", "ffshadow", "ffcrystalcavern", "ffcoralcave" ]
},
"underground2" : {
"primaryRegion" : [ "crystalmoonunderground" ],
"secondaryRegion" : [ "ffcrystalrealm", "hive", "zen", "crystalcave", "corruptmoonunderground", "ffsupermatter", "icecaves", "luminouscaves", "ffshadow", "ffcrystalcavern", "ffcoralcave" ]
},
"underground3" : {
"primaryRegion" : [ "crystalmoonunderground" ],
"secondaryRegion" : [ "ffcrystalrealm", "hive", "zen", "crystalcave", "corruptmoonunderground", "ffsupermatter", "icecaves", "luminouscaves", "ffshadow", "ffcrystalcavern", "ffcoralcave" ]
},
"underground4" : {
"primaryRegion" : [ "crystalmoonunderground" ],
"secondaryRegion" : [ "ffcrystalrealm", "hive", "zen", "crystalcave", "corruptmoonunderground", "ffsupermatter", "icecaves", "luminouscaves", "ffshadow", "ffcrystalcavern", "ffcoralcave" ]
},
"underground5" : {
"primaryRegion" : [ "crystalmoonunderground" ],
"secondaryRegion" : [ "ffcrystalrealm", "hive", "zen", "crystalcave", "corruptmoonunderground", "ffsupermatter", "icecaves", "luminouscaves", "ffshadow", "ffcrystalcavern", "ffcoralcave" ]
},
"underground6" : {
"primaryRegion" : [ "crystalmoonunderground" ],
"secondaryRegion" : [ "ffcrystalrealm", "hive", "zen", "crystalcave", "corruptmoonunderground", "ffsupermatter", "icecaves", "luminouscaves", "ffshadow", "ffcrystalcavern", "ffcoralcave" ]
},
"core" : {
"primaryRegion" : [ "mooncore"]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/chromatic",
"value" :
{
"threatRange" : [4, 7],
"layers" : {
"surface" : {
"primaryRegion" : [ "chromatic" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "prism", "aliendesert", "goreforest", "crystaldesert", "crystalswamp","supermatterzone", "ffhive", "corruptedforest", "birchforest", "alienforest", "cellfield", "reddesert", "swamp", "bloodgulch", "hellhive", "elder", "icewaste", "snow", "protoworld", "irradiated" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "fuwreck", "wreck", "glitchsewer", "glitchvillage", "avianairship","floranhuntinggrounds", "floranvillagetower", "floranhell", "humanprison" ]
},
"subsurface" : {
"primaryRegion" : [ "chromaticunderground" ]
},
"underground1" : {
"primaryRegion" : [ "chromaticunderground" ],
"secondaryRegion" : [ "ffhellhiveunderground", "ffpoopit", "ffcrystalrealm", "zen", "shadow", "heck", "colorfulcave", "shroomcave", "ffspidernest", "ffsupermatter", "ffshadow", "ffzen", "fffrostcavern", "ffvolcanic", "ffcrystalcavern" ]
},
"underground2" : {
"primaryRegion" : [ "chromaticunderground" ],
"secondaryRegion" : [ "ffhellhiveunderground", "ffpoopit", "ffcrystalrealm", "zen", "shadow", "heck", "colorfulcave", "shroomcave", "ffspidernest", "ffsupermatter", "ffshadow", "ffzen", "fffrostcavern", "ffvolcanic", "ffcrystalcavern" ]
},
"underground3" : {
"primaryRegion" : [ "chromaticunderground" ],
"secondaryRegion" : [ "ffhellhiveunderground", "ffpoopit", "ffcrystalrealm", "zen", "shadow", "heck", "colorfulcave", "shroomcave", "ffspidernest", "ffsupermatter", "ffshadow", "ffzen", "fffrostcavern", "ffvolcanic", "ffcrystalcavern" ]
},
"underground4" : {
"primaryRegion" : [ "chromaticunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "zen", "shadow", "heck", "colorfulcave", "shroomcave", "ffspidernest", "ffsupermatter", "ffshadow", "ffzen", "fffrostcavern", "ffvolcanic", "ffcrystalcavern" ]
},
"underground5" : {
"primaryRegion" : [ "chromaticunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "zen", "shadow", "heck", "colorfulcave", "shroomcave", "ffspidernest", "ffsupermatter", "ffshadow", "ffzen", "fffrostcavern", "ffvolcanic", "ffcrystalcavern" ]
},
"underground6" : {
"primaryRegion" : [ "chromaticunderground" ],
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "zen", "shadow", "heck", "colorfulcave", "shroomcave", "ffspidernest", "ffsupermatter", "ffshadow", "ffzen", "fffrostcavern", "ffvolcanic", "ffcrystalcavern" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/desertwastes",
"value" :
{
"threatRange" : [2, 6],
"layers" : {
"surface" : {
"primaryRegion" : [ "desertwastes" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "steamspring", "corruptmoon", "supermatterzone", "crystaldesert", "aliendesert", "goreforest", "cactiplace", "crystalswamp", "ffhive", "oasis", "tar", "reddesert", "finesand", "badlands", "desertoasis", "dryriverbed", "calichefield", "hellfirefield", "pitchfield", "sulphuricplain" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "glitchsewer", "glitchvillage", "apexresearchlab", "apextestchamber", "apextowerblock", "aviantomb", "aviantower", "avianvillage", "humanbunker", "floranhuntinggrounds", "floranvillagetower" ]
},
"subsurface" : {
"primaryRegion" : [ "desertsubsurface" ]
},
"underground1" : {
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "heck", "tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground" ]
},
"underground2" : {
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "heck", "tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground" ]
},
"underground3" : {
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "heck", "tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground" ]
},
"underground4" : {
"secondaryRegion" : [ "ffpoopit", "ffcrystalrealm", "colorfulcave", "zen", "heck", "tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground" ]
},
"underground5" : {
"secondaryRegion" : [ "ffpoopit", "colorfulcave", "zen", "heck", "tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground" ]
},
"underground6" : {
"secondaryRegion" : [ "ffpoopit", "colorfulcave", "zen", "heck", "tarunderground", "mushroomunderground", "wildernessunderground", "minivillageunderground" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/frozenvolcanic",
"value" :
{
"threatRange" : [4, 7],
"layers" : {
"surface" : {
"primaryRegion" : [ "frozenvolcanic" ],
"secondaryRegion" : [ "prism", "corruptmoon", "supermatterzone", "crystaldesert", "sulphuricmagma", "bioluminescence", "ice", "rust", "crystalline", "infernus","scorched", "snow", "volcanic", "ashgarden", "crystalplain", "elder", "hellfirefield", "pitchfield", "sulphuricplain" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "crystalcavern" ]
},
"subsurface" : {
"primaryRegion" : [ "icewasteunderground", "nitrogenseafloor", "magmaoceanfloor" ]
},
"underground1" : {
"primaryRegion" : [ "icewasteunderground", "nitrogenseafloor", "magmaoceanfloor" ],
"secondaryRegion" : [ "ffcrystalrealm", "crystalcave", "heck", "ffsupermatter", "icecaves", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "sulphuricunderground", "ffcrystalcavern", "fffrostcavern", "ffvolcanic" ]
},
"underground2" : {
"primaryRegion" : [ "icewasteunderground", "nitrogenseafloor", "magmaoceanfloor" ],
"secondaryRegion" : [ "ffcrystalrealm", "crystalcave", "heck", "ffsupermatter", "icecaves", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "sulphuricunderground", "ffcrystalcavern", "fffrostcavern", "ffvolcanic" ]
},
"underground3" : {
"primaryRegion" : [ "icewasteunderground", "nitrogenseafloor", "magmaoceanfloor" ],
"secondaryRegion" : [ "ffcrystalrealm", "crystalcave", "heck", "ffsupermatter", "tarunderground", "icecaves", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "sulphuricunderground", "ffcrystalcavern", "fffrostcavern", "ffvolcanic" ]
},
"underground4" : {
"primaryRegion" : [ "icewasteunderground", "nitrogenseafloor", "magmaoceanfloor" ],
"secondaryRegion" : [ "ffcrystalrealm", "crystalcave", "heck", "ffsupermatter", "icecaves", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "sulphuricunderground", "ffcrystalcavern", "fffrostcavern", "ffvolcanic" ]
},
"underground5" : {
"primaryRegion" : [ "icewasteunderground", "nitrogenseafloor", "magmaoceanfloor" ],
"secondaryRegion" : [ "ffcrystalrealm", "crystalcave", "heck", "ffsupermatter", "icecaves", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "sulphuricunderground", "ffcrystalcavern", "fffrostcavern", "ffvolcanic" ]
},
"underground6" : {
"primaryRegion" : [ "icewasteunderground", "nitrogenseafloor", "magmaoceanfloor" ],
"secondaryRegion" : [ "ffcrystalrealm", "crystalcave", "heck", "ffsupermatter", "icecaves", "crystalmoonunderground", "icemoonunderground", "icewasteunderground", "infernusunderground", "sulphuricunderground", "ffcrystalcavern", "fffrostcavern", "ffvolcanic" ]
},
"core" : {
"primaryRegion" : [ "nitrogencore", "core" ]
}
}
}
},
{"op" : "add",
"path" : "/planetTypes/fungus",
"value" :
{
"threatRange" : [2, 5],
"layers" : {
"atmosphere" : {
"primaryRegion" : [ "clouds" ]
},
"surface" : {
"primaryRegion" : [ "fungus" ],
"secondaryRegion" : [ "wartfield", "wastelandmini", "steamspring", "corruptmoon", "fieldofbracken", "aliendesert", "cactiplace", "ffhive", "birchforest", "alienforest", "reddesert", "rainbowforest", "swamp", "bloodgulch", "corruptedforest", "flowerforest", "snowyforest", "giantflowers", "jungle" ],
//"dungeonCountRange" : [0, 2],
"dungeons" : [ "wastelandquests", "glitchsewer", "glitchvillage", "floranhuntinggrounds", "floranvillagetower", "floranhell", "naturalcave" ]
},
"subsurface" : {
"primaryRegion" : [ "shroomcaveunderground" ]
},
"underground1" : {
"secondaryRegion" : [ "ffpoopit", "crystalcave", "heck", "hive", "zen", "shadow", "corruptmoonunderground", "ffspidernest", "ffsupermatter", "shroomcaveunderground" , "luminouscaves", "mushroomunderground", "wildernessunderground" ]
},
"underground2" : {
"secondaryRegion" : [ "ffpoopit", "crystalcave", "heck", "hive", "zen", "shadow", "corruptmoonunderground", "ffspidernest", "ffsupermatter", "shroomcaveunderground" , "luminouscaves", "mushroomunderground", "wildernessunderground" ]
},
"underground3" : {
"secondaryRegion" : [ "ffpoopit", "crystalcave", "heck", "hive", "zen", "shadow", "corruptmoonunderground", "ffspidernest", "ffsupermatter", "shroomcaveunderground" , "luminouscaves", "mushroomunderground", "wildernessunderground" ]
},
"underground4" : {
"secondaryRegion" : [ "ffpoopit", "crystalcave", "heck", "hive", "zen", "shadow", "corruptmoonunderground", "ffspidernest", "ffsupermatter", "coralcavern", "shroomcaveunderground" , "luminouscaves", "mushroomunderground", "wildernessunderground" ]
},
"underground5" : {
"secondaryRegion" : [ "ffpoopit", "crystalcave", "heck", "hive", "zen", "shadow", "corruptmoonunderground", "ffspidernest", "ffsupermatter", "coralcavern", "shroomcaveunderground" , "luminouscaves", "mushroomunderground", "wildernessunderground" ]
},
"underground6" : {
"secondaryRegion" : [ "ffpoopit", "crystalcave", "heck", "hive", "zen", "shadow", "corruptmoonunderground", "ffspidernest", "ffsupermatter", "coralcavern", "shroomcaveunderground" , "luminouscaves", "mushroomunderground", "wildernessunderground" ]
},
"core" : {
"primaryRegion" : [ "core" ]
}
}
}
},