-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
specials.json
6828 lines (6828 loc) · 368 KB
/
specials.json
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
[
{
"type": "overmap_special",
"id": "motel-twd",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "motel_twd_1_north" },
{ "point": [ 1, 0, 0 ], "overmap": "motel_twd_2_north" },
{ "point": [ 0, 0, 1 ], "overmap": "motel_twd_1_f1_north" },
{ "point": [ 1, 0, 1 ], "overmap": "motel_twd_2_f1_north" },
{ "point": [ 0, 0, 2 ], "overmap": "motel_twd_1_f2_north" }
],
"connections": [
{ "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ], "existing": true },
{ "point": [ 1, -1, 0 ], "terrain": "road", "connection": "local_road", "from": [ 1, 0, 0 ], "existing": true }
],
"locations": [ "land" ],
"city_distance": [ 8, 30 ],
"occurrences": [ 1, 2 ],
"priority": -1,
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Motel",
"overmaps": [
{ "point": [ 1, 0, 0 ], "overmap": "motel_entrance_no_sidewalk_north" },
{ "point": [ 0, 0, 0 ], "overmap": "motel_1_no_sidewalk_north" },
{ "point": [ 0, 1, 0 ], "overmap": "motel_2_no_sidewalk_north" },
{ "point": [ 1, 1, 0 ], "overmap": "motel_3_no_sidewalk_north" },
{ "point": [ 1, 0, 1 ], "overmap": "motel_entrance_roof_north" },
{ "point": [ 0, 0, 1 ], "overmap": "motel_1_roof_north" },
{ "point": [ 0, 1, 1 ], "overmap": "motel_2_roof_north" },
{ "point": [ 1, 1, 1 ], "overmap": "motel_3_roof_north" }
],
"connections": [ { "point": [ 2, 0, 0 ], "terrain": "road", "connection": "local_road", "from": [ 1, 0, 0 ], "existing": true } ],
"locations": [ "land" ],
"city_distance": [ 8, 30 ],
"occurrences": [ 1, 2 ],
"priority": -1,
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "2fMotel",
"overmaps": [
{ "point": [ 1, 0, 0 ], "overmap": "motel_entrance_no_sidewalk_north" },
{ "point": [ 0, 0, 0 ], "overmap": "motel_1_no_sidewalk_north" },
{ "point": [ 0, 1, 0 ], "overmap": "motel_2_no_sidewalk_north" },
{ "point": [ 1, 1, 0 ], "overmap": "motel_3_no_sidewalk_north" },
{ "point": [ 1, 0, 1 ], "overmap": "2fmotel_entrance_f2_north" },
{ "point": [ 0, 0, 1 ], "overmap": "2fmotel_1_f2_north" },
{ "point": [ 0, 1, 1 ], "overmap": "2fmotel_2_f2_north" },
{ "point": [ 1, 1, 1 ], "overmap": "2fmotel_3_f2_north" },
{ "point": [ 0, 0, 2 ], "overmap": "2fmotel_1_r_north" },
{ "point": [ 0, 1, 2 ], "overmap": "2fmotel_2_r_north" },
{ "point": [ 1, 1, 2 ], "overmap": "2fmotel_3_r_north" }
],
"connections": [ { "point": [ 2, 0, 0 ], "terrain": "road", "connection": "local_road", "from": [ 1, 0, 0 ], "existing": true } ],
"locations": [ "land" ],
"city_distance": [ 8, 40 ],
"occurrences": [ 0, 2 ],
"priority": -1,
"flags": [ "CLASSIC", "URBAN", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Boat Rental",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "boat_rental_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "boat_rental_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road" } ],
"city_distance": [ 5, 40 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Boat Rental 1",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "boat_rental_1_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "boat_rental_1_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road" } ],
"city_distance": [ 5, 40 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Boat Rental 2",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "boat_rental_2_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "boat_rental_2_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road" } ],
"city_distance": [ 5, 40 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Riverside Dwelling",
"overmaps": [
{ "point": [ 0, 0, 1 ], "overmap": "riverside_dwelling_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, 0, 0 ], "overmap": "riverside_dwelling_north", "locations": [ "land" ] },
{ "point": [ 0, -1, 0 ], "overmap": "river_north", "locations": [ "water" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Riverside Dwelling 1",
"overmaps": [
{ "point": [ 0, 0, 1 ], "overmap": "riverside_dwelling1_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, 0, 0 ], "overmap": "riverside_dwelling1_north", "locations": [ "land" ] },
{ "point": [ 0, -1, 0 ], "overmap": "river_north", "locations": [ "water" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Riverside Dwelling 2",
"overmaps": [
{ "point": [ 0, 0, 1 ], "overmap": "riverside_dwelling2_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, 0, 0 ], "overmap": "riverside_dwelling2_north", "locations": [ "land" ] },
{ "point": [ 0, -1, 0 ], "overmap": "river_north", "locations": [ "water" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Riverside Dwelling 3",
"overmaps": [
{ "point": [ 0, 0, 1 ], "overmap": "riverside_dwelling3_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, 0, 0 ], "overmap": "riverside_dwelling3_north", "locations": [ "land" ] },
{ "point": [ 0, -1, 0 ], "overmap": "river_north", "locations": [ "water" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Lakeside Cabin",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "lake_surface", "locations": [ "lake_surface" ] },
{ "point": [ 0, 0, 0 ], "overmap": "cabin_lakeside_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_lakeside_roof_north", "locations": [ "open_air" ] },
{ "point": [ 1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] },
{ "point": [ -1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 3 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "Lakeside Cabin 1",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "lake_surface", "locations": [ "lake_surface" ] },
{ "point": [ 0, 0, 0 ], "overmap": "cabin_lakeside1_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_lakeside1_roof_north", "locations": [ "open_air" ] },
{ "point": [ 1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] },
{ "point": [ -1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 3 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "Lakeside Cabin 2",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "lake_surface", "locations": [ "lake_surface" ] },
{ "point": [ 0, 0, 0 ], "overmap": "cabin_lakeside2_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_lakeside2_roof_north", "locations": [ "open_air" ] },
{ "point": [ 1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] },
{ "point": [ -1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "Lakeside Cabin 3",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "lake_surface", "locations": [ "lake_surface" ] },
{ "point": [ 0, 0, 0 ], "overmap": "cabin_lakeside3_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_lakeside3_roof_north", "locations": [ "open_air" ] },
{ "point": [ 1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] },
{ "point": [ -1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 3 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "Lakeside Cabin 4",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "lake_surface", "locations": [ "lake_surface" ] },
{ "point": [ 0, 0, 0 ], "overmap": "cabin_lakeside4_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_lakeside4_roof_north", "locations": [ "open_air" ] },
{ "point": [ 1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] },
{ "point": [ -1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 3 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "Lakeside Cabin 5",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "lake_surface", "locations": [ "lake_surface" ] },
{ "point": [ 0, 0, 0 ], "overmap": "cabin_lakeside5_north", "locations": [ "lake_shore" ] },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_lakeside5_roof_north", "locations": [ "open_air" ] },
{ "point": [ 1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] },
{ "point": [ -1, 0, 0 ], "overmap": "lake_shore", "locations": [ "lake_shore" ] }
],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "LAKE", "MAN_MADE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "natural_spring",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "natural_spring_north" } ],
"locations": [ "land" ],
"city_distance": [ 4, -1 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "WATER" ]
},
{
"type": "overmap_special",
"id": "Pottery Cottage",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "pottery_cottage_field_north", "locations": [ "land" ] },
{ "point": [ 0, 0, 0 ], "overmap": "pottery_cottage_north", "locations": [ "land" ] },
{ "point": [ 0, 1, 0 ], "overmap": "river_north", "locations": [ "water" ] },
{ "point": [ 0, 0, -1 ], "overmap": "pottery_cottage_basement_north", "locations": [ "subterranean_empty" ] },
{ "point": [ 0, -1, 1 ], "overmap": "pottery_cottage_field_2nd_north", "locations": [ "open_air" ] },
{ "point": [ 0, 0, 1 ], "overmap": "pottery_cottage_2nd_north", "locations": [ "open_air" ] },
{ "point": [ 0, -1, 2 ], "overmap": "pottery_cottage_field_roof_north", "locations": [ "open_air" ] },
{ "point": [ 0, 0, 2 ], "overmap": "pottery_cottage_roof_north", "locations": [ "open_air" ] }
],
"city_distance": [ -1, 25 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "farm_abandoned",
"overmaps": [
{ "point": [ 1, 0, 0 ], "overmap": "car_corner_aban1_north" },
{ "point": [ 1, 0, 1 ], "overmap": "car_corner_aban1_roof_north" },
{ "point": [ 0, 0, 0 ], "overmap": "cabin_aban1_north" },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_aban1_roof_north" },
{ "point": [ 1, -1, 0 ], "overmap": "barn_aban1_north" },
{ "point": [ 1, -1, 1 ], "overmap": "barn_aban1_roof_north" },
{ "point": [ 0, -1, 0 ], "overmap": "dirtplaza_aban1_north" },
{ "point": [ 0, -2, 0 ], "overmap": "dirtroad2_aban1_north" },
{ "point": [ 0, -3, 0 ], "overmap": "dirtroad2_aban1_north" },
{ "point": [ -1, -5, 0 ], "overmap": "radio_tower_north" },
{ "point": [ 0, -4, 0 ], "overmap": "dirtroad1_aban1_north" },
{ "point": [ 2, 0, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ 1, 1, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ 0, 1, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ 2, -1, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ -1, -1, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ -1, -2, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ -1, -3, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ -1, -4, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ 1, -2, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ 1, -3, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ 1, -4, 0 ], "overmap": "forest_aban1_north" },
{ "point": [ -1, -5, 1 ], "overmap": "radio_tower_odd_north" },
{ "point": [ -1, -5, 2 ], "overmap": "radio_tower_even_north" },
{ "point": [ -1, -5, 3 ], "overmap": "radio_tower_odd_north" },
{ "point": [ -1, -5, 4 ], "overmap": "radio_tower_even_north" },
{ "point": [ -1, -5, 5 ], "overmap": "radio_tower_odd_north" },
{ "point": [ -1, -5, 6 ], "overmap": "radio_tower_top_north" },
{ "point": [ -1, -6, 0 ], "locations": [ "land", "road" ] },
{ "point": [ 0, -5, 0 ], "locations": [ "land", "road" ] }
],
"connections": [
{ "point": [ -1, -6, 0 ], "terrain": "road", "connection": "local_road" },
{ "point": [ 0, -5, 0 ], "terrain": "road", "connection": "local_road" }
],
"locations": [ "forest" ],
"city_distance": [ 12, -1 ],
"occurrences": [ 30, 100 ],
"priority": 1,
"flags": [ "CLASSIC", "FARM", "GLOBALLY_UNIQUE", "MAN_MADE", "SAFE_AT_WORLDGEN" ]
},
{
"type": "overmap_special",
"id": "Shipwreck",
"overmaps": [
{ "point": [ 1, -1, 0 ], "overmap": "river_north", "locations": [ "water" ] },
{ "point": [ 0, 0, 0 ], "overmap": "shipwreck_river_1_north", "locations": [ "land" ] },
{ "point": [ 1, 0, 0 ], "overmap": "shipwreck_river_2_north", "locations": [ "land" ] },
{ "point": [ 0, 0, -1 ], "overmap": "shipwreck_river_3_north", "locations": [ "subterranean_empty" ] },
{ "point": [ 1, 0, -1 ], "overmap": "shipwreck_river_4_north", "locations": [ "subterranean_empty" ] }
],
"occurrences": [ 0, 3 ],
"spawns": { "group": "GROUP_RAZORCLAW", "population": [ 30, 60 ], "radius": [ 2, 10 ] },
"flags": [ "MAN_MADE", "WILDERNESS" ]
},
{
"//": "This special is required for robofac mission 3, and this is a fallback for when the tower doesn't spawn inside a city. Should be removed once we can guarantee the spawning of mid-city specials",
"type": "overmap_special",
"id": "office_tower_collapsed",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "office_tower_collapse_a0_north" },
{ "point": [ 1, 0, 0 ], "overmap": "office_tower_collapse_a1_north" },
{ "point": [ 2, 0, 0 ], "overmap": "office_tower_collapse_a2_north" },
{ "point": [ 0, 1, 0 ], "overmap": "office_tower_collapse_b0_north" },
{ "point": [ 1, 1, 0 ], "overmap": "office_tower_collapse_b1_north" },
{ "point": [ 2, 1, 0 ], "overmap": "office_tower_collapse_b2_north" },
{ "point": [ 0, 0, -1 ], "overmap": "office_tower_collapse_b_a0_north" },
{ "point": [ 1, 0, -1 ], "overmap": "office_tower_collapse_b_a1_north" },
{ "point": [ 2, 0, -1 ], "overmap": "office_tower_collapse_b_a2_north" },
{ "point": [ 0, 1, -1 ], "overmap": "office_tower_collapse_b_b0_north" },
{ "point": [ 1, 1, -1 ], "overmap": "office_tower_collapse_b_b1_north" },
{ "point": [ 2, 1, -1 ], "overmap": "office_tower_collapse_b_b2_north" },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] },
{ "point": [ 2, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [
{ "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road" },
{ "point": [ 2, -1, 0 ], "terrain": "road", "connection": "local_road" }
],
"city_distance": [ 0, 25 ],
"locations": [ "land" ],
"city_sizes": [ 0, 16 ],
"occurrences": [ 0, 0 ],
"flags": [ "URBAN", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "LMOE Shelter",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lmoe_north" },
{ "point": [ 0, 0, 1 ], "overmap": "lmoe_roof_north" },
{ "point": [ 0, 0, -1 ], "overmap": "lmoe_under_empty_north" }
],
"locations": [ "forest_without_trail" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 12 ],
"occurrences": [ 20, 100 ],
"flags": [ "CLASSIC", "MAN_MADE", "OVERMAP_UNIQUE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "Locked LMOE Shelter",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lmoe_prepperquest_north" },
{ "point": [ 0, 0, 1 ], "overmap": "lmoe_roof_north" },
{ "point": [ 0, 0, -1 ], "overmap": "lmoe_under_empty_prepperquest_north" }
],
"locations": [ "forest_without_trail" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 12 ],
"occurrences": [ 100, 100 ],
"priority": 1,
"flags": [ "CLASSIC", "MAN_MADE", "GLOBALLY_UNIQUE", "WILDERNESS", "SAFE_AT_WORLDGEN" ]
},
{
"type": "overmap_special",
"id": "Occupied LMOE Shelter",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lmoe_zombie_north" },
{ "point": [ 0, 0, 1 ], "overmap": "lmoe_roof_north" },
{ "point": [ 0, 0, -1 ], "overmap": "lmoe_zombie_under_empty_north" }
],
"locations": [ "forest_without_trail" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 12 ],
"occurrences": [ 20, 100 ],
"flags": [ "CLASSIC", "MAN_MADE", "OVERMAP_UNIQUE", "WILDERNESS" ]
},
{
"type": "overmap_special",
"id": "Cabin_prepper",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "cabin_prepper_north" },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_roof_1_north" },
{ "point": [ 0, 0, -1 ], "overmap": "cabin_prepper_shelter_north" }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Sewage Treatment Plant",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "sewage_treatment_0_0_0_north" },
{ "point": [ 0, 0, 1 ], "overmap": "sewage_treatment_0_0_roof_north" },
{ "point": [ 1, 0, 0 ], "overmap": "sewage_treatment_1_0_0_north" },
{ "point": [ 1, 0, 1 ], "overmap": "sewage_treatment_1_0_roof_north" },
{ "point": [ 0, 1, 0 ], "overmap": "sewage_treatment_0_1_0_north" },
{ "point": [ 0, 1, 1 ], "overmap": "sewage_treatment_0_1_roof_north" },
{ "point": [ 1, 1, 0 ], "overmap": "sewage_treatment_1_1_0_north" },
{ "point": [ 1, 1, 1 ], "overmap": "sewage_treatment_1_1_roof_north" },
{ "point": [ 1, 0, 2 ], "overmap": "sewage_treatment_1_0_upper_roof_north" },
{ "point": [ 0, 0, -1 ], "overmap": "sewage_treatment_0_0_-1_north" },
{ "point": [ 1, 0, -1 ], "overmap": "sewage_treatment_1_0_-1_north" },
{ "point": [ 2, 0, -1 ], "overmap": "sewage_treatment_2_0_-1_north" },
{ "point": [ 0, 1, -1 ], "overmap": "sewage_treatment_0_1_-1_north" },
{ "point": [ 1, 1, -1 ], "overmap": "sewage_treatment_1_1_-1_north" },
{ "point": [ 2, 1, -1 ], "overmap": "sewage_treatment_2_1_-1_north" },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"locations": [ "land" ],
"connections": [
{ "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ] },
{ "point": [ -1, 0, -1 ], "terrain": "sewer", "connection": "sewer_tunnel", "from": [ 0, 0, -1 ] },
{ "point": [ 1, -1, -1 ], "terrain": "sewer", "connection": "sewer_tunnel", "from": [ 1, 0, -1 ] },
{ "point": [ 3, 0, -1 ], "terrain": "sewer", "connection": "sewer_tunnel", "from": [ 2, 0, -1 ] },
{ "point": [ 1, 2, -1 ], "terrain": "sewer", "connection": "sewer_tunnel", "from": [ 1, 1, -1 ] }
],
"city_distance": [ 5, 25 ],
"city_sizes": [ 4, -1 ],
"occurrences": [ 0, 4 ],
"priority": 1,
"flags": [ "CLASSIC", "URBAN", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Bee Hive",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "hive_edge_00_north" },
{ "point": [ 0, 1, 0 ], "overmap": "hive_edge_01_north" },
{ "point": [ 0, 2, 0 ], "overmap": "hive_edge_02_north" },
{ "point": [ 1, 0, 0 ], "overmap": "hive_edge_10_north" },
{ "point": [ 1, 1, 0 ], "overmap": "hive_north", "camp": "apis_hive", "camp_name": "???" },
{ "point": [ 1, 2, 0 ], "overmap": "hive_edge_12_north" },
{ "point": [ 2, 0, 0 ], "overmap": "hive_edge_20_north" },
{ "point": [ 2, 1, 0 ], "overmap": "hive_edge_21_north" },
{ "point": [ 2, 2, 0 ], "overmap": "hive_edge_22_north" },
{ "point": [ 0, 0, 1 ], "overmap": "hive_edge_00_roof_north" },
{ "point": [ 0, 1, 1 ], "overmap": "hive_edge_01_roof_north" },
{ "point": [ 0, 2, 1 ], "overmap": "hive_edge_02_roof_north" },
{ "point": [ 1, 0, 1 ], "overmap": "hive_edge_10_roof_north" },
{ "point": [ 1, 1, 1 ], "overmap": "hive_roof_north" },
{ "point": [ 1, 2, 1 ], "overmap": "hive_edge_12_roof_north" },
{ "point": [ 2, 0, 1 ], "overmap": "hive_edge_20_roof_north" },
{ "point": [ 2, 1, 1 ], "overmap": "hive_edge_21_roof_north" },
{ "point": [ 2, 2, 1 ], "overmap": "hive_edge_22_roof_north" }
],
"locations": [ "wilderness" ],
"city_distance": [ 10, -1 ],
"occurrences": [ 80, 100 ],
"flags": [ "BEE", "OVERMAP_UNIQUE", "WILDERNESS" ],
"spawns": { "group": "GROUP_BEE", "population": [ 100, 120 ], "radius": [ 10, 12 ] }
},
{
"type": "overmap_special",
"id": "Large Dermatik Nest",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "nest_dermatik_north" },
{ "point": [ 0, 0, 1 ], "overmap": "nest_dermatik_roof_north" }
],
"locations": [ "land" ],
"city_distance": [ 20, -1 ],
"occurrences": [ 0, 3 ],
"flags": [ "WILDERNESS", "DERMATIK" ],
"spawns": { "group": "GROUP_DERMATIK", "population": [ 10, 20 ], "radius": [ 10, 15 ] }
},
{
"type": "overmap_special",
"id": "Hunting Lodge",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lodge_ground1_north" },
{ "point": [ 1, 0, 0 ], "overmap": "lodge_ground2_north" },
{ "point": [ 0, 0, 1 ], "overmap": "lodge_2ndfloor1_north" },
{ "point": [ 1, 0, 1 ], "overmap": "lodge_2ndfloor2_north" },
{ "point": [ 0, 0, 2 ], "overmap": "lodge_roof1_north" },
{ "point": [ 1, 0, 2 ], "overmap": "lodge_roof2_north" },
{ "point": [ 0, 0, -1 ], "overmap": "lodge_basement_residential1_north" },
{ "point": [ 1, 0, -1 ], "overmap": "lodge_basement_residential2_north" },
{ "point": [ -1, 0, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ -1, 0, 0 ], "terrain": "road", "from": [ 0, 0, 0 ] } ],
"locations": [ "forest" ],
"city_distance": [ 30, -1 ],
"city_sizes": [ 0, 12 ],
"occurrences": [ 10, 100 ],
"flags": [ "CLASSIC", "MAN_MADE", "OVERMAP_UNIQUE" ]
},
{
"type": "overmap_special",
"id": "Hunting Lodge - Normal",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lodge_ground1_north" },
{ "point": [ 1, 0, 0 ], "overmap": "lodge_ground2_north" },
{ "point": [ 0, 0, 1 ], "overmap": "lodge_2ndfloor1_north" },
{ "point": [ 1, 0, 1 ], "overmap": "lodge_2ndfloor2_north" },
{ "point": [ 0, 0, 2 ], "overmap": "lodge_roof1_north" },
{ "point": [ 1, 0, 2 ], "overmap": "lodge_roof2_north" },
{ "point": [ 0, 0, -1 ], "overmap": "lodge_basement_residential3_north" },
{ "point": [ 1, 0, -1 ], "overmap": "lodge_basement_residential4_north" },
{ "point": [ -1, 0, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ -1, 0, 0 ], "terrain": "road", "from": [ 0, 0, 0 ] } ],
"locations": [ "forest" ],
"city_distance": [ 30, -1 ],
"city_sizes": [ 0, 12 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Hunting Lodge Glooscap",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lodge_ground_glooscap1_north" },
{ "point": [ 1, 0, 0 ], "overmap": "lodge_ground_glooscap2_north" },
{ "point": [ 0, 0, 1 ], "overmap": "lodge_2ndfloor1_north" },
{ "point": [ 1, 0, 1 ], "overmap": "lodge_2ndfloor2_north" },
{ "point": [ 0, 0, 2 ], "overmap": "lodge_roof1_north" },
{ "point": [ 1, 0, 2 ], "overmap": "lodge_roof2_north" },
{ "point": [ 0, 0, -1 ], "overmap": "lodge_basement_residential1_north" },
{ "point": [ 1, 0, -1 ], "overmap": "lodge_basement_residential2_north" },
{ "point": [ -1, 0, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ -1, 0, 0 ], "terrain": "road", "from": [ 0, 0, 0 ] } ],
"locations": [ "forest" ],
"city_distance": [ 30, -1 ],
"city_sizes": [ 0, 12 ],
"occurrences": [ 10, 100 ],
"priority": 1,
"flags": [ "CLASSIC", "MAN_MADE", "GLOBALLY_UNIQUE", "SAFE_AT_WORLDGEN" ]
},
{
"type": "overmap_special",
"id": "Gas Station",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "s_gas_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "connection": "local_road", "terrain": "road", "existing": true, "from": [ 0, 0, 0 ] } ],
"locations": [ "land" ],
"city_distance": [ 5, -1 ],
"occurrences": [ 0, 2 ],
"priority": -1,
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Rural Gas Station",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "s_gas_rural_north" },
{ "point": [ 0, 0, 1 ], "overmap": "s_gas_rural_roof_north" },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "connection": "local_road", "terrain": "road", "existing": true, "from": [ 0, 0, 0 ] } ],
"locations": [ "land" ],
"city_distance": [ 20, -1 ],
"occurrences": [ 0, 2 ],
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "gas station bunker",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "s_gas_g0_north" },
{ "point": [ 0, 1, 0 ], "overmap": "s_gas_g1_north" },
{ "point": [ 0, 0, 1 ], "overmap": "s_gas_g0_roof_north" },
{ "point": [ 0, 1, 1 ], "overmap": "s_gas_g1_roof_north" },
{ "point": [ 0, 1, -1 ], "overmap": "s_gas_b11_north" },
{ "point": [ 0, 0, -2 ], "overmap": "s_gas_b20_north" },
{ "point": [ 0, 1, -2 ], "overmap": "s_gas_b21_north" },
{ "point": [ -1, 0, 0 ], "locations": [ "land", "road" ] },
{ "point": [ 1, 0, 0 ], "locations": [ "land", "road" ] }
],
"connections": [
{ "point": [ -1, 0, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ] },
{
"point": [ -1, -1, 0 ],
"terrain": "road",
"existing": true,
"connection": "local_road",
"from": [ -1, 0, 0 ]
},
{ "point": [ 1, 0, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ] },
{ "point": [ 1, -1, 0 ], "terrain": "road", "existing": true, "connection": "local_road", "from": [ 1, 0, 0 ] }
],
"locations": [ "field", "forest_without_trail" ],
"occurrences": [ 10, 100 ],
"priority": 1,
"flags": [ "CLASSIC", "GLOBALLY_UNIQUE", "MAN_MADE", "SAFE_AT_WORLDGEN" ]
},
{
"type": "overmap_special",
"id": "gas station bunkerless",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "s_gas_g0_north" },
{ "point": [ 0, 1, 0 ], "overmap": "s_gas_g1_north" },
{ "point": [ 0, 0, 1 ], "overmap": "s_gas_g0_roof_north" },
{ "point": [ 0, 1, 1 ], "overmap": "s_gas_g1_roof_north" },
{ "point": [ -1, 0, 0 ], "locations": [ "land", "road" ] },
{ "point": [ 1, 0, 0 ], "locations": [ "land", "road" ] }
],
"connections": [
{ "point": [ -1, 0, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ] },
{
"point": [ -1, -1, 0 ],
"terrain": "road",
"existing": true,
"connection": "local_road",
"from": [ -1, 0, 0 ]
},
{ "point": [ 1, 0, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ] },
{ "point": [ 1, -1, 0 ], "terrain": "road", "existing": true, "connection": "local_road", "from": [ 1, 0, 0 ] }
],
"locations": [ "field", "forest_without_trail" ],
"city_sizes": [ 1, 12 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_1",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_1_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_1_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_2",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_2_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_2_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_3",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_3_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_3_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_4",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_4_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_4_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_5",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_5_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_5_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_6",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_6_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_6_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_7",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "cabin_7_north" }, { "point": [ 0, 0, 1 ], "overmap": "cabin_roof_7_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 0, 1 ],
"flags": [ "CLASSIC", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Cabin_Lapin",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "cabin_lapin_north", "camp": "lapin", "camp_name": "Lapin" },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_roof_lapin_north" },
{ "point": [ 1, 1, 0 ], "overmap": "field_graboid" }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"occurrences": [ 50, 100 ],
"//": "Inflated chance, effective rate ~40%",
"flags": [ "WILDERNESS", "GLOBALLY_UNIQUE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "cabin_liam",
"//": "Meant for starting scenario but anyone can find a similar cabin.",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "cabin_liam_north" },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_roof_1_north" },
{ "point": [ 0, 1, 0 ], "overmap": "rural_road_forest_ns" },
{ "point": [ 0, 2, 0 ], "overmap": "rural_road_forest_ns" },
{ "point": [ 0, 3, 0 ], "overmap": "rural_road_forest_ns" },
{ "point": [ 0, 4, 0 ], "locations": [ "land", "road" ] }
],
"locations": [ "forest" ],
"city_distance": [ 10, 25 ],
"city_sizes": [ 0, 20 ],
"occurrences": [ 75, 100 ],
"connections": [ { "point": [ 0, 4, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 3, 0 ] } ],
"rotate": false,
"priority": 1,
"flags": [ "CLASSIC", "WILDERNESS", "GLOBALLY_UNIQUE", "MAN_MADE", "SAFE_AT_WORLDGEN" ]
},
{
"type": "overmap_special",
"id": "Strange Cabin",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "cabin_strange_north" },
{ "point": [ 0, 0, 1 ], "overmap": "cabin_strange_roof_north" },
{ "point": [ 0, 0, -1 ], "overmap": "cabin_strange_b_north" }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 25, -1 ],
"occurrences": [ 20, 100 ],
"flags": [ "WILDERNESS", "OVERMAP_UNIQUE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "survivor_forest_camp",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "survivor_forest_camp_north" } ],
"locations": [ "forest_center" ],
"city_distance": [ 10, 80 ],
"occurrences": [ 75, 100 ],
"flags": [ "CLASSIC", "WILDERNESS", "OVERMAP_UNIQUE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Sugar House",
"overmaps": [
{ "point": [ 0, -1, 0 ], "overmap": "sugar_house_parking_north" },
{ "point": [ 0, 0, 0 ], "overmap": "sugar_house_north" },
{ "point": [ 0, 0, 1 ], "overmap": "sugar_house_roof_north" },
{ "point": [ 0, -2, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -2, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, -1, 0 ] } ],
"locations": [ "forest" ],
"city_distance": [ 5, 60 ],
"occurrences": [ 0, 3 ],
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Strangle Temple",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "temple_stairs_north" },
{ "point": [ 0, 0, -1 ], "overmap": "temple_underground_1_north" },
{ "point": [ 0, 0, -2 ], "overmap": "temple_underground_2_north" },
{ "point": [ 0, 0, -3 ], "overmap": "temple_underground_3_north" },
{ "point": [ 0, 0, -4 ], "overmap": "temple_underground_4_north" },
{ "point": [ 0, 0, -5 ], "overmap": "temple_finale_north" }
],
"locations": [ "forest" ],
"city_distance": [ 40, -1 ],
"occurrences": [ 10, 100 ],
"flags": [ "WILDERNESS", "OVERMAP_UNIQUE" ]
},
{
"type": "overmap_special",
"id": "Standing stones",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "standing_stones" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "forest_trail", "connection": "forest_trail" } ],
"locations": [ "forest" ],
"city_distance": [ 40, -1 ],
"occurrences": [ 10, 100 ],
"rotate": false,
"flags": [ "CLASSIC", "WILDERNESS", "OVERMAP_UNIQUE" ]
},
{
"type": "overmap_special",
"id": "Lab",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lab_stairs" },
{ "point": [ 0, 0, 1 ], "overmap": "full_basic_lab_roof_north" },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road" } ],
"locations": [ "field", "forest_without_trail" ],
"city_distance": [ 10, -1 ],
"occurrences": [ 2, 100 ],
"flags": [ "LAB", "OVERMAP_UNIQUE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "Lab with Anthill",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "lab_stairs" },
{ "point": [ 0, 0, 1 ], "overmap": "full_basic_lab_roof_north" },
{ "point": [ 3, 1, 0 ], "overmap": "anthill_north" },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road" } ],
"locations": [ "field", "forest_without_trail" ],
"city_distance": [ 10, -1 ],
"occurrences": [ 2, 100 ],
"flags": [ "ANT", "OVERMAP_UNIQUE", "MAN_MADE" ],
"spawns": { "group": "GROUP_ANT_SURFACE", "population": [ 1000, 2000 ], "radius": [ 10, 30 ] }
},
{
"type": "overmap_special",
"id": "Central Lab",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "central_lab_entrance" },
{ "point": [ 0, 0, -1 ], "overmap": "central_lab_shaft" },
{ "point": [ 0, 0, -2 ], "overmap": "central_lab_hq_3_north" },
{ "point": [ 1, 0, -2 ], "overmap": "central_lab_hq_2_north" },
{ "point": [ 2, 0, -2 ], "overmap": "central_lab_hq_1_north" },
{ "point": [ 0, 1, -2 ], "overmap": "central_lab_hq_6_north" },
{ "point": [ 1, 1, -2 ], "overmap": "central_lab_hq_5_north" },
{ "point": [ 2, 1, -2 ], "overmap": "central_lab_hq_4_north" },
{ "point": [ 0, 2, -2 ], "overmap": "central_lab_hq_9_north" },
{ "point": [ 1, 2, -2 ], "overmap": "central_lab_hq_8_north" },
{ "point": [ 2, 2, -2 ], "overmap": "central_lab_hq_7_north" },
{ "point": [ 3, 0, -2 ], "overmap": "central_lab" },
{ "point": [ 3, 2, -2 ], "overmap": "central_lab" },
{ "point": [ 4, 0, -2 ], "overmap": "central_lab" },
{ "point": [ 4, 1, -2 ], "overmap": "central_lab" },
{ "point": [ 4, 2, -2 ], "overmap": "central_lab" },
{ "point": [ 5, 1, -2 ], "overmap": "central_lab_stairs" },
{ "point": [ 6, 1, -2 ], "overmap": "central_lab_core" },
{ "point": [ -1, 0, -2 ], "overmap": "central_lab" },
{ "point": [ -1, 2, -2 ], "overmap": "central_lab" },
{ "point": [ -2, 0, -2 ], "overmap": "central_lab" },
{ "point": [ -2, 1, -2 ], "overmap": "central_lab" },
{ "point": [ -2, 2, -2 ], "overmap": "central_lab" },
{ "point": [ -3, 1, -2 ], "overmap": "central_lab_stairs" },
{ "point": [ -4, 1, -2 ], "overmap": "central_lab_core" },
{ "point": [ 0, 3, -2 ], "overmap": "central_lab" },
{ "point": [ 2, 3, -2 ], "overmap": "central_lab" },
{ "point": [ 0, 4, -2 ], "overmap": "central_lab" },
{ "point": [ 1, 4, -2 ], "overmap": "central_lab" },
{ "point": [ 2, 4, -2 ], "overmap": "central_lab" },
{ "point": [ 1, 5, -2 ], "overmap": "central_lab_stairs" },
{ "point": [ 1, 6, -2 ], "overmap": "central_lab_core" },
{ "point": [ 0, -1, -2 ], "overmap": "central_lab" },
{ "point": [ 2, -1, -2 ], "overmap": "central_lab" },
{ "point": [ 0, -2, -2 ], "overmap": "central_lab" },
{ "point": [ 1, -2, -2 ], "overmap": "central_lab" },
{ "point": [ 2, -2, -2 ], "overmap": "central_lab" },
{ "point": [ 1, -3, -2 ], "overmap": "central_lab_stairs" },
{ "point": [ 1, -4, -2 ], "overmap": "central_lab_core" }
],
"locations": [ "forest" ],
"city_distance": [ 15, -1 ],
"priority": 1,
"occurrences": [ 2, 100 ],
"flags": [ "OVERMAP_UNIQUE", "LAB", "WILDERNESS", "MAN_MADE" ],
"rotate": false
},
{
"type": "overmap_special",
"id": "Ice Lab",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "ice_lab_stairs" },
{ "point": [ 0, 0, 1 ], "overmap": "full_basic_lab_roof_north" },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road" } ],
"locations": [ "field", "forest_without_trail" ],
"city_distance": [ 10, -1 ],
"occurrences": [ 2, 100 ],
"flags": [ "LAB", "OVERMAP_UNIQUE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "FEMA Camp",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "fema_north" },
{ "point": [ 1, 0, 0 ], "overmap": "fema_entrance_north" },
{ "point": [ 2, 0, 0 ], "overmap": "fema_1_3_north" },
{ "point": [ 0, 1, 0 ], "overmap": "fema_2_1_north" },
{ "point": [ 1, 1, 0 ], "overmap": "fema_2_2_north" },
{ "point": [ 2, 1, 0 ], "overmap": "fema_2_3_north" },
{ "point": [ 0, 2, 0 ], "overmap": "fema_3_1_north" },
{ "point": [ 1, 2, 0 ], "overmap": "fema_3_2_north" },
{ "point": [ 2, 2, 0 ], "overmap": "fema_3_3_north" },
{ "point": [ 0, 0, 1 ], "overmap": "fema_roof_north" },
{ "point": [ 1, 0, 1 ], "overmap": "fema_entrance_roof_north" },
{ "point": [ 2, 0, 1 ], "overmap": "fema_1_3_roof_north" },
{ "point": [ 1, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 1, -1, 0 ], "terrain": "road", "connection": "local_road", "from": [ 1, 0, 0 ] } ],
"locations": [ "field", "forest_without_trail" ],
"city_distance": [ 5, 20 ],
"city_sizes": [ 4, -1 ],
"occurrences": [ 0, 3 ],
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "FEMA_Camp2",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "FEMA_tlc_north" },
{ "point": [ 1, 0, 0 ], "overmap": "FEMA_te_north" },
{ "point": [ 2, 0, 0 ], "overmap": "FEMA_trc_north" },
{ "point": [ 0, 1, 0 ], "overmap": "FEMA_le_north" },
{ "point": [ 1, 1, 0 ], "overmap": "FEMA_mid_north" },
{ "point": [ 2, 1, 0 ], "overmap": "FEMA_re_north" },
{ "point": [ 0, 2, 0 ], "overmap": "FEMA_blc_north" },
{ "point": [ 1, 2, 0 ], "overmap": "FEMA_entrance_north" },
{ "point": [ 2, 2, 0 ], "overmap": "FEMA_brc_north" },
{ "point": [ 1, 3, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 1, 3, 0 ], "terrain": "road", "connection": "local_road", "from": [ 1, 2, 0 ] } ],
"locations": [ "field", "forest_without_trail" ],
"city_distance": [ 5, 20 ],
"city_sizes": [ 4, -1 ],
"occurrences": [ 0, 3 ],
"flags": [ "CLASSIC", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "military_bunker_1",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "bunker_south" },
{ "point": [ 0, 0, -1 ], "overmap": "bunker_basement_1_south" },
{ "point": [ 0, 0, 1 ], "overmap": "bunker_roof_south" },
{ "point": [ 0, -1, 0 ], "locations": [ "land", "road" ] }
],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ] } ],
"locations": [ "forest" ],
"city_distance": [ 20, -1 ],
"occurrences": [ 5, 100 ],
"flags": [ "MILITARY", "OVERMAP_UNIQUE", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "military_outpost",
"overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "outpost_north" }, { "point": [ 0, 0, 1 ], "overmap": "outpost_roof_north" } ],
"locations": [ "field", "forest_without_trail" ],
"city_distance": [ 15, -1 ],
"occurrences": [ 5, 100 ],
"flags": [ "MILITARY", "OVERMAP_UNIQUE", "WILDERNESS", "MAN_MADE" ]
},
{
"type": "overmap_special",
"id": "military_outpost_cross",
"overmaps": [
{ "point": [ 0, 0, 0 ], "overmap": "outpost_cross_north" },
{ "point": [ 0, 0, 1 ], "overmap": "outpost_cross_roof_north" }
],
"locations": [ "field", "forest_without_trail" ],
"city_distance": [ 15, -1 ],
"occurrences": [ 5, 100 ],
"flags": [ "MILITARY", "OVERMAP_UNIQUE", "WILDERNESS", "MAN_MADE" ]
},