Updates Miaphus: 8 New POIs, Better Transitions! (#6331)

<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## Does what it says on the tin.
8 New POIs for Miaphus'irra, in addition, the transition between the
beach and the desert zones is nicer and better signposted. The new POIs
provide more variety for explo and potential events. Included are two
oil-related POIs, and a new pirate hideout POI which the pirate skiff
should be able to land at allowing the pirate to have a secret base on
Miaphus'irra.

<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

<!-- Argue for the merits of your changes and how they benefit the game,
especially if they are controversial and/or far reaching. If you can't
actually explain WHY what you are doing will improve the game, then it
probably isn't good for the game in the first place. -->

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and it's effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

🆑
add: 8 Miaphus'irra POIs 
tweak: Miaphus'irra map has better transitions
balance: larger Miaphus POIs no longer make dupes
/🆑

<!-- Both 🆑's are required for the changelog to work! You can put
your name to the right of the first 🆑 if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
This commit is contained in:
CharlesWedge
2024-03-12 02:29:15 -07:00
committed by GitHub
parent f4fae7f84e
commit fb309eaefc
13 changed files with 6495 additions and 1244 deletions
@@ -15,9 +15,15 @@
color = "#ffd300" //Sandy
in_space = 0
initial_generic_waypoints = list("beach_e", "beach_c", "beach_nw")
initial_restricted_waypoints = list("Pirate Skiff" = list("pirate_hideout"))
start_x = 35
start_y = 40
/obj/effect/shuttle_landmark/premade/miaphus/piratehideout
name = "Pirate Hideout"
landmark_tag = "pirate_hideout"
//This is a special subtype of the thing that generates ores on a map
//It will generate more rich ores because of the lower numbers than the normal one
@@ -338,3 +344,27 @@
/area/tether_away/beach/desert/poi/covert_post
name = "Miaphus'irra - Clown Listening Post"
/area/tether_away/beach/desert/poi/oilwell
name = "Miaphus'irra - Oil Spring"
/area/tether_away/beach/desert/poi/huntercamp
name = "Miaphus'irra - Hunter's Camp"
/area/tether_away/beach/desert/poi/refinery
name = "Miaphus'irra - Fuel Refinery"
/area/tether_away/beach/desert/poi/minecamp
name = "Miaphus'irra - Mining Camp"
/area/tether_away/beach/desert/poi/wastedump
name = "Miaphus'irra - Hazardous Waste Dump"
/area/tether_away/beach/desert/poi/snipernest
name = "Miaphus'irra - Sniper Nest"
/area/tether_away/beach/desert/poi/turretnest
name = "Miaphus'irra - Automated Defense Battery"
/area/tether_away/beach/desert/poi/piratehideout
name = "Miaphus'irra - Pirate Hideout"
@@ -50,6 +50,7 @@
name = "Desert Temple"
suffix = "desertruins3H.dmm"
cost = 25
allow_duplicates = FALSE
/datum/map_template/submap/level_specific/class_h/DesertRuins4H
name = "Desert Tomb"
@@ -73,12 +74,13 @@
suffix = "highnoonH.dmm"
cost = 25
fixed_orientation = TRUE
allow_duplicates = FALSE
/datum/map_template/submap/level_specific/class_h/minesH
name = "Spidery Mines"
suffix = "minesH.dmm"
cost = 25
allow_duplicates = FALSE
/datum/map_template/submap/level_specific/class_h/oasisH
name = "Desert Oasis"
@@ -103,7 +105,8 @@
/datum/map_template/submap/level_specific/class_h/AuxiliaryResearchFacility
name = "Research Facility"
suffix = "AuxiliaryResearchFacility.dmm"
cost = 20
cost = 25
allow_duplicates = FALSE
/datum/map_template/submap/level_specific/class_h/saloon
name = "Desert Saloon"
@@ -119,8 +122,50 @@
name = "Desert Vault"
suffix = "BunkerH.dmm"
cost = 20
allow_duplicates = FALSE
/datum/map_template/submap/level_specific/class_h/covert_post
name = "Clown Listening Post"
suffix = "covert_post.dmm"
cost = 15
/datum/map_template/submap/level_specific/class_h/oilwell
name = "Oil Well"
suffix = "oilwellH.dmm"
cost = 10
/datum/map_template/submap/level_specific/class_h/oilwell
name = "Hunter's Camp"
suffix = "huntercamp.dmm"
cost = 15
/datum/map_template/submap/level_specific/class_h/wastedump
name = "Hazardous Waste Dump"
suffix = "wastedump.dmm"
cost = 10
/datum/map_template/submap/level_specific/class_h/turretnest
name = "Turret Nest"
suffix = "turretnest.dmm"
cost = 10
/datum/map_template/submap/level_specific/class_h/refinery
name = "Fuel Refinery"
suffix = "refinery.dmm"
cost = 10
/datum/map_template/submap/level_specific/class_h/snipernest
name = "Sniper Nest"
suffix = "snipernest.dmm"
cost = 20
/datum/map_template/submap/level_specific/class_h/miningcamp
name = "Mining Camp"
suffix = "miningcamp.dmm"
cost = 10
/datum/map_template/submap/level_specific/class_h/piratehideout
name = "Pirate Hideout"
suffix = "piratehideout.dmm"
cost = 25
allow_duplicates = FALSE
File diff suppressed because it is too large Load Diff
@@ -1,7 +1,16 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/machinery/light/flamp/noshade,
/turf/simulated/mineral/floor/ignore_mapgen/cave,
/area/tether_away/cave/unexplored/normal)
/area/tether_away/cave/explored/normal)
"b" = (
/obj/effect/floor_decal/tracks{
dir = 1
},
/obj/structure/closet/crate/miningcar,
/obj/random/multiple/underdark/ores,
/turf/simulated/floor/wood,
/area/tether_away/cave/explored/normal)
"c" = (
/turf/simulated/mineral/cave,
/area/tether_away/cave/unexplored/normal)
@@ -15,16 +24,59 @@
/obj/away_mission_init/beachcave,
/turf/simulated/mineral/cave,
/area/tether_away/cave/explored/normal)
"o" = (
/obj/effect/floor_decal/tracks/t_west{
dir = 6
},
/turf/simulated/floor/wood,
/area/tether_away/cave/explored/normal)
"r" = (
/obj/tether_away_spawner/beach_cave,
/turf/simulated/mineral/floor/ignore_mapgen/cave,
/area/tether_away/cave/explored/normal)
"s" = (
/obj/effect/floor_decal/tracks{
dir = 1
},
/turf/simulated/floor/wood,
/area/tether_away/cave/explored/normal)
"u" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'DANGER: MONSTERS'.";
name = "\improper DANGER: MONSTERS"
},
/turf/simulated/wall/wood,
/area/tether_away/cave/explored/normal)
"G" = (
/obj/effect/floor_decal/tracks{
dir = 8
},
/turf/simulated/floor/wood,
/area/tether_away/cave/explored/normal)
"I" = (
/turf/simulated/mineral/floor/ignore_mapgen/cave,
/area/tether_away/cave/explored/normal)
"M" = (
/turf/unsimulated/mineral/outdoors,
/area/tether_away/cave/explored/normal)
"N" = (
/obj/machinery/floodlight,
/turf/simulated/mineral/floor/ignore_mapgen/cave,
/area/tether_away/cave/explored/normal)
"P" = (
/obj/random/outcrop,
/turf/simulated/mineral/floor/ignore_mapgen/cave,
/area/tether_away/cave/explored/normal)
"U" = (
/turf/simulated/wall/wood,
/area/tether_away/cave/explored/normal)
"X" = (
/obj/effect/floor_decal/tracks{
dir = 1
},
/obj/structure/fence/door,
/turf/simulated/floor/wood,
/area/tether_away/cave/explored/normal)
(1,1,1) = {"
M
@@ -399,10 +451,10 @@ M
M
I
I
G
I
I
I
I
M
M
M
M
@@ -591,14 +643,14 @@ e
e
e
e
U
I
G
I
I
I
I
I
I
I
U
e
e
e
e
e
e
@@ -785,14 +837,14 @@ e
e
e
e
I
I
G
I
I
e
e
e
I
I
I
I
I
I
e
e
e
@@ -979,15 +1031,15 @@ e
e
e
e
I
I
G
I
P
e
e
e
e
I
I
I
I
I
I
e
e
e
@@ -1171,19 +1223,19 @@ c
c
c
c
c
c
c
c
c
c
a
a
a
a
a
a
c
e
e
I
I
G
I
I
e
e
e
e
e
e
e
e
e
@@ -1365,22 +1417,22 @@ c
c
c
c
c
c
c
c
c
c
a
a
a
a
a
a
e
e
P
I
G
I
a
e
e
e
e
e
e
e
e
e
M
M
"}
@@ -1559,19 +1611,19 @@ c
c
c
c
c
c
c
c
c
c
c
a
a
a
a
a
a
e
e
U
I
G
I
U
e
e
e
e
e
e
e
e
e
@@ -1753,20 +1805,20 @@ c
c
c
c
c
c
c
c
c
c
c
c
a
a
a
a
a
e
e
I
I
G
I
I
e
e
e
e
e
e
e
e
e
M
@@ -1947,21 +1999,21 @@ c
c
c
c
c
c
c
c
c
c
c
c
a
a
a
a
a
e
e
I
I
G
I
I
e
e
e
e
e
e
e
e
e
M
M
@@ -2141,21 +2193,21 @@ c
c
c
c
c
c
c
c
c
c
c
c
a
a
a
a
a
e
e
P
I
G
I
I
a
e
e
e
e
e
e
e
e
M
M
@@ -2329,29 +2381,29 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
a
a
a
e
e
e
e
e
e
e
e
I
I
G
I
I
I
I
I
U
a
I
I
P
U
I
d
"}
(13,1,1) = {"
@@ -2523,25 +2575,25 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
a
a
U
I
I
I
I
I
I
u
I
I
G
I
I
I
I
I
I
I
I
I
I
I
@@ -2717,29 +2769,29 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
I
I
I
I
b
s
s
s
s
s
s
X
s
s
o
s
s
s
s
s
s
s
s
s
s
s
s
d
"}
(15,1,1) = {"
@@ -2911,25 +2963,25 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
U
I
I
I
I
I
I
u
I
I
I
I
I
I
I
I
I
I
I
I
I
I
@@ -3105,29 +3157,29 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
e
I
I
I
I
I
I
e
I
I
I
I
I
I
I
I
U
I
I
P
I
U
I
d
"}
(17,1,1) = {"
@@ -3299,25 +3351,25 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
e
I
I
I
I
e
e
e
e
N
I
I
I
P
e
e
e
e
e
e
e
e
@@ -3490,28 +3542,28 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
I
I
I
I
I
I
I
I
e
e
e
e
P
I
I
I
e
e
e
e
e
e
e
e
e
@@ -3672,27 +3724,27 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
I
I
I
I
I
I
I
I
I
I
I
I
I
I
I
I
I
e
e
e
e
c
c
c
@@ -3864,21 +3916,21 @@ c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
c
I
I
I
I
I
I
I
I
I
I
I
I
I
I
I
c
c
c
@@ -4055,13 +4107,13 @@ c
c
c
c
c
c
c
c
c
c
c
I
I
I
I
I
I
I
c
c
c
@@ -4248,12 +4300,12 @@ c
c
c
c
c
c
c
c
c
c
I
I
I
I
I
I
c
c
c
@@ -4441,9 +4493,9 @@ c
c
c
c
c
c
c
I
I
I
c
c
c
@@ -4635,8 +4687,8 @@ c
c
c
c
c
c
I
I
c
c
c
@@ -4828,9 +4880,9 @@ c
c
c
c
c
c
c
I
I
I
c
c
c
@@ -5021,9 +5073,9 @@ c
c
c
c
c
c
c
I
I
I
c
c
c
@@ -5216,8 +5268,8 @@ c
c
I
I
c
c
I
I
c
c
c
@@ -5410,7 +5462,7 @@ c
c
I
I
c
I
c
c
c
@@ -5603,8 +5655,8 @@ c
c
c
I
c
c
I
I
c
c
c
@@ -5795,9 +5847,9 @@ c
c
c
c
c
I
c
I
I
c
c
c
@@ -5988,8 +6040,8 @@ c
c
c
c
c
c
I
I
I
c
c
@@ -6182,7 +6234,7 @@ c
c
c
c
c
I
I
I
c
@@ -6376,7 +6428,7 @@ c
c
c
c
c
I
I
I
c
@@ -6763,7 +6815,7 @@ c
c
c
I
c
e
I
I
c
@@ -7533,7 +7585,7 @@ I
I
I
I
c
e
I
I
I
@@ -7728,9 +7780,9 @@ I
I
I
I
c
c
c
I
I
I
c
c
c
@@ -7923,8 +7975,8 @@ c
I
I
I
c
c
I
I
c
c
c
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,368 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
/area/template_noop)
"f" = (
/obj/structure/bed,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"g" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"j" = (
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"o" = (
/obj/random/trash,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"p" = (
/obj/random/junk,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"r" = (
/obj/random/junk,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"t" = (
/obj/effect/debris/cleanable/blood/gibs,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"u" = (
/obj/structure/closet/crate/freezer,
/obj/item/reagent_containers/food/snacks/xenomeat/spidermeat,
/obj/item/reagent_containers/food/snacks/xenomeat/spidermeat,
/obj/item/reagent_containers/food/snacks/xenomeat/spidermeat,
/obj/item/reagent_containers/food/snacks/xenomeat/spidermeat,
/obj/item/reagent_containers/food/snacks/xenomeat/spidermeat,
/obj/item/reagent_containers/food/snacks/xenomeat/spidermeat,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"x" = (
/obj/structure/simple_door/wood,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"y" = (
/obj/item/flame/lighter/zippo/taj,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"z" = (
/obj/structure/table/standard,
/obj/item/material/knife/butch,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"B" = (
/obj/structure/closet/crate/freezer/rations,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"D" = (
/obj/structure/bonfire,
/obj/item/reagent_containers/cooking_container/grill,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"I" = (
/obj/structure/table/rack,
/obj/fiftyspawner/log,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"K" = (
/obj/structure/kitchenspike,
/obj/effect/debris/cleanable/blood/gibs,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"L" = (
/obj/structure/table/woodentable,
/obj/random/firstaid,
/obj/item/beartrap,
/obj/item/beartrap,
/obj/item/beartrap,
/obj/item/material/twohanded/spear,
/obj/item/material/twohanded/spear,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"P" = (
/obj/structure/sandbag,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"R" = (
/obj/structure/table/bench/wooden,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/huntercamp)
"V" = (
/turf/simulated/wall/wood,
/area/tether_away/beach/desert/poi/huntercamp)
"W" = (
/obj/structure/table/woodentable,
/obj/item/flashlight/lantern,
/obj/item/material/knife/tacknife/survival,
/obj/item/material/knife/tacknife/survival,
/obj/item/gun/ballistic/bow,
/obj/item/storage/belt/quiver/full,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
"Z" = (
/obj/structure/table/woodentable,
/obj/item/gun/ballistic/contender/taj/a762,
/obj/item/ammo_magazine/clip/c762/hunter,
/obj/item/storage/firstaid/toxin,
/obj/item/storage/fancy/cigar/taj,
/obj/random/junk,
/obj/item/ammo_magazine/clip/c762/hunter,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/huntercamp)
(1,1,1) = {"
a
a
a
a
a
a
a
a
a
a
a
a
a
a
a
"}
(2,1,1) = {"
a
a
g
g
g
g
g
g
g
g
g
g
g
a
a
"}
(3,1,1) = {"
a
g
V
V
V
V
V
V
V
g
P
P
P
g
a
"}
(4,1,1) = {"
a
g
V
L
f
p
f
u
V
g
o
I
P
g
a
"}
(5,1,1) = {"
a
g
V
W
j
j
j
j
x
g
r
g
P
g
a
"}
(6,1,1) = {"
a
g
V
Z
f
j
f
B
V
g
g
g
P
g
a
"}
(7,1,1) = {"
a
g
V
V
V
V
V
V
V
g
g
g
P
g
a
"}
(8,1,1) = {"
a
g
g
P
K
z
K
t
g
o
g
o
g
a
a
"}
(9,1,1) = {"
a
a
g
P
t
g
g
g
r
g
g
r
g
a
a
"}
(10,1,1) = {"
a
a
g
g
g
g
g
g
g
g
R
g
P
g
a
"}
(11,1,1) = {"
a
a
g
P
g
o
g
o
g
R
D
R
P
g
a
"}
(12,1,1) = {"
a
a
g
P
r
g
g
g
g
r
R
y
P
g
a
"}
(13,1,1) = {"
a
a
g
P
P
P
P
g
g
P
P
P
P
g
a
"}
(14,1,1) = {"
a
a
a
g
g
g
g
g
g
g
g
g
g
g
a
"}
(15,1,1) = {"
a
a
a
a
a
a
a
a
a
a
a
a
a
a
a
"}
@@ -0,0 +1,349 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/closet/crate/freezer/rations,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"b" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"d" = (
/obj/structure/table/woodentable,
/obj/item/flashlight/lantern,
/obj/item/pickaxe,
/obj/item/pickaxe,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/minecamp)
"e" = (
/obj/item/flame/lighter/zippo/taj,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"g" = (
/turf/template_noop,
/area/template_noop)
"h" = (
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/minecamp)
"j" = (
/obj/structure/bonfire,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"m" = (
/turf/simulated/wall/wood,
/area/tether_away/beach/desert/poi/minecamp)
"p" = (
/obj/structure/table/rack,
/obj/fiftyspawner/log,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"q" = (
/obj/random/junk,
/obj/random/trash,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"r" = (
/obj/random/trash,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/template_noop)
"w" = (
/obj/random/junk,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"y" = (
/obj/structure/table/rack,
/obj/item/storage/bag/ore,
/obj/item/storage/bag/ore,
/obj/item/storage/bag/ore,
/obj/item/storage/bag/ore,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"A" = (
/obj/structure/bed/padded,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/minecamp)
"B" = (
/obj/structure/table/bench/wooden,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"L" = (
/obj/random/trash,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"P" = (
/obj/structure/ore_box,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"S" = (
/obj/structure/sandbag,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/minecamp)
"T" = (
/obj/structure/simple_door/wood,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/minecamp)
"U" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/template_noop)
"W" = (
/obj/random/junk,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/minecamp)
"Y" = (
/obj/random/trash,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/minecamp)
(1,1,1) = {"
g
g
g
g
g
g
g
g
g
g
g
g
g
g
g
"}
(2,1,1) = {"
g
g
g
g
U
U
U
U
U
g
g
g
g
g
g
"}
(3,1,1) = {"
g
g
U
U
r
m
m
m
m
m
U
U
U
g
g
"}
(4,1,1) = {"
g
g
U
U
U
m
A
d
A
m
S
S
S
g
g
"}
(5,1,1) = {"
g
S
S
b
S
m
Y
h
W
m
P
p
S
U
g
"}
(6,1,1) = {"
g
S
w
b
b
m
m
T
m
m
b
b
S
U
g
"}
(7,1,1) = {"
g
S
b
L
w
b
b
b
b
b
b
w
b
U
g
"}
(8,1,1) = {"
g
S
b
b
b
b
b
b
b
L
b
b
b
U
g
"}
(9,1,1) = {"
g
S
y
m
m
T
m
m
B
B
b
L
S
U
g
"}
(10,1,1) = {"
g
S
S
m
h
W
Y
m
e
q
B
a
S
U
g
"}
(11,1,1) = {"
g
g
U
m
A
d
A
m
j
b
B
S
S
g
g
"}
(12,1,1) = {"
g
g
U
m
m
m
m
m
S
S
S
S
g
g
g
"}
(13,1,1) = {"
g
g
g
U
U
U
U
U
U
U
U
U
g
g
g
"}
(14,1,1) = {"
g
g
g
g
U
U
U
U
U
U
g
g
g
g
g
"}
(15,1,1) = {"
g
g
g
g
g
g
g
g
g
g
g
g
g
g
g
"}
@@ -0,0 +1,429 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/fence,
/obj/machinery/light/small{
dir = 1;
pixel_x = -2
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"b" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"c" = (
/obj/machinery/door/airlock/maintenance/engi{
req_one_access = null
},
/obj/effect/debris/cleanable/liquid_fuel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"d" = (
/obj/structure/closet/secure_closet/engineering_personal,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"e" = (
/obj/effect/debris/cleanable/liquid_fuel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"f" = (
/obj/structure/sink/oil_well,
/obj/effect/debris/cleanable/liquid_fuel,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"g" = (
/obj/structure/fence{
dir = 1
},
/obj/machinery/light/small,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"j" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/template_noop)
"k" = (
/obj/structure/closet/firecloset/full,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"l" = (
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/oilwell)
"n" = (
/obj/effect/debris/cleanable/liquid_fuel/flamethrower_fuel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"o" = (
/obj/structure/sign/signnew/flammables,
/turf/simulated/wall/sandstone/classh,
/area/tether_away/beach/desert/poi/oilwell)
"p" = (
/obj/effect/debris/cleanable/liquid_fuel/flamethrower_fuel,
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/oilwell)
"q" = (
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"r" = (
/obj/structure/fence,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"u" = (
/obj/structure/fence{
dir = 4
},
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"v" = (
/obj/structure/fence,
/obj/machinery/light/small,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"w" = (
/obj/effect/debris/cleanable/liquid_fuel,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"x" = (
/obj/structure/fence{
dir = 4
},
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"C" = (
/obj/structure/fence/door/locked{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/oilwell)
"E" = (
/obj/structure/table/rack/shelf,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/obj/random/maintenance/engineering,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"F" = (
/turf/simulated/wall,
/area/tether_away/beach/desert/poi/oilwell)
"L" = (
/obj/effect/debris/cleanable/liquid_fuel,
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/oilwell)
"N" = (
/obj/structure/fence{
dir = 1
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"O" = (
/turf/template_noop,
/area/template_noop)
"P" = (
/obj/structure/table/standard,
/obj/machinery/light/small{
dir = 1;
pixel_x = -2
},
/obj/item/shovel,
/obj/item/reagent_containers/glass/bucket,
/obj/item/reagent_containers/glass/bucket,
/obj/item/reagent_containers/glass/bucket,
/obj/effect/debris/cleanable/liquid_fuel/flamethrower_fuel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/oilwell)
"S" = (
/obj/effect/debris/cleanable/liquid_fuel/flamethrower_fuel,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
"V" = (
/obj/structure/fence/door/locked,
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/oilwell)
"X" = (
/obj/structure/fence{
dir = 4
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/oilwell)
(1,1,1) = {"
O
O
O
O
O
O
j
O
O
O
O
j
j
j
O
"}
(2,1,1) = {"
O
O
O
O
j
j
j
j
j
j
j
j
j
j
O
"}
(3,1,1) = {"
O
j
o
a
r
r
r
C
N
N
g
o
j
j
O
"}
(4,1,1) = {"
j
j
u
S
w
S
b
l
S
w
S
u
j
j
O
"}
(5,1,1) = {"
O
j
X
w
f
w
w
L
f
w
w
X
j
O
O
"}
(6,1,1) = {"
O
j
V
l
L
l
L
l
w
S
w
X
j
O
O
"}
(7,1,1) = {"
j
j
X
S
w
w
f
l
L
w
f
X
j
O
O
"}
(8,1,1) = {"
O
j
F
F
F
F
w
S
l
L
p
V
j
j
O
"}
(9,1,1) = {"
O
j
F
d
n
F
w
b
l
w
b
X
j
j
O
"}
(10,1,1) = {"
O
j
F
P
e
c
L
l
l
f
S
X
j
O
O
"}
(11,1,1) = {"
j
j
F
E
n
F
w
L
w
w
w
X
j
O
O
"}
(12,1,1) = {"
O
j
F
k
q
F
f
p
b
S
f
x
j
O
O
"}
(13,1,1) = {"
O
j
F
F
F
F
r
C
r
r
v
o
j
O
O
"}
(14,1,1) = {"
O
O
O
O
O
j
j
j
j
j
j
j
j
O
O
"}
(15,1,1) = {"
O
O
O
O
O
O
j
j
j
j
O
O
O
O
O
"}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,430 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"b" = (
/obj/structure/fence{
dir = 8
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/refinery)
"d" = (
/obj/structure/sink/oil_well,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/refinery)
"e" = (
/turf/simulated/wall,
/area/tether_away/beach/desert/poi/refinery)
"f" = (
/obj/structure/reagent_dispensers/fueltank/barrel,
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"g" = (
/obj/machinery/conveyor,
/obj/structure/reagent_dispensers/fueltank/barrel,
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"h" = (
/obj/structure/fence{
dir = 1
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/refinery)
"i" = (
/obj/structure/fence/door/locked{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/refinery)
"j" = (
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/refinery)
"k" = (
/obj/machinery/conveyor,
/obj/structure/reagent_dispensers/fueltank/barrel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"m" = (
/obj/machinery/conveyor{
dir = 4
},
/obj/structure/reagent_dispensers/fueltank/barrel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"n" = (
/obj/machinery/conveyor{
dir = 9
},
/obj/structure/reagent_dispensers/fueltank/barrel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"q" = (
/obj/structure/fence/door,
/turf/simulated/floor/tiled/asteroid_steel{
outdoors = 1
},
/area/tether_away/beach/desert/poi/refinery)
"r" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/refinery)
"u" = (
/obj/item/storage/box/pillbottles,
/obj/item/storage/box/syringes,
/obj/item/radio/headset/headset_med,
/obj/item/storage/box/pillbottles,
/obj/item/storage/fancy/vials,
/obj/item/storage/fancy/vials,
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/closet/wardrobe/chemistry_white,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"x" = (
/obj/machinery/conveyor,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"y" = (
/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"z" = (
/obj/machinery/light/flamp/noshade,
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/refinery)
"A" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/template_noop)
"B" = (
/obj/machinery/door/airlock/maintenance/engi{
req_one_access = null
},
/obj/effect/debris/cleanable/liquid_fuel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"C" = (
/obj/structure/fence/corner{
dir = 9
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/refinery)
"E" = (
/obj/machinery/chemical_analyzer,
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"F" = (
/obj/structure/fence/corner{
dir = 10
},
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/refinery)
"I" = (
/turf/template_noop,
/area/template_noop)
"K" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/table/rack/shelf,
/obj/item/reagent_containers/portable_fuelcan,
/obj/item/reagent_containers/portable_fuelcan,
/obj/item/reagent_containers/portable_fuelcan,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"S" = (
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"X" = (
/obj/machinery/conveyor{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"Y" = (
/obj/machinery/chem_master,
/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
"Z" = (
/obj/structure/reagent_dispensers/fueltank/barrel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/refinery)
(1,1,1) = {"
I
I
I
I
A
I
A
A
A
I
I
I
I
I
I
"}
(2,1,1) = {"
I
I
A
C
h
h
h
i
h
h
h
F
A
I
I
"}
(3,1,1) = {"
I
I
A
b
z
d
r
j
r
d
z
b
A
I
I
"}
(4,1,1) = {"
I
I
A
b
r
r
r
j
r
r
r
b
A
A
I
"}
(5,1,1) = {"
I
I
A
q
j
j
j
j
j
j
j
q
A
A
I
"}
(6,1,1) = {"
I
A
A
b
r
j
r
r
r
j
r
b
A
A
I
"}
(7,1,1) = {"
I
A
A
b
d
j
r
d
r
j
d
b
A
I
I
"}
(8,1,1) = {"
I
A
A
e
e
B
e
e
e
B
e
e
A
I
I
"}
(9,1,1) = {"
I
A
A
e
a
a
S
a
S
a
a
e
A
A
I
"}
(10,1,1) = {"
I
A
A
e
X
y
a
a
a
a
a
e
A
I
I
"}
(11,1,1) = {"
I
I
A
e
m
E
Y
K
u
Z
Z
e
A
I
I
"}
(12,1,1) = {"
I
I
A
e
n
g
k
k
x
f
Z
e
A
A
I
"}
(13,1,1) = {"
I
I
I
e
e
e
e
e
e
e
e
e
A
I
I
"}
(14,1,1) = {"
I
I
I
A
A
A
A
I
I
A
A
A
A
I
I
"}
(15,1,1) = {"
I
I
I
I
I
I
I
I
I
I
A
I
I
I
I
"}
@@ -0,0 +1,322 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/template_noop,
/area/template_noop)
"b" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/snipernest)
"i" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/template_noop)
"l" = (
/obj/structure/sandbag,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/snipernest)
"m" = (
/obj/structure/toilet{
dir = 8
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/snipernest)
"s" = (
/obj/random/trash,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/snipernest)
"u" = (
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/snipernest)
"v" = (
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/snipernest)
"D" = (
/obj/structure/bed/padded,
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/snipernest)
"F" = (
/obj/structure/simple_door/wood,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/snipernest)
"G" = (
/turf/simulated/wall/dungeon,
/area/tether_away/beach/desert/poi/snipernest)
"J" = (
/mob/living/simple_mob/humanoid/merc/ranged/garand/sniper,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/snipernest)
"N" = (
/obj/random/trash,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/snipernest)
"P" = (
/obj/structure/bed/padded,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/snipernest)
"W" = (
/turf/simulated/mineral/ignore_mapgen/classh,
/area/tether_away/beach/desert/poi/snipernest)
"Y" = (
/obj/structure/closet/crate/freezer/rations,
/obj/machinery/light/small,
/obj/random/firstaid,
/obj/random/firstaid,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/snipernest)
(1,1,1) = {"
a
a
a
a
a
a
a
a
a
a
a
a
a
a
a
"}
(2,1,1) = {"
a
a
a
a
a
a
a
a
i
i
i
i
a
a
a
"}
(3,1,1) = {"
a
a
a
W
W
l
l
l
l
W
W
i
i
a
a
"}
(4,1,1) = {"
a
a
W
W
W
N
v
J
v
W
W
W
i
a
a
"}
(5,1,1) = {"
a
a
W
W
W
v
v
N
v
W
W
W
W
a
a
"}
(6,1,1) = {"
a
a
W
W
G
G
F
G
G
W
W
W
b
a
a
"}
(7,1,1) = {"
a
a
l
v
G
P
s
Y
G
v
v
l
b
a
a
"}
(8,1,1) = {"
a
a
l
J
F
u
u
u
F
v
J
l
b
i
a
"}
(9,1,1) = {"
a
a
l
v
G
D
u
m
G
v
N
l
b
i
a
"}
(10,1,1) = {"
a
a
l
N
G
G
F
G
G
W
W
W
b
i
a
"}
(11,1,1) = {"
a
a
W
W
W
v
v
v
W
W
W
W
W
i
a
"}
(12,1,1) = {"
a
a
i
W
W
v
J
N
v
W
W
W
i
a
a
"}
(13,1,1) = {"
a
a
i
W
W
l
l
l
l
W
b
b
i
a
a
"}
(14,1,1) = {"
a
a
a
i
i
i
i
a
a
a
a
a
a
a
a
"}
(15,1,1) = {"
a
a
a
a
a
a
a
a
a
a
a
a
a
a
a
"}
@@ -0,0 +1,501 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/sandbag,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"c" = (
/obj/structure/closet/crate/freezer/rations,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"e" = (
/obj/machinery/porta_turret/stationary/syndie,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"i" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/turretnest)
"k" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/template_noop)
"p" = (
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"s" = (
/obj/machinery/door/airlock/maintenance/engi{
req_one_access = null
},
/obj/effect/debris/cleanable/liquid_fuel,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"u" = (
/turf/simulated/wall/dungeon,
/area/tether_away/beach/desert/poi/turretnest)
"A" = (
/turf/simulated/mineral/ignore_mapgen/classh,
/area/tether_away/beach/desert/poi/turretnest)
"I" = (
/obj/structure/table/rack/shelf/steel,
/obj/random/multiple/gun/projectile/handgun,
/obj/random/firstaid,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"N" = (
/obj/machinery/power/rtg/fake_gen,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"O" = (
/turf/simulated/mineral/ignore_mapgen/classh,
/area/template_noop)
"V" = (
/turf/template_noop,
/area/template_noop)
"W" = (
/obj/structure/table/rack/shelf/steel,
/obj/random/multiple/gun/projectile/rifle,
/obj/random/firstaid,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach/desert/poi/turretnest)
"Z" = (
/turf/simulated/wall,
/area/tether_away/beach/desert/poi/turretnest)
(1,1,1) = {"
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
"}
(2,1,1) = {"
V
k
k
O
O
O
O
V
V
k
k
k
k
k
k
k
k
V
V
V
"}
(3,1,1) = {"
V
k
O
O
O
O
O
k
k
k
k
O
O
O
O
O
k
k
V
V
"}
(4,1,1) = {"
V
O
O
A
A
i
i
i
i
A
A
O
O
O
O
O
O
k
V
V
"}
(5,1,1) = {"
V
O
O
A
i
i
i
i
i
A
A
u
u
u
u
u
O
O
k
V
"}
(6,1,1) = {"
V
O
O
A
i
i
A
A
A
A
A
u
N
p
W
u
O
O
k
V
"}
(7,1,1) = {"
V
k
O
A
i
i
A
Z
Z
Z
A
u
c
p
I
u
O
O
k
V
"}
(8,1,1) = {"
V
k
O
A
i
i
i
a
p
Z
Z
u
u
s
u
u
O
k
k
V
"}
(9,1,1) = {"
V
k
O
A
i
i
i
a
a
Z
Z
e
a
i
A
A
O
k
V
V
"}
(10,1,1) = {"
V
k
O
A
i
i
i
i
i
Z
Z
a
a
i
A
A
O
k
V
V
"}
(11,1,1) = {"
V
O
O
Z
a
a
Z
i
i
i
i
i
i
i
A
A
A
k
V
V
"}
(12,1,1) = {"
V
O
O
Z
e
p
Z
i
i
i
A
i
i
i
A
A
i
k
V
V
"}
(13,1,1) = {"
V
O
O
Z
Z
Z
Z
i
i
i
A
A
A
i
i
i
i
k
O
V
"}
(14,1,1) = {"
V
O
O
A
A
A
A
i
i
i
A
A
Z
a
a
i
i
O
O
V
"}
(15,1,1) = {"
V
k
O
O
O
k
i
i
a
a
Z
A
Z
e
a
i
A
O
O
V
"}
(16,1,1) = {"
V
k
O
O
k
k
i
i
a
e
Z
A
Z
Z
Z
i
A
O
O
V
"}
(17,1,1) = {"
V
V
O
O
k
k
A
A
Z
Z
Z
O
O
O
O
O
O
O
V
V
"}
(18,1,1) = {"
V
V
V
O
k
k
O
O
O
O
O
O
O
O
O
O
O
V
V
V
"}
(19,1,1) = {"
V
V
V
V
k
k
O
O
k
k
k
k
V
V
V
V
V
V
V
V
"}
(20,1,1) = {"
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
V
"}
@@ -0,0 +1,378 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/turf/simulated/mineral/ignore_mapgen/classh,
/area/tether_away/beach/desert/poi/wastedump)
"d" = (
/obj/structure/fence{
dir = 8
},
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"e" = (
/obj/effect/debris/cleanable/greenglow,
/obj/structure/closet/crate/trashcart,
/obj/item/fuelrod/plutonium,
/obj/item/fuelrod/plutonium,
/obj/item/fuelrod/plutonium,
/obj/item/fuelrod/plutonium,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"f" = (
/obj/random/junk,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"k" = (
/obj/effect/map_effect/radiation_emitter/strong,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"l" = (
/obj/structure/fence/cut/large{
dir = 4
},
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"n" = (
/obj/structure/sign/signnew/radiation,
/turf/simulated/wall/dungeon,
/area/tether_away/beach/desert/poi/wastedump)
"o" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/template_noop)
"p" = (
/turf/template_noop,
/area/template_noop)
"q" = (
/obj/structure/reagent_dispensers/fueltank/barrel,
/obj/effect/debris/cleanable/greenglow,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"s" = (
/turf/simulated/wall/dungeon,
/area/tether_away/beach/desert/poi/wastedump)
"t" = (
/obj/random/junk,
/obj/structure/closet/crate/trashcart,
/obj/item/fuelrod/uranium,
/obj/item/fuelrod/uranium,
/obj/item/fuelrod/uranium,
/obj/item/fuelrod/uranium,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"u" = (
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"v" = (
/obj/structure/loot_pile/maint/junk,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"x" = (
/obj/structure/sign/signnew/oxidants,
/turf/simulated/wall/dungeon,
/area/tether_away/beach/desert/poi/wastedump)
"A" = (
/obj/structure/loot_pile/maint/junk,
/obj/random/junk,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"B" = (
/obj/structure/reagent_dispensers/fueltank/barrel,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"E" = (
/obj/structure/loot_pile/maint/junk,
/obj/effect/debris/cleanable/greenglow,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"J" = (
/obj/item/fuelrod/plutonium,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"K" = (
/obj/structure/fence/door/locked,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"N" = (
/obj/structure/reagent_dispensers/fueltank/barrel,
/obj/effect/map_effect/radiation_emitter/strong,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"Q" = (
/obj/effect/debris/cleanable/greenglow,
/obj/structure/closet/crate/trashcart,
/obj/item/fuelrod/uranium,
/obj/item/fuelrod/uranium,
/obj/item/fuelrod/uranium,
/obj/item/fuelrod/uranium,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"U" = (
/obj/effect/debris/cleanable/greenglow,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"W" = (
/obj/effect/map_effect/radiation_emitter,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
"X" = (
/turf/simulated/floor/outdoors/beach/sand/lowdesert,
/area/tether_away/beach/desert/poi/wastedump)
"Y" = (
/obj/item/fuelrod/uranium,
/turf/simulated/mineral/floor/cave,
/area/tether_away/beach/desert/poi/wastedump)
(1,1,1) = {"
p
p
o
o
o
o
o
o
o
o
o
o
p
p
p
"}
(2,1,1) = {"
p
o
o
o
a
a
a
a
a
a
a
o
o
p
p
"}
(3,1,1) = {"
p
o
a
a
a
a
a
a
a
a
a
a
o
o
p
"}
(4,1,1) = {"
o
o
a
a
a
a
a
a
a
a
a
a
a
o
p
"}
(5,1,1) = {"
o
a
a
a
a
a
t
v
q
a
a
a
a
o
o
"}
(6,1,1) = {"
o
n
s
a
E
N
u
U
u
A
a
a
a
a
o
"}
(7,1,1) = {"
o
X
d
u
u
U
f
J
W
u
v
a
a
a
o
"}
(8,1,1) = {"
o
X
K
u
u
U
u
u
f
U
B
a
a
a
o
"}
(9,1,1) = {"
o
X
l
U
f
u
u
U
u
u
e
a
a
a
o
"}
(10,1,1) = {"
o
x
s
a
U
W
Y
u
v
k
f
a
a
a
o
"}
(11,1,1) = {"
o
a
a
a
a
v
B
f
Q
B
a
a
a
a
o
"}
(12,1,1) = {"
o
o
a
a
a
a
a
a
a
a
a
a
a
o
o
"}
(13,1,1) = {"
p
o
a
a
a
a
a
a
a
a
a
a
a
o
p
"}
(14,1,1) = {"
p
o
o
a
a
a
a
a
a
a
a
a
o
o
p
"}
(15,1,1) = {"
p
p
o
o
o
o
o
o
o
o
o
o
o
p
p
"}