forked from sayterdarkwynd/FrackinUniverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterrestrial_worlds.config.patch
8742 lines (8279 loc) · 322 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": "replace","path": "/useSecondaryEnvironmentBiomeIndex","value": true},
{ "op" : "replace", "path" : "/planetDefaults/dayLengthRange", "value" : [500, 1440] },
{ "op" : "add",
"path" : "/planetSizes/huge",
"value" : {
"size" : [8000, 4000],
"gravityRange" : [80, 110],
"dayLengthRange" : [1500, 4000],
"layerDefaults" : {
"secondaryRegionPeriod" : [1200, 3000],
"secondaryRegionSize" : [0.2, 0.92],
"secondaryRegionCount" : [1, 3],
"subRegionSize" : [0.13, 0.47],
"dungeonCountRange" : [2, 4]
},
"layers" : {
"space" : { "baseHeight" : 3500, "layerLevel" : 3000 },
"atmosphere" : { "baseHeight" : 3000, "layerLevel" : 2000 },
"surface" : { "baseHeight" : 1700, "layerLevel" : 1400 },
"subsurface" : { "baseHeight" : 1300, "layerLevel" : 1100 },
"underground1" : { "baseHeight" : 900, "layerLevel" : 900 },
"underground2" : { "baseHeight" : 700, "layerLevel" : 600 },
"underground3" : { "baseHeight" : 500, "layerLevel" : 300 },
"core" : { "baseHeight" : 80, "layerLevel" : 0 }
}
}
},
{ "op" : "add",
"path" : "/planetSizes/mega",
"value" : {
"size" : [11000, 7000],
"gravityRange" : [85, 150],
"dayLengthRange" : [1800, 4400],
"layerDefaults" : {
"secondaryRegionPeriod" : [1500, 3000],
"secondaryRegionSize" : [0.2, 0.92],
"secondaryRegionCount" : [1, 4],
"subRegionSize" : [0.15, 0.5],
"dungeonCountRange" : [2, 6]
},
"layers" : {
"space" : { "baseHeight" : 6500, "layerLevel" : 6200 },
"atmosphere" : { "baseHeight" : 5500, "layerLevel" : 5400 },
"surface" : { "baseHeight" : 4000, "layerLevel" : 3800 },
"subsurface" : { "baseHeight" : 3000, "layerLevel" : 1600 },
"underground1" : { "baseHeight" : 1500, "layerLevel" : 1200 },
"underground2" : { "baseHeight" : 1100, "layerLevel" : 800 },
"underground3" : { "baseHeight" : 700, "layerLevel" : 400 },
"core" : { "baseHeight" : 300, "layerLevel" : 0 }
}
}
},
{ "op" : "add", "path" : "/planetSizes/immense",
"value" : {
"size" : [16000, 8000],
"gravityRange" : [90, 180],
"dayLengthRange" : [1800, 5000],
"layerDefaults" : {
"secondaryRegionPeriod" : [1500, 3000],
"secondaryRegionSize" : [0.2, 0.92],
"secondaryRegionCount" : [1, 5],
"subRegionSize" : [0.15, 0.55],
"dungeonCountRange" : [2, 7]
},
"layers" : {
"space" : { "baseHeight" : 7500, "layerLevel" : 6600 },
"atmosphere" : { "baseHeight" : 6500, "layerLevel" : 4300 },
"surface" : { "baseHeight" : 4200, "layerLevel" : 2900 },
"subsurface" : { "baseHeight" : 2800, "layerLevel" : 2100 },
"underground1" : { "baseHeight" : 2000, "layerLevel" : 1700 },
"underground2" : { "baseHeight" : 1600, "layerLevel" : 1300 },
"underground3" : { "baseHeight" : 1200, "layerLevel" : 900 },
"core" : { "baseHeight" : 800, "layerLevel" : 0 }
}
}
},
{ "op" : "add", "path" : "/planetSizes/mammoth",
"value" : {
"size" : [64000, 24000],
"gravityRange" : [120, 190],
"dayLengthRange" : [3200, 7000],
"layerDefaults" : {
"secondaryRegionPeriod" : [1500, 3000],
"secondaryRegionSize" : [0.2, 0.92],
"secondaryRegionCount" : [1, 5],
"subRegionSize" : [0.15, 0.55],
"dungeonCountRange" : [2, 8]
},
"layers" : {
"space" : { "baseHeight" : 23500, "layerLevel" : 18100 },
"atmosphere" : { "baseHeight" : 18000, "layerLevel" : 15100 },
"surface" : { "baseHeight" : 15000, "layerLevel" : 14600 },
"subsurface" : { "baseHeight" : 14500, "layerLevel" : 12100 },
"underground1" : { "baseHeight" : 12000, "layerLevel" : 9100 },
"underground2" : { "baseHeight" : 9000, "layerLevel" : 3100 },
"underground3" : { "baseHeight" : 3000, "layerLevel" : 1100 },
"core" : { "baseHeight" : 1000, "layerLevel" : 0 }
}
}
},
//remove ocean 'hardcoded' sealevels from vanilla? seems to work. Note that Mammoth sized worlds seem to generate a bit wonky liquid
// in the first/second layer transition region. Keep an eye on that.
{
"op": "remove",
"path": "/planetTypes/ocean/layers/surface/baseHeight"
},
{
"op": "remove",
"path": "/planetTypes/ocean/layers/surface/layerLevel"
},
{
"op": "remove",
"path": "/planetTypes/magma/layers/surface/baseHeight"
},
{
"op": "remove",
"path": "/planetTypes/magma/layers/surface/layerLevel"
},
{
"op": "remove",
"path": "/planetTypes/toxic/layers/surface/baseHeight"
},
{
"op": "remove",
"path": "/planetTypes/toxic/layers/surface/layerLevel"
},
{
"op": "remove",
"path": "/planetTypes/arctic/layers/surface/baseHeight"
},
{
"op": "remove",
"path": "/planetTypes/arctic/layers/surface/layerLevel"
},
//garden
{"op" : "add", "path" : "/planetTypes/garden/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/garden/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/garden/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/garden/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/garden/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/garden/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/garden/layers/core", "value" : {"primaryRegion" : ["core"]} },
//forest
{"op" : "add", "path" : "/planetTypes/forest/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/forest/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/forest/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/forest/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/forest/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/forest/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/forest/layers/core", "value" : {"primaryRegion" : ["core"]} },
//desert
{"op" : "add", "path" : "/planetTypes/desert/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/desert/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/desert/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/desert/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/desert/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/desert/layers/core", "value" : {"primaryRegion" : ["core"]} },
//savannah
{"op" : "add", "path" : "/planetTypes/savannah/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/savannah/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/savannah/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/savannah/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/savannah/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/savannah/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/savannah/layers/core", "value" : {"primaryRegion" : ["core"]} },
//snow
{"op" : "add", "path" : "/planetTypes/snow/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/snow/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/snow/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/snow/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/snow/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/snow/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/snow/layers/core", "value" : {"primaryRegion" : ["core"]} },
//jungle
{"op" : "add", "path" : "/planetTypes/jungle/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/jungle/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/jungle/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/jungle/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/jungle/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/jungle/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/jungle/layers/core", "value" : {"primaryRegion" : ["core"]} },
//alien
{"op" : "add", "path" : "/planetTypes/alien/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/alien/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/alien/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/alien/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/alien/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/alien/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/alien/layers/core", "value" : {"primaryRegion" : ["core"]} },
//tundra
{"op" : "add", "path" : "/planetTypes/tundra/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/tundra/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/tundra/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/tundra/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/tundra/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/tundra/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/tundra/layers/core", "value" : {"primaryRegion" : ["core"]} },
//midnight
{"op" : "add", "path" : "/planetTypes/midnight/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/midnight/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/midnight/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/midnight/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/midnight/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/midnight/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/midnight/layers/core", "value" : {"primaryRegion" : ["core"]} },
//volcanic
{"op" : "add", "path" : "/planetTypes/volcanic/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/core", "value" : {"primaryRegion" : ["core"]} },
//scorchedcity
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/space", "value" : {"primaryRegion" : ["asteroids"]} },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/subsurface", "value" : {"primaryRegion" : ["subsurface"]} },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/underground1", "value" : {"primaryRegion" : ["shallowunderground"]} },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/underground2", "value" : {"primaryRegion" : ["midunderground"]} },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/underground3", "value" : {"primaryRegion" : ["deepunderground"]} },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/core", "value" : {"primaryRegion" : ["core"]} },
{"op": "replace","path": "/planetTypes/scorchedcity/layers/surface/dungeons/16/1","value": "glitchvillagefire"},
//moon
//barren
{"op" : "add", "path" : "/planetTypes/barren/layers/space", "value" : {"primaryRegion" : ["asteroids", "erchiusasteroid"]} },
{"op" : "add", "path" : "/planetTypes/barren/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
//tentacle
{"op" : "add", "path" : "/planetTypes/tentacle/layers/space", "value" : {"primaryRegion" : ["asteroids", "erchiusasteroid", "elderasteroid", "gleamingasteroid", "corruptasteroid", "iceasteroids", "fleshasteroid", "tentacleasteroid", "slimeasteroid"]} },
{"op" : "add", "path" : "/planetTypes/tentacle/layers/atmosphere", "value" : {"primaryRegion" : ["atmosphere"]} },
{"op" : "add", "path" : "/planetDefaults/layers/space/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetDefaults/layers/atmosphere/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetDefaults/layers/surface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetDefaults/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetDefaults/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetDefaults/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetDefaults/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetDefaults/layers/core/dungeons", "value" : [] },
//garden
{"op": "replace","path": "/planetTypes/garden/layers/surface/dungeonCountRange/0","value": 3},
{"op": "replace","path": "/planetTypes/garden/layers/surface/dungeonCountRange/1","value": 3},
{"op": "add","path": "/planetTypes/garden/layers/surface/dungeons/-","value": [1,"caveeentrance"]},
{"op": "replace", "path": "/planetTypes/garden/layers/surface/dungeons/1/1","value": "medic1"},
{"op" : "add", "path" : "/planetTypes/garden/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/garden/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/garden/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/garden/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/garden/layers/core/dungeons", "value" : [] },
//forest
{"op" : "add", "path" : "/planetTypes/forest/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/forest/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/forest/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/forest/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/forest/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "gregbase"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "floranhell"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [0.05, "floranhell"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [0.05, "floranhuntinggrounds"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "oceanfrontcity"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/forest/layers/surface/dungeons/-", "value" : [1.0, "novakidoutlawcamp"] },
//desert
{"op" : "add", "path" : "/planetTypes/desert/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/desert/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/desert/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/desert/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/desert/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "gregbase"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "novakidoutlawcamp"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "oceanfrontcity"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/desert/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
//savannah
{"op" : "add", "path" : "/planetTypes/savannah/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "gregbase"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "floranhell"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "novakidoutlawcamp"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "oceanfrontcity"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
{"op" : "add", "path" : "/planetTypes/savannah/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
//snow
{"op" : "add", "path" : "/planetTypes/snow/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/snow/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/snow/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/snow/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/snow/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "gregbase"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "novakidoutlawcamp"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "oceanfrontcity"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [3.0, "weaponsfactory"] },
{"op" : "add", "path" : "/planetTypes/snow/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
//jungle
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "floranhell"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "oceanfrontcity"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
{"op" : "add", "path" : "/planetTypes/jungle/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
//alien
{"op" : "add", "path" : "/planetTypes/alien/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/alien/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/alien/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/alien/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/alien/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/alien/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/alien/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/alien/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/alien/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/alien/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/alien/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
{"op" : "add", "path" : "/planetTypes/alien/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
//tundra
{"op" : "add", "path" : "/planetTypes/tundra/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "gregbase"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "alienjungleruins"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [3.0, "weaponsfactory"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "oceanfrontcity"] },
{"op" : "add", "path" : "/planetTypes/tundra/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
//midnight
{"op" : "add", "path" : "/planetTypes/midnight/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "alienjungleruins"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "weaponsfactory"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "oceanfrontcity"] },
{"op" : "add", "path" : "/planetTypes/midnight/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
//volcanic
{"op" : "add", "path" : "/planetTypes/volcanic/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "fungalden"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "aviandeeppyramid"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "alienjungleruins"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "weaponsfactory"] },
{"op" : "add", "path" : "/planetTypes/volcanic/layers/surface/dungeons/-", "value" : [1.0, "greentower"] },
{
"op": "replace",
"path": "/planetTypes/volcanic/layers/surface/dungeons/16/1",
"value": "glitchvillagefire"
},
//scorchedcity
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "apexresearchlab"] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "apextestchamber"] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "apextowerblock"] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "humanbunker"] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "fuscifidungeon"] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "humanapartments"] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "alienjungleruins"] },
{"op" : "add", "path" : "/planetTypes/scorchedcity/layers/surface/dungeons/-", "value" : [1.0, "weaponsfactory"] },
//moon
{"op" : "add", "path" : "/planetTypes/moon/layers/surface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/moon/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/moon/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/moon/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/moon/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/moon/layers/core/dungeons", "value" : [] },
//{"op" : "add", "path" : "/planetTypes/moon/layers/surface/dungeons/-", "value" : [0.5, "wreck"] },
//barren
{"op" : "add", "path" : "/planetTypes/barren/layers/surface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/barren/layers/subsurface/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/barren/layers/underground1/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/barren/layers/underground2/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/barren/layers/underground3/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/barren/layers/core/dungeons", "value" : [] },
{"op" : "add", "path" : "/planetTypes/barren/layers/surface/dungeons/-", "value" : [0.5, "wreck"] },
{"op" : "add", "path" : "/planetTypes/barren/layers/surface/dungeons/-", "value" : [0.5, "fuwreck"] },
// vanilla subbiome additions
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "birchforest"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "fieldofcarrots"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "fieldofcorn"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "fieldofgrape"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "fieldofpotato"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "fieldofbracken"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "fieldoftomato"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "fieldofwheat"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "flowerforest"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "meadow"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "orchardapple"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "orchardpeach"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "orchardpear"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "pineforest"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "snowyforest"
},
{
"op": "add",
"path": "/planetTypes/garden/layers/surface/secondaryRegions/-",
"value": "taiga"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "birchforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "alienforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "cloudforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "deadwood"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "energyorbforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "fieldofbracken"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "fieldofcarrots"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "fieldofcorn"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "fieldofgrape"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "fieldofpotato"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "fieldoftomato"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "primevalforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "fieldofwheat"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "flowerforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "hauntedforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "hauntedgraveyard"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "meadow"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "hellhive"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "orchardapple"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "orchardpeach"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "orchardpear"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "pineforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "rainbowforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "snowyforest"
},
{
"op": "add",
"path": "/planetTypes/forest/layers/surface/secondaryRegions/-",
"value": "taiga"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "aliendesert"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "cactiplace"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "crystalswamp"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "finesand"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "badlands"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "desertoasis"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "dryriverbed"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "calichefield"
},
{
"op": "add",
"path": "/planetTypes/desert/layers/surface/secondaryRegions/-",
"value": "pitchfield"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "wartfield"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "ffhive"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "cactiplace"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "crystalswamp"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "birchforest"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "alienforest"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "sulphuricmagma"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "pitchfield"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "fieldofbracken"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "flowerforest"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "hauntedforest"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "bloodgulch"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "hauntedgraveyard"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "irradiatedwaste"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "meadow"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "badlands"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "finesand"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "reddesert"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "calichefield"
},
{
"op": "add",
"path": "/planetTypes/savannah/layers/surface/secondaryRegions/-",
"value": "sulphuricplain"
},
{
"op": "add",
"path": "/planetTypes/snow/layers/surface/secondaryRegions/-",
"value": "taiga"
},
{
"op": "add",
"path": "/planetTypes/snow/layers/surface/secondaryRegions/-",
"value": "pineforest"
},
{
"op": "add",
"path": "/planetTypes/snow/layers/surface/secondaryRegions/-",
"value": "snowyforest"
},
{
"op": "add",
"path": "/planetTypes/snow/layers/surface/secondaryRegions/-",
"value": "magicsnowland"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "wartfield"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "wastelandmini"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "ffhive"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "crystalswamp"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "birchforest"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "alienforest"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "pitchfield"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "irradiatedwaste"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "blackslimebog"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "bloodgulch"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "corruptedforest"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "deadwood"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "elder"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "energyorbforest"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "hotsprings"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "meadow"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "primevalforest"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "badlands"
},
{
"op": "add",
"path": "/planetTypes/jungle/layers/surface/secondaryRegions/-",
"value": "reddesert"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "wartfield"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "hellhive"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "aliendesert"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "alienforest"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "sulphuricmagma"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "icefire"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "ashgarden"
},
{
"op": "add",
"path": "/planetTypes/alien/layers/surface/secondaryRegions/-",
"value": "badlands"