forked from Foundation-19/Big-Iron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testing.dmm
2108 lines (2107 loc) · 365 KB
/
testing.dmm
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
"ab" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; max_integrity = 500; name = "Store Backroom"; req_one_access_txt = "34"},/turf/open/floor/f13/wood,/area/space)
"ad" = (/obj/structure/girder,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "outerbordercorner"},/area/space)
"ag" = (/obj/machinery/jukebox,/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood/f13/stage_tr,/area/space)
"ah" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/mattress{icon_state = "mattress5"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ai" = (/obj/structure/rack,/obj/item/stack/sheet/hay/fifty,/obj/item/stack/sheet/hay/fifty,/obj/item/stack/sheet/hay/fifty,/obj/item/stack/sheet/hay/fifty,/obj/item/stack/sheet/hay/fifty,/obj/item/stack/sheet/hay/fifty,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/turf/open/floor/wood/f13/old,/area/space)
"aj" = (/obj/structure/bed/mattress,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"al" = (/obj/structure/fence{dir = 4},/turf/open/indestructible/ground/outside/desert,/area/space)
"am" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"an" = (/obj/structure/closet/fridge,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/item/reagent_containers/food/condiment/yeast,/obj/item/reagent_containers/food/condiment/sugar,/obj/item/reagent_containers/food/condiment/flour,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/item/reagent_containers/food/condiment/milk,/obj/item/reagent_containers/food/condiment/milk,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/effect/spawner/lootdrop/f13/foodspawner,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"aq" = (/obj/machinery/workbench,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ar" = (/obj/structure/fence/corner{dir = 5},/turf/open/indestructible/ground/outside/dirt{dir = 1; icon_state = "dirtcorner"},/area/space)
"as" = (/obj/structure/closet/bus,/turf/open/indestructible/ground/outside/desert{icon_state = "wasteland33"},/area/space)
"at" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 8; icon_state = "outermaincornerinner"},/area/space)
"au" = (/obj/structure/window/fulltile/house{dir = 2; icon_state = "storewindowleft"},/turf/open/floor/f13/wood,/area/space)
"av" = (/obj/structure/fence/corner,/obj/structure/fence{dir = 1},/turf/open/indestructible/ground/outside/desert,/area/space)
"aw" = (/turf/open/indestructible/ground/outside/road{dir = 1; icon_state = "innermaincornerinner"},/area/space)
"ay" = (/obj/structure/sign/poster/contraband/red_rum{pixel_y = -32},/turf/open/floor/f13/wood,/area/space)
"aA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bonfire,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"aB" = (/obj/structure/rack,/obj/item/shovel/spade,/obj/item/shovel,/obj/item/reagent_containers/glass/bucket,/obj/item/cultivator,/obj/item/clothing/gloves/botanic_leather,/obj/item/clothing/gloves/botanic_leather,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/indestructible/ground/outside/dirt,/area/space)
"aD" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters{id = "followersdeskshutters"; name = "followers shutters"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"aE" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; pixel_x = -1; pixel_y = 2},/turf/open/indestructible/ground/outside/road{icon_state = "hole"},/area/space)
"aF" = (/obj/structure/barricade/wooden,/obj/structure/decoration/rag,/turf/open/indestructible/ground/inside/dirt,/area/space)
"aG" = (/turf/open/indestructible/ground/outside/dirt{icon_state = "dirt"},/area/space)
"aH" = (/obj/structure/destructible/tribal_torch,/turf/open/floor/f13/wood,/area/space)
"aI" = (/obj/structure/chair/wood,/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/f13/detective,/turf/open/floor/f13/wood,/area/space)
"aN" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/dirt,/area/space)
"aP" = (/obj/machinery/hydroponics/soil,/turf/open/indestructible/ground/inside/mountain,/area/space)
"aQ" = (/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"aR" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain2left"},/area/space)
"aT" = (/turf/open/indestructible/ground/outside/dirt{icon_state = "dirtcorner"},/area/space)
"aV" = (/obj/effect/landmark/start/f13/settler,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft1"},/area/space)
"aW" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain3"},/area/space)
"aX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/turf/open/floor/f13/wood,/area/space)
"aY" = (/obj/structure/table/wood/settler,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/wood/f13/old,/area/space)
"bb" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/f13/attachments,/obj/effect/spawner/lootdrop/f13/attachments,/obj/effect/spawner/lootdrop/f13/attachments,/obj/effect/spawner/lootdrop/f13/medical/wasteland/meds,/obj/effect/spawner/lootdrop/f13/medical/wasteland/meds,/obj/effect/spawner/lootdrop/f13/medical/wasteland/meds,/obj/effect/spawner/lootdrop/f13/medical/wasteland/meds,/turf/open/floor/f13/wood,/area/space)
"bc" = (/obj/structure/chair/office{dir = 1},/turf/open/floor/f13/wood,/area/space)
"bd" = (/obj/structure/table/snooker{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/item/dice{pixel_x = 13; pixel_y = -7},/obj/item/dice,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"be" = (/obj/structure/reagent_dispensers/barrel/explosive,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"bg" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bh" = (/obj/structure/closet/crate/freezer{storage_capacity = 30},/obj/item/organ/heart,/obj/item/organ/heart,/obj/item/organ/heart,/obj/item/organ/heart,/obj/item/organ/lungs,/obj/item/organ/lungs,/obj/item/organ/lungs,/obj/item/organ/lungs,/obj/item/organ/stomach,/obj/item/organ/stomach,/obj/item/organ/stomach,/obj/item/organ/stomach,/obj/item/organ/liver,/obj/item/organ/liver,/obj/item/organ/liver,/obj/item/organ/liver,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/ears,/obj/item/organ/ears,/obj/item/organ/ears,/obj/item/organ/ears,/obj/item/organ/tongue,/obj/item/organ/tongue,/obj/item/organ/tongue,/obj/item/organ/tongue,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"bi" = (/obj/structure/toilet{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/mountain,/area/space)
"bj" = (/obj/structure/table/reinforced,/obj/machinery/computer/terminal{termtag = "Secret"},/obj/machinery/door/poddoor/shutters{id = "followersdeskshutters"; name = "followers shutters"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"bk" = (/turf/open/floor/grass,/area/space)
"bn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/chair/booth{dir = 8},/turf/open/indestructible/ground/inside/dirt,/area/space)
"bo" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain0"},/area/space)
"bq" = (/obj/structure/closet/crate/freezer/blood,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"br" = (/obj/machinery/light{dir = 8},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"bs" = (/obj/structure/simple_door/metal/fence{door_type = "fence_wood"; icon_state = "fence_wood"},/turf/open/indestructible/ground/outside/dirt{dir = 1; icon_state = "dirt"},/area/space)
"bt" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/door{id = "barshutters"; name = "bar shutters button"; pixel_y = 32; req_one_access_txt = "28"},/turf/open/floor/f13/wood,/area/space)
"bu" = (/obj/machinery/trading_machine/medical,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"bv" = (/obj/structure/table/reinforced,/obj/machinery/computer/terminal{dir = 4; termtag = "Business"},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"bw" = (/obj/structure/barricade/bars,/obj/structure/table/wood,/obj/structure/curtain{color = "#845f58"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bx" = (/obj/structure/chair/stool/retro/backed,/turf/open/floor/wood/f13/old,/area/space)
"by" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Church Backroom"; req_one_access_txt = "25"},/turf/open/floor/f13/wood,/area/space)
"bz" = (/obj/structure/filingcabinet,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"bD" = (/obj/machinery/iv_drip,/obj/item/reagent_containers/blood/OMinus,/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"bF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/chair/wood{dir = 1},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2"},/area/space)
"bG" = (/obj/structure/rack,/obj/item/pickaxe,/obj/item/pickaxe,/obj/item/flashlight/lantern,/obj/item/storage/bag/ore,/obj/item/storage/bag/ore,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bH" = (/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "followersdeskshutters"; name = "desk shutters"; pixel_x = 6},/obj/machinery/button/door{id = "followershutters"; name = "door shutters"; pixel_x = -6},/obj/structure/table/reinforced,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"bJ" = (/obj/structure/rack,/obj/machinery/light/small{dir = 8},/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bK" = (/obj/structure/handrail/g_central{pixel_y = -16},/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier1,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bL" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalrightborderleft1"},/area/space)
"bM" = (/obj/structure/table/wood/settler,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"bN" = (/obj/structure/chair/booth,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bP" = (/turf/open/indestructible/ground/outside/road{dir = 8; icon_state = "innermaincornerinner"},/area/space)
"bR" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 5; icon_state = "outerpavement"},/area/space)
"bS" = (/obj/structure/table/wood,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bT" = (/obj/structure/barricade/wooden,/obj/structure/decoration/warning,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"bU" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop0"},/area/space)
"bV" = (/obj/machinery/workbench/advanced,/turf/open/floor/wood/f13/old,/area/space)
"bW" = (/obj/structure/sign/poster/contraband/pinup_funk,/turf/closed/wall/f13/wood,/area/space)
"bX" = (/obj/structure/table/booth,/turf/open/floor/wood/f13/old,/area/space)
"bZ" = (/obj/structure/flora/grass/wasteland,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/mountain,/area/space)
"ca" = (/obj/structure/chair/booth,/turf/open/floor/wood/f13/old,/area/space)
"cd" = (/obj/structure/chair/booth{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"ce" = (/obj/structure/table/optable,/obj/machinery/light{dir = 1},/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"cg" = (/obj/structure/chair/bench,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/mountain,/area/space)
"ch" = (/obj/structure/dresser,/turf/open/floor/wood/f13/old,/area/space)
"cj" = (/obj/machinery/vending/games,/turf/open/floor/f13/wood,/area/space)
"ck" = (/obj/effect/decal/cleanable/dirt,/obj/structure/barricade/wooden,/turf/closed/wall/f13/wood/interior,/area/space)
"cl" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"cm" = (/obj/structure/flora/grass/wasteland{pixel_x = 9; pixel_y = 14},/turf/open/indestructible/ground/inside/mountain,/area/space)
"cn" = (/obj/structure/sink/well,/turf/open/indestructible/ground/outside/dirt,/area/space)
"co" = (/obj/structure/table/wood,/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"cq" = (/obj/structure/fence/pole_t,/turf/open/floor/wood/f13/stage_t,/area/space)
"cr" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"ct" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/wood/f13/old,/area/space)
"cu" = (/obj/structure/ladder/unbreakable{height = 1; id = "busladder"},/turf/open/indestructible/ground/inside/mountain,/area/space)
"cv" = (/obj/structure/barricade/bars{layer = 5},/turf/open/floor/f13/wood,/area/space)
"cx" = (/obj/structure/barricade/wooden,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerpavement"},/area/space)
"cy" = (/obj/structure/simple_door/metal/barred,/obj/machinery/door/poddoor/shutters/preopen{id = "topcellghoul"},/obj/structure/simple_door/metal/barred,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"cz" = (/obj/structure/barricade/wooden,/turf/open/floor/grass,/area/space)
"cA" = (/obj/structure/table/reinforced,/obj/machinery/computer/terminal{dir = 1},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"cB" = (/obj/structure/guncase,/obj/effect/decal/cleanable/dirt,/obj/item/gun/ballistic/shotgun/trench,/obj/item/gun/ballistic/shotgun/trench,/obj/item/gun/ballistic/shotgun/trench,/turf/open/floor/f13/wood,/area/space)
"cC" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 7; icon_state = "outerpavement"},/area/space)
"cF" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerborder"},/area/space)
"cG" = (/obj/structure/chair/wood,/turf/open/floor/wood/f13/old,/area/space)
"cI" = (/obj/structure/rack,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/wood/f13/old,/area/space)
"cK" = (/obj/structure/chair/comfy/shuttle,/obj/effect/landmark/start/f13/followersadministrator,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"cL" = (/obj/structure/rack,/obj/item/camera,/obj/item/camera_film,/obj/item/crafting/abraxo,/obj/item/assembly/prox_sensor,/obj/item/flashlight/seclite,/obj/item/flashlight,/obj/item/flashlight,/obj/item/radio,/obj/effect/spawner/lootdrop/f13/resourcespawner,/obj/effect/spawner/lootdrop/f13/resourcespawner,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"cM" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{dir = 9; icon_state = "outerpavement"},/area/space)
"cP" = (/obj/structure/rack,/obj/item/stack/f13Cash/random/denarius/high,/obj/item/stack/f13Cash/random/denarius/high,/obj/item/stack/f13Cash/random/denarius/high,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"cQ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/oil{icon_state = "floor6"; pixel_x = -28},/obj/machinery/autolathe,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"cR" = (/turf/open/indestructible/ground/outside/dirt{dir = 6; icon_state = "dirt"},/area/space)
"cT" = (/obj/structure/table,/obj/item/storage/box/disks_plantgene,/turf/open/floor/wood,/area/space)
"cV" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2"},/area/space)
"cX" = (/obj/structure/table/glass,/obj/item/folder{pixel_x = -4},/turf/open/floor/f13{icon_state = "purplefull"},/area/space)
"cY" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/mountain,/area/space)
"cZ" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"da" = (/obj/machinery/light{dir = 1},/obj/machinery/button/door{id = "shopouter"; name = "gate shutters"; pixel_y = 32},/turf/open/floor/f13/wood,/area/space)
"de" = (/obj/structure/rack,/obj/item/stack/sheet/plasteel/fifty,/obj/item/stack/sheet/plasteel/fifty,/obj/item/stack/sheet/plasteel/fifty,/obj/item/stack/sheet/plasteel/fifty,/obj/item/stack/sheet/plasteel/fifty,/obj/item/stack/sheet/plasteel/fifty,/turf/open/floor/wood/f13/old,/area/space)
"df" = (/obj/machinery/vending/medical{req_access = null},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"dg" = (/obj/structure/table/wood/settler,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"di" = (/obj/structure/barricade/bars,/obj/structure/fence{pixel_x = -16},/obj/structure/window/reinforced/fulltile{layer = 2.8},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"dj" = (/obj/structure/table/wood/settler,/obj/machinery/cell_charger,/turf/open/floor/wood/f13/old,/area/space)
"dl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/revolver{pixel_y = 32},/turf/open/indestructible/ground/inside/mountain,/area/space)
"dm" = (/obj/structure/bodycontainer/crematorium,/turf/open/floor/f13{icon_state = "darkrusty"},/area/space)
"dn" = (/obj/structure/decoration/vent/rusty,/turf/closed/wall/f13/supermart,/area/space)
"dp" = (/obj/machinery/workbench,/turf/open/floor/f13/wood,/area/space)
"dq" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Mayor's Office"; req_one_access_txt = "62"},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"dr" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerbordercorner"},/area/space)
"dt" = (/obj/structure/fence{dir = 1; pixel_x = -10},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2right"},/area/space)
"du" = (/obj/machinery/light{dir = 1},/turf/open/floor/wood/f13/stage_tl,/area/space)
"dv" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/storage/toolbox/emergency,/obj/item/storage/toolbox/electrical,/turf/open/floor/plating/f13,/area/space)
"dw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/booth,/turf/open/indestructible/ground/inside/mountain,/area/space)
"dy" = (/obj/item/paper_bin,/obj/item/pen,/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/whiskey,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"dC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"dD" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/obj/item/stack/f13Cash/random/high,/obj/item/stack/f13Cash/random/high,/obj/item/stack/f13Cash/random/high,/obj/item/stack/f13Cash/random/high,/obj/item/stack/f13Cash/random/high,/obj/item/stack/f13Cash/random/high,/obj/item/stack/f13Cash/random/high,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/stack/ore/blackpowder/fifty,/obj/item/stack/ore/blackpowder/fifty,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"dE" = (/obj/structure/destructible/tribal_torch{pixel_y = 20},/obj/structure/wreck/trash/three_barrels,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"dF" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Farm"; req_one_access_txt = "25"},/turf/open/indestructible/ground/outside/dirt,/area/space)
"dG" = (/obj/structure/rack,/obj/item/stack/sheet/glass/ten,/obj/item/stack/sheet/glass/ten,/obj/item/stack/sheet/glass/ten,/obj/item/stack/rods/twentyfive,/turf/open/floor/plating/f13,/area/space)
"dH" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft2"},/area/space)
"dJ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_2"; pixel_x = -4; pixel_y = 13},/turf/open/indestructible/ground/outside/desert,/area/space)
"dL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/autolathe/ammo,/turf/open/floor/f13/wood,/area/space)
"dM" = (/obj/structure/window/fulltile/house{icon_state = "storewindowbottom"},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"dN" = (/obj/structure/rack,/obj/item/seeds/chili,/obj/item/seeds/coffee,/obj/item/seeds/tea,/obj/item/seeds/xander,/obj/item/seeds/grass,/obj/item/seeds/grass,/obj/item/seeds/ambrosia,/obj/item/seeds/poppy/broc,/obj/item/seeds/wheat/rice,/obj/item/seeds/cotton,/obj/item/seeds/grass,/obj/item/seeds/wheat,/obj/effect/spawner/lootdrop/f13/seedspawner,/obj/effect/spawner/lootdrop/f13/seedspawner,/turf/open/indestructible/ground/outside/dirt,/area/space)
"dP" = (/obj/structure/chair/stool/retro/backed{dir = 4},/turf/open/floor/wood/f13/old,/area/space)
"dQ" = (/obj/structure/table/wood/poker,/turf/open/floor/f13/wood,/area/space)
"dS" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/open/floor/f13/wood,/area/space)
"dU" = (/obj/structure/barricade/bars,/obj/effect/decal/cleanable/generic,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"dW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed,/obj/item/bedsheet{icon_state = "sheetcmo"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"dY" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; pixel_x = -8; pixel_y = 7},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/dirt,/area/space)
"dZ" = (/obj/structure/table/wood/poker,/obj/item/reagent_containers/food/drinks/bottle/whiskey,/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood/f13/stage_br,/area/space)
"ea" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/dirt{icon_state = "dirtcorner"},/area/space)
"eb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/booth,/obj/effect/spawner/lootdrop/f13/foodspawner,/turf/open/indestructible/ground/inside/mountain,/area/space)
"ec" = (/obj/structure/chair/wood{dir = 4},/obj/effect/turf_decal/box/white,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"ee" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/machinery/iv_drip,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"eg" = (/obj/structure/table,/obj/item/storage/belt/utility/full,/turf/open/floor/f13{icon_state = "yellowdirtyfull"},/area/space)
"eh" = (/obj/effect/decal/waste{icon_state = "goo5"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ej" = (/obj/structure/destructible/tribal_torch{layer = 3.1; pixel_y = 20},/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"ek" = (/obj/structure/chair/sofa/corp/left{dir = 4},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"el" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/dirt,/area/space)
"eo" = (/obj/machinery/door/poddoor/shutters{id = "fadmin"; name = "Follower Admin shutters"},/obj/machinery/door/airlock/medical{name = "Clinic"; req_one_access_txt = "124"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"ep" = (/obj/structure/rack,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"eq" = (/obj/structure/window/fulltile/wood,/obj/structure/curtain{color = "#845f58"},/obj/structure/fence{dir = 1; pixel_x = -18},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"er" = (/obj/structure/closet/crate/trashcart,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"es" = (/obj/structure/car/rubbish4,/turf/open/indestructible/ground/outside/desert,/area/space)
"et" = (/obj/structure/closet/crate/large,/obj/structure/closet/crate/large,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"eu" = (/turf/closed/indestructible/f13/matrix,/area/space)
"ev" = (/obj/machinery/door/poddoor/ert{id = "bankvault"; name = "Vault"},/turf/open/floor/wood/f13/stage_t,/area/space)
"ew" = (/obj/structure/table,/obj/item/kitchen/knife,/obj/item/kitchen/rollingpin,/obj/machinery/light/small{dir = 8},/turf/open/floor/f13/wood,/area/space)
"ex" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/f13{icon_state = "purplefull"},/area/space)
"ey" = (/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"eA" = (/obj/structure/table/glass,/obj/item/storage/box/pillbottles,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"eB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/chair/booth{icon_state = "booth_east_south"},/turf/open/indestructible/ground/inside/mountain,/area/space)
"eE" = (/mob/living/simple_animal/chick,/turf/open/indestructible/ground/outside/desert,/area/space)
"eF" = (/obj/machinery/light/small{dir = 8},/obj/structure/chair/sofa/corp/right{dir = 4},/turf/open/floor/f13/wood,/area/space)
"eG" = (/obj/structure/rack,/obj/item/stack/f13Cash/random/ncr/high,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"eH" = (/obj/structure/flora/tree/tall{icon_state = "tree_2"},/turf/open/indestructible/ground/outside/desert,/area/space)
"eI" = (/obj/machinery/smartfridge/chemistry,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"eK" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; pixel_x = -1; pixel_y = 2},/obj/structure/flora/grass/wasteland{layer = 4.2; pixel_x = -3},/obj/structure/flora/tree/tall{layer = 4; pixel_y = 9},/turf/open/indestructible/ground/outside/desert{icon_state = "wasteland33"},/area/space)
"eM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/dresser,/turf/open/floor/f13/wood,/area/space)
"eO" = (/turf/open/floor/wood/f13/stage_tl,/area/space)
"eP" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain2right"},/area/space)
"eQ" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"eR" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerbordercorner"},/area/space)
"eU" = (/obj/structure/bookcase/manuals/research_and_development,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"eV" = (/obj/structure/tires/five,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft2top"},/area/space)
"eW" = (/obj/structure/table/wood/settler,/obj/item/cosmetics/lipstick/black,/turf/open/floor/wood/f13/old,/area/space)
"fb" = (/obj/structure/chair/sofa/corp/right{dir = 8},/turf/open/floor/wood,/area/space)
"fc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/glass,/obj/item/fermichem/pHmeter,/obj/item/storage/bag/chemistry,/obj/item/fermichem/pHmeter,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"fe" = (/obj/structure/rack,/obj/item/pickaxe,/obj/item/pickaxe,/obj/item/flashlight/lantern,/obj/item/mining_scanner,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ff" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 8; icon_state = "outerbordercorner"},/area/space)
"fg" = (/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/closed/wall/f13/wood,/area/space)
"fh" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/hostile/ghoul/glowing,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"fi" = (/obj/effect/landmark/start/f13/deputy,/obj/structure/chair/bench,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"fk" = (/obj/structure/table,/obj/machinery/computer/terminal{dir = 8; termtag = "Secret"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"fl" = (/obj/structure/barricade/sandbags,/turf/open/water,/area/space)
"fm" = (/obj/structure/barricade/bars,/obj/structure/curtain{color = "#845f58"},/obj/effect/decal/cleanable/dirt,/obj/structure/barricade/bars,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"fn" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/wood/f13/old,/area/space)
"fo" = (/obj/structure/chair/wood{dir = 4},/turf/open/floor/wood/f13/old,/area/space)
"fp" = (/obj/structure/closet/crate/bin,/obj/machinery/light/small{dir = 8},/turf/open/floor/f13/wood,/area/space)
"fq" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"fr" = (/obj/structure/sink{pixel_y = 19},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "floordirtysolid"},/area/space)
"fs" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chem_pile{pixel_x = -19},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/f13{icon_state = "floordirtysolid"},/area/space)
"ft" = (/obj/machinery/vending/cigarette,/turf/open/floor/f13/wood,/area/space)
"fu" = (/obj/structure/noticeboard{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"fv" = (/obj/machinery/door/poddoor/shutters{id = "prospectorshutters"},/turf/open/indestructible/ground/outside/road{icon_state = "horizontalbottombordertop0"},/area/space)
"fw" = (/obj/structure/window/fulltile/house{icon_state = "storewindowright"},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"fy" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_7"},/turf/open/indestructible/ground/outside/dirt,/area/space)
"fA" = (/obj/effect/spawner/lootdrop/trash,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontalbottomborderbottom0"},/area/space)
"fC" = (/obj/machinery/photocopier,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"fD" = (/obj/structure/table/glass,/obj/item/pda,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"fF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/decoration/vent/rusty,/turf/closed/wall/f13/supermart,/area/space)
"fH" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright2"},/area/space)
"fI" = (/turf/open/indestructible/ground/outside/road{icon_state = "innermaincornerinner"},/area/space)
"fJ" = (/obj/structure/table/reinforced,/obj/structure/barricade/bars,/obj/machinery/door/poddoor/shutters/preopen{id = "innercity"; name = "innercity gatehouse shutters"},/turf/open/floor/plasteel/f13/vault_floor/plating,/area/space)
"fK" = (/obj/machinery/plantgenes,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"fL" = (/obj/structure/chair/wood{dir = 1},/turf/open/floor/f13/wood,/area/space)
"fM" = (/obj/structure/wreck/trash/four_barrels,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"fP" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_2"; layer = 6; pixel_x = -6; pixel_y = 13},/obj/structure/flora/tree/tall{icon_state = "tree_3"; pixel_x = -19; pixel_y = 9},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderlefttop"},/area/space)
"fQ" = (/obj/machinery/autolathe/ammo/unlocked,/obj/item/book/granter/crafting_recipe/gunsmithing/gunsmith_one,/obj/item/book/granter/crafting_recipe/gunsmithing/gunsmith_two,/obj/item/book/granter/crafting_recipe/gunsmithing/gunsmith_three,/obj/machinery/light/small{dir = 4},/turf/open/floor/wood/f13/old,/area/space)
"fR" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontaltopborderbottom2left"},/area/space)
"fT" = (/obj/structure/wreck/trash/halftire,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerpavement"},/area/space)
"fU" = (/obj/structure/table/reinforced,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"fV" = (/obj/structure/destructible/tribal_torch,/turf/open/indestructible/ground/outside/desert,/area/space)
"fX" = (/obj/structure/table/wood/settler,/turf/open/floor/f13/wood,/area/space)
"fY" = (/obj/effect/landmark/latejoin,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop3"},/area/space)
"fZ" = (/obj/structure/sign/poster/prewar/protectron,/turf/closed/wall/f13/supermart,/area/space)
"ga" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/open/floor/grass,/area/space)
"gb" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain1"},/area/space)
"gc" = (/obj/structure/table,/obj/machinery/button/door{id = "clinicfrontdoor"; name = "door shutters"; pixel_x = -6},/obj/machinery/button/door{id = "clinicdesk"; name = "desk shutters"; pixel_x = 6},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"gf" = (/turf/open/indestructible/ground/outside/road{icon_state = "innercornerpieceleft"},/area/space)
"gg" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"gh" = (/obj/structure/destructible/tribal_torch,/turf/open/indestructible/ground/outside/dirt,/area/space)
"gi" = (/obj/item/storage/firstaid/ancient,/obj/item/storage/firstaid/ancient,/obj/item/storage/firstaid/ancient,/obj/effect/turf_decal/box/white,/obj/item/reagent_containers/medspray/synthflesh,/obj/item/reagent_containers/medspray/synthflesh,/obj/item/reagent_containers/medspray/silver_sulf,/obj/item/reagent_containers/medspray/silver_sulf,/obj/item/reagent_containers/medspray/styptic,/obj/item/reagent_containers/medspray/styptic,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/storage/pill_bottle/chem_tin/fixer,/obj/item/reagent_containers/hypospray/medipen/medx,/obj/item/reagent_containers/hypospray/medipen/medx,/obj/item/reagent_containers/blood/radaway,/obj/item/reagent_containers/blood/radaway,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/structure/closet/crate/medical/anchored,/obj/item/storage/pill_bottle/mannitol,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"gj" = (/turf/open/floor/f13{icon_state = "stagestairs"},/area/space)
"gl" = (/obj/structure/window/fulltile/house{dir = 2; icon_state = "storewindowtop"},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"gm" = (/obj/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"gn" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/grass,/area/space)
"go" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/wood,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/f13/wood,/area/space)
"gq" = (/obj/machinery/smartfridge/bottlerack/seedbin,/turf/open/indestructible/ground/outside/dirt,/area/space)
"gr" = (/obj/structure/chair/wood{dir = 8},/turf/open/floor/wood/f13/old,/area/space)
"gs" = (/obj/structure/lattice,/obj/structure/spacevine{name = "vines"},/turf/open/indestructible/ground/outside/water{desc = "Deep, poorly filtered gardening water."; name = "stagnant water"},/area/space)
"gt" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2left"},/area/space)
"gv" = (/obj/item/pickaxe,/turf/open/indestructible/ground/inside/mountain,/area/space)
"gw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/turf/open/floor/wood/f13/old,/area/space)
"gy" = (/obj/structure/table/wood,/obj/item/restraints/legcuffs/bola,/obj/item/restraints/legcuffs/bola,/obj/item/restraints/legcuffs/bola,/obj/item/restraints/legcuffs/bola,/obj/effect/decal/cleanable/dirt,/obj/item/stack/f13Cash/random/med,/obj/item/megaphone,/turf/open/floor/f13/wood,/area/space)
"gz" = (/turf/open/indestructible/ground/outside/road{icon_state = "innermaincornerouter"},/area/space)
"gA" = (/obj/structure/chair/booth{dir = 1},/turf/open/floor/wood/f13/old,/area/space)
"gC" = (/turf/open/floor/wood/f13/stage_l,/area/space)
"gD" = (/obj/structure/bed/roller,/obj/effect/turf_decal/stripes/line,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"gE" = (/turf/open/floor/f13{icon_state = "floordirtysolid"},/area/space)
"gI" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/f13/resourcespawner,/obj/effect/spawner/lootdrop/f13/resourcespawner,/obj/effect/spawner/lootdrop/f13/resourcespawner,/turf/open/floor/f13{icon_state = "darkdirtysolid"},/area/space)
"gJ" = (/obj/effect/landmark/start/f13/farmer,/turf/open/indestructible/ground/outside/dirt,/area/space)
"gK" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop0"},/area/space)
"gL" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/f13/wood,/area/space)
"gM" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright0"},/area/space)
"gN" = (/obj/effect/decal/cleanable/dirt,/obj/item/storage/toolbox/drone,/obj/item/storage/toolbox/drone,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"gO" = (/obj/structure/sign/poster/ripped{pixel_x = -32},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft2top"},/area/space)
"gP" = (/obj/structure/chair/sofa/corp/left{dir = 8},/turf/open/floor/wood,/area/space)
"gQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/flashlight/pen,/obj/item/flashlight/pen,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"gS" = (/obj/effect/landmark/start/f13/followersvolunteer,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"gT" = (/turf/open/floor/f13{icon_state = "yellowdirtyfull"},/area/space)
"gU" = (/obj/structure/bed/mattress{icon_state = "mattress3"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"gV" = (/obj/effect/landmark/start/f13/prospector,/turf/open/floor/f13{icon_state = "darkdirtysolid"},/area/space)
"gW" = (/obj/structure/flora/ausbushes/sunnybush,/obj/structure/barricade/wooden,/turf/open/floor/grass,/area/space)
"gX" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_4"; layer = 6},/turf/open/indestructible/ground/outside/sidewalk{dir = 4; icon_state = "outermaincornerouter"},/area/space)
"gY" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalbottombordertop3"},/area/space)
"hb" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"hc" = (/obj/structure/ladder/unbreakable{height = 1; id = "followerladder"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"hd" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"hf" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop0"},/area/space)
"hh" = (/obj/structure/chair/wood{dir = 4},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"hi" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"hk" = (/turf/open/floor/f13{icon_state = "purplefull"},/area/space)
"hn" = (/obj/structure/closet/crate/freezer{storage_capacity = 30},/obj/item/organ/heart,/obj/item/organ/heart,/obj/item/organ/heart,/obj/item/organ/heart,/obj/item/organ/lungs,/obj/item/organ/lungs,/obj/item/organ/lungs,/obj/item/organ/lungs,/obj/item/organ/stomach,/obj/item/organ/stomach,/obj/item/organ/stomach,/obj/item/organ/stomach,/obj/item/organ/liver,/obj/item/organ/liver,/obj/item/organ/liver,/obj/item/organ/liver,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/eyes,/obj/item/organ/ears,/obj/item/organ/ears,/obj/item/organ/ears,/obj/item/organ/ears,/obj/item/organ/tongue,/obj/item/organ/tongue,/obj/item/organ/tongue,/obj/item/organ/tongue,/turf/open/floor/f13{icon_state = "yellowdirtyfull"},/area/space)
"ho" = (/obj/structure/destructible/tribal_torch{pixel_x = 13; pixel_y = 7},/obj/effect/decal/cleanable/vomit,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"hq" = (/obj/structure/chair/bench,/obj/effect/landmark/start/f13/settler,/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain0"},/area/space)
"hr" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/item/taperecorder,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ht" = (/obj/structure/barricade/wooden,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft2top"},/area/space)
"hu" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"hv" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/f13/settler,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"hw" = (/obj/structure/decoration/vent/rusty,/turf/closed/wall/f13/store,/area/space)
"hx" = (/obj/structure/decoration/rag{layer = 2.5; pixel_y = 5},/turf/open/indestructible/ground/outside/road{dir = 8; icon_state = "horizontaltopborderbottom2left"},/area/space)
"hy" = (/obj/effect/spawner/lootdrop/f13/medical/wasteland/meds,/turf/open/indestructible/ground/inside/mountain,/area/space)
"hz" = (/obj/machinery/light{dir = 4},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"hB" = (/obj/structure/destructible/tribal_torch,/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/outside/dirt{icon_state = "dirt"},/area/space)
"hC" = (/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/inside/mountain,/area/space)
"hD" = (/obj/structure/curtain{color = "#845f58"},/turf/open/floor/f13{dir = 4; icon_state = "stagestairs"},/area/space)
"hE" = (/obj/structure/fence{dir = 1},/turf/open/indestructible/ground/outside/desert,/area/space)
"hF" = (/obj/structure/chalkboard{pixel_y = 16},/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"hG" = (/obj/machinery/light/small{dir = 1},/obj/structure/handrail/g_central{pixel_y = -16},/turf/open/water,/area/space)
"hK" = (/obj/structure/barricade/bars,/obj/machinery/door/poddoor/shutters/preopen{id = "topcellghoul"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"hL" = (/obj/structure/rack,/obj/item/seeds/xander,/obj/item/seeds/poppy/broc,/obj/item/seeds/cotton,/obj/item/seeds/wheat,/obj/effect/spawner/lootdrop/f13/seedspawner,/obj/effect/spawner/lootdrop/f13/seedspawner,/turf/open/indestructible/ground/outside/dirt,/area/space)
"hM" = (/obj/structure/chair{dir = 4},/turf/open/indestructible/ground/outside/dirt,/area/space)
"hO" = (/obj/structure/table/wood,/obj/item/fishingrod,/turf/open/indestructible/ground/outside/wood,/area/space)
"hQ" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/rust,/area/space)
"hS" = (/obj/structure/table,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"hT" = (/obj/structure/flora/grass/wasteland,/obj/structure/flora/grass/wasteland,/obj/structure/flora/grass/wasteland,/obj/structure/flora/grass/wasteland,/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/outside/dirt,/area/space)
"hU" = (/obj/machinery/iv_drip,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"hV" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalleftborderright2bottom"},/area/space)
"hX" = (/obj/structure/table/wood/settler,/obj/effect/spawner/lootdrop/f13/blueprintVHigh,/obj/effect/spawner/lootdrop/f13/blueprintVHigh,/obj/effect/spawner/lootdrop/f13/blueprintVHigh,/turf/open/floor/wood/f13/old,/area/space)
"hY" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertopright"},/area/space)
"hZ" = (/obj/structure/simple_door/bunker,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"ia" = (/obj/structure/table/wood/settler,/obj/structure/mirror{pixel_x = 32},/turf/open/floor/wood/f13/old,/area/space)
"ic" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/iv_drip,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"id" = (/obj/item/pen,/obj/item/paper_bin,/obj/structure/table,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"if" = (/obj/effect/landmark/start/f13/settler,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft0"},/area/space)
"ig" = (/obj/structure/table/wood,/obj/machinery/computer/terminal{dir = 1; termtag = "Business"},/obj/machinery/light/small{dir = 8},/turf/open/floor/f13/wood,/area/space)
"ih" = (/obj/structure/girder/reinforced,/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ii" = (/obj/machinery/light/small,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"ij" = (/obj/structure/chair{dir = 4},/turf/open/floor/carpet/black,/area/space)
"ik" = (/obj/item/clothing/head/cone{anchored = 1; pixel_x = 13},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/road,/area/space)
"il" = (/obj/structure/table,/obj/item/storage/box/syringes,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"im" = (/obj/structure/guncase,/turf/open/floor/wood,/area/space)
"in" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalleftborderright2top"},/area/space)
"ip" = (/obj/structure/chair/wood{dir = 1},/turf/open/floor/wood/f13/old,/area/space)
"iq" = (/obj/structure/rack,/obj/item/clothing/under/f13/fprostitute,/obj/item/clothing/under/f13/fprostitute,/obj/item/clothing/under/f13/fprostitute,/obj/item/clothing/under/f13/fprostitute,/turf/open/floor/wood/f13/old,/area/space)
"is" = (/obj/machinery/door/poddoor/shutters{id = "clinicdesk"; name = "counter shutters"},/obj/structure/table/reinforced,/obj/structure/barricade/bars,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"iw" = (/obj/structure/chair/stool/retro,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"ix" = (/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/outside/dirt,/area/space)
"iy" = (/obj/structure/table/wood,/obj/item/folder,/obj/item/folder,/obj/item/folder,/obj/item/folder,/turf/open/floor/f13/wood,/area/space)
"iz" = (/obj/structure/table/snooker{dir = 9},/obj/item/toy/cards/deck{pixel_x = -11; pixel_y = 15},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"iA" = (/obj/structure/simple_door/bunker,/turf/open/floor/wood,/area/space)
"iB" = (/obj/structure/chair/booth{dir = 8},/turf/open/indestructible/ground/inside/dirt,/area/space)
"iC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/vending/boozeomat{density = 0; pixel_x = -32},/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"iD" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain0"},/area/space)
"iE" = (/obj/structure/handrail/g_central{dir = 8; pixel_x = -20},/obj/effect/decal/cleanable/dirt,/obj/item/storage/trash_stack{layer = 2},/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"iF" = (/obj/machinery/button/door{id = "innercity"; name = "gate shutters"; pixel_x = 26; pixel_y = 5},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"iG" = (/obj/structure/table/wood,/obj/machinery/computer/terminal{dir = 4; termtag = "Business"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"iI" = (/obj/structure/sign/poster/contraband/pinup_funk{pixel_y = -32},/turf/open/floor/f13/wood,/area/space)
"iJ" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright1"},/area/space)
"iK" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain2top"},/area/space)
"iM" = (/obj/machinery/vending/nukacolavend,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermainleft"},/area/space)
"iN" = (/obj/structure/table/wood/settler,/obj/item/cosmetics/lipstick/jade,/turf/open/floor/wood/f13/old,/area/space)
"iP" = (/obj/structure/table/wood,/obj/item/toner,/obj/item/toner,/turf/open/floor/f13/wood,/area/space)
"iQ" = (/obj/effect/spawner/lootdrop/f13/weapon/melee/random,/obj/item/clothing/under/f13/shiny,/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/storage/backpack/cultpack,/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box,/obj/item/clothing/shoes/f13/fancy,/obj/item/storage/box/matches,/turf/open/floor/f13/wood,/area/space)
"iR" = (/obj/structure/kitchenspike,/obj/machinery/light/small{dir = 8},/obj/structure/decoration/hatch{dir = 8; layer = 2.5},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"iS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"iT" = (/obj/structure/chair/stool/retro/backed{dir = 1},/turf/open/floor/wood/f13/old,/area/space)
"iU" = (/obj/structure/table/snooker{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"iW" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"iX" = (/obj/structure/simple_door/bunker,/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"iY" = (/obj/structure/dresser,/turf/open/floor/f13/wood,/area/space)
"ja" = (/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "botany"; name = "Botany button"; pixel_y = -25},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"jb" = (/turf/open/indestructible/ground/inside/dirt,/area/space)
"jd" = (/turf/closed/wall/r_wall/rust,/area/space)
"je" = (/obj/machinery/light,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"jf" = (/obj/effect/decal/waste{icon_state = "goo5"},/turf/open/indestructible/ground/outside/dirt,/area/space)
"jg" = (/obj/machinery/button/door{id = "innercity"; name = "gate shutters"; pixel_x = 26; pixel_y = 5},/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain0"},/area/space)
"jh" = (/obj/effect/landmark/start/f13/dendoc,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ji" = (/obj/structure/table/glass,/obj/item/paper_bin,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"jj" = (/obj/structure/bookcase/random,/turf/open/floor/wood,/area/space)
"jk" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; pixel_x = -11; pixel_y = 8},/obj/structure/flora/grass/wasteland,/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/outside/dirt,/area/space)
"jl" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"jm" = (/obj/structure/girder,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"jn" = (/obj/effect/decal/cleanable/dirt,/obj/item/clothing/glasses/sunglasses{anchored = 1; pixel_y = 26},/obj/item/clothing/head/fedora/det_hat{anchored = 1; pixel_y = 32},/turf/open/indestructible/ground/inside/mountain,/area/space)
"jp" = (/turf/closed/wall/f13/tunnel,/area/space)
"jq" = (/obj/structure/barricade/wooden,/obj/structure/decoration/rag{icon_state = "skin"},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft0"},/area/space)
"jr" = (/obj/structure/rack,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2"},/area/space)
"js" = (/obj/structure/closet{name = "implants locker"},/obj/item/organ/cyberimp/chest/nutriment,/obj/item/organ/cyberimp/chest/nutriment,/obj/item/organ/cyberimp/chest/nutriment,/obj/item/organ/cyberimp/chest/nutriment/plus,/obj/item/organ/cyberimp/eyes/hud/medical,/obj/item/organ/cyberimp/eyes/hud/medical,/obj/item/organ/cyberimp/eyes/hud/medical,/obj/item/organ/cyberimp/eyes/hud/medical,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"jt" = (/obj/structure/closet,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/tank/internals/anesthetic,/obj/item/tank/internals/anesthetic,/obj/item/tank/internals/anesthetic,/obj/item/disk/surgery/oasis,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ju" = (/turf/open/indestructible/ground/outside/desert{icon_state = "wasteland32"},/area/space)
"jv" = (/obj/structure/barricade/wooden,/turf/open/indestructible/ground/outside/sidewalk{dir = 8; icon_state = "outerpavement"},/area/space)
"jw" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"jx" = (/obj/machinery/light/small{dir = 1},/turf/open/water,/area/space)
"jy" = (/obj/machinery/autolathe,/turf/open/floor/f13{icon_state = "yellowdirtyfull"},/area/space)
"jA" = (/obj/machinery/smartfridge/drying_rack,/turf/open/indestructible/ground/outside/dirt,/area/space)
"jB" = (/obj/machinery/light{dir = 1},/obj/structure/chair,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"jC" = (/obj/structure/table/wood,/obj/machinery/computer/terminal{dir = 1; termtag = "Business"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"jE" = (/obj/structure/table,/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"jG" = (/obj/structure/chair/booth{icon_state = "booth_west_south"},/turf/open/floor/f13/wood,/area/space)
"jH" = (/obj/structure/decoration/clock/old,/turf/closed/wall/f13/wood,/area/space)
"jJ" = (/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/outside/dirt{icon_state = "dirt"},/area/space)
"jK" = (/obj/machinery/vending/snack,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2"},/area/space)
"jL" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"jM" = (/obj/structure/decoration/hatch{dir = 4},/obj/structure/barricade/bars{layer = 5},/turf/open/water,/area/space)
"jN" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop2left"},/area/space)
"jS" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/road,/area/space)
"jV" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderrighttop"},/area/space)
"jW" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/desert,/area/space)
"jX" = (/obj/structure/rack,/obj/item/clothing/under/f13/mprostitute,/obj/item/clothing/under/f13/mprostitute,/obj/item/clothing/under/f13/mprostitute,/obj/item/clothing/under/f13/mprostitute,/turf/open/floor/wood/f13/old,/area/space)
"jY" = (/obj/structure/table/glass,/obj/item/storage/box/syringes,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"jZ" = (/obj/machinery/light{dir = 8},/turf/open/floor/carpet,/area/space)
"ka" = (/obj/structure/closet/crate/trashcart,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2right"},/area/space)
"kb" = (/obj/structure/closet/fridge,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/effect/spawner/lootdrop/f13/foodspawner,/obj/effect/spawner/lootdrop/f13/foodspawner,/turf/open/floor/f13/wood,/area/space)
"kc" = (/obj/structure/rack,/obj/item/circuitboard/machine/autolathe,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"kd" = (/obj/structure/simple_door/house,/turf/open/floor/f13/wood,/area/space)
"kf" = (/obj/structure/chair/stool/retro,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"kj" = (/obj/machinery/door/poddoor/shutters{id = "prospectorshutters"},/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain0"},/area/space)
"kk" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"kl" = (/obj/structure/car,/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain2"},/area/space)
"km" = (/obj/structure/reagent_dispensers/compostbin,/turf/open/indestructible/ground/outside/dirt,/area/space)
"ko" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalrightborderlefttop"},/area/space)
"kp" = (/obj/structure/bed/mattress{icon_state = "mattress5"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"kq" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"kr" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Mayor's Office"; req_one_access_txt = "62"},/turf/open/floor/f13/wood,/area/space)
"ks" = (/obj/structure/decoration/rag,/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Sheriff Office"; req_one_access_txt = "62"},/turf/open/floor/f13/wood,/area/space)
"kt" = (/obj/structure/table/reinforced,/obj/structure/barricade/bars,/obj/machinery/door/poddoor/shutters{id = "bankdesk"; name = "counter shutters"},/turf/open/floor/f13/wood,/area/space)
"ku" = (/obj/structure/table,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"kv" = (/obj/structure/barricade/wooden,/obj/structure/barricade/wooden/planks,/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"kw" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticaloutermain2"},/area/space)
"kx" = (/obj/structure/bed/wooden,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"ky" = (/obj/structure/cargocrate,/obj/structure/cargocrate{pixel_y = 32},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"kz" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/f13{icon_state = "purplefull"},/area/space)
"kA" = (/obj/structure/bed/mattress{icon_state = "mattress4"},/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"kB" = (/obj/machinery/mineral/ore_redemption,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"kC" = (/obj/structure/decoration/vent,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/space)
"kD" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "outerbordercorner"},/area/space)
"kE" = (/obj/structure/table,/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/roller,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"kF" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"kG" = (/obj/structure/table/wood/settler,/obj/structure/mirror{pixel_x = 32},/obj/item/cosmetics/lipstick/purple,/turf/open/floor/wood/f13/old,/area/space)
"kI" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain2"},/area/space)
"kJ" = (/obj/machinery/limbgrower,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"kN" = (/obj/structure/simple_door/bunker,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"kP" = (/obj/structure/chair{dir = 1},/turf/open/floor/wood/f13/stage_t,/area/space)
"kQ" = (/obj/structure/table/wood/settler,/turf/open/floor/wood/f13/stage_tr,/area/space)
"kR" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/road,/area/space)
"kT" = (/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright1"},/area/space)
"kV" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalleftborderright2"},/area/space)
"kW" = (/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/floor/f13/wood,/area/space)
"kX" = (/obj/structure/table/wood/settler,/obj/item/paper_bin,/obj/item/pen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"kZ" = (/obj/effect/landmark/start/f13/prospector,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"lb" = (/obj/structure/curtain{color = "#845f58"},/turf/open/floor/wood/f13/old,/area/space)
"le" = (/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"lf" = (/obj/structure/simple_door/metal/barred,/turf/open/water,/area/space)
"lg" = (/obj/structure/fence/wooden{dir = 1},/turf/open/indestructible/ground/outside/dirt,/area/space)
"lh" = (/obj/machinery/light/fo13colored/Aqua{dir = 8; name = "light fixture"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"li" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerpavementcorner"},/area/space)
"lj" = (/obj/machinery/light{dir = 8},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"lk" = (/obj/structure/fence/wooden{dir = 4},/turf/open/indestructible/ground/outside/dirt{dir = 1; icon_state = "dirt"},/area/space)
"lm" = (/obj/structure/closet/cabinet,/obj/structure/curtain{color = "#845f58"},/obj/structure/ladder/unbreakable{height = 2; id = "house1ladder"; layer = 2},/obj/effect/spawner/lootdrop/f13/armor/clothes,/turf/open/floor/f13/wood,/area/space)
"ln" = (/obj/machinery/door/airlock/vault{autoclose = "TRUE"; layer = 2; name = "Bank Vault"; req_one_access_txt = "62"},/obj/machinery/door/poddoor/ert{id = "bankvault"; layer = 3; name = "Vault"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"lo" = (/obj/structure/table,/turf/open/floor/wood,/area/space)
"lq" = (/obj/structure/barricade/wooden,/obj/structure/decoration/rag{icon_state = "skin"},/turf/open/indestructible/ground/outside/wood,/area/space)
"lr" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/carpet/black,/area/space)
"ls" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/f13/sexymaid,/turf/open/floor/wood/f13/old,/area/space)
"lt" = (/obj/structure/flora/grass/wasteland,/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/outside/dirt,/area/space)
"lu" = (/obj/structure/barricade/bars,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"lv" = (/obj/structure/table/wood/settler,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"lx" = (/obj/effect/spawner/lootdrop/f13/armor/random,/turf/open/indestructible/ground/inside/mountain,/area/space)
"ly" = (/obj/structure/table,/obj/item/storage/box/masks,/obj/item/storage/box/gloves,/obj/item/reagent_containers/spray/cleaner,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"lB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/open/indestructible/ground/inside/mountain,/area/space)
"lC" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/obj/item/storage/box/drinkingglasses,/obj/item/storage/box/drinkingglasses,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"lD" = (/obj/structure/campfire,/turf/open/indestructible/ground/outside/dirt,/area/space)
"lE" = (/obj/structure/barricade/wooden,/turf/open/floor/f13/wood,/area/space)
"lF" = (/obj/structure/table/reinforced,/obj/item/storage/backpack/duffelbag/med/surgery,/obj/item/reagent_containers/medspray/sterilizine,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/machinery/defibrillator_mount/loaded{pixel_y = 25},/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"lG" = (/obj/structure/decoration/clock{pixel_y = -34},/turf/open/floor/carpet/black,/area/space)
"lH" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/hostile/ghoul,/turf/open/floor/f13/wood,/area/space)
"lJ" = (/obj/structure/table/reinforced,/obj/structure/barricade/bars,/obj/machinery/door/poddoor{id = "shopouter"; layer = 4},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"lK" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/toy/figure/detective{pixel_x = -4; pixel_y = 11},/turf/open/floor/f13/wood,/area/space)
"lL" = (/obj/structure/table,/turf/open/floor/f13/wood,/area/space)
"lM" = (/obj/item/wirecutters/basic,/obj/item/screwdriver/crude,/obj/structure/table/wood,/obj/item/storage/box/handcuffs,/obj/item/lock_construct,/obj/item/key,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/obj/item/stack/f13Cash/random/med,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/turf/open/floor/f13/wood,/area/space)
"lN" = (/obj/structure/closet/crate/medical/anchored,/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/item/clothing/neck/stethoscope,/obj/item/storage/backpack/duffelbag/med,/obj/item/clothing/accessory/medal/ribbon/medical_doctor{desc = "A faded award from long ago"; name = "faded medical award"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"lP" = (/obj/structure/barricade/bars{layer = 5},/obj/structure/barricade/bars{layer = 5},/turf/open/water,/area/space)
"lQ" = (/obj/structure/barricade/sandbags,/turf/open/indestructible/ground/outside/sidewalk{dir = 7; icon_state = "outerpavement"},/area/space)
"lR" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Private Bar"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"lU" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop3"},/area/space)
"lV" = (/obj/structure/girder/reinforced,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"lW" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalrightborderleft2"},/area/space)
"lY" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "outermaincornerinner"},/area/space)
"lZ" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 10; icon_state = "outerpavement"},/area/space)
"mb" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/turf/open/floor/carpet/black,/area/space)
"md" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Church Backroom"; req_one_access_txt = "25"},/turf/open/indestructible/ground/inside/mountain,/area/space)
"me" = (/obj/structure/rack,/obj/item/advanced_crafting_components/receiver,/obj/item/advanced_crafting_components/receiver,/obj/item/advanced_crafting_components/receiver,/obj/item/advanced_crafting_components/lenses,/obj/item/advanced_crafting_components/lenses,/obj/item/advanced_crafting_components/lenses,/obj/item/advanced_crafting_components/flux,/obj/item/advanced_crafting_components/flux,/obj/item/advanced_crafting_components/flux,/obj/item/advanced_crafting_components/conductors,/obj/item/advanced_crafting_components/conductors,/obj/item/advanced_crafting_components/conductors,/obj/item/advanced_crafting_components/assembly,/obj/item/advanced_crafting_components/assembly,/obj/item/advanced_crafting_components/assembly,/obj/item/advanced_crafting_components/alloys,/obj/item/advanced_crafting_components/alloys,/obj/item/advanced_crafting_components/alloys,/obj/item/advanced_crafting_components/alloys,/obj/item/advanced_crafting_components/assembly,/obj/item/advanced_crafting_components/conductors,/obj/item/advanced_crafting_components/flux,/obj/item/advanced_crafting_components/lenses,/obj/item/advanced_crafting_components/receiver,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/obj/effect/spawner/lootdrop/f13/advcrafting,/turf/open/floor/wood/f13/old,/area/space)
"mf" = (/obj/effect/decal/cleanable/dirt,/obj/item/flashlight/lamp,/turf/open/indestructible/ground/inside/mountain,/area/space)
"mg" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"mh" = (/obj/structure/table/wood/settler,/obj/item/reagent_containers/glass/bottle/blackpowder,/obj/item/reagent_containers/glass/bottle/blackpowder,/obj/item/reagent_containers/glass/bottle/blackpowder,/obj/item/reagent_containers/glass/bottle/blackpowder,/turf/open/floor/wood/f13/old,/area/space)
"mj" = (/mob/living/simple_animal/hostile/wolf{desc = "The dogs that survived the Great War are a larger, and tougher breed, size of a wolf.<br>This one seems to be a very good boy."; faction = list("neutral"); health = 200; maxHealth = 200; name = "Runt"; tame = 1},/turf/open/floor/f13/wood,/area/space)
"mk" = (/obj/effect/decal/cleanable/cobweb,/turf/open/water,/area/space)
"ml" = (/obj/effect/spawner/lootdrop/trash,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2right"},/area/space)
"mm" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/mountain,/area/space)
"mn" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/wood/f13/stage_b,/area/space)
"mp" = (/obj/item/reagent_containers/glass/bucket,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"mq" = (/obj/structure/lattice/catwalk,/turf/open/water,/area/space)
"mr" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"ms" = (/obj/structure/simple_door/metal/barred,/obj/structure/simple_door/metal/barred,/turf/open/water,/area/space)
"mt" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Bank"; req_one_access_txt = "25"},/turf/open/floor/plasteel/stairs/old,/area/space)
"mv" = (/obj/effect/decal/cleanable/generic,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"mw" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/wood,/area/space)
"mx" = (/obj/machinery/vending/snack,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"mz" = (/obj/structure/simple_door/metal/fence{dir = 8},/turf/open/indestructible/ground/outside/dirt{dir = 8; icon_state = "dirt"},/area/space)
"mB" = (/obj/structure/barricade/wooden,/obj/structure/decoration/rag{icon_state = "skin"},/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"mC" = (/obj/effect/decal/cleanable/dirt,/obj/item/book/manual/wiki/cit/chemistry,/obj/structure/table/glass,/obj/item/book/manual/wiki/circuitry,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"mD" = (/obj/structure/destructible/tribal_torch,/turf/open/indestructible/ground/outside/dirt{icon_state = "dirt"},/area/space)
"mE" = (/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"mF" = (/obj/structure/ladder/unbreakable{height = 2; id = "followerlabladder"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"mH" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalbottombordertop2"},/area/space)
"mI" = (/obj/structure/car/rubbish2,/turf/open/indestructible/ground/outside/desert,/area/space)
"mK" = (/obj/structure/handrail/g_central{dir = 8; pixel_x = -20},/obj/structure/barricade/wooden,/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"mL" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/mineral/wood/fifty,/obj/item/stack/sheet/prewar,/obj/item/stack/sheet/prewar,/obj/item/stack/sheet/prewar,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"mM" = (/obj/machinery/trading_machine/medical,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"mP" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"mQ" = (/obj/structure/curtain{color = "#845f58"},/turf/open/floor/f13{icon_state = "stagestairs"},/area/space)
"mR" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"mT" = (/obj/structure/table/wood,/obj/item/kitchen/rollingpin,/obj/item/melee/onehanded/knife/cosmicdirty,/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"mV" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2right"},/area/space)
"mW" = (/obj/machinery/photocopier,/turf/open/floor/f13/wood,/area/space)
"mY" = (/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"mZ" = (/obj/structure/table/glass,/obj/item/pen,/obj/item/pen,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"na" = (/obj/structure/table,/obj/item/storage/box/drinkingglasses,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"nb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/handrail/g_central{layer = 2.7; pixel_y = -16},/turf/open/indestructible/ground/inside/mountain,/area/space)
"ne" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_2"},/turf/open/indestructible/ground/outside/dirt,/area/space)
"ng" = (/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/mob/living/simple_animal/hostile/molerat,/turf/open/indestructible/ground/inside/mountain,/area/space)
"ni" = (/obj/machinery/door/poddoor/shutters{id = "followershutters"; name = "followers shutters"},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"nk" = (/obj/machinery/vending/hydronutrients,/turf/open/indestructible/ground/outside/dirt,/area/space)
"nn" = (/obj/structure/bus_door,/turf/open/indestructible/ground/outside/road{icon_state = "horizontaltopborderbottom2left"},/area/space)
"no" = (/obj/structure/table,/obj/item/storage/box/medsprays,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/glass/beaker,/obj/item/storage/box/syringes,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"np" = (/obj/structure/simple_door/metal/barred,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"nr" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontalbottomborderbottom2right"},/area/space)
"nt" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/f13/wood,/area/space)
"nu" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; max_integrity = 500; name = "Store Backroom"; req_one_access_txt = "34"},/turf/open/floor/wood/f13/old,/area/space)
"nx" = (/obj/machinery/sleeper{density = 1; dir = 4},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ny" = (/obj/structure/table/wood/settler,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/wood/f13/old,/area/space)
"nz" = (/obj/structure/simple_door/metal/barred,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"nA" = (/obj/structure/closet/cabinet,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/f13/armor/clothes,/obj/effect/spawner/lootdrop/f13/weapon/melee/tier3,/turf/open/indestructible/ground/inside/mountain,/area/space)
"nB" = (/obj/machinery/iv_drip,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"nD" = (/obj/structure/noticeboard,/turf/closed/wall/f13/wood,/area/space)
"nE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/prewar/poster69{pixel_x = -32},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"nF" = (/obj/structure/barricade/wooden,/turf/closed/wall/f13/wood,/area/space)
"nG" = (/obj/effect/decal/waste{icon_state = "goo12"},/obj/structure/chair/booth{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/dirt,/area/space)
"nH" = (/obj/structure/table/glass,/obj/item/pen,/obj/item/pen,/obj/item/book/granter/trait/midsurgery,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"nI" = (/obj/effect/spawner/lootdrop/f13/cash_random_low,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"nJ" = (/obj/machinery/smartfridge/bottlerack/gardentool,/turf/open/floor/wood,/area/space)
"nK" = (/obj/structure/rack,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/lock_construct,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/obj/item/key,/obj/effect/decal/cleanable/dirt,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/radio/headset/headset_town,/obj/item/storage/box/citizenship_permits,/obj/item/assembly/signaler/advanced,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/storage/toolbox/mechanical,/turf/open/floor/f13/wood,/area/space)
"nL" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/f13/advcrafting,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"nM" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 4; icon_state = "outerturn"},/area/space)
"nN" = (/obj/structure/table/glass,/obj/item/fermichem/pHmeter,/obj/item/fermichem/pHmeter,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"nO" = (/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/obj/structure/table/reinforced,/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/toxin,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"nP" = (/obj/machinery/vending/wardrobe/chem_wardrobe,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"nQ" = (/turf/open/indestructible/ground/outside/ruins{dir = 5; icon_state = "rubble"},/area/space)
"nR" = (/obj/structure/rack,/obj/item/stack/sheet/plastic/five,/obj/item/stack/sheet/plastic/five,/obj/effect/spawner/lootdrop/f13/resourcespawner,/obj/effect/spawner/lootdrop/f13/resourcespawner,/obj/effect/spawner/lootdrop/f13/resourcespawner,/obj/effect/spawner/lootdrop/f13/resourcespawner,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"nT" = (/obj/structure/musician/piano,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"nV" = (/turf/open/indestructible/ground/outside/dirt{dir = 8; icon_state = "dirtcorner"},/area/space)
"nW" = (/turf/open/indestructible/ground/outside/road{icon_state = "topshadowleft"},/area/space)
"nX" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop2left"},/area/space)
"nY" = (/obj/structure/flora/tree/tall{pixel_x = -14; pixel_y = 3},/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_4"; layer = 6},/turf/open/indestructible/ground/outside/road{icon_state = "hole"},/area/space)
"nZ" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerturn"},/area/space)
"oa" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters{id = "followersadminshutters"; name = "followers shutters"},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"ob" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2right"},/area/space)
"oc" = (/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright1"},/area/space)
"od" = (/turf/open/indestructible/ground/outside/road{dir = 4; icon_state = "innermaincornerinner"},/area/space)
"oe" = (/obj/structure/spirit_board{anchored = 1},/turf/open/indestructible/ground/inside/dirt,/area/space)
"of" = (/obj/structure/simple_door/bunker,/turf/open/floor/padded,/area/space)
"og" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"oh" = (/obj/structure/table/wood/settler,/obj/structure/barricade/bars,/obj/structure/curtain{color = "#845f58"},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"oi" = (/obj/structure/window/fulltile/house{icon_state = "storewindowright"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"om" = (/turf/closed/mineral/random/high_chance,/area/space)
"oo" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright0"},/area/space)
"op" = (/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"oq" = (/obj/effect/spawner/lootdrop/f13/cash_random_low,/turf/open/floor/f13/wood,/area/space)
"or" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain1"},/area/space)
"os" = (/obj/structure/table/wood,/obj/item/kitchen/knife/butcher,/obj/item/clothing/neck/apron/chef,/obj/item/reagent_containers/spray/cleaner,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"ot" = (/obj/structure/table/reinforced,/obj/item/storage/backpack/duffelbag/med/surgery,/obj/item/reagent_containers/medspray/sterilizine,/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"ou" = (/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/mountain,/area/space)
"ow" = (/obj/structure/table/booth,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"oB" = (/obj/machinery/light{dir = 4},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"oD" = (/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/space)
"oG" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"oI" = (/obj/structure/bed,/obj/item/bedsheet/random,/turf/open/floor/carpet/black,/area/space)
"oJ" = (/obj/structure/closet/cabinet,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/f13/armor/clothes,/obj/effect/spawner/lootdrop/f13/armor/clothes,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"oK" = (/obj/structure/rack,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/sheet/cardboard/fifty,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"oM" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"oP" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 5; pixel_y = 1},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -7},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -5; pixel_y = 10},/obj/item/export/bottle/cognac{pixel_x = 9; pixel_y = 14},/turf/open/floor/f13/wood,/area/space)
"oQ" = (/obj/effect/decal/cleanable/generic,/obj/structure/window/fulltile/wood{layer = 3},/obj/machinery/door/poddoor/shutters/preopen{id = "bargambling"},/turf/open/floor/f13/wood,/area/space)
"oS" = (/obj/structure/filingcabinet,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"oT" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"oU" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/medspray/sterilizine,/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"oV" = (/obj/structure/bed/mattress{icon_state = "mattress3"},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"oW" = (/obj/effect/decal/cleanable/generic,/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain1"},/area/space)
"oX" = (/obj/structure/chair/booth{dir = 4},/turf/open/floor/f13/wood,/area/space)
"oY" = (/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "clinicfrontdoor"; name = "clinic shutters"; pixel_x = 32; pixel_y = 6; req_one_access_txt = "62"},/obj/machinery/button/door{id = "clinicstorage"; name = "clinic storage"; pixel_x = 32; pixel_y = -6; req_one_access_txt = "62"},/turf/open/floor/carpet/black,/area/space)
"oZ" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 4; icon_state = "outerbordercorner"},/area/space)
"pa" = (/obj/structure/campfire/stove,/turf/open/indestructible/ground/outside/wood,/area/space)
"pd" = (/obj/structure/chair/comfy{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/f13/settler,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "outerbordercorner"},/area/space)
"pe" = (/obj/machinery/button/door{id = "bankvault"; name = "bank blast doors"; pixel_x = 32; req_one_access_txt = "62"},/turf/open/floor/carpet/black,/area/space)
"pi" = (/obj/structure/handrail/g_central{pixel_y = -16},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"pk" = (/obj/structure/simple_door/bunker,/turf/closed/wall/f13/supermart,/area/space)
"pl" = (/turf/open/indestructible/ground/outside/road{dir = 8; icon_state = "horizontaltopborderbottom2left"},/area/space)
"pm" = (/obj/structure/ladder/unbreakable{height = 1; id = "clinicoutsideladder"},/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_4"; layer = 5},/obj/effect/decal/cleanable/generic,/obj/machinery/light/small{dir = 8},/turf/open/indestructible/ground/inside/mountain,/area/space)
"pp" = (/obj/structure/chair/stool/retro,/obj/item/instrument/guitar{anchored = 1; pixel_y = 32},/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"pq" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/inside/dirt,/area/space)
"pr" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/box/white,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ps" = (/obj/structure/table/booth,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"pv" = (/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"pw" = (/obj/structure/rack,/obj/item/kitchen/knife,/turf/open/indestructible/ground/inside/mountain,/area/space)
"px" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"pz" = (/obj/structure/window/fulltile/house{icon_state = "storewindowhorizontal"},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"pA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/iv_drip,/obj/machinery/light/small{dir = 4; light_color = "red"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"pB" = (/obj/structure/ladder/unbreakable{height = 2; id = "gatehouseladder"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"pC" = (/turf/open/indestructible/ground/outside/road,/area/space)
"pD" = (/obj/machinery/light{dir = 8},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"pG" = (/obj/structure/destructible/tribal_torch,/turf/open/indestructible/ground/inside/mountain,/area/space)
"pJ" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"; pixel_x = -28},/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain2top"},/area/space)
"pM" = (/obj/item/storage/secure/safe{pixel_x = 5; pixel_y = 28},/turf/open/floor/f13/wood,/area/space)
"pN" = (/obj/structure/flora/tree/tall{icon_state = "tree_2"},/turf/open/water,/area/space)
"pP" = (/obj/structure/table/wood/settler,/turf/open/floor/wood/f13/stage_bl,/area/space)
"pQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/simple_door/metal/ventilation,/turf/open/floor/plating,/area/space)
"pR" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 8},/turf/open/indestructible/ground/outside/water{desc = "Deep, poorly filtered gardening water."; name = "stagnant water"},/area/space)
"pS" = (/obj/machinery/mineral/wasteland_vendor/attachments{icon_state = "weapon_idle"},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2left"},/area/space)
"pT" = (/obj/machinery/iv_drip,/obj/machinery/iv_drip,/obj/machinery/iv_drip,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"pU" = (/obj/structure/lattice,/turf/open/indestructible/ground/outside/water{desc = "Deep, poorly filtered gardening water."; name = "stagnant water"},/area/space)
"pW" = (/obj/structure/window/fulltile/house{dir = 2; icon_state = "storewindowtop"},/turf/open/floor/plasteel/f13/vault_floor/plating,/area/space)
"pX" = (/obj/structure/closet/crate/trashcart,/turf/open/indestructible/ground/outside/dirt,/area/space)
"pY" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters{id = "botany"; name = "Botany shutters"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"pZ" = (/obj/structure/chair/sofa/corp{dir = 1},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"qa" = (/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/structure/table,/obj/item/reagent_containers/hypospray/medipen/stimpak,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"qb" = (/obj/structure/closet/cabinet,/obj/effect/spawner/lootdrop/f13/armor/clothes,/obj/effect/spawner/lootdrop/f13/armor/clothes,/turf/open/floor/f13/wood,/area/space)
"qd" = (/obj/structure/ladder/unbreakable{height = 1; id = "cornerladder"},/turf/open/indestructible/ground/inside/mountain,/area/space)
"qe" = (/obj/machinery/vending/medical{req_access = null},/turf/closed/wall/f13/supermart,/area/space)
"qf" = (/obj/structure/table,/obj/item/storage/box/pillbottles,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/glass/beaker,/obj/item/fermichem/pHmeter,/obj/item/fermichem/pHmeter,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"qg" = (/turf/open/indestructible/ground/outside/ruins{icon_state = "rubbleplate"},/area/space)
"qh" = (/obj/structure/table/reinforced,/obj/item/flashlight/lamp,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"qi" = (/obj/structure/window/fulltile/house{dir = 2; icon_state = "storewindowtop"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"qk" = (/obj/structure/table,/obj/item/taperecorder,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ql" = (/turf/open/indestructible/ground/outside/road{icon_state = "shadowleft"},/area/space)
"qm" = (/obj/structure/simple_door/metal/ventilation,/obj/structure/disposalpipe/broken{dir = 8},/turf/open/floor/plating,/area/space)
"qn" = (/obj/structure/window/fulltile/house{dir = 2; icon_state = "storewindowleft"; layer = 2},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"qo" = (/obj/machinery/sleeper,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"qp" = (/obj/structure/wreck/trash/three_barrels,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"qr" = (/obj/structure/lamp_post,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"qs" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/wood/settler,/turf/open/floor/f13/wood,/area/space)
"qu" = (/obj/structure/flora/tree/tall{icon_state = "tree_3"; pixel_y = -11},/turf/open/indestructible/ground/outside/dirt,/area/space)
"qB" = (/obj/structure/window/fulltile/wood,/obj/structure/curtain{color = "#845f58"},/turf/open/floor/f13/wood,/area/space)
"qD" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerpavement"},/area/space)
"qE" = (/obj/structure/simple_door/metal/fence,/turf/open/indestructible/ground/outside/road{dir = 1; icon_state = "innerpavement"},/area/space)
"qF" = (/obj/structure/girder/reinforced,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"qG" = (/obj/structure/rack,/obj/machinery/light/small{dir = 4},/obj/item/clothing/suit/armor/f13/battlecoat/vault,/turf/open/floor/f13/wood,/area/space)
"qI" = (/obj/structure/decoration/clock{pixel_x = 32; pixel_y = -2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"qJ" = (/obj/structure/table/wood/fancy/black,/obj/machinery/computer/terminal{dir = 4; termtag = "Business"},/turf/open/floor/carpet/black,/area/space)
"qL" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"qN" = (/obj/structure/sign/warning{pixel_x = 6; pixel_y = -3},/obj/structure/decoration/warning{pixel_x = -5; pixel_y = 7},/obj/structure/decoration/warning{pixel_x = -3; pixel_y = -5},/turf/closed/wall/f13/wood,/area/space)
"qO" = (/obj/structure/simple_door/bunker,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"qQ" = (/obj/structure/barricade/wooden,/turf/open/indestructible/ground/inside/mountain,/area/space)
"qR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"qS" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_4"; layer = 5},/obj/structure/sink/well,/turf/open/indestructible/ground/outside/desert,/area/space)
"qV" = (/obj/structure/chair/office{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"qW" = (/obj/structure/window/fulltile/wood,/obj/structure/curtain{color = "#845f58"},/turf/open/floor/carpet,/area/space)
"qX" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticaloutermain3"},/area/space)
"qY" = (/turf/closed/wall/f13/tentwall,/area/space)
"ra" = (/obj/structure/chair/wood{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "darkdirtysolid"},/area/space)
"rb" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier4,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier3,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier2,/turf/open/floor/f13/wood,/area/space)
"rd" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticaloutermain1"},/area/space)
"re" = (/obj/structure/rack,/obj/item/shovel/spade,/obj/item/shovel,/obj/item/reagent_containers/glass/bucket,/obj/item/cultivator,/obj/item/clothing/gloves/botanic_leather,/obj/item/clothing/gloves/botanic_leather,/obj/machinery/light/small,/turf/open/floor/wood,/area/space)
"rg" = (/obj/structure/window/fulltile/house{icon_state = "storewindowbottom"},/turf/open/floor/plasteel/f13/vault_floor/plating,/area/space)
"rh" = (/obj/structure/barricade/bars,/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters{id = "bankdesk"; name = "counter shutters"},/turf/open/floor/f13/wood,/area/space)
"ri" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/spawner/lootdrop/f13/crafting,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"rl" = (/obj/structure/rack,/turf/open/floor/plating/f13,/area/space)
"rm" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderrightbottom"},/area/space)
"ro" = (/obj/machinery/door/airlock/medical{name = "Clinic"; req_one_access_txt = "124"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"rr" = (/obj/item/flag/oasis,/turf/open/floor/f13/wood,/area/space)
"rs" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "outerpavementcorner"},/area/space)
"rt" = (/obj/effect/landmark/latejoin,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontalbottomborderbottom0"},/area/space)
"rz" = (/mob/living/simple_animal/cow/brahmin,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"rA" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"rB" = (/obj/structure/rack,/obj/item/stack/sheet/leather/twenty,/obj/item/stack/sheet/leather/twenty,/obj/item/stack/sheet/leather/twenty,/obj/item/stack/sheet/leather/twenty,/obj/item/stack/sheet/leather/twenty,/obj/item/stack/sheet/leather/twenty,/obj/item/flashlight/seclite,/obj/item/flashlight/seclite,/obj/item/flashlight/seclite,/turf/open/floor/wood/f13/old,/area/space)
"rC" = (/obj/structure/table,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"rD" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood/f13/stage_tr,/area/space)
"rE" = (/obj/machinery/light/small{dir = 8},/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/outside/dirt,/area/space)
"rG" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"rI" = (/obj/structure/barricade/wooden,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2left"},/area/space)
"rJ" = (/obj/structure/sign/poster/contraband/ambrosia_vulgaris{pixel_y = 32},/turf/open/floor/wood/f13/stage_t,/area/space)
"rL" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/f13/alcoholspawner,/obj/item/storage/fancy/candle_box,/obj/effect/spawner/lootdrop/f13/weapon/melee/tier3,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/turf/open/floor/f13/wood,/area/space)
"rN" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalleftborderrightbottom"},/area/space)
"rO" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 0},/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"rP" = (/obj/structure/window/fulltile/house{dir = 2; icon_state = "storewindowleft"; layer = 2},/obj/machinery/door/poddoor/shutters{id = "storeshutters"; name = "store shutters"},/turf/open/floor/f13/wood,/area/space)
"rQ" = (/obj/structure/table/wood,/obj/item/lighter,/turf/open/floor/carpet/black,/area/space)
"rR" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_4"; layer = 5},/turf/open/indestructible/ground/outside/desert,/area/space)
"rS" = (/obj/structure/car/rubbish1{layer = 4},/turf/open/indestructible/ground/outside/desert,/area/space)
"rT" = (/obj/structure/sink{dir = 4; pixel_x = 12},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"rU" = (/obj/structure/decoration/vent/rusty,/turf/closed/wall/r_wall,/area/space)
"rV" = (/obj/structure/table/wood,/obj/machinery/computer/terminal{dir = 1; termtag = "Business"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/shreds{pixel_x = -6; pixel_y = -12},/turf/open/floor/f13/wood,/area/space)
"rW" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 4; icon_state = "outerpavementcorner"},/area/space)
"rZ" = (/obj/structure/ladder/unbreakable{height = 1; id = "gatehouseladder"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"sa" = (/turf/closed/indestructible/rock,/area/space)
"sd" = (/obj/machinery/chem_master,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"se" = (/obj/effect/landmark/start/f13/preacher,/turf/open/floor/f13/wood,/area/space)
"sh" = (/obj/structure/fence/corner{dir = 4},/turf/open/indestructible/ground/outside/dirt{dir = 8; icon_state = "dirtcorner"},/area/space)
"sj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Bar Backroom"; req_one_access_txt = "25"},/turf/open/floor/f13/wood,/area/space)
"sk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/computer/slot_machine,/turf/open/floor/f13/wood,/area/space)
"sl" = (/obj/effect/landmark/start/f13/prospector,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"sm" = (/obj/structure/barricade/bars{layer = 5},/obj/structure/decoration/hatch{dir = 4},/turf/open/water,/area/space)
"sn" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain2bottom"},/area/space)
"so" = (/turf/open/floor/f13/wood,/area/space)
"sp" = (/obj/structure/window/fulltile/house{icon_state = "storewindowright"; layer = 2},/obj/machinery/door/poddoor/shutters{id = "storeshutters"; name = "store shutters"},/turf/open/floor/f13/wood,/area/space)
"st" = (/obj/structure/bed,/obj/item/bedsheet/random,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"su" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{dir = 8; icon_state = "outerbordercorner"},/area/space)
"sv" = (/obj/structure/toilet{dir = 4; pixel_x = -3},/turf/open/floor/plasteel/freezer,/area/space)
"sw" = (/obj/structure/table,/obj/item/pen,/turf/open/floor/f13{icon_state = "purplefull"},/area/space)
"sx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/chair/booth{dir = 8},/turf/open/floor/f13/wood,/area/space)
"sy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"sz" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/open/floor/f13/wood,/area/space)
"sA" = (/obj/structure/table/optable,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"sB" = (/obj/structure/rack,/obj/item/seeds/poppy/broc,/obj/item/seeds/poppy/broc,/obj/item/seeds/xander,/obj/item/seeds/xander,/obj/item/storage/bag/plants,/obj/item/reagent_containers/spray/plantbgone,/obj/item/reagent_containers/spray/plantbgone,/turf/open/indestructible/ground/outside/dirt,/area/space)
"sD" = (/obj/structure/sign/poster/prewar/poster61{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"sE" = (/obj/machinery/button/crematorium{pixel_y = 19},/turf/open/floor/f13{icon_state = "darkrusty"},/area/space)
"sF" = (/obj/structure/curtain{color = "#845f58"},/turf/open/indestructible/ground/inside/dirt,/area/space)
"sG" = (/obj/structure/chair/stool/retro,/turf/open/floor/f13/wood,/area/space)
"sJ" = (/obj/structure/table,/obj/machinery/reagentgrinder/constructed,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"sK" = (/obj/machinery/door/poddoor/shutters{id = "prospector3open"},/obj/structure/lattice/catwalk,/turf/open/water,/area/space)
"sM" = (/obj/structure/girder,/obj/structure/curtain{color = "#845f58"},/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"sN" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"sP" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{dir = 8; icon_state = "outerpavement"},/area/space)
"sR" = (/turf/open/floor/f13{icon_state = "darkrusty"},/area/space)
"sS" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood/f13/stage_tl,/area/space)
"sW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/pinup_shower{pixel_x = -32},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"sX" = (/obj/effect/decal/cleanable/dirt,/obj/item/storage/box/bodybags,/obj/structure/table,/obj/item/stack/sheet/cardboard/twenty,/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"sY" = (/obj/structure/wreck/trash/machinepile{layer = 3},/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain2"},/area/space)
"sZ" = (/obj/structure/rack,/obj/item/circuitboard/machine/sleeper,/obj/item/circuitboard/machine/biogenerator,/obj/item/circuitboard/machine/seed_extractor,/obj/item/circuitboard/machine/chem_dispenser,/obj/item/circuitboard/machine/chem_master,/obj/item/circuitboard/machine/chem_heater,/obj/item/circuitboard/machine/ore_redemption,/obj/item/circuitboard/machine/mining_equipment_vendor,/turf/open/floor/f13{icon_state = "yellowdirtyfull"},/area/space)
"ta" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright2"},/area/space)
"tb" = (/obj/structure/sink/well{pixel_x = -15},/turf/open/indestructible/ground/outside/dirt,/area/space)
"td" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/hostile/eyebot{faction = list("neutral"); name = "PE-A"},/turf/open/floor/f13{icon_state = "darkdirtysolid"},/area/space)
"te" = (/obj/machinery/light/sign/oasis_sign{layer = 5},/obj/structure/wreck/trash/five_tires{pixel_x = 3; pixel_y = -13},/obj/structure/flora/grass/wasteland{pixel_x = -3},/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_2"; pixel_x = -4; pixel_y = 13},/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; layer = 2; pixel_x = -8; pixel_y = 7},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermainleft"},/area/space)
"th" = (/obj/machinery/light/sign,/obj/structure/barricade/wooden,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop3"},/area/space)
"ti" = (/obj/item/gun/ballistic/shotgun/trench{anchored = 1; pixel_y = 5},/obj/item/gun/ballistic/shotgun/hunting{anchored = 1; pixel_y = -3},/obj/structure/noticeboard{layer = 2.5; pixel_y = 3},/obj/effect/decal/cleanable/dirt,/turf/closed/wall/f13/wood/interior,/area/space)
"tj" = (/obj/structure/barricade/wooden,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"tk" = (/obj/structure/chair/f13chair1{dir = 1},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"tl" = (/obj/machinery/light/fo13colored/Red{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"tm" = (/obj/effect/spawner/lootdrop/trash,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"tn" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/dirt{dir = 8; icon_state = "dirt"},/area/space)
"tp" = (/turf/open/floor/plasteel/f13/vault_floor/plating,/area/space)
"tq" = (/turf/open/indestructible/ground/outside/road{dir = 4; icon_state = "innermaincornerouter"},/area/space)
"tr" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain0"},/area/space)
"ts" = (/obj/item/ammo_casing/a50MG,/turf/open/indestructible/ground/outside/road{icon_state = "verticalrightborderleft2"},/area/space)
"tt" = (/obj/structure/fence{dir = 1; pixel_x = -10},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"tv" = (/obj/structure/chair{dir = 8},/turf/open/indestructible/ground/outside/dirt,/area/space)
"tw" = (/obj/machinery/door/poddoor/shutters{id = "prospector2open"},/obj/machinery/door/unpowered/securedoor{autoclose = 1; name = "Prospector Entrance"; req_one_access_txt = "48"},/turf/open/indestructible/ground/inside/mountain,/area/space)
"tx" = (/obj/structure/closet/crate/freezer/surplus_limbs,/turf/open/floor/f13{icon_state = "yellowdirtyfull"},/area/space)
"ty" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; pixel_x = -8; pixel_y = 7},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/dirt{dir = 10; icon_state = "dirt"},/area/space)
"tz" = (/obj/structure/table,/obj/item/storage/firstaid/ancient,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"tA" = (/obj/machinery/chem_master,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chem_pile{pixel_x = -12; pixel_y = 10},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"tB" = (/obj/structure/window/fulltile/house{icon_state = "storewindowhorizontal"; layer = 3},/turf/open/floor/f13/wood,/area/space)
"tC" = (/obj/structure/ladder/unbreakable{height = 2; id = "cornerladder"; layer = 2},/turf/open/indestructible/ground/outside/desert{icon_state = "wasteland32"},/area/space)
"tD" = (/obj/structure/table/wood/poker,/obj/item/dice{pixel_y = 1},/turf/open/floor/carpet,/area/space)
"tE" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outermaincornerouter"},/area/space)
"tG" = (/obj/item/tank/internals/anesthetic,/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/obj/structure/closet/crate/medical/anchored,/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"tJ" = (/obj/structure/destructible/tribal_torch{pixel_y = 20},/obj/structure/wreck/trash/three_barrels,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/desert,/area/space)
"tK" = (/obj/effect/landmark/start/f13/followersguard,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"tL" = (/obj/structure/table/wood/settler,/obj/item/kitchen/knife,/obj/item/megaphone,/obj/item/flashlight/flare/torch,/obj/item/flashlight/flare/torch,/obj/item/flashlight/flare/torch,/obj/item/flashlight/flare/torch,/turf/open/floor/f13/wood,/area/space)
"tM" = (/obj/structure/fence{dir = 4},/turf/open/indestructible/ground/outside/sidewalk{dir = 8; icon_state = "outerpavement"},/area/space)
"tN" = (/obj/effect/decal/waste,/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_2"},/turf/open/indestructible/ground/outside/dirt,/area/space)
"tO" = (/obj/structure/girder,/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"tP" = (/obj/machinery/hydroponics/soil,/turf/open/indestructible/ground/outside/dirt,/area/space)
"tR" = (/obj/structure/barricade/bars,/obj/structure/curtain{color = "#845f58"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"tS" = (/obj/machinery/rnd/destructive_analyzer,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"tT" = (/mob/living/simple_animal/hostile/eyebot,/turf/open/indestructible/ground/outside/desert,/area/space)
"tV" = (/obj/structure/bodycontainer/morgue{dir = 8},/turf/open/floor/f13{icon_state = "darkrusty"},/area/space)
"tW" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters,/turf/open/floor/plasteel/f13/vault_floor/plating,/area/space)
"tX" = (/obj/structure/chair/stool,/turf/open/floor/wood/f13/stage_t,/area/space)
"tY" = (/obj/structure/bed,/obj/item/bedsheet{icon_state = "sheetcmo"},/obj/effect/decal/cleanable/blood/old{icon_state = "floor5-old"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"tZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_4"; layer = 5},/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; layer = 2; pixel_x = -8; pixel_y = 7},/turf/open/indestructible/ground/outside/dirt,/area/space)
"ub" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"uh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"uj" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain2"},/area/space)
"uk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/workbench/forge,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ul" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/wood,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2"},/area/space)
"um" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"up" = (/obj/structure/table/reinforced,/obj/item/storage/backpack/duffelbag/med/surgery,/obj/item/reagent_containers/medspray/sterilizine,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/machinery/defibrillator_mount/loaded{pixel_y = -30},/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"uq" = (/obj/machinery/shower{dir = 8; icon_state = "shower"},/obj/structure/decoration/vent{pixel_x = 2; pixel_y = -3},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"ur" = (/obj/structure/window/spawner,/obj/structure/curtain{color = "#845f58"},/turf/open/floor/wood/f13/stage_b,/area/space)
"us" = (/obj/structure/fence{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/decoration/rag,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"ut" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop2right"},/area/space)
"uu" = (/obj/structure/sign/departments/medbay,/turf/closed/wall/f13/supermart,/area/space)
"uv" = (/obj/effect/decal/cleanable/generic,/obj/structure/table/wood,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"uw" = (/obj/structure/rack,/obj/item/stack/ore/blackpowder/fifty,/obj/item/stack/ore/blackpowder/fifty,/obj/item/stack/ore/blackpowder/fifty,/turf/open/floor/wood/f13/old,/area/space)
"ux" = (/obj/structure/sign/poster/prewar/poster66{pixel_x = -32},/turf/open/floor/f13/wood,/area/space)
"uy" = (/obj/machinery/iv_drip,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"uz" = (/obj/item/integrated_circuit_printer,/obj/structure/table,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"uA" = (/obj/structure/window/fulltile/house{icon_state = "storewindowhorizontal"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"uC" = (/obj/structure/wreck/trash/two_barrels{layer = 4},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "outermaincornerouter"},/area/space)
"uD" = (/obj/structure/closet/crate/freezer/blood,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"uE" = (/obj/item/clothing/head/cone{anchored = 1},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright1"},/area/space)
"uG" = (/obj/structure/sink{pixel_y = 19},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"uH" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft3"},/area/space)
"uI" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"uJ" = (/obj/effect/spawner/lootdrop/f13/resourcespawner,/turf/open/indestructible/ground/inside/mountain,/area/space)
"uK" = (/obj/machinery/iv_drip,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"uL" = (/turf/open/indestructible/ground/outside/sidewalk{dir = 9; icon_state = "outerpavement"},/area/space)
"uM" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder/constructed,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"uN" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"uO" = (/obj/structure/bookcase/random/adult,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"uP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"uQ" = (/obj/machinery/door/unpowered/securedoor{autoclose = 1; desc = "There is something on the wind. It.. it smells like... crime."; name = "Detective Office"; req_one_access_txt = "4"},/turf/open/floor/f13/wood,/area/space)
"uR" = (/obj/machinery/rnd/production/circuit_imprinter,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"uS" = (/obj/structure/flora/grass/wasteland{pixel_x = 9; pixel_y = 14},/obj/structure/tires/half,/turf/open/indestructible/ground/inside/mountain,/area/space)
"uT" = (/obj/structure/flora/ausbushes/ppflowers,/turf/open/indestructible/ground/outside/dirt,/area/space)
"uU" = (/obj/structure/destructible/tribal_torch,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"uV" = (/obj/structure/table,/obj/item/storage/box/medsprays,/obj/machinery/reagentgrinder/constructed,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"uW" = (/obj/structure/bonfire,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft0"},/area/space)
"uY" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/generic,/turf/open/indestructible/ground/inside/mountain,/area/space)
"uZ" = (/obj/machinery/autolathe,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"vb" = (/obj/structure/table,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"vc" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/f13/wood,/area/space)
"vd" = (/obj/structure/fence/corner/wooden{dir = 1},/obj/structure/fence/corner/wooden,/turf/open/indestructible/ground/outside/dirt{dir = 5; icon_state = "dirt"},/area/space)
"vg" = (/obj/structure/chair/sofa/corp/left{dir = 4},/turf/open/floor/f13/wood,/area/space)
"vi" = (/obj/structure/rack,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/obj/item/stack/sheet/mineral/sandstone/thirty,/turf/open/floor/wood/f13/old,/area/space)
"vj" = (/obj/structure/bed/mattress,/turf/open/indestructible/ground/outside/wood,/area/space)
"vk" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "outermaincornerinner"},/area/space)
"vl" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/dirt{dir = 5; icon_state = "dirt"},/area/space)
"vm" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"vn" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"vo" = (/obj/structure/billboard/cola/pristine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"vp" = (/obj/machinery/autolathe/ammo/unlocked,/obj/item/book/granter/crafting_recipe/gunsmithing/gunsmith_two,/obj/item/book/granter/crafting_recipe/gunsmithing/gunsmith_three,/obj/item/book/granter/crafting_recipe/gunsmithing/gunsmith_one,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"vq" = (/obj/structure/table/wood/poker,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 9; pixel_y = 10},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/wood/f13/stage_b,/area/space)
"vu" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderlefttop"},/area/space)
"vv" = (/obj/structure/curtain,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"vy" = (/turf/open/indestructible/ground/outside/dirt,/area/space)
"vz" = (/obj/structure/chair/comfy/black{dir = 8},/obj/effect/landmark/start/f13/mayor,/turf/open/floor/carpet/black,/area/space)
"vA" = (/obj/structure/table,/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/o2,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"vB" = (/obj/structure/closet/crate/medical/anchored,/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"vC" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/light/small,/turf/open/floor/wood,/area/space)
"vE" = (/obj/item/storage/trash_stack,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2right"},/area/space)
"vF" = (/turf/open/floor/wood/f13/stage_bl,/area/space)
"vH" = (/obj/structure/campfire/barrel,/turf/open/indestructible/ground/outside/dirt{dir = 8; icon_state = "dirtcorner"},/area/space)
"vI" = (/obj/effect/decal/marking,/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain2"},/area/space)
"vJ" = (/obj/structure/bed/roller,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"vK" = (/obj/structure/sign/poster/contraband/pinup_topless{pixel_x = 32},/obj/machinery/light/small{dir = 4},/turf/open/floor/f13/wood,/area/space)
"vL" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"vM" = (/obj/structure/table/optable,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"vN" = (/obj/structure/simple_door/bunker,/turf/open/floor/f13{icon_state = "stagestairs"},/area/space)
"vP" = (/obj/structure/fence/wooden{dir = 1},/turf/open/indestructible/ground/outside/dirt{dir = 4; icon_state = "dirtcorner"},/area/space)
"vQ" = (/obj/effect/lamp_post/traffic_light/left{pixel_x = -14},/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright3"},/area/space)
"vS" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2left"},/area/space)
"vT" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"vW" = (/obj/structure/table/wood/poker,/obj/item/chair/stool/retro,/obj/item/chair/stool/retro,/turf/open/floor/carpet,/area/space)
"vX" = (/obj/structure/barricade/bars,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"vY" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/space)
"wa" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermainleft"},/area/space)
"wb" = (/obj/structure/table/wood,/obj/machinery/door/poddoor/shutters{id = "countershutters"; name = "counter shutters"},/obj/structure/barricade/bars,/turf/open/floor/f13/wood,/area/space)
"wc" = (/obj/structure/campfire/barrel,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain0"},/area/space)
"wd" = (/turf/open/floor/f13{dir = 4; icon_state = "stagestairs"},/area/space)
"wf" = (/obj/structure/table/wood/fancy,/obj/item/storage/book/bible,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/inside/dirt,/area/space)
"wg" = (/obj/structure/window/fulltile/house{icon_state = "storewindowright"},/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"wi" = (/obj/effect/decal/cleanable/generic,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"wk" = (/obj/structure/table,/obj/item/storage/firstaid/ancient,/obj/item/storage/firstaid/ancient,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"wl" = (/obj/structure/table/wood,/turf/open/floor/carpet/black,/area/space)
"wm" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermainright"},/area/space)
"wo" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermaintop"},/area/space)
"wp" = (/obj/machinery/photocopier,/obj/machinery/light/small{dir = 4},/turf/open/floor/f13/wood,/area/space)
"wq" = (/obj/structure/table/optable,/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"ws" = (/obj/machinery/hydroponics/soil,/turf/open/indestructible/ground/outside/dirt{icon_state = "dirt"},/area/space)
"wu" = (/obj/machinery/chem_heater,/obj/effect/decal/cleanable/dirt,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"wv" = (/obj/structure/table,/obj/item/roller,/obj/item/roller,/obj/item/roller,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"ww" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain0"},/area/space)
"wz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/wood,/turf/open/floor/f13/wood,/area/space)
"wA" = (/obj/machinery/light{dir = 8},/turf/open/floor/wood/f13/stage_l,/area/space)
"wB" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/floor/f13{icon_state = "darkdirtysolid"},/area/space)
"wC" = (/obj/machinery/vending/medical{req_access = null},/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"wE" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/f13/resourcespawner,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"wG" = (/obj/structure/simple_door/bunker/glass,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"wH" = (/obj/structure/car/rubbish3,/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain2"},/area/space)
"wI" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/f13,/area/space)
"wJ" = (/turf/open/indestructible/ground/outside/road{dir = 1; icon_state = "innermaincornerouter"},/area/space)
"wK" = (/obj/structure/bookcase,/turf/open/floor/f13/wood,/area/space)
"wM" = (/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaltopbordertop3"},/area/space)
"wN" = (/obj/structure/rack,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"wP" = (/obj/structure/table,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/obj/item/reagent_containers/hypospray/medipen/stimpak,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"wQ" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/f13/supermart,/area/space)
"wR" = (/obj/machinery/door/poddoor/shutters{id = "followersdeskshutters"; name = "followers shutters"},/obj/structure/table/reinforced,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"wT" = (/obj/structure/rack,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier4,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier4,/turf/open/floor/wood/f13/old,/area/space)
"wU" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/low,/turf/open/floor/wood/f13/old,/area/space)
"wV" = (/obj/structure/table,/obj/item/roller,/obj/item/roller,/obj/item/roller,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"wX" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/f13/wood,/area/space)
"wY" = (/obj/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"wZ" = (/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/obj/machinery/light/small,/turf/open/floor/f13/wood,/area/space)
"xb" = (/obj/structure/decoration/vent/rusty,/turf/closed/wall/f13/wood,/area/space)
"xc" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"xd" = (/obj/structure/closet/cabinet,/turf/open/floor/f13/wood,/area/space)
"xe" = (/obj/structure/table/wood,/obj/item/clothing/mask/cigarette/cigar{pixel_x = 4; pixel_y = -1},/obj/item/clothing/mask/cigarette/cigar{pixel_y = 3},/obj/item/clothing/mask/cigarette/cigar{pixel_x = -5; pixel_y = 5},/turf/open/floor/f13/wood,/area/space)
"xf" = (/obj/structure/curtain,/turf/open/floor/plasteel/f13/vault_floor/green/white/whitegreenchess,/area/space)
"xg" = (/obj/structure/barricade/bars{layer = 3.5},/turf/open/water,/area/space)
"xl" = (/obj/structure/table/reinforced,/obj/structure/barricade/bars,/obj/machinery/door/poddoor/shutters{id = "prospectorshutters"},/turf/open/floor/f13{icon_state = "darkdirtysolid"},/area/space)
"xm" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_8"; pixel_x = -8; pixel_y = 7},/obj/structure/barricade/wooden,/turf/open/floor/grass,/area/space)
"xn" = (/obj/structure/wreck/trash/two_barrels,/turf/open/floor/f13/wood,/area/space)
"xp" = (/obj/machinery/door/airlock/medical{name = "Clinic"; req_one_access_txt = "124"},/obj/machinery/door/poddoor/shutters{id = "botany"; name = "Botany shutters"},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"xq" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/obj/item/storage/fancy/cigarettes/cigars,/obj/item/lighter,/turf/open/floor/wood/f13/stage_bl,/area/space)
"xr" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"xt" = (/obj/structure/table/glass,/obj/item/storage/box/medsprays,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"xu" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"xv" = (/obj/structure/decoration/vent/rusty,/turf/closed/wall/r_wall/rust,/area/space)
"xw" = (/obj/structure/ladder/unbreakable{height = 2; id = "busladder"; layer = 2},/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermainbottom"},/area/space)
"xy" = (/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/hobo,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/hobo,/obj/effect/decal/cleanable/dirt,/obj/item/stack/crafting/goodparts/five,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"xz" = (/turf/open/indestructible/ground/outside/dirt{dir = 5; icon_state = "dirt"},/area/space)
"xB" = (/obj/machinery/light/small{dir = 8},/turf/open/indestructible/ground/outside/dirt,/area/space)
"xC" = (/obj/machinery/light,/obj/item/flag/oasis,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalleftborderleft2top"},/area/space)
"xD" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_y = 9},/turf/open/floor/carpet,/area/space)
"xE" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plasteel/f13/vault_floor/plating,/area/space)
"xF" = (/obj/effect/landmark/start/f13/sheriff,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"xG" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks{dir = 8},/turf/open/floor/f13/wood,/area/space)
"xI" = (/obj/structure/flora/tree/tall{density = 0; icon_state = "tree_3"; pixel_x = -29; pixel_y = 17},/turf/open/indestructible/ground/outside/desert,/area/space)
"xL" = (/obj/structure/table,/obj/item/storage/box/masks,/obj/item/storage/box/gloves,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"xM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/wood/settler,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"xN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/fo13colored/Red{desc = "A lighting fixture."; dir = 8; light_color = "#008000"; name = "light tube"},/turf/open/floor/f13/wood,/area/space)
"xR" = (/obj/structure/chair/f13chair1{dir = 8},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"xS" = (/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright2"},/area/space)
"xV" = (/obj/structure/barricade/wooden,/obj/structure/curtain,/turf/open/indestructible/ground/inside/mountain,/area/space)
"xW" = (/obj/structure/chair/bench,/turf/open/indestructible/ground/outside/desert,/area/space)
"xX" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"xZ" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/mid,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/mid,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/mid,/obj/effect/spawner/lootdrop/f13/weapon/gun/ballistic/mid,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ya" = (/obj/machinery/button/door{id = "prospector3open"; name = "gate shutters"; pixel_x = 32},/turf/open/water,/area/space)
"yb" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermainbottom"},/area/space)
"yc" = (/obj/structure/car/rubbish3,/turf/open/indestructible/ground/outside/desert,/area/space)
"yd" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermain2"},/area/space)
"ye" = (/turf/open/indestructible/ground/outside/water,/area/space)
"yf" = (/obj/structure/destructible/tribal_torch/lit,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"yh" = (/obj/structure/sign/poster/contraband/pinup_pink{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"yi" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"yj" = (/obj/machinery/light/sign/oasis,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "outerborder"},/area/space)
"yk" = (/obj/structure/rack,/obj/item/clothing/suit/armor/f13/battlecoat,/obj/item/circuitboard/machine/autolathe/ammo,/obj/item/circuitboard/machine/autolathe/ammo,/obj/item/circuitboard/machine/autolathe/ammo,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"ym" = (/obj/structure/ladder/unbreakable{height = 2; id = "shopladder"},/turf/open/floor/f13/wood,/area/space)
"yo" = (/obj/structure/table/wood,/obj/item/storage/box/handcuffs,/obj/item/storage/box/handcuffs,/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"yq" = (/obj/structure/ladder/unbreakable{height = 1; id = "house1ladder"},/turf/open/floor/f13/wood,/area/space)
"yr" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"yu" = (/obj/structure/flora/ausbushes/palebush,/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/dirt,/area/space)
"yv" = (/obj/structure/closet/crate/large,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"yw" = (/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticaloutermain2top"},/area/space)
"yy" = (/obj/structure/tires{pixel_x = -8; pixel_y = 15},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2left"},/area/space)
"yz" = (/obj/structure/destructible/tribal_torch/wall/lit{dir = 1},/turf/closed/wall/f13/wood,/area/space)
"yA" = (/obj/item/flag/oasis,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "verticalrightborderright1"},/area/space)
"yB" = (/obj/effect/decal/cleanable/generic,/obj/structure/simple_door/metal/fence{dir = 8},/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/indestructible/ground/outside/sidewalk{dir = 8; icon_state = "outerpavement"},/area/space)
"yD" = (/obj/structure/table,/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"yE" = (/obj/structure/fence{dir = 4},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontalbottomborderbottom2right"},/area/space)
"yH" = (/obj/machinery/vending/boozeomat{density = 0; pixel_x = 32},/turf/open/floor/wood/f13/old,/area/space)
"yI" = (/obj/structure/girder,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"yJ" = (/obj/machinery/workbench/forge,/turf/open/floor/wood/f13/old,/area/space)
"yK" = (/obj/structure/closet/cabinet,/obj/effect/spawner/lootdrop/f13/armor/clothes,/obj/effect/spawner/lootdrop/f13/armor/clothes,/obj/effect/spawner/lootdrop/f13/weapon/melee/tier3,/turf/open/floor/f13/wood,/area/space)
"yL" = (/obj/effect/spawner/lootdrop/trash,/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"yM" = (/obj/structure/flora/ausbushes/grassybush,/mob/living/simple_animal/opossum/poppy{maxHealth = 999},/turf/open/floor/grass,/area/space)
"yN" = (/obj/structure/flora/grass/wasteland{icon_state = "tall_grass_2"; layer = 6; pixel_x = -6; pixel_y = 13},/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/grass,/area/space)
"yO" = (/turf/open/indestructible/ground/outside/road{dir = 8; icon_state = "horizontaltopborderbottom2right"},/area/space)
"yP" = (/obj/machinery/light{dir = 1},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"yQ" = (/obj/structure/table/wood/settler,/obj/machinery/computer/terminal{dir = 1; termtag = "Business"},/turf/open/floor/f13{icon_state = "floorrusty"},/area/space)
"yR" = (/obj/machinery/mineral/wasteland_vendor/advcomponents,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2left"},/area/space)
"yS" = (/obj/structure/legion_extractor,/turf/open/indestructible/ground/outside/dirt,/area/space)
"yT" = (/obj/structure/rack,/obj/item/circuitboard/machine/autolathe/ammo,/obj/item/circuitboard/machine/autolathe/ammo,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier2,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier2,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier2,/obj/effect/spawner/lootdrop/f13/weapon/gun/ammo/tier2,/turf/open/floor/wood/f13/old,/area/space)
"yU" = (/turf/open/indestructible/ground/outside/dirt{dir = 4; icon_state = "dirt"},/area/space)
"yV" = (/obj/machinery/processor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"yX" = (/obj/structure/chair/f13chair1,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"yZ" = (/obj/structure/fence{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/decoration/rag,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"za" = (/turf/open/indestructible/ground/outside/dirt{dir = 1; icon_state = "dirtcorner"},/area/space)
"zb" = (/obj/structure/table,/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"zc" = (/obj/effect/decal/fakelattice{density = 0; pixel_x = 17},/turf/open/indestructible/ground/inside/mountain,/area/space)
"zd" = (/obj/structure/chair/wood,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"zf" = (/obj/structure/bed/wooden,/turf/open/indestructible/ground/outside/wood,/area/space)
"zg" = (/obj/structure/closet/crate/trashcart{name = "corpse cart"},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"zh" = (/obj/structure/barricade/bars,/obj/machinery/door/poddoor/shutters/preopen{id = "topcellghoul"},/obj/machinery/door/poddoor/shutters/preopen{id = "bottomcellghoul"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"zi" = (/obj/machinery/door/poddoor/shutters/preopen{id = "bargambling"},/turf/open/floor/f13/wood,/area/space)
"zj" = (/obj/machinery/light/small{dir = 1; pixel_x = -10},/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"zk" = (/obj/machinery/button/door{id = "prospector2open"; name = "gate shutters"; pixel_x = -32},/turf/open/water,/area/space)
"zl" = (/obj/structure/barricade/wooden,/turf/open/indestructible/ground/outside/desert,/area/space)
"zm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/open/indestructible/ground/inside/mountain,/area/space)
"zn" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontaltopborderbottom2"},/area/space)
"zo" = (/obj/structure/table,/turf/open/floor/f13{icon_state = "floorrustysolid"},/area/space)
"zp" = (/obj/structure/girder,/obj/structure/barricade/wooden/planks,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"zq" = (/obj/structure/rack,/turf/open/floor/wood/f13/old,/area/space)
"zr" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/hostile/ghoul,/turf/open/indestructible/ground/inside/dirt,/area/space)
"zs" = (/obj/structure/window/fulltile/wood,/obj/structure/curtain{color = "#845f58"},/obj/structure/curtain{color = "#845f58"},/obj/structure/curtain{color = "#845f58"},/turf/open/floor/f13/wood,/area/space)
"zt" = (/obj/structure/destructible/tribal_torch{pixel_x = 10},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain1"},/area/space)
"zv" = (/obj/structure/dresser,/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"zw" = (/obj/machinery/light/fo13colored/Aqua{dir = 1; name = "light fixture"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"zx" = (/obj/effect/spawner/lootdrop/f13/weapon/melee/tier2,/turf/open/indestructible/ground/inside/mountain,/area/space)
"zy" = (/obj/structure/simple_door/metal/fence,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontalbottomborderbottom0"},/area/space)
"zC" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 4},/turf/open/indestructible/ground/outside/water{desc = "Deep, poorly filtered gardening water."; name = "stagnant water"},/area/space)
"zD" = (/obj/structure/rack,/obj/item/book/granter/trait/chemistry,/turf/open/floor/wood/f13/old,/area/space)
"zF" = (/obj/item/mining_scanner,/turf/open/indestructible/ground/inside/mountain,/area/space)
"zG" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/closet/crate/bin,/turf/open/floor/f13/wood,/area/space)
"zH" = (/obj/structure/fence,/turf/open/indestructible/ground/outside/sidewalk{dir = 1; icon_state = "horizontaloutermain1"},/area/space)
"zI" = (/obj/structure/curtain,/obj/structure/barricade/wooden,/turf/open/indestructible/ground/inside/mountain,/area/space)
"zL" = (/obj/machinery/trading_machine,/turf/open/floor/f13/wood,/area/space)
"zN" = (/obj/structure/window/fulltile/house{dir = 2; icon_state = "storewindowleft"; layer = 2},/turf/open/floor/f13{icon_state = "bluerustysolid"},/area/space)
"zO" = (/obj/machinery/mineral/wasteland_vendor/crafting{icon_state = "parts_idle"},/turf/open/indestructible/ground/outside/sidewalk,/area/space)
"zP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"zQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/defibrillator_mount/loaded{pixel_y = 32},/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"zR" = (/obj/structure/barricade/wooden,/turf/open/indestructible/ground/outside/dirt{dir = 8; icon_state = "dirtcorner"},/area/space)
"zS" = (/obj/structure/closet/crate/freezer/blood,/turf/open/floor/f13{icon_state = "whitegreenrustychess"},/area/space)
"zU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/f13/settler,/turf/open/indestructible/ground/inside/dirt,/area/space)
"zW" = (/obj/effect/spawner/lootdrop/trash,/turf/open/indestructible/ground/outside/road{icon_state = "horizontaltopborderbottom0"},/area/space)
"zX" = (/mob/living/simple_animal/hostile/molerat,/turf/open/indestructible/ground/inside/mountain,/area/space)
"zZ" = (/obj/structure/handrail/g_central{pixel_y = -16},/turf/open/floor/f13{icon_state = "greenrustyfull"},/area/space)
"Aa" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalbottombordertop0"},/area/space)
"Ab" = (/obj/structure/ladder/unbreakable{height = 2; id = "prospectorladder"; layer = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "darkdirtysolid"},/area/space)
"Ad" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/wood,/turf/open/floor/wood,/area/space)
"Ae" = (/turf/closed/wall/f13/wood/house/clean,/area/space)
"Af" = (/obj/effect/landmark/start/f13/dendoc,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"Ah" = (/obj/structure/campfire,/turf/open/indestructible/ground/inside/mountain,/area/space)
"Ai" = (/obj/machinery/computer/slot_machine,/obj/machinery/light,/turf/open/floor/f13/wood,/area/space)
"Aj" = (/obj/structure/chair/wood,/turf/open/floor/f13/wood,/area/space)
"Al" = (/obj/structure/bed,/obj/item/bedsheet/random,/turf/open/floor/wood/f13/stage_tl,/area/space)
"Am" = (/obj/structure/table/snooker{dir = 10},/obj/item/twohanded/baseball{pixel_x = -7; pixel_y = -8},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"An" = (/obj/structure/ladder/unbreakable{height = 1; id = "clinicladder"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"Aq" = (/obj/structure/curtain{open = 0},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"Ar" = (/obj/structure/chair/wood{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13/wood,/area/space)
"As" = (/obj/structure/rack,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/obj/item/stack/sheet/plastic/fifty,/turf/open/floor/wood/f13/old,/area/space)
"Av" = (/turf/open/indestructible/ground/outside/dirt{dir = 9; icon_state = "dirt"},/area/space)
"Aw" = (/turf/open/indestructible/ground/outside/road{icon_state = "innercornerpieceright"},/area/space)
"Ax" = (/turf/open/indestructible/ground/outside/road{icon_state = "horizontalinnermainleft"},/area/space)
"Ay" = (/obj/structure/chair/booth{icon_state = "booth_east_north"},/turf/open/floor/carpet/black,/area/space)
"AA" = (/obj/structure/wreck/car/bike{pixel_x = -12; pixel_y = 1},/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain2left"},/area/space)
"AC" = (/obj/structure/window/fulltile/house{icon_state = "storewindowright"},/turf/open/floor/f13/wood,/area/space)
"AE" = (/obj/structure/table/snooker{dir = 5},/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"AG" = (/obj/structure/curtain,/turf/open/floor/f13{icon_state = "freezerfloor"},/area/space)
"AI" = (/turf/open/indestructible/ground/outside/road{icon_state = "verticalinnermain1"},/area/space)
"AJ" = (/obj/structure/sign/poster/contraband/pinup_bed,/turf/closed/wall/f13/wood,/area/space)
"AK" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/f13{icon_state = "bluedirtychess2"},/area/space)
"AL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/grass/wasteland,/turf/open/indestructible/ground/inside/mountain,/area/space)
"AM" = (/obj/effect/landmark/start/f13/barkeep,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/f13/vault_floor/misc/bar,/area/space)
"AN" = (/obj/structure/sign/poster/official/science{pixel_y = 32},/turf/open/floor/plasteel/f13/vault_floor/misc/cafeteria,/area/space)
"AO" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/storage/toolbox/drone,/turf/open/floor/plasteel/f13/vault_floor/misc/vaultrust,/area/space)
"AP" = (/obj/structure/destructible/tribal_torch{pixel_x = 10},/obj/effect/decal/cleanable/dirt,/turf/open/indestructible/ground/outside/sidewalk{icon_state = "horizontaloutermain0"},/area/space)