diff --git a/code/controllers/subsystems/traumas.dm b/code/controllers/subsystems/traumas.dm index bfbd65f886c..c437960495f 100644 --- a/code/controllers/subsystems/traumas.dm +++ b/code/controllers/subsystems/traumas.dm @@ -102,7 +102,7 @@ var/datum/controller/subsystem/traumas/SStraumas /obj/item/toy/figure/md, /obj/item/weapon/bedsheet/medical, /obj/item/weapon/rig/medical, /obj/item/weapon/storage/backpack/duffel/med, /obj/item/weapon/storage/backpack/medic, /obj/item/weapon/storage/backpack/messenger/med, /obj/item/weapon/storage/belt/medical, /obj/machinery/vending/medical, /obj/mecha/medical/odysseus, /obj/structure/closet/crate/medical, /obj/structure/closet/medical_wall, - /obj/structure/sign/bluecross, /obj/item/clothing/accessory/armband/med, /obj/item/clothing/head/helmet/space/void/medical, /obj/item/clothing/mask/breath/medical, + /obj/structure/sign/greencross, /obj/item/clothing/accessory/armband/med, /obj/item/clothing/head/helmet/space/void/medical, /obj/item/clothing/mask/breath/medical, /obj/item/clothing/under/rank/medical, /obj/item/weapon/scalpel, /obj/machinery/clonepod, /obj/item/weapon/storage/firstaid, /obj/machinery/optable, /obj/item/clothing/accessory/armband/science, /obj/item/clothing/under/rank/scientist, /obj/machinery/door/airlock/science, /obj/machinery/door/airlock/medical)) diff --git a/code/game/jobs/job/medical.dm b/code/game/jobs/job/medical.dm index 82394084d6d..965e3599b5e 100644 --- a/code/game/jobs/job/medical.dm +++ b/code/game/jobs/job/medical.dm @@ -75,7 +75,7 @@ jobtype = /datum/job/doctor uniform = /obj/item/clothing/under/rank/medical - suit = /obj/item/clothing/suit/storage/toggle/labcoat + suit = /obj/item/clothing/suit/storage/toggle/labcoat/medical shoes = /obj/item/clothing/shoes/medical l_ear = /obj/item/device/radio/headset/headset_med pda = /obj/item/device/pda/medical @@ -99,7 +99,8 @@ jobtype = /datum/job/doctor uniform = /obj/item/clothing/under/rank/medical/blue - suit = /obj/item/clothing/suit/storage/toggle/labcoat + suit = /obj/item/clothing/suit/storage/toggle/labcoat/surgeon + shoes = /obj/item/clothing/shoes/surgeon head = /obj/item/clothing/head/surgery/blue /datum/outfit/job/doctor/nurse @@ -154,6 +155,7 @@ uniform = /obj/item/clothing/under/rank/biochemist suit = /obj/item/clothing/suit/storage/toggle/labcoat/biochemist + shoes = /obj/item/clothing/shoes/biochem backpack = /obj/item/weapon/storage/backpack/virology satchel = /obj/item/weapon/storage/backpack/satchel_vir @@ -186,8 +188,8 @@ jobtype = /datum/job/psychiatrist uniform = /obj/item/clothing/under/rank/psych - suit = /obj/item/clothing/suit/storage/toggle/labcoat - shoes = /obj/item/clothing/shoes/laceup + suit = /obj/item/clothing/suit/storage/toggle/labcoat/psych + shoes = /obj/item/clothing/shoes/psych l_ear = /obj/item/device/radio/headset/headset_med pda = /obj/item/device/pda/chemist @@ -212,7 +214,7 @@ minimum_character_age = 24 alt_ages = list("Emergency Medical Technician" = 20) - + access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_pharmacy, access_virology, access_eva, access_maint_tunnels, access_external_airlocks, access_psychiatrist, access_paramedic) minimal_access = list(access_medical, access_medical_equip, access_morgue, access_eva, access_maint_tunnels, access_external_airlocks, access_paramedic) alt_titles = list("Emergency Medical Technician") diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index f5e64e6be02..49cef4163f2 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -63,6 +63,7 @@ minimal_player_age = 14 outfit = /datum/outfit/job/scientist + alt_outfits = list("Xenoarcheologist"=/datum/outfit/job/scientist/xenoarcheologist) /datum/outfit/job/scientist name = "Scientist" @@ -79,6 +80,11 @@ dufflebag = /obj/item/weapon/storage/backpack/duffel/tox messengerbag = /obj/item/weapon/storage/backpack/messenger/tox +/datum/outfit/job/scientist/xenoarcheologist + name = "Xenoarcheologist" + + uniform = /obj/item/clothing/under/rank/xenoarcheologist + /datum/job/xenobiologist title = "Xenobiologist" flag = XENOBIOLOGIST diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm index df23f50b31d..d00febfb38b 100644 --- a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm +++ b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm @@ -324,8 +324,8 @@ ..() new /obj/item/clothing/under/rank/virologist(src) new /obj/item/clothing/under/rank/virologist(src) - new /obj/item/clothing/shoes/chemist(src) - new /obj/item/clothing/shoes/chemist(src) + new /obj/item/clothing/shoes/biochem(src) + new /obj/item/clothing/shoes/biochem(src) new /obj/item/clothing/suit/storage/toggle/labcoat/biochemist(src) new /obj/item/clothing/suit/storage/toggle/labcoat/biochemist(src) new /obj/item/clothing/mask/surgical(src) diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 34ba4d82bfc..9df51d7d154 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -130,10 +130,10 @@ desc = "A warning sign which reads 'NO SMOKING'." icon_state = "nosmoking2" -/obj/structure/sign/bluecross +/obj/structure/sign/greencross name = "medbay" desc = "The Intergalactic symbol of Medical institutions. You'll probably get help here." - icon_state = "bluecross" + icon_state = "greencross" /obj/structure/sign/goldenplaque name = "The Most Robust Men Award for Robustness" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index a2792f872dd..90472bb4328 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -264,4 +264,9 @@ /datum/gear/uniform/circuitry display_name = "jumpsuit, circuitry (empty)" - path = /obj/item/clothing/under/circuitry \ No newline at end of file + path = /obj/item/clothing/under/circuitry + +/datum/gear/uniform/science_alt + display_name = "scientist, alt" + path = /obj/item/clothing/under/rank/scientist/science_alt + allowed_roles = list("Scientist", "Xenobiologist") \ No newline at end of file diff --git a/code/modules/clothing/shoes/colour.dm b/code/modules/clothing/shoes/colour.dm index 975e58dba34..947edd674ec 100644 --- a/code/modules/clothing/shoes/colour.dm +++ b/code/modules/clothing/shoes/colour.dm @@ -48,7 +48,7 @@ /obj/item/clothing/shoes/medical name = "doctor shoes" - desc = "A pair of blue and white shoes intended for safety around patients." + desc = "A pair of green and white shoes intended for safety around patients." icon_state = "doctor" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 80, rad = 0) @@ -60,12 +60,33 @@ permeability_coefficient = 0.01 /obj/item/clothing/shoes/chemist - name = "biochemist shoes" - desc = "A pair of green and white shoes resistant to biological and chemical hazards." + name = "pharmacist shoes" + desc = "A pair of orange and white shoes resistant to biological and chemical hazards." icon_state = "chemist" permeability_coefficient = 0.01 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 90, rad = 0) +/obj/item/clothing/shoes/biochem + name = "biochemist shoes" + desc = "A pair of red and white shoes resistant to biological and chemical hazards." + icon_state = "biochem" + permeability_coefficient = 0.01 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 90, rad = 0) + +/obj/item/clothing/shoes/psych + name = "psychologist shoes" + desc = "A pair of teal and white shoes resistant to biological and chemical hazards." + icon_state = "psych" + permeability_coefficient = 0.01 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 90, rad = 0) + +/obj/item/clothing/shoes/surgeon + name = "surgeon shoes" + desc = "A pair of light blue and white shoes resistant to biological and chemical hazards." + icon_state = "surgeon" + permeability_coefficient = 0.01 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 90, rad = 0) + /obj/item/clothing/shoes/leather name = "leather shoes" desc = "A sturdy pair of leather shoes." diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index b5ba37d98ea..f14c9d9992a 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -57,6 +57,7 @@ item_state = "labcoat_cmo" icon_open = "labcoat_cmo_open" icon_closed = "labcoat_cmo" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 0) /obj/item/clothing/suit/storage/toggle/labcoat/cmoalt name = "chief medical officer labcoat" @@ -64,6 +65,15 @@ icon_state = "labcoat_cmoalt_open" icon_open = "labcoat_cmoalt_open" icon_closed = "labcoat_cmoalt" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 0) + +/obj/item/clothing/suit/storage/toggle/labcoat/cmoalt2 + name = "chief medical officer labcoat" + desc = "A labcoat with command gold highlights." + icon_state = "labcoat_cmoalt2_open" + icon_open = "labcoat_cmoalt2_open" + icon_closed = "labcoat_cmoalt2" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 0) /obj/item/clothing/suit/storage/toggle/labcoat/mad name = "the mad's labcoat" @@ -80,6 +90,14 @@ icon_open = "labcoat_gen_open" icon_closed = "labcoat_gen" +/obj/item/clothing/suit/storage/toggle/labcoat/medical + name = "medical labcoat" + desc = "A suit that protects against minor chemical spills. Offers slightly more protection against biohazards than the standard model. Has a green stripe on the shoulder." + icon_state = "labcoat_med_open" + icon_open = "labcoat_med_open" + icon_closed = "labcoat_med" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 0) + /obj/item/clothing/suit/storage/toggle/labcoat/pharmacist name = "pharmacist labcoat" desc = "A suit that protects against minor chemical spills. Offers slightly more protection against biohazards than the standard model. Has an orange stripe on the shoulder." @@ -90,12 +108,28 @@ /obj/item/clothing/suit/storage/toggle/labcoat/biochemist name = "biochemist labcoat" - desc = "A suit that protects against minor chemical spills. Offers slightly more protection against biohazards than the standard model. Has a green stripe on the shoulder." + desc = "A suit that protects against minor chemical spills. Offers slightly more protection against biohazards than the standard model. Has a red stripe on the shoulder." icon_state = "labcoat_vir_open" icon_open = "labcoat_vir_open" icon_closed = "labcoat_vir" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 0) +/obj/item/clothing/suit/storage/toggle/labcoat/psych + name = "psychiatrist labcoat" + desc = "A suit that protects against minor chemical spills. Offers slightly more protection against biohazards than the standard model. Has a teal stripe on the shoulder." + icon_state = "labcoat_psych_open" + icon_open = "labcoat_psych_open" + icon_closed = "labcoat_psych" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 0) + +/obj/item/clothing/suit/storage/toggle/labcoat/surgeon + name = "surgeon labcoat" + desc = "A suit that protects against minor chemical spills. Offers slightly more protection against biohazards than the standard model. Has a light blue stripe on the shoulder." + icon_state = "labcoat_surgeon_open" + icon_open = "labcoat_surgeon_open" + icon_closed = "labcoat_surgeon" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 0) + /obj/item/clothing/suit/storage/toggle/labcoat/science name = "scientist labcoat" desc = "A suit that protects against minor chemical spills. Has a purple stripe on the shoulder." diff --git a/code/modules/clothing/under/jobs/engineering.dm b/code/modules/clothing/under/jobs/engineering.dm index 74e3143a960..06554395a55 100644 --- a/code/modules/clothing/under/jobs/engineering.dm +++ b/code/modules/clothing/under/jobs/engineering.dm @@ -26,9 +26,18 @@ siemens_coefficient = 0.75 /obj/item/clothing/under/rank/roboticist - desc = "It's a slimming black jumpsuit with reinforced seams; great for industrial work." + desc = "It's a white and purple jumpsuit with reinforced seams; great for industrial work." name = "roboticist's jumpsuit" icon_state = "robotics" item_state = "bl_suit" worn_state = "robotics" siemens_coefficient = 0.75 + +/obj/item/clothing/under/rank/roboticistalt + desc = "It's a slimming black jumpsuit with reinforced seams; great for industrial work." + name = "roboticist's jumpsuit" + icon_state = "robotics_alt" + item_state = "bl_suit" + worn_state = "robotics_alt" + siemens_coefficient = 0.75 + diff --git a/code/modules/clothing/under/jobs/medsci.dm b/code/modules/clothing/under/jobs/medsci.dm index 4313c81e613..3dfbde5d811 100644 --- a/code/modules/clothing/under/jobs/medsci.dm +++ b/code/modules/clothing/under/jobs/medsci.dm @@ -4,9 +4,9 @@ /obj/item/clothing/under/rank/research_director desc = "It's a jumpsuit worn by those with the know-how to achieve the position of \"Research Director\". Its fabric provides minor protection from biological contaminants." name = "research director's jumpsuit" - icon_state = "director" + icon_state = "rd" item_state = "lb_suit" - worn_state = "director" + worn_state = "rd" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) /obj/item/clothing/under/rank/research_director/rdalt @@ -35,6 +35,24 @@ permeability_coefficient = 0.50 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0) +/obj/item/clothing/under/rank/scientist/xenoarcheologist + desc = "It's made of a special fiber that provides minor protection against biohazards. It has markings that denote the wearer as a scientist." + name = "xenoarcheologist's jumpsuit" + icon_state = "xenoarcheology" + item_state = "w_suit" + worn_state = "xenoarcheology" + permeability_coefficient = 0.50 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0) + +/obj/item/clothing/under/rank/scientist/science_alt + desc = "It's made of a special fiber that provides minor protection against biohazards. It has markings that denote the wearer as a scientist." + name = "scientist's uniform" + icon_state = "science_alt" + item_state = "w_suit" + worn_state = "science_alt" + permeability_coefficient = 0.50 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0) + /obj/item/clothing/under/rank/scientist/botany desc = "It's made of a special fiber that provides minor protection against biohazards. Its colour denotes the wearer as a xenobotanist." icon_state = "botany" @@ -56,6 +74,15 @@ permeability_coefficient = 0.50 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) +/obj/item/clothing/under/rank/xenoarcheologist + desc = "It's made of a special fiber that provides minor protection against biohazards. It has markings that denote the wearer as a xenoarcheologist." + name = "xenoarcheologist's jumpsuit" + icon_state = "xenoarcheology" + item_state = "w_suit" + worn_state = "xenoarcheology" + permeability_coefficient = 0.50 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0) + /* * Medical */ @@ -223,9 +250,9 @@ /obj/item/clothing/under/rank/biochemist desc = "Made of a special fiber that gives increased protection against biohazards." - name = "virologist's jumpsuit" - icon_state = "virologist_new" + name = "biochemist's jumpsuit" + icon_state = "virology" item_state = "w_suit" - worn_state = "virologist_new" + worn_state = "virology" permeability_coefficient = 0.50 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) \ No newline at end of file diff --git a/html/changelogs/furrycactus - medsci sprites.yml b/html/changelogs/furrycactus - medsci sprites.yml new file mode 100644 index 00000000000..6f87a833fb2 --- /dev/null +++ b/html/changelogs/furrycactus - medsci sprites.yml @@ -0,0 +1,44 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Furrycactus, AmoryBlaine + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added the rest of the new MedSci uniform sprites by AmoryBlaine." + - rscadd: "Scientists and Xenobiologists have access to an alternate outfit from the loadout." + - rscadd: "Added several new coloured labcoats for Medical staff to aid in distinction between roles." + - tweak: "Medical has been made green once more." \ No newline at end of file diff --git a/icons/mob/back.dmi b/icons/mob/back.dmi index 6d57643859d..895d49e3fca 100644 Binary files a/icons/mob/back.dmi and b/icons/mob/back.dmi differ diff --git a/icons/mob/belt.dmi b/icons/mob/belt.dmi index 895a4904a2d..71875df9d56 100644 Binary files a/icons/mob/belt.dmi and b/icons/mob/belt.dmi differ diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 195f138ca0b..9affdbd297b 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 38a04053302..6a96d8f94ad 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index a6a27d746eb..ed8654f6c2e 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index f8e59336ac2..116301c9922 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/closet.dmi b/icons/obj/closet.dmi index 1d3331c8cb0..1fd04d8d263 100644 Binary files a/icons/obj/closet.dmi and b/icons/obj/closet.dmi differ diff --git a/icons/obj/clothing/belts.dmi b/icons/obj/clothing/belts.dmi index b8229eb9c42..06a8feb1c88 100644 Binary files a/icons/obj/clothing/belts.dmi and b/icons/obj/clothing/belts.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 53ac0d7bf08..da80dcdba6e 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index e29ef93bf08..b5238ab9a50 100644 Binary files a/icons/obj/clothing/shoes.dmi and b/icons/obj/clothing/shoes.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index d5502efd75a..29fc0d981ca 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 8324057b56d..ecb6cf50cbc 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/icons/obj/decals.dmi b/icons/obj/decals.dmi index e1d9024b7ef..6b88dbc95d4 100644 Binary files a/icons/obj/decals.dmi and b/icons/obj/decals.dmi differ diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index dbc5c542bb6..c41ed89b218 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ diff --git a/icons/obj/vending.dmi b/icons/obj/vending.dmi index 6893b1d117a..337e4fd6f7a 100755 Binary files a/icons/obj/vending.dmi and b/icons/obj/vending.dmi differ diff --git a/maps/aurora/aurora-1_centcomm.dmm b/maps/aurora/aurora-1_centcomm.dmm index 174eecb9675..ec77cf4eaae 100644 --- a/maps/aurora/aurora-1_centcomm.dmm +++ b/maps/aurora/aurora-1_centcomm.dmm @@ -11400,7 +11400,7 @@ /turf/unsimulated/wall/riveted, /area/centcom/control) "aAg" = ( -/obj/structure/sign/bluecross{ +/obj/structure/sign/greencross{ pixel_y = -32 }, /turf/unsimulated/floor{ @@ -14267,7 +14267,7 @@ }, /area/centcom/holding) "aGr" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/unsimulated/wall/riveted, /area/centcom/holding) "aGs" = ( @@ -17298,7 +17298,7 @@ }, /area/centcom/holding) "aMS" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/unsimulated/wall/riveted, /area/centcom/spawning) "aMT" = ( diff --git a/maps/aurora/aurora-3_sublevel.dmm b/maps/aurora/aurora-3_sublevel.dmm index aa388adfaab..a20649b7498 100644 --- a/maps/aurora/aurora-3_sublevel.dmm +++ b/maps/aurora/aurora-3_sublevel.dmm @@ -23618,7 +23618,7 @@ /turf/simulated/floor/tiled/white, /area/medical/medbay4) "aWG" = ( -/obj/structure/sign/bluecross{ +/obj/structure/sign/greencross{ pixel_y = 32 }, /obj/effect/floor_decal/corner/lime/full{ diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm index e86f04e3e7c..645087128bf 100644 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ b/maps/aurora/aurora-4_mainlevel.dmm @@ -30222,7 +30222,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/floor/plating, /area/hallway/primary/starboard) "baT" = ( @@ -35190,6 +35190,7 @@ /obj/machinery/camera/network/medbay{ c_tag = "Medical - CMO's Office" }, +/obj/item/clothing/suit/storage/toggle/labcoat/cmoalt2, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) "bjq" = ( @@ -39748,6 +39749,8 @@ }, /obj/structure/closet/wardrobe/robotics_black, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/under/rank/roboticistalt, +/obj/item/clothing/under/rank/roboticistalt, /turf/simulated/floor/tiled, /area/assembly/robotics) "bqx" = ( @@ -40451,7 +40454,7 @@ dir = 4 }, /obj/structure/window/reinforced, -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/floor/plating, /area/medical/reception) "brG" = ( @@ -42834,7 +42837,7 @@ dir = 1 }, /obj/structure/window/reinforced, -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/floor/plating, /area/medical/reception) "bvh" = ( diff --git a/maps/exodus/exodus-1_station.dmm b/maps/exodus/exodus-1_station.dmm index e35ea9b2eea..60fa9f54f79 100644 --- a/maps/exodus/exodus-1_station.dmm +++ b/maps/exodus/exodus-1_station.dmm @@ -3585,7 +3585,7 @@ /turf/simulated/floor/plating, /area/maintenance/security_starboard) "agB" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/wall, /area/hallway/primary/starboard) "agC" = ( @@ -17361,7 +17361,7 @@ /area/chapel/main) "aGj" = ( /obj/effect/floor_decal/corner/paleblue/full, -/obj/structure/sign/bluecross{ +/obj/structure/sign/greencross{ pixel_x = -32 }, /turf/simulated/floor/tiled/white, @@ -21189,7 +21189,7 @@ icon_state = "corner_white_full"; dir = 4 }, -/obj/structure/sign/bluecross{ +/obj/structure/sign/greencross{ pixel_x = 32 }, /obj/structure/cable/green{ @@ -24483,6 +24483,30 @@ /obj/structure/closet/secure_closet/personal, /turf/simulated/floor/tiled, /area/crew_quarters/locker) +"aTD" = ( +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -14 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/journalistoffice) "aTE" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -24567,29 +24591,17 @@ /turf/simulated/floor/wood, /area/lawoffice) "aTL" = ( -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -14 +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Representative's Office"; + pixel_y = 4 }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +/obj/machinery/alarm{ + pixel_y = 27 }, /turf/simulated/floor/wood, -/area/journalistoffice) +/area/lawoffice) "aTN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -28211,6 +28223,15 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) +"bau" = ( +/obj/machinery/requests_console{ + department = "Representative's Office"; + departmentType = 5; + pixel_x = 0; + pixel_y = -28 + }, +/turf/simulated/floor/carpet, +/area/space) "baw" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -39137,7 +39158,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/central_two) "bum" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/wall/r_wall, /area/hallway/primary/central_two) "bun" = ( @@ -44854,7 +44875,7 @@ /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) "bDX" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/wall, /area/hallway/primary/central_two) "bDY" = ( @@ -57204,7 +57225,7 @@ /turf/simulated/floor/tiled/white, /area/medical/medbay4) "bZS" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/wall, /area/medical/medbay4) "bZT" = ( @@ -65809,6 +65830,10 @@ "cpz" = ( /turf/simulated/wall/r_wall, /area/engineering/storage) +"cpA" = ( +/obj/structure/closet/crate/solar, +/turf/simulated/floor/plating, +/area/engineering/storage) "cpB" = ( /obj/machinery/light{ dir = 1 @@ -77671,551 +77696,25 @@ }, /turf/simulated/floor/reinforced, /area/template_noop) -"cOd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +"cTe" = ( +/obj/machinery/light{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"cPH" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"cWG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"cYs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"cZm" = ( -/obj/structure/window/reinforced, -/obj/structure/morgue, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"del" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/full, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"dhM" = ( -/turf/template_noop, -/area/shuttle/legion/station) -"djf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"dsd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"dAw" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"dAQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"dMV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"dUJ" = ( -/obj/machinery/door/window/brigdoor/southleft{ - name = "Command Lobby"; - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"dXb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"dXT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"dYo" = ( -/obj/machinery/door/airlock{ - id_tag = "rep_office"; - name = "Representative's Office"; - req_access = list(38) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"esb" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/rig/unathi, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"evY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"eDK" = ( -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/camera/network/exodus{ - c_tag = "Arrivals Merchant Dock" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"eFO" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "escape_dock_north_sensor"; - master_tag = "escape_dock_north_airlock"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"eHz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"eNr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - icon_state = "map"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"eSj" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"eTn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"eUe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"eUn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"eXE" = ( -/obj/machinery/requests_console{ - department = "Representative's Office"; - departmentType = 5; - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/carpet, -/area/space) -"fhn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"fki" = ( -/obj/structure/window/reinforced, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fkF" = ( -/obj/machinery/requests_console{ - department = "Detective's Desk"; - departmentType = 5; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"fny" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_north_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "escape_dock_north_airlock"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = -26; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"fok" = ( -/obj/effect/landmark/start{ - name = "Psychiatrist" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"fvW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - name = "Firelock West" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"fxK" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"fHp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/window/reinforced, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"fJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(4,68) - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"fKn" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"fNI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fWA" = ( -/turf/simulated/floor/airless, -/area/maintenance/security_starboard) -"gaJ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"giZ" = ( -/obj/effect/floor_decal/corner/red/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, +/obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"grg" = ( -/obj/structure/table/stone/marble, -/obj/item/weapon/reagent_containers/food/snacks/pie, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"gsd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"gzn" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/skrell/black, -/obj/item/clothing/suit/space/void/skrell/white, -/obj/item/clothing/head/helmet/space/void/skrell/black, -/obj/item/clothing/head/helmet/space/void/skrell/white, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/effect/floor_decal/corner/blue/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"gCL" = ( -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, +"cTJ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"gKc" = ( -/obj/structure/bed/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"gLk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 8 }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"gOd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"gOr" = ( -/obj/machinery/lapvend, -/turf/simulated/floor/wood, -/area/library) -"gPH" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"gVu" = ( +"cVN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -78229,16 +77728,41 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"gYR" = ( -/obj/structure/closet{ - name = "Evidence Closet" +"cZZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"deF" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + icon_state = "intact"; + dir = 4 }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"dfF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/security_starboard) +"dgo" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/white, /area/security/forensics_office) -"gZa" = ( +"dgE" = ( +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/fitness) +"diY" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/masks{ pixel_x = 5; @@ -78250,341 +77774,42 @@ temperature = 278 }, /area/security/forensics_office) -"gZP" = ( -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"hdW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"hgd" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "rep_inner" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/lawoffice) -"hkT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"hlr" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"hly" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"hsp" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "escape_dock_center_airlock"; - master_tag = "escape_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airlock_mech_sensor = "escape_dock_center_mech"; - tag_airpump = "escape_dock_center_pump"; - tag_chamber_sensor = "escape_dock_center_sensor"; - tag_exterior_door = "escape_dock_center_outer"; - tag_interior_door = "escape_dock_center_inner"; - tag_shuttle_mech_sensor = "shuttle_dock_center_mech" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"hyo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"hJH" = ( -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"hRk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"hXt" = ( -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"iay" = ( -/obj/machinery/papershredder{ - pixel_x = 7; - pixel_y = -2 - }, -/obj/machinery/ringer{ - department = "Representatives Office"; - id = "rep_ringer"; - pixel_x = 0; - pixel_y = 32; - req_access = list(38) - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"igs" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "rep_office"; - name = "Office Door Control"; - pixel_x = -26; - pixel_y = -13; - req_access = list(38) - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"imv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"itk" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/security/forensics_office) -"ivh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance"; - req_access = list(12,18) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"ixZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/plating, -/area/maintenance/evahallway) -"iBJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - id = "journalist" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "journalist" - }, -/turf/simulated/floor/plating, -/area/journalistoffice) -"iDs" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"iGX" = ( -/obj/machinery/requests_console{ - department = "Journalist's Office"; - dir = 8; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"iNc" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"iOT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"iQd" = ( -/obj/machinery/computer/security, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"iSl" = ( -/obj/structure/safe/station, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"iUl" = ( -/turf/template_noop, -/area/space) -"jbl" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"jlZ" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"jsB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"jIm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"dmT" = ( +/obj/effect/landmark/start{ + name = "Psychiatrist" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet/blue, /area/medical/psych) -"jTV" = ( -/obj/machinery/light/small{ - dir = 1 +"dte" = ( +/obj/structure/safe/station, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"duM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/window/reinforced, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"dDo" = ( +/obj/machinery/mass_driver{ + dir = 4; + drive_range = 25; + id = "toxinsdriver" }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/area/security/forensics_office) -"jUV" = ( -/obj/machinery/door/firedoor, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"dIl" = ( /obj/structure/grille, +/obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ dir = 1; id = "rep_inner" @@ -78597,17 +77822,33 @@ dir = 8; id = "rep_inner" }, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "rep_inner" - }, /obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor/plating, /area/lawoffice) -"jXL" = ( +"dSP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"dVX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"eaP" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/security{ c_tag = "EVA - Starboard Camera"; @@ -78621,7 +77862,35 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"khI" = ( +"ebl" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"ecf" = ( +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"ecA" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_center_outer"; + locked = 1; + name = "Escape Airlock"; + req_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"eeJ" = ( /obj/structure/table/standard, /obj/machinery/computer/records/medical/laptop, /turf/simulated/floor/tiled/dark{ @@ -78629,324 +77898,12 @@ temperature = 278 }, /area/security/forensics_office) -"knl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"ksk" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"kum" = ( -/obj/structure/sink/kitchen{ - name = "Autopsy sink"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"kyv" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"kGb" = ( -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"kRS" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"kTe" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_south_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "escape_dock_south_airlock"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = 26; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"kVs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "escape_dock_south_airlock"; - master_tag = "escape_dock"; - pixel_y = -30; - req_one_access = list(13); - tag_airlock_mech_sensor = "escape_dock_south_mech"; - tag_airpump = "escape_dock_south_pump"; - tag_chamber_sensor = "escape_dock_south_sensor"; - tag_exterior_door = "escape_dock_south_outer"; - tag_interior_door = "escape_dock_south_inner"; - tag_shuttle_mech_sensor = "shuttle_dock_south_mech" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "escape_dock_south_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"kWv" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"kZB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"laq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"laK" = ( -/turf/simulated/floor/wood, -/area/security/detectives_office) -"ldf" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_inner"; - locked = 1; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"lhf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ljM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"lmZ" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"ltg" = ( +"efB" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 1 }, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/research) -"lwk" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"lwC" = ( -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/camera/network/civilian_surface{ - c_tag = "Surface - Red Dock Security"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lxb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"lFc" = ( -/obj/structure/table/standard, -/obj/item/device/camera, -/obj/machinery/requests_console{ - department = "Forensic Technician"; - departmentType = 5; - pixel_x = 32; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"lHc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lLP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock East" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"lSG" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 8 @@ -78957,121 +77914,31 @@ }, /turf/simulated/floor/airless, /area/rnd/test_area) -"lTG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(4,68) +"eqn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"lVI" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/full{ - icon_state = "corner_white_full"; - dir = 8 +/obj/machinery/atmospherics/binary/pump{ + dir = 2; + name = "Isolation to Waste" }, -/obj/machinery/atmospherics/portables_connector{ +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"etT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"maV" = ( -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"mdI" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "rep_inner" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/lawoffice) -"mfF" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "rep_office"; - name = "Office Door Control"; - pixel_x = -19; - pixel_y = 39 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the engine core airlock hatch bolts."; - id = "rep_office"; - name = "Office Door Bolts"; - pixel_x = -19; - pixel_y = 29; - req_access = list(38); - specialfunctions = 4 - }, -/obj/machinery/button/windowtint{ - id = "rep_inner"; - pixel_x = -28; - pixel_y = -14 - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"mhz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"mkb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_outer"; - locked = 1; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "merchant_shuttle_dock"; - name = "exterior access button"; - pixel_x = -27; - pixel_y = 7; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"mrC" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/camera/network/security{ - c_tag = "EVA - Aft Camera"; - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"mtn" = ( /turf/simulated/floor/lino, /area/security/detectives_office) -"mtq" = ( +"eGm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 2; + id = "rep_inner" + }, /obj/structure/window/reinforced/polarized{ dir = 4; id = "rep_inner" @@ -79080,115 +77947,28 @@ dir = 8; id = "rep_inner" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, +/obj/structure/cable/green, /turf/simulated/floor/plating, /area/lawoffice) -"mts" = ( -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/item/weapon/hand_labeler, -/obj/effect/floor_decal/corner/blue/full{ - icon_state = "corner_white_full"; - dir = 4 +"fiJ" = ( +/obj/structure/sink/kitchen{ + name = "Autopsy sink"; + pixel_y = 28 }, -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"mzD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"mBU" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/ai_monitored/storage/eva) -"nuw" = ( -/turf/simulated/floor/wood, -/area/lawoffice) -"nxA" = ( -/turf/simulated/floor/carpet, -/area/lawoffice) -"nyS" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"nBV" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"nDA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/ramp/bottom{ - icon_state = "rampbot"; - dir = 4 +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 }, /area/security/forensics_office) -"nQX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"nVD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 +"fpq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "escape_dock_center_pump" }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"frP" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 4 @@ -79197,9 +77977,156 @@ icon_state = "corner_white"; dir = 1 }, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + icon_state = "intact"; + dir = 4 + }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"oeQ" = ( +"ftj" = ( +/turf/simulated/floor/wood, +/area/lawoffice) +"fEO" = ( +/obj/structure/window/reinforced, +/obj/structure/morgue, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"fPz" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"fUt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"fYG" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"gcI" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"giP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"gmS" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/wall/r_wall, +/area/medical/virologyaccess) +"gny" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"grN" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "rep_inner" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/lawoffice) +"gsk" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"gwV" = ( +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"gDY" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/fitness) +"gFr" = ( +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/heater{ + dir = 2; + icon_state = "heater" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"gJQ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 2; frequency = 1380; @@ -79228,21 +78155,1358 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"olR" = ( +"gMP" = ( +/turf/simulated/floor/carpet, +/area/lawoffice) +"gNa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "escape_dock_south_airlock"; + master_tag = "escape_dock"; + pixel_y = -30; + req_one_access = list(13); + tag_airlock_mech_sensor = "escape_dock_south_mech"; + tag_airpump = "escape_dock_south_pump"; + tag_chamber_sensor = "escape_dock_south_sensor"; + tag_exterior_door = "escape_dock_south_outer"; + tag_interior_door = "escape_dock_south_inner"; + tag_shuttle_mech_sensor = "shuttle_dock_south_mech" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "escape_dock_south_pump" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"gWz" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"haW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/plating, +/area/maintenance/evahallway) +"hmI" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock East" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"hpJ" = ( +/turf/simulated/wall, +/area/journalistoffice) +"hBw" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/lime/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"hGw" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"hII" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/full, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"hKn" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora_storage) -"ooy" = ( -/obj/effect/floor_decal/corner/paleblue/full{ +"hVx" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"hYn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"idt" = ( +/obj/machinery/alarm/cold{ + pixel_x = 0; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"idQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"iji" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"iog" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"iAl" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"iIX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"iPv" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/gold, +/obj/item/weapon/storage/belt/champion, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"iPM" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_center_inner"; + locked = 1; + name = "Escape Airlock"; + req_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"jnk" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "journalist" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "journalist" + }, +/obj/structure/window/reinforced/polarized{ + id = "journalist" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "journalist" + }, +/turf/simulated/floor/plating, +/area/journalistoffice) +"jzv" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"jCm" = ( +/obj/machinery/door/window/brigdoor/southleft{ + name = "Command Lobby"; + req_access = list(19) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"jIh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"jIA" = ( +/turf/simulated/floor/airless, +/area/maintenance/security_starboard) +"jVp" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "escape_dock_north_sensor"; + master_tag = "escape_dock_north_airlock"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"kdW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"klG" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"krk" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"kzf" = ( +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"kDC" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 1 }, -/obj/machinery/computer/shuttle_control/research, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"kFZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/bridge) -"oxF" = ( +/area/security/forensics_office) +"kGx" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"kIP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"kIW" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"kIZ" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"kOb" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/camera/network/security{ + c_tag = "EVA - Aft Camera"; + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"kOs" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id = "Detective"; + pixel_x = -28; + pixel_y = 12 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"kSF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ramp/bottom{ + icon_state = "rampbot"; + dir = 4 + }, +/area/security/forensics_office) +"lcx" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/ai_monitored/storage/eva) +"lfG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"ljp" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Medical Resident" + }, +/turf/simulated/floor/tiled, +/area/medical/surgeryobs) +"lVD" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"lXF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"man" = ( +/turf/simulated/floor/wood, +/area/security/detectives_office) +"maN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"mdy" = ( +/obj/machinery/door/airlock{ + id_tag = "rep_office"; + name = "Representative's Office"; + req_access = list(38) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"mqE" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"mtS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"mDx" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 2; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "rep_inner" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"mFv" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"mHS" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"mLL" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_center_outer"; + locked = 1; + name = "Escape Airlock"; + req_access = list(13) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "escape_dock_center_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = -26; + req_one_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"mOd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + name = "Firelock West" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"mQu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"mQL" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 2; + id = "rep_inner" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"mXN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"mYi" = ( +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"mYm" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"ngM" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/rig/unathi, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"nlG" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Representative's Reception"; + req_access = null + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/lawoffice) +"nmk" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"nUd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"nVE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"nYy" = ( +/turf/template_noop, +/area/shuttle/legion/station) +"oah" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "rep_office"; + name = "Office Door Control"; + pixel_x = -26; + pixel_y = -13; + req_access = list(38) + }, +/turf/simulated/floor/carpet, +/area/lawoffice) +"oav" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"oeU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(4,68) + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"onz" = ( +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"onC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock East" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"oqh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) +"oBS" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "escape_dock_south_sensor"; + master_tag = "escape_dock_south_airlock"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"oDu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"oHv" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"oID" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"oMl" = ( +/obj/machinery/lapvend, +/turf/simulated/floor/wood, +/area/library) +"oRl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) +"oTt" = ( +/obj/machinery/light/small, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "escape_dock_north_airlock"; + master_tag = "escape_dock"; + pixel_y = 30; + req_one_access = list(13); + tag_airlock_mech_sensor = "escape_dock_north_mech"; + tag_airpump = "escape_dock_north_pump"; + tag_chamber_sensor = "escape_dock_north_sensor"; + tag_exterior_door = "escape_dock_north_outer"; + tag_interior_door = "escape_dock_north_inner"; + tag_shuttle_mech_sensor = "shuttle_dock_north_mech" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "escape_dock_north_pump" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"oVc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"oWF" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "rep_inner" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"paZ" = ( +/obj/structure/disposaloutlet{ + dir = 4; + icon_state = "outlet"; + spread_point = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"pmM" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"pvG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"pBD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"pEZ" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"pGQ" = ( +/obj/machinery/requests_console{ + department = "Journalist's Office"; + dir = 8; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/carpet, +/area/journalistoffice) +"pNK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/security_starboard) +"qak" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"qfY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"qgh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"qlZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"qrg" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"qDO" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/ringer{ + department = "Representatives Office"; + id = "rep_ringer"; + pixel_x = 0; + pixel_y = 32; + req_access = list(38) + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"qHv" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/research) +"qKb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"qLv" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"qNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"qPh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"qQp" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"qQV" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_north_outer"; + locked = 1; + name = "Escape Airlock"; + req_access = list(13) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "escape_dock_north_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = -26; + req_one_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"qWO" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "merchant_shuttle_dock_outer"; + locked = 1; + req_access = list(13) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_shuttle_dock"; + name = "exterior access button"; + pixel_x = -27; + pixel_y = 7; + req_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"qXT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"rcZ" = ( +/turf/template_noop, +/area/merchant_ship/docked) +"rfE" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/rnd/test_area) +"rhj" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"rio" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"riL" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/fitness) +"rlz" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"rnS" = ( +/obj/structure/morgue, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"rqW" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_south_outer"; + locked = 1; + name = "Escape Airlock"; + req_access = list(13) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "escape_dock_south_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = 26; + req_one_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"rry" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"rvF" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "journalist" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "journalist" + }, +/obj/structure/window/reinforced/polarized{ + id = "journalist" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/journalistoffice) +"rCk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/evahallway) +"rCR" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/lime/full, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"rGb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"rGs" = ( /obj/structure/table/standard, /obj/item/weapon/autopsy_scanner, /obj/item/weapon/scalpel{ @@ -79254,43 +79518,406 @@ temperature = 278 }, /area/security/forensics_office) -"oIR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Corporate Reporter" - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/machinery/button/windowtint{ - dir = 2; - id = "journalist"; - pixel_x = -24; - pixel_y = -12 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"oJd" = ( -/obj/structure/plasticflaps/airtight{ - layer = 2.5 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Autopsy Lab"; - req_access = list(4) - }, -/obj/effect/floor_decal/corner/beige/diagonal, +"rIa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"rKj" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) +"rOF" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"rVi" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"sck" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"smC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"som" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"sps" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"ssm" = ( +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"sxz" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"sxU" = ( +/obj/machinery/computer/security, +/turf/simulated/floor/carpet, +/area/security/detectives_office) +"szr" = ( +/obj/structure/table/standard, +/obj/item/device/camera, +/obj/machinery/requests_console{ + department = "Forensic Technician"; + departmentType = 5; + pixel_x = 32; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"sDo" = ( +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Merchant Dock" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"sGz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"sLL" = ( +/obj/effect/floor_decal/corner/red/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"sMl" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "rep_inner" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "rep_inner" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/lawoffice) +"sMU" = ( +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"sQO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, /area/security/forensics_office) -"oQH" = ( +"sYO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) +"tdA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"tlV" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"tnI" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/machinery/computer/shuttle_control/research, +/turf/simulated/floor/tiled, +/area/bridge) +"tnN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/template_noop, +/area/rnd/test_area) +"ttF" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical, +/obj/effect/floor_decal/corner/blue/full, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"tAf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"tCR" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"tLg" = ( +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"tRf" = ( +/obj/structure/table/standard, +/obj/item/stack/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/effect/floor_decal/corner/blue/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"tTM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/lawoffice) +"tWU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"ubu" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"uev" = ( +/obj/machinery/optable{ + name = "Autopsy Table" + }, +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"ufR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_access = list(70) + }, +/turf/simulated/floor/plating, +/area/journalistoffice) +"ump" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"uns" = ( +/obj/structure/table/stone/marble, +/obj/item/weapon/reagent_containers/food/snacks/pie, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"upr" = ( /obj/structure/table/wood, /obj/item/weapon/folder{ pixel_x = 5; @@ -79316,180 +79943,78 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"oXe" = ( -/obj/effect/floor_decal/corner/lime{ +"uts" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "escape_dock_center_sensor"; + master_tag = "escape_dock_center_airlock"; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"uxP" = ( +/obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; - dir = 5 - }, -/obj/machinery/atmospherics/unary/heater{ - dir = 2; - icon_state = "heater" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"pbV" = ( -/obj/structure/morgue, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"pfi" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"pkx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"pmr" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"pmG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"pnI" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"psy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"pwK" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"pzX" = ( -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"pNd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"pRu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"pUF" = ( -/obj/machinery/door/airlock{ - id_tag = null; - name = "Representative's Reception"; - req_access = null - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/lawoffice) -"pXr" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"pYB" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"qlg" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/start{ - name = "Medical Resident" - }, -/turf/simulated/floor/tiled, -/area/medical/surgeryobs) -"qsd" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"quH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/camera/network/civilian_surface{ + c_tag = "Surface - Red Dock Security"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"qvD" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"qxY" = ( +"uCO" = ( +/obj/machinery/requests_console{ + department = "Detective's Desk"; + departmentType = 5; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"uDW" = ( +/obj/structure/bed/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/forensics_office) +"uGm" = ( +/obj/structure/bed/chair/office/bridge{ + icon_state = "bridge"; + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + id = "rep_office"; + name = "Office Door Control"; + pixel_x = -19; + pixel_y = 39 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control-switch for the engine core airlock hatch bolts."; + id = "rep_office"; + name = "Office Door Bolts"; + pixel_x = -19; + pixel_y = 29; + req_access = list(38); + specialfunctions = 4 + }, +/obj/machinery/button/windowtint{ + id = "rep_inner"; + pixel_x = -28; + pixel_y = -14 + }, +/turf/simulated/floor/carpet, +/area/lawoffice) +"uOX" = ( +/turf/template_noop, +/area/space) +"uQi" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 8 @@ -79497,18 +80022,140 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qRm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +"uQL" = ( +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10; + icon_state = "intact" }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"uTs" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/security/detectives_office) +"uTU" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "merchant_shuttle_dock_inner"; + locked = 1; + req_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"qZR" = ( +"uVY" = ( +/obj/effect/floor_decal/corner/blue/full, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"vdm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/medical/psych) +"vfP" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/skrell/black, +/obj/item/clothing/suit/space/void/skrell/white, +/obj/item/clothing/head/helmet/space/void/skrell/black, +/obj/item/clothing/head/helmet/space/void/skrell/white, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/corner/blue/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"vkz" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_center_inner"; + locked = 1; + name = "Escape Airlock"; + req_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"vmn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"vtL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"vut" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/white{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"vya" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + icon_state = "map"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"vEP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora_storage) +"vNf" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -79521,23 +80168,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"reN" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/ringer{ - department = "Representatives Office"; - id = "rep_ringer"; - pixel_x = 0; - pixel_y = 32; - req_access = list(38) +"vNO" = ( +/obj/structure/plasticflaps/airtight{ + layer = 2.5 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Autopsy Lab"; + req_access = list(4) }, -/turf/simulated/floor/wood, -/area/lawoffice) -"rfc" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics_office) +"vVT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -79557,7 +80206,35 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"rjk" = ( +"vYI" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"wjL" = ( +/obj/machinery/papershredder{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/machinery/ringer{ + department = "Representatives Office"; + id = "rep_ringer"; + pixel_x = 0; + pixel_y = 32; + req_access = list(38) + }, +/turf/simulated/floor/wood, +/area/lawoffice) +"wnI" = ( /obj/structure/table/standard, /obj/item/weapon/hemostat, /obj/item/weapon/retractor, @@ -79571,317 +80248,121 @@ temperature = 278 }, /area/security/forensics_office) -"rjV" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"rGn" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_inner"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"rNw" = ( -/obj/structure/closet/crate/solar, -/turf/simulated/floor/plating, -/area/engineering/storage) -"rOE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"rRq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"rUH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"rXf" = ( +"wqF" = ( +/obj/structure/table/reinforced, +/obj/item/hoist_kit, +/obj/item/weapon/ladder_mobile, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"wAz" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 8 }, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"scH" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/wall/r_wall, -/area/medical/virologyaccess) -"siB" = ( +"wHi" = ( /obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10; - icon_state = "intact" - }, +/obj/machinery/portable_atmospherics/canister, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora_storage) -"siD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"wLt" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 +/obj/effect/landmark/start{ + name = "Corporate Reporter" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"skG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"spZ" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/gold, -/obj/item/weapon/storage/belt/champion, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"suD" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 +/obj/machinery/newscaster{ + pixel_y = -30 }, /obj/machinery/button/windowtint{ - id = "Detective"; - pixel_x = -28; - pixel_y = 12 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 2; + id = "journalist"; + pixel_x = -24; + pixel_y = -12 }, /turf/simulated/floor/carpet, -/area/security/detectives_office) -"sAF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"sCI" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"sFb" = ( -/obj/machinery/door/firedoor, +/area/journalistoffice) +"wOH" = ( /obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "rep_inner" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/lawoffice) -"sGi" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"sIU" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/security/detectives_office) -"sNn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"sQe" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/lawoffice) -"sQo" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 2; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "rep_inner" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/lawoffice) -"sSh" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"sZZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"tao" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "rep_inner" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "rep_inner" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/lawoffice) -"tav" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"tfi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"tgo" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"tmV" = ( /obj/machinery/door/firedoor{ dir = 2 }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/cable/green, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"wWe" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/security, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) +"xep" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "escape_dock_center_airlock"; + master_tag = "escape_dock"; + pixel_y = 30; + req_one_access = list(13); + tag_airlock_mech_sensor = "escape_dock_center_mech"; + tag_airpump = "escape_dock_center_pump"; + tag_chamber_sensor = "escape_dock_center_sensor"; + tag_exterior_door = "escape_dock_center_outer"; + tag_interior_door = "escape_dock_center_inner"; + tag_shuttle_mech_sensor = "shuttle_dock_center_mech" + }, +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"trC" = ( +"xeK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance"; + req_access = list(12,18) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/ai_monitored/storage/eva) +"xmq" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -79892,86 +80373,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora_storage) -"trQ" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"tyj" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock East" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"tES" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"tNs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(70) - }, -/turf/simulated/floor/plating, -/area/journalistoffice) -"tOm" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_inner"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"tOn" = ( -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/high{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"tQM" = ( +"xxW" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -79990,331 +80392,14 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"tTR" = ( -/obj/structure/lattice/catwalk, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"tWr" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/clothing/shoes/magboots, -/obj/effect/floor_decal/corner/blue/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"uat" = ( -/turf/template_noop, -/area/merchant_ship/docked) -"uaO" = ( -/obj/structure/disposaloutlet{ +"xyg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4; - icon_state = "outlet"; - spread_point = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"ubu" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"ugh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 2; - name = "Isolation to Waste" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora_storage) -"uoD" = ( -/turf/simulated/wall, -/area/journalistoffice) -"upt" = ( -/obj/machinery/mass_driver{ - dir = 4; - drive_range = 25; - id = "toxinsdriver" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"usl" = ( -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"utg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"uDR" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"uIt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"uMQ" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"vfb" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"vhS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"vvM" = ( -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Representative's Office"; - pixel_y = 4 - }, -/obj/machinery/alarm{ - pixel_y = 27 - }, -/turf/simulated/floor/wood, -/area/lawoffice) -"vzX" = ( -/obj/machinery/light/small, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "escape_dock_north_airlock"; - master_tag = "escape_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airlock_mech_sensor = "escape_dock_north_mech"; - tag_airpump = "escape_dock_north_pump"; - tag_chamber_sensor = "escape_dock_north_sensor"; - tag_exterior_door = "escape_dock_north_outer"; - tag_interior_door = "escape_dock_north_inner"; - tag_shuttle_mech_sensor = "shuttle_dock_north_mech" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "escape_dock_north_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"vQo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/evahallway) -"vRg" = ( -/obj/structure/table/reinforced, -/obj/item/hoist_kit, -/obj/item/weapon/ladder_mobile, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"vTd" = ( -/obj/machinery/alarm/cold{ - pixel_x = 0; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"wgA" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"wkQ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"wpg" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_dock_center_outer"; - locked = 1; - name = "Escape Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "escape_dock_center_airlock"; - name = "exterior access button"; - pixel_x = 4; - pixel_y = -26; - req_one_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"wum" = ( -/obj/machinery/optable{ - name = "Autopsy Table" - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/forensics_office) -"wyd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"wEG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"wHn" = ( -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"wIK" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "journalist" - }, -/obj/structure/window/reinforced/polarized{ - id = "journalist" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/journalistoffice) -"wJC" = ( +"xJl" = ( /obj/item/weapon/storage/briefcase/inflatable{ pixel_x = 3; pixel_y = 6 @@ -80328,81 +80413,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"wOS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "escape_dock_center_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"wPQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"xig" = ( -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) -"xlC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/template_noop, -/area/rnd/test_area) -"xnT" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "escape_dock_center_sensor"; - master_tag = "escape_dock_center_airlock"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"xxb" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"xEC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/medical/psych) -"xGw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"xLe" = ( +"xKk" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -80410,43 +80421,32 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 - }, +/obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"xNd" = ( -/obj/effect/floor_decal/corner/white{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; +"xQy" = ( +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"xQN" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "escape_dock_south_sensor"; - master_tag = "escape_dock_south_airlock"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"xWq" = ( +/turf/simulated/floor/reinforced/airless, +/area/rnd/test_area) +"xSj" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/detective, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/lino, /area/security/detectives_office) -"ykG" = ( -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) +"xUB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(4,68) + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"xXA" = ( +/turf/simulated/floor/lino, +/area/security/detectives_office) (1,1,1) = {" aaa @@ -87235,7 +87235,7 @@ awJ auW ayg azi -qRm +tAf aaf aaa aaa @@ -87749,7 +87749,7 @@ awL axs ayi azi -rRq +dSP aaf aaa aaa @@ -88005,7 +88005,7 @@ auW auW aua ayj -qxY +uQi auW aaf aaa @@ -88263,7 +88263,7 @@ awJ auW ayg azm -qRm +tAf aaf aaa aaa @@ -88777,7 +88777,7 @@ awL axs ayi azn -rRq +dSP aaf aaa aaa @@ -89032,8 +89032,8 @@ auW auW auW aua -xNd -xGw +onz +vmn auW aaf aaa @@ -89281,15 +89281,15 @@ aaa aaa aaa aaa -uat -uat -uat +rcZ +rcZ +rcZ aaa aaf aaf aaf auW -gCL +mYi azn auW aBj @@ -89537,17 +89537,17 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa aaf -qRm -gCL -kWv +tAf +mYi +iAl auW aua aaa @@ -89793,18 +89793,18 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaf aCi -gCL -jsB +mYi +rVi aAi aBk azh @@ -90050,17 +90050,17 @@ aac aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaf -rRq -tfi +dSP +vtL azn aAj awJ @@ -90307,17 +90307,17 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaf auW -nVD +smC azk aAi aBl @@ -90564,17 +90564,17 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaf -qRm -dXb +tAf +maN azl aAk aBm @@ -90591,7 +90591,7 @@ aPT aDx aTa aRw -rfc +vVT aYf aYf aYf @@ -90820,19 +90820,19 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaf aCi -wHn -cYs +tLg +iIX azj aBn aCi @@ -90848,7 +90848,7 @@ aPU aRw aSY aRw -rfc +vVT aYf aYf aYf @@ -91077,18 +91077,18 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaf -rRq -gCL +dSP +mYi azn azj aBo @@ -91105,7 +91105,7 @@ aPV aRw aTb aUV -hdW +oRl aYf aYf aYf @@ -91334,19 +91334,19 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaf auW -eDK -kWv +sDo +iAl aAl aBp aCi @@ -91361,8 +91361,8 @@ aOt aPW aRx aTc -hly -cWG +rry +oqh aYf aYf aYf @@ -91592,18 +91592,18 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -cOd -wyd -tQM +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +lVD +fYG +xxW ayl -jsB +rVi aAi aBl aCj @@ -91618,8 +91618,8 @@ aOu aGp aLf aTd -hly -cWG +rry +oqh aYf aYf aYf @@ -91849,16 +91849,16 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -mkb -oeQ -ldf +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +qWO +gJQ +uTU aym azn aAj @@ -91875,8 +91875,8 @@ aOr aPS aOr aTe -gPH -laq +gcI +sYO aYf aYf aYf @@ -92106,18 +92106,18 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -cOd -wyd +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +lVD +fYG axu ayn -jsB +rVi aAi aBq azh @@ -92132,12 +92132,12 @@ aOq aPX aLf aTf -hly +rry aWA aaf -rOE +oID bbB -dMV +iog aaf bgd aaf @@ -92363,17 +92363,17 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa auW -tOn +frP azr aAm aBr @@ -92389,13 +92389,13 @@ aaa aPY aRy aTg -hly +rry aBs aYg -psy +mXN bbC -ljM -evY +qNt +wOH bgd bhL aZJ @@ -92619,18 +92619,18 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa -qRm -wPQ +tAf +vut azn aAn aBs @@ -92646,12 +92646,12 @@ aBs aBs aRz aTe -hly +rry aBv aYh -kZB +tWU bbD -kZB +tWU beC bgd beC @@ -92876,18 +92876,18 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa aCi -wPQ +vut azn aAo aBt @@ -92906,7 +92906,7 @@ aTh aUW aWB aYi -qZR +vNf bbE bdg beD @@ -93134,16 +93134,16 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa -rRq +dSP ayo azs aAp @@ -93392,16 +93392,16 @@ aaa aac aaa aaa -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa auZ auW -tav +deF auW auW aBv @@ -93649,15 +93649,15 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa auZ -pmr +tCR ayp avO avT @@ -93906,15 +93906,15 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa auZ -pmr +tCR atA avO avO @@ -94163,11 +94163,11 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa auZ @@ -94420,11 +94420,11 @@ aaa aaa aaa aaa -uat -uat -uat -uat -uat +rcZ +rcZ +rcZ +rcZ +rcZ aaa aaa aaa @@ -99588,7 +99588,7 @@ aTB aTt aTt aYA -eUn +qKb bbR bdw bdw @@ -100097,11 +100097,11 @@ aJV aMX aNh aQo -uoD -uoD -uoD -uoD -uoD +hpJ +hpJ +hpJ +hpJ +hpJ bai bbT bdy @@ -100354,11 +100354,11 @@ aLt aMY aOJ aQl -wIK -aTL -iGX -oIR -uoD +rvF +aTD +pGQ +wLt +hpJ aTr aTr aTr @@ -100615,7 +100615,7 @@ aRJ aTE aVg aWQ -uoD +hpJ baj aWH aWH @@ -100858,10 +100858,10 @@ ayt azB aaa aBG -iSl +dte aCz aFu -spZ +iPv aBG aaa aLu @@ -100872,7 +100872,7 @@ aRK aTF aVh aWR -uoD +hpJ bak bbU bdz @@ -101125,11 +101125,11 @@ aLv aNa aOR aQl -iBJ +jnk aTG aVi aWS -tNs +ufR bal bbV bdA @@ -101382,11 +101382,11 @@ aLw aNb aOS aQl -uoD -uoD -uoD -uoD -uoD +hpJ +hpJ +hpJ +hpJ +hpJ bam bbW bdA @@ -102153,12 +102153,12 @@ aLu aMY aOU aQl -sQe -nuw +klG +ftj aVk aWT aVj -oQH +upr bbY bdA beV @@ -102410,12 +102410,12 @@ aLy aMY aOV aQp -pUF +nlG aTI aVl aWU -igs -nxA +oah +gMP bbY bdA beW @@ -102667,12 +102667,12 @@ aJV aNc aOU aQl -sQe -nQX +klG +qgh aVm aWV -dXT -nxA +tTM +gMP bbY bdA bdA @@ -102925,10 +102925,10 @@ aNd aOW aQt amF -iay +wjL aVn aWW -nuw +ftj baq bbY bdC @@ -103182,11 +103182,11 @@ aNe aOR aMQ amF -jUV -dYo -tao -mtq -sFb +mQL +mdy +oWF +sMl +eGm bbY bdD beY @@ -103439,7 +103439,7 @@ aNf aOR aMQ amF -reN +qDO aVo aWX aYB @@ -103695,11 +103695,11 @@ aLA aMQ aOR aMQ -sQo +mDx aTJ aVp aVs -dXT +tTM bas bbY bdD @@ -104210,11 +104210,11 @@ aNh aOY aQv aRQ -pnI +hVx aVr aWZ -mfF -eXE +uGm +bau bbY bdD bfb @@ -104467,11 +104467,11 @@ aNi aOZ aOZ amF -vvM -nuw +aTL +ftj aXa -nxA -nxA +gMP +gMP bcd bdF bfb @@ -104724,10 +104724,10 @@ aNj aPa aPa amF -mdI +dIl aVt aXb -hgd +grN baw amF aIG @@ -104980,7 +104980,7 @@ aIG aNk aLK aLK -xxb +qQp aLK aLK aLK @@ -105739,10 +105739,10 @@ atG axH ayC azI -kRS +ttF ayC aCE -utg +hII ayC aGN aIx @@ -106537,7 +106537,7 @@ bjH bls bmK boq -siD +hYn bsj bmK bvB @@ -106771,12 +106771,12 @@ azP azP azP azP -mzD +rIa azP azP aKh aLE -uMQ +qLv aPc aQx aRU @@ -107021,8 +107021,8 @@ auq avn awn atG -vQo -ivh +rCk +xeK azN aAG aAG @@ -107031,7 +107031,7 @@ aEd aBN aGP aGP -xig +uVY aLF aNq aPc @@ -107288,7 +107288,7 @@ aAH aAH aAH aAH -mrC +kOb aLG aNr aPc @@ -107539,11 +107539,11 @@ axH ayD azP aAF -jXL +eaP aCK -wJC +xJl azP -vRg +wqF ayC aKi aLH @@ -107800,12 +107800,12 @@ aBP ayC aEf aFC -mBU +lcx ayC aaa aLI -tyj -lLP +hmI +onC aQy aIC aTO @@ -108049,7 +108049,7 @@ auu avp awq atG -ixZ +haW ayC azJ azJ @@ -108314,10 +108314,10 @@ azJ ayC aEh azJ -esb +ngM ayC aKs -dsd +fUt aNu aPf aQx @@ -108566,15 +108566,15 @@ atG axH ayC azR -kyv +wWe aBR ayC -tWr +kDC aFD -gzn +vfP ayC aKm -qsd +som aLK aPg aQA @@ -108830,7 +108830,7 @@ arI arI arI aIC -jlZ +rOF aLK aLK aPc @@ -109083,7 +109083,7 @@ azS azS azS azS -lmZ +gsk aFE aGS aID @@ -109607,7 +109607,7 @@ aLK aPj aQx aRZ -ooy +tnI aVA aXh aYP @@ -109833,9 +109833,9 @@ ajR akv ali akH -dAw +ubu ano -iNc +qrg akH apE aqp @@ -110351,12 +110351,12 @@ amH anq anX aoS -fHp +duM aqr arc akH apc -skG +rio ath ath ath @@ -110607,8 +110607,8 @@ akH amI ama anr -sZZ -mtn +etT +xXA aqs ard akH @@ -110865,9 +110865,9 @@ amJ ans anY aoT -mtn +xXA aqt -sIU +uTs akH apR atd @@ -110889,7 +110889,7 @@ aII aaa aLO aPa -fvW +mOd aQD aIC aTO @@ -111115,17 +111115,17 @@ aib aiI ajr agG -knl +sps alm akH -iQd -suD +sxU +kOs anZ -mtn -fkF -xWq -laK -fJf +xXA +uCO +xSj +man +oeU apR atd ath @@ -111888,13 +111888,13 @@ aju agy akC aln -gLk +mtS amM -rjV +cTJ aoc aoW apJ -itk +dgo arg akG asr @@ -111969,8 +111969,8 @@ ckv clN cnk coo -rNw -rNw +cpA +cpA crN csR ctR @@ -112147,7 +112147,7 @@ akD alq amb amN -pkx +kFZ aod aoX apK @@ -112403,8 +112403,8 @@ agy akE alr amc -pNd -usl +nVE +ecf aoe aoY apH @@ -112660,14 +112660,14 @@ agy akF als amd -lFc -mts +szr +tRf aoc aoZ apL aqy arj -lTG +xUB asu ath atQ @@ -112922,7 +112922,7 @@ anv anv anv anv -oJd +vNO anv anv asu @@ -113176,11 +113176,11 @@ amP anw aoi anv -pbV -vfb -cZm +rnS +mHS +fEO aqz -tgo +jzv anv asv ath @@ -113436,7 +113436,7 @@ anv aoh aoh apM -nDA +kSF arl anv asw @@ -113691,9 +113691,9 @@ any aok anv aoh -hlr +qak apN -hyo +nUd aoh anv asx @@ -113945,12 +113945,12 @@ adz adz alu adz -sNn +pNK anv -vTd +idt aoh aoh -eUe +sQO arn anv asw @@ -114202,12 +114202,12 @@ adz adz adz adz -sNn +pNK anv -jTV -wum +sGz +uev aoh -eUe +sQO aro anv asw @@ -114274,7 +114274,7 @@ bPX caT ccn cdS -qlg +ljp cgA chV cjl @@ -114459,13 +114459,13 @@ adz adz adz adz -sNn +pNK anv -kum +fiJ aoh -pRu -gKc -khI +qlZ +uDW +eeJ anv asy atj @@ -114722,7 +114722,7 @@ aoh aoh aoh aoh -fxK +hGw anv asz apR @@ -114731,7 +114731,7 @@ auL avE avE axl -sGi +dgE ayU aAa aAX @@ -114788,7 +114788,7 @@ bRj caV ccn cdU -qlg +ljp cgA chX cjm @@ -114975,11 +114975,11 @@ aaZ aaZ aom anv -gZa -oxF -rjk +diY +rGs +wnI aoh -gYR +mqE anv asz apR @@ -115245,7 +115245,7 @@ auM auM auM axm -sGi +dgE ayU aAa aAZ @@ -115488,8 +115488,8 @@ aaf aaf aaZ aon -djf -djf +dfF +dfF apb apQ atK @@ -115502,9 +115502,9 @@ auO auM auN axm -sGi +dgE ayU -pwK +gDY aBa atp aCX @@ -115588,7 +115588,7 @@ aaf aaf aaf aaf -pXr +mYm cIL cJc cJy @@ -115759,7 +115759,7 @@ auM auM auM axm -sGi +dgE ayW aAb aBb @@ -115829,7 +115829,7 @@ cnv crW cnx ctX -pmG +gny cwe cxb cyb @@ -116003,7 +116003,7 @@ aaa aaa aaa aaf -fWA +jIA apd apc aqC @@ -116016,7 +116016,7 @@ auM auM auM axm -sGi +dgE ayX aAc aBc @@ -116273,7 +116273,7 @@ auM auM auM axm -sGi +dgE ayY atp azb @@ -116529,8 +116529,8 @@ atp auR auR auR -sCI -sGi +riL +dgE ayZ aAd aBd @@ -116786,8 +116786,8 @@ atp auS avG avG -sGi -sGi +dgE +dgE aza atp aBe @@ -117282,17 +117282,17 @@ aaa aaa aaa aaa -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy aaa aaf atq @@ -117321,7 +117321,7 @@ aUi aVQ aXv aXv -grg +uns aSl bdY aZl @@ -117539,17 +117539,17 @@ aaa aaa aaa aaa -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy aaa aaa atr @@ -117796,17 +117796,17 @@ aaa aaa aaa aaa -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy aaa aaa atr @@ -118053,17 +118053,17 @@ aaa aaa aaa aaa -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy aaa aaf atr @@ -118310,17 +118310,17 @@ aaa aaa aaa aaa -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy aaa aaf atr @@ -118567,17 +118567,17 @@ aaa aaa aaa aaa -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy aaa aaf ats @@ -118632,7 +118632,7 @@ bKb bDT bFM bHk -fhn +giP bHa bID bZX @@ -118824,17 +118824,17 @@ aaa aaa aaa aaa -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM -dhM +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy +nYy aaa aaf atr @@ -118889,8 +118889,8 @@ bKc bDT bFN bHl -jIm -sAF +pvG +lfG ccv bZX bKT @@ -119146,7 +119146,7 @@ bKd bDT bFO cfw -fok +dmT bHa bIF bZX @@ -119402,8 +119402,8 @@ bDT bDT bDT bHa -xEC -gsd +vdm +lXF bHa bHa bZX @@ -119677,7 +119677,7 @@ cab cab cgl cmi -scH +gmS cmi cmi cmi @@ -120424,7 +120424,7 @@ bzm bAZ bwl bun -wEG +kdW bEu bwK bZX @@ -124300,9 +124300,9 @@ cew cew cew cew -lVI -pfi -del +hBw +tlV +rCR cez coD cpN @@ -124557,9 +124557,9 @@ cew cfF cgZ cio -siB -mhz -gaJ +uQL +cZZ +mFv cez coE cpO @@ -124811,12 +124811,12 @@ bNi cbt ccN cew -trC -olR -lxb -qvD -mhz -lwk +xmq +hKn +vEP +rhj +cZZ +wHi cez coF cpN @@ -125068,8 +125068,8 @@ bwz cbu ccO cew -oXe -fKn +gFr +oVc cip cjD ckX @@ -125326,8 +125326,8 @@ cbv ccP cex cfG -ksk -ugh +idQ +eqn cjE ckX cms @@ -125589,7 +125589,7 @@ cjF ckX cmt cez -eHz +rKj cpR cre cpR @@ -125804,7 +125804,7 @@ aXO aZu aQY bcR -gOr +oMl aZl bhx biM @@ -126632,7 +126632,7 @@ cAh cBf cCl cpN -trQ +pmM cpN cez aaa @@ -127112,10 +127112,10 @@ bJa bKz bwz bwz -ltg +qHv bQj bRJ -ltg +qHv bwz bVR bXv @@ -127390,9 +127390,9 @@ cmy ceD aai cez -uDR -nyS -pYB +kIW +ump +rlz cez cvy cwz @@ -128667,7 +128667,7 @@ cbE cda ceD cfO -iDs +oDu ciy cjP chk @@ -128883,7 +128883,7 @@ aaa aRm aSM aUK -fki +kGx aXX aUN aUN @@ -128924,7 +128924,7 @@ cbF cdb ceD cfP -nBV +sck ciz cjQ chk @@ -129143,11 +129143,11 @@ aUL aWq aXY aZC -fNI +iji aZC aZC aZC -quH +pBD bjh bkG bme @@ -129395,17 +129395,17 @@ aaa aaa aaa aRm -uIt +cTe aUM -dUJ -imv -eTn +jCm +tdA +jIh aWr bdc aUN aUN bji -gOd +kIP bkH aRm bnP @@ -129653,20 +129653,20 @@ aaa aaa aRn aSO -lhf -jbl +xyg +sxz aUN -iOT +oav aZD -eNr +vya aZD aZD aZD -hkT +qfY bkI bmf bnO -gZP +nmk brv bnP bnP @@ -129915,17 +129915,17 @@ aWs aYa aYa bby -lhf +xyg bez aYa aYa -lwC +uxP bkJ -gVu -hXt -giZ +cVN +kIZ +sLL brv -gVu +cVN aaa aaa aaa @@ -130172,15 +130172,15 @@ aWt aYb aZF aSN -lhf +xyg beA bfX aYb bjj bkK aWu -sSh -vhS +pEZ +rGb brv aWu aaa @@ -130424,20 +130424,20 @@ aaa aaa aaa aWu -vzX +oTt aZG bbA -tmV -tOm -rGn -tOm -eSj +xKk +iPM +vkz +iPM +vYI bbA bfY -kVs +gNa aWu -rUH -lHc +qXT +mQu brv aWu aaa @@ -130681,22 +130681,22 @@ aaa aaa aaa aWu -eFO +jVp aWu aaa -hRk -hsp -wOS -xnT -hRk +dVX +xep +fpq +uts +dVX aaa aWu -xQN +oBS aZG -xLe -xLe -xLe -cPH +fPz +fPz +fPz +gWz aaa aaa aaa @@ -130938,17 +130938,17 @@ aaa aaa aaa aWv -fny +qQV aZH aaa -dAQ -wkQ -wkQ -wpg -dAQ +qPh +ecA +ecA +mLL +qPh aaa aZH -kTe +rqW aWv aaa aHT @@ -132257,7 +132257,7 @@ aaf aaf aaf aaf -uaO +paZ aaf aaf aaa @@ -132514,12 +132514,12 @@ aaf aaa aaf aaa -upt -xlC -xlC -xlC -xlC -xlC +dDo +tnN +tnN +tnN +tnN +tnN ceP aaa aaf @@ -132771,7 +132771,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -133028,7 +133028,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -133285,7 +133285,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -133542,7 +133542,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -133799,7 +133799,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -134056,18 +134056,18 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa aaf bKN -ubu +ebl bKN aaa aaa aaa -iUl +uOX aaa aaa aaa @@ -134313,7 +134313,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -134570,7 +134570,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -134827,7 +134827,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -135084,7 +135084,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -135341,7 +135341,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -135598,7 +135598,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -135855,7 +135855,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -136112,7 +136112,7 @@ aaf aaf aaf aaf -tTR +krk aaf aaf aaf @@ -136369,7 +136369,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -136626,7 +136626,7 @@ aaf aaa aaf aaa -tTR +krk aaa aaf aaa @@ -136880,13 +136880,13 @@ bMl bNv bPe bKO -tES -wgA -lSG +efB +oHv +rfE bWi -tES -wgA -lSG +efB +oHv +rfE bKO bPe bNv @@ -137137,13 +137137,13 @@ bMm bMm bKO bKO -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV bKO bKO bMm @@ -137393,15 +137393,15 @@ bKL bMn bMm bNv -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV bNv bMm cga @@ -137650,15 +137650,15 @@ bKM bNw bKO bKO -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV bKO bKO bNw @@ -137907,15 +137907,15 @@ bKN bKO bKO bKO -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV bKO bKO bKO @@ -138163,17 +138163,17 @@ aaa bKO bKO bKO -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV bKO bKO bKO @@ -138420,18 +138420,18 @@ aaa bKO bKO bMo -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -maV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +sMU bKO bKO aaa @@ -138676,19 +138676,19 @@ aaa aaa bKO bKO -ykG -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -hJH +kzf +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +xQy bKO bKO aaa @@ -138934,17 +138934,17 @@ aaf bKO bKO bNx -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV bWj -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV ceU bKO bKO @@ -139190,19 +139190,19 @@ aaa aaf bKO bKO -ykG -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -hJH +kzf +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +xQy bKO bKO aaf @@ -139448,18 +139448,18 @@ aaf bKP bKO bMo -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -maV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +sMU bKO bKP aaf @@ -139705,17 +139705,17 @@ aaf aaq bKO bKO -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV bKO bKO aaq @@ -139963,15 +139963,15 @@ aaf aaq bKO bKO -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV +gwV bKO bKO aaq @@ -140221,13 +140221,13 @@ aaf aaq bKO bKO -pzX -pzX -pzX -pzX -pzX -pzX -pzX +gwV +gwV +gwV +gwV +gwV +gwV +gwV bKO bKO aaq @@ -140479,11 +140479,11 @@ aaf aaq bKO bKO -kGb -rXf +wAz +ssm bWl -rXf -kGb +ssm +wAz bKO bKO aaq diff --git a/maps/exodus/exodus-2_centcomm.dmm b/maps/exodus/exodus-2_centcomm.dmm index 361dddee9e7..cd4916a4478 100644 --- a/maps/exodus/exodus-2_centcomm.dmm +++ b/maps/exodus/exodus-2_centcomm.dmm @@ -6404,24 +6404,6 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"aro" = ( -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"arp" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/retro/equipped, -/obj/item/weapon/rig/retro/equipped, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/item/clothing/accessory/legion/specialist, -/obj/item/clothing/accessory/legion/specialist, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "arw" = ( /obj/machinery/conveyor{ dir = 4; @@ -7816,7 +7798,7 @@ }, /area/centcom/living) "awN" = ( -/obj/structure/sign/bluecross{ +/obj/structure/sign/greencross{ pixel_y = -32 }, /turf/unsimulated/floor{ @@ -10152,9 +10134,6 @@ icon_state = "wood" }, /area/centcom/holding) -"aDO" = ( -/turf/unsimulated/floor, -/area/space) "aDQ" = ( /turf/unsimulated/floor{ icon_state = "white" @@ -10316,6 +10295,26 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) +"aEz" = ( +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "CentComArrivalsForeDrAft"; + name = "aft bolt control"; + pixel_x = 31; + pixel_y = -5; + req_access = list(101); + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "CentComArrivalsCommand"; + name = "Command Blastdoors"; + pixel_x = 31; + pixel_y = 5 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) "aEB" = ( /obj/structure/bed/chair{ dir = 4 @@ -11637,9 +11636,6 @@ /obj/effect/overlay/coconut, /turf/unsimulated/beach/sand, /area/beach) -"aIJ" = ( -/turf/simulated/floor/wood, -/area/centcom/legion) "aIK" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -14042,7 +14038,7 @@ }, /area/centcom/control) "aOM" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/unsimulated/wall/riveted, /area/centcom/holding) "aON" = ( @@ -17855,7 +17851,7 @@ }, /area/centcom/holding) "aWZ" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/unsimulated/wall/riveted, /area/centcom/spawning) "aXa" = ( @@ -19142,13 +19138,6 @@ dir = 1 }, /area/centcom/spawning) -"bax" = ( -/obj/effect/landmark{ - name = "Tau Ceti Legion" - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "baE" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposaloutlet, @@ -19157,53 +19146,14 @@ dir = 8 }, /area/tdome/tdomeobserve) -"bdf" = ( -/obj/machinery/light{ - dir = 8 +"bbx" = ( +/obj/machinery/door/airlock/external{ + locked = 1; + req_access = list(110); + welded = 1 }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"bdg" = ( -/obj/structure/cult/tome, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"bee" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4; - name = "shuttle bay blast door" - }, -/area/centcom/legion) -"beq" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/shuttle/escape/centcom) -"beT" = ( -/obj/structure/table/steel, -/obj/machinery/chemical_dispenser/coffee/full, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) -"beY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) +/turf/simulated/floor/tiled, +/area/merchant_station) "bfx" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -19216,13 +19166,10 @@ dir = 5 }, /area/tdome/tdomeadmin) -"bgj" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) +"bfF" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "bgK" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 @@ -19232,40 +19179,89 @@ dir = 8 }, /area/centcom/holding) -"bhP" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"bjo" = ( -/obj/machinery/light{ - dir = 4; - status = 2 - }, -/turf/simulated/floor/tiled/ramp, -/area/shuttle/escape/centcom) -"bkH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"bwQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +"bhh" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; dir = 1 }, -/turf/simulated/shuttle/floor, +/turf/unsimulated/floor{ + icon_state = "carpet"; + dir = 2 + }, +/area/centcom/shared_dream) +"bib" = ( +/obj/structure/bed/chair/office/bridge{ + icon_state = "bridge"; + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor4" + }, /area/shuttle/escape/centcom) +"blT" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"bnM" = ( +/obj/machinery/door/blast/odin{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "CentComArrivalsAftMid"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"brP" = ( +/obj/effect/landmark{ + name = "TCFLCommander" + }, +/turf/simulated/floor/carpet/blue, +/area/centcom/legion) +"bwJ" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet/blue, +/area/centcom/legion) "bxw" = ( /turf/unsimulated/wall/riveted, /area/tdome) -"bzx" = ( +"byo" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10; + icon_state = "intact" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "legion_shuttle"; + pixel_y = 32; + tag_airpump = "legion_shuttle_vent"; + tag_chamber_sensor = "legion_shuttle_sensor"; + tag_exterior_door = "legion_shuttle_lock"; + tag_interior_door = "legion_shuttle_interior" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) +"bzY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"bBg" = ( +/obj/machinery/light/small, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"bBP" = ( /obj/machinery/vending/engivend, /turf/simulated/floor/tiled/dark, /area/centcom/legion) @@ -19281,21 +19277,16 @@ dir = 2 }, /area/centcom/spawning) -"bFv" = ( -/obj/effect/landmark{ - name = "skrell_entry" +"bIF" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) -"bFS" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = 4 - }, -/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"bIX" = ( +/obj/machinery/pipedispenser/disposal/orderable, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/centcom/legion) "bJH" = ( @@ -19311,124 +19302,131 @@ dir = 4 }, /area/tdome) -"bLG" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "shuttle bay blast door" +"bOT" = ( +/obj/machinery/door/airlock/external{ + frequency = 1331; + id_tag = "legion_shuttle_lock" }, -/area/centcom/legion) -"bPK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) +"bSv" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" }, /turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"bRw" = ( -/obj/machinery/iv_drip, +/area/shuttle/legion/centcom) +"bUL" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/reagent_containers/glass/beaker/large, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"bSA" = ( -/obj/effect/decal{ - desc = "A standard newsfeed handler for use on commercial space stations. All the news you absolutely have no use for, in one place!"; - icon = 'icons/obj/terminals.dmi'; - icon_state = "newscaster_normal"; - name = "newscaster"; - pixel_x = -28; - pixel_y = 0 +"bXa" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"bSG" = ( -/obj/machinery/vending/tool, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"bUA" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"bWu" = ( -/obj/machinery/computer/records/security, /obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"bXb" = ( -/obj/machinery/light/spot, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"bXT" = ( -/turf/unsimulated/wall/fakeglass{ - dir = 4; - icon_state = "fakewindows" - }, -/area/centcom/shared_dream) -"caO" = ( -/obj/machinery/computer/shuttle_control/legion, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"caR" = ( -/obj/effect/floor_decal/industrial/warning{ + icon_state = "rwindow"; dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) "cce" = ( /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) +"ccP" = ( +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/door/blast/odin{ + id = "tcfl" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"cdG" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/landmark{ + name = "skrell_entry" + }, +/turf/unsimulated/floor{ + icon_state = "carpet"; + dir = 2 + }, +/area/centcom/shared_dream) "ceH" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ icon_state = "floor" }, /area/tdome) -"chs" = ( -/obj/structure/closet/walllocker/emerglocker/south, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) +"cgB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/merchant_station) "chv" = ( /turf/unsimulated/floor{ icon_state = "floor" }, /area/tdome) -"cku" = ( +"ciO" = ( +/obj/structure/window/reinforced/crescent, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/porta_turret/crescent, +/obj/machinery/light/spot{ + icon_state = "tube1"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"cjq" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/landmark{ + name = "skrell_entry" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"com" = ( +/obj/machinery/pipedispenser/orderable, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"cqI" = ( +/turf/unsimulated/wall/fakepdoor{ + dir = 1; + name = "shuttle bay blast door" + }, +/area/space) +"crG" = ( /obj/machinery/door/airlock/centcom{ - icon_state = "door_locked"; - id_tag = "CentComArrivalsAftDrAft"; - locked = 1; - name = "Aft Checkpoint"; + name = "Fore Checkpoint"; opacity = 1; req_access = list(101) }, @@ -19436,41 +19434,6 @@ icon_state = "floor" }, /area/centcom/holding) -"cmm" = ( -/obj/structure/lattice, -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/template_noop, -/area/template_noop) -"csz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) -"ctZ" = ( -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/item/taperoll/engineering, -/obj/item/clothing/glasses/welding/superior, -/obj/item/clothing/glasses/welding/superior, -/obj/item/clothing/glasses/welding/superior, -/obj/item/clothing/glasses/welding/superior, -/obj/item/clothing/glasses/welding/superior, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "cuW" = ( /obj/structure/bed/chair{ dir = 1 @@ -19491,18 +19454,17 @@ dir = 5 }, /area/tdome/tdomeadmin) -"cAT" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/unsimulated/floor{ - icon_state = "floor" +"cGa" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) }, -/area/centcom/ferry) -"cDv" = ( -/obj/machinery/vending/assist, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) "cGJ" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Departures"; @@ -19518,82 +19480,38 @@ icon_state = "redfull" }, /area/centcom/holding) -"cII" = ( -/obj/machinery/door/blast/odin{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "CentComArrivalsForeInt"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"cJR" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/rifle, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/window/southright, -/obj/item/weapon/storage/box/teargas, -/obj/item/clothing/mask/gas/tactical, -/obj/machinery/light/spot{ - icon_state = "tube1"; - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"cLT" = ( -/obj/machinery/light/spot{ - icon_state = "tube1"; - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"cMG" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/blaster/carbine, -/obj/item/weapon/gun/energy/blaster/carbine, -/obj/item/weapon/gun/energy/blaster/carbine, -/obj/effect/floor_decal/industrial/outline/blue, +"cIO" = ( +/obj/item/mecha_parts/mecha_equipment/teleporter, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"cOT" = ( -/turf/simulated/floor/tiled/dark, -/turf/simulated/shuttle/wall/dark{ - icon_state = "diagonalWall3" - }, -/area/shuttle/legion/centcom) -"cQi" = ( -/obj/structure/flora/pottedplant/random, +"cNv" = ( +/obj/effect/floor_decal/corner/grey/diagonal, /turf/unsimulated/floor{ - icon_state = "wood" + icon_state = "white" }, /area/centcom/shared_dream) -"cUY" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1331; - master_tag = "legion_shuttle"; - pixel_x = 0; - pixel_y = 32 +"cRK" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + id_tag = "CentComArrivalsForeDrAft"; + locked = 1; + name = "Fore Checkpoint"; + opacity = 1; + req_access = list(101) }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" +/turf/unsimulated/floor{ + icon_state = "floor" }, -/area/shuttle/legion/centcom) +/area/centcom/holding) +"cXm" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/template_noop, +/area/template_noop) "daC" = ( /turf/unsimulated/floor{ icon_state = "green"; @@ -19614,6 +19532,10 @@ dir = 5 }, /area/tdome) +"dem" = ( +/obj/mecha/combat/tank/jotun, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "der" = ( /obj/machinery/door/airlock/centcom{ name = "Thunderdome"; @@ -19629,40 +19551,28 @@ icon_state = "floor" }, /area/tdome) -"dfm" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/rifle, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; +"dgf" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 4 +/obj/structure/banner, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" }, -/obj/machinery/door/window/northright{ - req_access = list(101) +/area/shuttle/escape/centcom) +"dgH" = ( +/obj/structure/sign/poster, +/turf/simulated/wall/wood, +/area/centcom/shared_dream) +"dhL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Medical Preparation"; + req_access = list(111) }, -/obj/item/weapon/storage/box/teargas, -/obj/item/clothing/mask/gas/tactical, -/obj/machinery/light/spot, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"dfJ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_dock_airlock"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13) - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/centcom/holding) +/obj/machinery/door/blast/odin/shuttle/tcfl, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "dir" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/ywflowers, @@ -19676,32 +19586,15 @@ name = "grass" }, /area/centcom/spawning) -"dlm" = ( -/obj/structure/bed/chair{ - dir = 8 +"dix" = ( +/obj/effect/landmark{ + name = "skrell_entry" }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 +/obj/structure/bed/chair/comfy/black, +/turf/unsimulated/floor{ + icon_state = "grimy" }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"dnb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/merchant_station) +/area/centcom/shared_dream) "dpG" = ( /obj/machinery/status_display/arrivals_display{ pixel_y = -32 @@ -19710,6 +19603,19 @@ icon_state = "blue" }, /area/centcom/spawning) +"dpR" = ( +/turf/unsimulated/wall/fakepdoor{ + dir = 4; + name = "shuttle bay blast door" + }, +/area/centcom/legion) +"dqN" = ( +/obj/machinery/door/blast/odin{ + id = "tcfl"; + name = "Heavy Support" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "dwT" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -19719,85 +19625,32 @@ icon_state = "dark" }, /area/tdome/tdome2) -"dxQ" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, +"dzJ" = ( +/obj/machinery/computer/shuttle_control/legion, /turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"dAj" = ( -/obj/item/mecha_parts/mecha_equipment/tool/extinguisher, -/obj/item/mecha_parts/mecha_equipment/tool/rfd_c, -/obj/item/weapon/pickaxe/diamonddrill, -/obj/structure/table/reinforced/steel, -/obj/item/weapon/pickaxe/diamonddrill, -/obj/item/weapon/pickaxe/diamonddrill, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 + icon_state = "floor7" }, +/area/shuttle/legion/centcom) +"dAB" = ( +/obj/structure/lattice, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/template_noop, +/area/template_noop) +"dDS" = ( +/obj/structure/table/rack, +/obj/item/weapon/shield/riot/tact, +/obj/item/weapon/shield/riot/tact, +/obj/item/weapon/shield/riot/tact, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"dAp" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" +"dIO" = ( +/obj/effect/landmark{ + name = "Tau Ceti Legion" }, -/obj/item/clothing/accessory/legion, -/obj/item/clothing/head/legion_beret, -/obj/item/clothing/under/legion, -/obj/item/device/radio/headset/legion, -/obj/item/weapon/shield/energy/legion, -/obj/item/weapon/storage/backpack/legion, -/obj/item/weapon/gun/projectile/revolver, -/obj/item/ammo_magazine/a357, -/obj/item/ammo_magazine/a357, -/obj/item/ammo_magazine/a357, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/handcuffs, -/obj/item/weapon/handcuffs, -/obj/item/weapon/storage/belt/security/tactical, -/obj/item/device/flash, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/clothing/accessory/holster/hip, -/turf/simulated/floor/wood, -/area/centcom/legion) -"dAY" = ( -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 1 - }, -/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"dBx" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor4" - }, -/area/shuttle/escape/centcom) -"dFe" = ( -/obj/machinery/door/blast/odin{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "CentComArrivalsAftMid"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) "dJI" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, @@ -19807,6 +19660,12 @@ icon_state = "redfull" }, /area/centcom/holding) +"dLF" = ( +/turf/unsimulated/wall/fakeglass{ + dir = 8; + icon_state = "fakewindows" + }, +/area/centcom/shared_dream) "dPI" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -19822,14 +19681,15 @@ dir = 4 }, /area/centcom/spawning) -"dQW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/ghostspawpoint{ - identifier = "OdinCheckpoint"; - name = "igs - OdinCheckpoint" +"dRO" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/turf/unsimulated/floor{ + icon_state = "white" }, +/area/centcom/shared_dream) +"dVB" = ( +/obj/structure/flora/pottedplant/random, /turf/unsimulated/floor{ icon_state = "floor" }, @@ -19843,70 +19703,26 @@ icon_state = "dark" }, /area/centcom/holding) -"dXP" = ( -/turf/simulated/floor/beach/water/ocean, -/area/centcom/shared_dream) -"dXV" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1331; - master_tag = "legion_shuttle" - }, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/legion/centcom) -"eaE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northright{ - req_access = list(101) - }, -/obj/machinery/door/blast/odin{ - dir = 1; - id = "CentComArrivalsAftChkpt"; - name = "Security Doors" +"dZk" = ( +/obj/machinery/light{ + dir = 4; + status = 0 }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"efa" = ( +/obj/structure/cult/tome, /turf/unsimulated/floor{ - icon_state = "floor" + icon_state = "wood" }, -/area/centcom/holding) -"ebU" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/ferry) -"ecp" = ( -/obj/machinery/pipedispenser/orderable, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"efi" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = null; - locked = 1; - name = "Ship External Access"; - req_access = list(110); - welded = 1 - }, -/turf/simulated/floor/tiled, -/area/merchant_ship/start) +/area/centcom/shared_dream) "efu" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/simulated/floor, /area/tdome) -"egw" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Shuttle Brig"; - req_access = list(2) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/escape/centcom) -"egS" = ( -/obj/structure/filingcabinet/chestdrawer, +"egp" = ( +/obj/structure/table/wood, +/obj/machinery/computer/records/employment, /turf/unsimulated/floor{ icon_state = "floor" }, @@ -19942,16 +19758,6 @@ dir = 8 }, /area/tdome/tdomeobserve) -"emO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) "enA" = ( /obj/structure/closet/crate, /obj/item/target, @@ -19971,25 +19777,6 @@ dir = 8 }, /area/centcom/holding) -"enF" = ( -/obj/structure/window/reinforced/crescent, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/porta_turret/crescent, -/obj/machinery/light/spot{ - icon_state = "tube1"; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) "epm" = ( /obj/structure/flora/pottedplant/random{ anchored = 1 @@ -20017,7 +19804,460 @@ icon_state = "floor" }, /area/centcom/spawning) -"erK" = ( +"evz" = ( +/obj/machinery/door/airlock/centcom{ + name = "Aft Checkpoint"; + opacity = 1; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"ewQ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 4 + }, +/area/centcom/spawning) +"exF" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Supplies"; + req_access = list(111) + }, +/obj/machinery/door/blast/odin/shuttle/tcfl, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"eAC" = ( +/obj/vehicle/droppod, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"eFI" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"eGH" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"eLT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) +"eNH" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + icon_state = "carpet"; + dir = 2 + }, +/area/centcom/shared_dream) +"eQm" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"eRv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + status = 0 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"eRL" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/retro/equipped, +/obj/item/weapon/rig/retro/equipped, +/obj/item/weapon/rig/retro/equipped, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"eSs" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration"; + req_access = list(102) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/tdome) +"eWk" = ( +/obj/structure/banner, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"eWW" = ( +/obj/machinery/door/airlock/centcom{ + name = "Traditional Vaurcesian Cuisine"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/spawning) +"eXK" = ( +/obj/machinery/light/spot, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"eYC" = ( +/obj/machinery/light, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/holding) +"faq" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet/blue, +/area/centcom/legion) +"faL" = ( +/turf/simulated/floor/tiled/dark, +/turf/simulated/shuttle/wall/dark{ + dir = 8; + icon_state = "diagonalWall3" + }, +/area/shuttle/legion/centcom) +"faW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/tdome) +"fcK" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8; + icon_state = "loadingarea" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"fde" = ( +/obj/machinery/door/airlock/centcom{ + name = "IAC Regional Outpost A23"; + opacity = 1; + req_access = list(109) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/spawning) +"fdg" = ( +/obj/structure/table/rack, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"fdN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northright{ + req_access = list(101) + }, +/obj/machinery/door/blast/odin{ + dir = 1; + id = "CentComArrivalsAftChkpt"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"fgc" = ( +/obj/structure/bed/chair/office/bridge{ + icon_state = "bridge"; + dir = 8 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"fnJ" = ( +/turf/unsimulated/wall/fakepdoor{ + dir = 1; + name = "shuttle bay blast door" + }, +/area/centcom/legion) +"fok" = ( +/obj/machinery/computer/records/security, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"fpt" = ( +/obj/machinery/door/airlock/centcom{ + name = "Hangar"; + req_access = list(111) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"fqX" = ( +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"frj" = ( +/obj/item/weapon/mop, +/obj/structure/mopbucket, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 1 + }, +/area/centcom/legion) +"fty" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "carpet"; + dir = 2 + }, +/area/centcom/shared_dream) +"fut" = ( +/obj/structure/closet/secure_closet/security{ + name = "officer's locker"; + req_access = list(103) + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/under/rank/centcom_officer, +/obj/item/clothing/shoes/white, +/obj/item/clothing/gloves/white, +/obj/item/clothing/glasses/sunglasses/sechud, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/holster/hip, +/obj/item/device/radio/headset/ert, +/obj/item/clothing/head/beret/centcom/officer, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 10 + }, +/area/centcom/spawning) +"fxt" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(5) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"fxP" = ( +/obj/machinery/door/airlock/glass{ + name = "Emergency Supplies" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor2" + }, +/area/shuttle/escape/centcom) +"fCn" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/shuttle/floor{ + icon_state = "floor2" + }, +/area/shuttle/escape/centcom) +"fGm" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"fJg" = ( +/turf/unsimulated/floor{ + icon_state = "bluecorner" + }, +/area/centcom/spawning) +"fLN" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"fOm" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + icon_state = "door_open"; + id_tag = "odin_stall2"; + name = "Restroom" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/centcom/spawning) +"fQl" = ( +/obj/item/mecha_parts/mecha_equipment/tool/sleeper, +/obj/item/mecha_parts/mecha_equipment/tool/sleeper, +/obj/item/mecha_parts/mecha_equipment/tool/syringe_gun, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"fRC" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "redfull" + }, +/area/centcom/spawning) +"fYh" = ( +/obj/machinery/igniter, +/obj/structure/banner, +/turf/simulated/floor, +/area/tdome) +"fYP" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/aicard, +/obj/item/weapon/pinpointer/advpinpointer, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"gaa" = ( +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/weapon/rfd/construction, +/obj/item/weapon/rfd/construction, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd/construction, +/obj/item/weapon/rfd/construction, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/item/weapon/rfd_ammo, +/obj/structure/table/reinforced/steel, +/obj/machinery/light{ + dir = 4; + status = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"gaf" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_shuttle"; + pixel_x = -25; + pixel_y = 0; + req_one_access = list(13); + tag_door = "escape_shuttle_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"gcm" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/electrical, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"geX" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/storage/box/trackimp, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/obj/item/clothing/accessory/legion, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"gfM" = ( +/obj/structure/table/rack, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"ggL" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/gauss/emp, +/obj/item/ammo_magazine/gauss/emp, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/weapon/gun/projectile/gauss, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 2; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"ghA" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ id = "CentComArrivalsAftInt"; @@ -20052,413 +20292,6 @@ icon_state = "floor" }, /area/centcom/holding) -"esL" = ( -/obj/machinery/light/small, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"euK" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/legion/centcom) -"evd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright, -/obj/machinery/door/blast/odin{ - dir = 1; - id = "CentComArrivalsForeChkpt"; - name = "Security Doors" - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"ewQ" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 4 - }, -/area/centcom/spawning) -"eEo" = ( -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/template_noop) -"eEU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"eFI" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "thunderdomehea"; - name = "Heavy Supply" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/tdome) -"eGj" = ( -/turf/simulated/wall/wood, -/area/centcom/shared_dream) -"eIo" = ( -/obj/structure/sign/poster, -/turf/simulated/wall/wood, -/area/centcom/shared_dream) -"eIK" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"eLO" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/aicard, -/obj/item/weapon/pinpointer/advpinpointer, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"eNX" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"eQm" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"eQF" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/shuttle/escape/centcom) -"eSs" = ( -/obj/machinery/door/airlock/command{ - name = "Thunderdome Administration"; - req_access = list(102) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/tdome) -"eWW" = ( -/obj/machinery/door/airlock/centcom{ - name = "Traditional Vaurcesian Cuisine"; - opacity = 1 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/spawning) -"eXd" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/machinery/door/blast/odin{ - dir = 1; - id = "CentComArrivalsForeChkpt"; - name = "Security Doors" - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"eYC" = ( -/obj/machinery/light, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/holding) -"fap" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) -"faA" = ( -/obj/machinery/door/airlock/centcom{ - name = "Fore Checkpoint"; - opacity = 1; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"faW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/tdome) -"fbL" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"fbV" = ( -/obj/machinery/door/airlock/centcom{ - name = "Aft Checkpoint"; - opacity = 1; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"fde" = ( -/obj/machinery/door/airlock/centcom{ - name = "IAC Regional Outpost A23"; - opacity = 1; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/spawning) -"ffV" = ( -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "CentComArrivalsForeDrAft"; - name = "aft bolt control"; - pixel_x = 31; - pixel_y = -5; - req_access = list(101); - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "CentComArrivalsCommand"; - name = "Command Blastdoors"; - pixel_x = 31; - pixel_y = 5 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"fsV" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"fut" = ( -/obj/structure/closet/secure_closet/security{ - name = "officer's locker"; - req_access = list(103) - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/under/rank/centcom_officer, -/obj/item/clothing/shoes/white, -/obj/item/clothing/gloves/white, -/obj/item/clothing/glasses/sunglasses/sechud, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/holster/hip, -/obj/item/device/radio/headset/ert, -/obj/item/clothing/head/beret/centcom/officer, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 10 - }, -/area/centcom/spawning) -"fEe" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/weapon/gun/energy/blaster, -/obj/item/weapon/gun/energy/blaster, -/obj/item/weapon/gun/energy/blaster, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 2; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"fGm" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"fHx" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"fIj" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/rifle, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/window/northleft{ - req_access = list(101) - }, -/obj/item/weapon/storage/box/teargas, -/obj/item/clothing/mask/gas/tactical, -/obj/machinery/light/spot, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"fJg" = ( -/turf/unsimulated/floor{ - icon_state = "bluecorner" - }, -/area/centcom/spawning) -"fLi" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l" - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/shuttle/escape/centcom) -"fMH" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cmdt Office"; - req_access = list(108,109) - }, -/obj/machinery/door/blast/odin{ - id = "tcfl-c"; - name = "Cmdt Office" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"fOm" = ( -/obj/machinery/door/airlock/medical{ - autoclose = 0; - icon_state = "door_open"; - id_tag = "odin_stall2"; - name = "Restroom" - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/centcom/spawning) -"fRC" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "redfull" - }, -/area/centcom/spawning) -"fXt" = ( -/obj/machinery/door/blast/odin{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "CentComArrivalsAftExt"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"fXF" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"fYh" = ( -/obj/machinery/igniter, -/obj/structure/banner, -/turf/simulated/floor, -/area/tdome) -"fYS" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) -"gak" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/shuttle/escape/centcom) -"gaO" = ( -/obj/structure/table/reinforced, -/obj/item/device/megaphone, -/obj/item/weapon/storage/box/trackimp, -/obj/item/weapon/storage/box/cdeathalarm_kit, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 32 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 1 - }, -/obj/item/clothing/accessory/legion, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"gcm" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/electrical, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"gez" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"geO" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion/centcom) "ghU" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, @@ -20468,6 +20301,18 @@ icon_state = "bluefull" }, /area/centcom/holding) +"gjm" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "Ship External Access"; + req_access = list(110); + welded = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_ship/start) "gkk" = ( /obj/machinery/door/blast/regular/open{ dir = 1; @@ -20503,30 +20348,53 @@ icon_state = "greencorner" }, /area/centcom/holding) -"goF" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; +"gnq" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/beach/water/ocean, +/area/centcom/shared_dream) +"gov" = ( +/obj/structure/bed/chair/wood, +/obj/effect/landmark{ + name = "skrell_entry" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"gpt" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"gud" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/machinery/status_display{ - pixel_y = -32 +/turf/unsimulated/floor{ + icon_state = "wood" }, -/obj/machinery/light, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" +/area/centcom/shared_dream) +"gvh" = ( +/obj/machinery/light{ + dir = 8 }, +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/ramp, /area/shuttle/escape/centcom) -"gpt" = ( -/obj/structure/cryofeed, -/turf/simulated/floor/tiled, -/area/centcom/ferry) -"gtu" = ( -/turf/simulated/floor/tiled/dark, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/shuttle/legion/centcom) "gvS" = ( /obj/structure/cryofeed, /obj/machinery/light{ @@ -20538,40 +20406,6 @@ dir = 2 }, /area/centcom/spawning) -"gze" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/legion/centcom) -"gzC" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/gauss/emp, -/obj/item/ammo_magazine/gauss/emp, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/weapon/gun/projectile/gauss, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"gAd" = ( -/obj/machinery/light/spot, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/template_noop) -"gAG" = ( -/obj/structure/table/wood, -/obj/item/weapon/newspaper, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) "gBG" = ( /obj/structure/holohoop, /turf/unsimulated/floor{ @@ -20579,6 +20413,17 @@ dir = 1 }, /area/centcom/holding) +"gCq" = ( +/obj/machinery/door/airlock/centcom{ + name = "Cmdt Office"; + req_access = list(108,109) + }, +/obj/machinery/door/blast/odin{ + id = "tcfl-c"; + name = "Cmdt Office" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "gCx" = ( /obj/machinery/camera/network/crescent{ c_tag = "Shuttle West"; @@ -20589,34 +20434,68 @@ dir = 10 }, /area/centcom/holding) +"gDf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"gGB" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"gIk" = ( +/obj/structure/mirror{ + dir = 4; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"gII" = ( +/turf/unsimulated/wall/fakeglass{ + dir = 1; + icon_state = "fakewindows" + }, +/area/centcom/shared_dream) +"gOW" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/obj/item/clothing/accessory/legion, +/obj/item/clothing/head/legion_beret, +/obj/item/clothing/under/legion, +/obj/item/device/radio/headset/legion, +/obj/item/weapon/shield/energy/legion, +/obj/item/weapon/storage/backpack/legion, +/obj/item/weapon/gun/projectile/revolver, +/obj/item/ammo_magazine/a357, +/obj/item/ammo_magazine/a357, +/obj/item/ammo_magazine/a357, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/device/flash, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/clothing/accessory/holster/hip, +/turf/simulated/floor/wood, +/area/centcom/legion) "gQb" = ( /turf/unsimulated/floor{ icon_state = "greencorner"; dir = 4 }, /area/centcom/holding) -"gQu" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/autoinjectors, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/pillbottles, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"gVf" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) -"gVO" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/beach/water/ocean, -/area/centcom/shared_dream) "gXA" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -20636,6 +20515,23 @@ dir = 2 }, /area/centcom/spawning) +"had" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 4 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"hcD" = ( +/obj/structure/cryofeed, +/turf/simulated/floor/tiled, +/area/centcom/ferry) +"hcK" = ( +/turf/unsimulated/floor{ + icon_state = "grimy" + }, +/area/centcom/shared_dream) "hdS" = ( /obj/machinery/computer/pod{ id = "thunderdomehea"; @@ -20652,14 +20548,43 @@ icon_state = "red" }, /area/tdome) -"hkI" = ( -/obj/machinery/door/airlock/centcom{ - name = "Engineering Preparation"; - req_access = list(111) +"hjm" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/machinery/door/blast/odin/shuttle/tcfl, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"hjv" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/handcuffs, +/obj/item/device/flash, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, /turf/simulated/floor/tiled/dark, /area/centcom/legion) +"hko" = ( +/obj/structure/bed/chair/office/bridge{ + icon_state = "bridge"; + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"hkt" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/ferry) "hlC" = ( /obj/machinery/door/blast/regular{ dir = 1; @@ -20710,30 +20635,25 @@ dir = 8 }, /area/centcom/holding) -"hqX" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 1; - name = "shuttle bay blast door" - }, -/area/space) -"hrI" = ( -/obj/structure/bed/chair{ +"hqq" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/machinery/light/small/emergency{ - icon_state = "bulb1"; - dir = 4 +/turf/unsimulated/floor{ + icon_state = "floor" }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/legion/centcom) +/area/centcom/ferry) "hsG" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 8 }, /area/centcom/spawning) +"htG" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) "htO" = ( /obj/machinery/light{ dir = 4; @@ -20770,27 +20690,6 @@ dir = 10 }, /area/centcom/spawning) -"hvR" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/backpack/legion, -/obj/item/weapon/storage/backpack/legion, -/obj/item/weapon/storage/backpack/legion, -/obj/item/weapon/storage/backpack/legion, -/obj/item/weapon/storage/backpack/legion, -/obj/item/weapon/storage/backpack/legion, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"hxk" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "hxx" = ( /obj/machinery/light, /obj/structure/sign/directions/dock{ @@ -20815,32 +20714,6 @@ dir = 8 }, /area/centcom/spawning) -"hzu" = ( -/obj/structure/bookcase/libraryspawn/reference{ - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"hAn" = ( -/obj/structure/sign/flag/jargon/left, -/turf/simulated/wall/wood, -/area/centcom/shared_dream) -"hBB" = ( -/turf/unsimulated/wall/fakeglass{ - dir = 8; - icon_state = "fakewindows" - }, -/area/centcom/shared_dream) -"hCm" = ( -/obj/structure/table/rack, -/obj/item/weapon/shield/riot/tact, -/obj/item/weapon/shield/riot/tact, -/obj/item/weapon/shield/riot/tact, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "hCC" = ( /obj/structure/bed/chair, /obj/effect/landmark{ @@ -20861,18 +20734,6 @@ dir = 9 }, /area/centcom/spawning) -"hCX" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cmdt Office"; - req_access = list(108,109) - }, -/obj/machinery/door/blast/odin{ - dir = 4; - id = "tcfl-c"; - name = "Cmdt Office" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "hEo" = ( /obj/structure/urinal{ dir = 4; @@ -20884,6 +20745,117 @@ dir = 2 }, /area/centcom/spawning) +"hES" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/shuttle/legion/centcom) +"hFp" = ( +/obj/structure/table/steel, +/obj/machinery/chemical_dispenser/coffee/full, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/shared_dream) +"hHC" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 10 + }, +/obj/effect/landmark{ + name = "skrell_entry" + }, +/turf/unsimulated/floor{ + icon_state = "carpet"; + dir = 2 + }, +/area/centcom/shared_dream) +"hHX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/shuttle/escape/centcom) +"hIH" = ( +/obj/structure/bed/chair/office/bridge{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"hLg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/light{ + dir = 2; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"hLD" = ( +/obj/structure/table/wood, +/obj/machinery/button/remote/blast_door{ + id = "tcfl-c"; + name = "Cmdt Office"; + pixel_y = 6 + }, +/obj/machinery/button/remote/blast_door{ + id = "tcfl"; + name = "Heavy Support"; + pixel_y = -3 + }, +/turf/simulated/floor/carpet/blue, +/area/centcom/legion) +"hMq" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"hRt" = ( +/obj/machinery/door/airlock/centcom{ + name = "Leader Preparation"; + req_access = list(111) + }, +/obj/machinery/door/blast/odin/shuttle/tcfl, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"hVa" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/centcom/legion) "hVU" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -20894,35 +20866,28 @@ icon_state = "dark" }, /area/tdome/tdome1) -"iaY" = ( -/obj/machinery/door/airlock/external{ - frequency = 1331; - id_tag = "legion_shuttle_interior" +"idM" = ( +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) -"ibb" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/retro/equipped, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) "igD" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 8 }, /area/centcom/spawning) -"ihv" = ( -/obj/machinery/power/emitter, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +"ihi" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/centcom/legion) +/area/shuttle/legion/centcom) "iij" = ( /obj/structure/banner/unmovable, /turf/unsimulated/floor{ @@ -20941,30 +20906,21 @@ dir = 4 }, /area/centcom/spawning) -"iix" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 +"iip" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket{ + amount_per_transfer_from_this = 50 }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 }, -/turf/template_noop, -/area/space) -"ijN" = ( /turf/unsimulated/floor{ - icon_state = "grimy" + icon_state = "vault"; + dir = 1 }, -/area/centcom/shared_dream) +/area/centcom/legion) "ijV" = ( /obj/structure/sign/goldenplaque{ desc = "Awarded to the NTCC Odin wing of the Romanovich Exploration Guild for discovery of the bountiful asteroid (361224) Borealis, site of the NSS Aurora II"; @@ -20976,30 +20932,13 @@ dir = 8 }, /area/centcom/spawning) -"ika" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "centcom_dock"; - name = "docking port controller"; - pixel_x = 25; - pixel_y = 0; - req_one_access = list(13); - tag_door = "centcom_dock_airlock" +"imI" = ( +/obj/machinery/door/airlock/centcom{ + name = "Preparation Zone"; + req_access = list(111) }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"imv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/banner, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "ioV" = ( /obj/structure/window/reinforced, /obj/machinery/light, @@ -21008,6 +20947,22 @@ dir = 2 }, /area/centcom/spawning) +"ioZ" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/weapon/gun/energy/blaster, +/obj/item/weapon/gun/energy/blaster, +/obj/item/weapon/gun/energy/blaster, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 2; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "iqB" = ( /obj/structure/holostool, /obj/machinery/light, @@ -21016,26 +20971,28 @@ dir = 5 }, /area/centcom/holding) -"itf" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1331; - id_tag = "legion_shuttle"; - pixel_y = 32; - tag_airpump = "legion_shuttle_vent"; - tag_chamber_sensor = "legion_shuttle_sensor"; - tag_exterior_door = "legion_shuttle_lock"; - tag_interior_door = "legion_shuttle_interior" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) "itG" = ( /obj/structure/sign/directions/all, /turf/unsimulated/wall/riveted, /area/centcom/spawning) +"ixO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/shuttle/legion/centcom) +"ixY" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/shared_dream) "iBj" = ( /obj/machinery/door/airlock/centcom{ name = "Romanovich Exploration Guild"; @@ -21055,12 +21012,24 @@ icon_state = "wood_siding1" }, /area/centcom/spawning) +"iBs" = ( +/obj/machinery/light{ + dir = 2; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "iBu" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 4 }, /area/centcom/spawning) +"iDx" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "iEl" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/crescent{ @@ -21089,87 +21058,7 @@ icon_state = "dark" }, /area/centcom/holding) -"iHH" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/template_noop, -/area/template_noop) -"iIZ" = ( -/obj/machinery/door/airlock/centcom{ - name = "General Supplies"; - req_access = list(111) - }, -/obj/machinery/door/blast/odin/shuttle/tcfl, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"iMg" = ( -/obj/structure/window/reinforced/holowindow/disappearing, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"iNX" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"iNZ" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/centcom/ferry) -"iSE" = ( -/obj/effect/floor_decal/carpet, -/obj/effect/landmark{ - name = "skrell_entry" - }, -/turf/unsimulated/floor{ - icon_state = "carpet"; - dir = 2 - }, -/area/centcom/shared_dream) -"jbf" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/retro/equipped, -/obj/item/weapon/rig/retro/equipped, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/item/clothing/accessory/legion/specialist, -/obj/item/clothing/accessory/legion/specialist, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"jem" = ( -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "carpet"; - dir = 2 - }, -/area/centcom/shared_dream) -"jkj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"jlc" = ( -/obj/structure/table/reinforced, -/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, -/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, -/obj/item/mecha_parts/mecha_equipment/tool/passenger, -/obj/item/mecha_parts/mecha_equipment/tool/passenger, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"jng" = ( +"iIW" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/bodybags, /obj/item/weapon/storage/firstaid/o2, @@ -21193,521 +21082,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"jxh" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"jzd" = ( -/obj/machinery/door/blast/regular/open{ - dir = 1; - id = "odinaslockdown" - }, -/obj/structure/sign/directions/dock{ - dir = 4; - icon_state = "direction_dock"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 6 - }, -/area/centcom/spawning) -"jCI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/merchant_station) -"jEA" = ( -/obj/machinery/status_display/arrivals_display, -/turf/unsimulated/wall/riveted, -/area/centcom/spawning) -"jJh" = ( -/obj/structure/flora/pottedplant/random, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"jNO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/legion/centcom) -"jOT" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"jPk" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"jPG" = ( -/obj/structure/table/rack, -/obj/item/weapon/melee/energy/sword/knife, -/obj/item/weapon/shield/energy/legion, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"jZf" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/hypospray, -/obj/item/weapon/reagent_containers/hypospray, -/obj/item/weapon/reagent_containers/hypospray, -/obj/item/weapon/storage/box/syringes, -/obj/machinery/light{ - dir = 2; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"khY" = ( -/obj/item/modular_computer/console/preset/medical, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"kjv" = ( -/obj/machinery/vending/snack, -/turf/unsimulated/floor{ - icon_state = "redbluefull"; - dir = 8 - }, -/area/tdome/tdomeobserve) -"koO" = ( -/obj/item/mecha_parts/mecha_equipment/tool/sleeper, -/obj/item/mecha_parts/mecha_equipment/tool/sleeper, -/obj/item/mecha_parts/mecha_equipment/tool/syringe_gun, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"kux" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"kuN" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"kwo" = ( -/obj/machinery/computer/records/security, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"kxM" = ( -/obj/item/modular_computer/console/preset/command, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/spawning) -"kxR" = ( -/obj/machinery/door/blast/odin{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "CentComArrivalsCommand"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"kzM" = ( -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/centcom/spawning) -"kAZ" = ( -/obj/structure/flora/pottedplant/random, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"kCv" = ( -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "carpet"; - dir = 2 - }, -/area/centcom/shared_dream) -"kGq" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark{ - name = "tdome2" - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/tdome/tdome2) -"kGz" = ( -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/obj/machinery/vending/cola{ - can_move = 0 - }, -/turf/unsimulated/floor{ - icon_state = "wood_siding8" - }, -/area/centcom/spawning) -"kLn" = ( -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "carpet"; - dir = 2 - }, -/area/centcom/shared_dream) -"kLH" = ( -/obj/effect/landmark{ - name = "skrell_entry" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"kMV" = ( -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/tdome) -"kNy" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/space) -"kQs" = ( -/obj/machinery/light/spot{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) -"kSx" = ( -/obj/machinery/door/blast/odin{ - id = "tcfl"; - name = "Heavy Support" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"kVe" = ( -/obj/structure/simple_door/wood, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"kWr" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/tdome) -"kZH" = ( -/turf/unsimulated/wall/fakeglass, -/area/centcom/shared_dream) -"lcg" = ( -/obj/machinery/pipedispenser/disposal/orderable, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"lgX" = ( -/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, -/obj/item/mecha_parts/mecha_equipment/tool/cable_layer, -/obj/structure/table/reinforced/steel, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"liw" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark{ - name = "tdome2" - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/tdome) -"ljR" = ( -/obj/structure/table/standard, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"llK" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "thunderdomeaxe"; - name = "Axe Supply" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/tdome/tdome2) -"lmt" = ( -/obj/machinery/door/blast/regular/open{ - dir = 1; - id = "odinaslockdown" - }, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 10 - }, -/area/centcom/spawning) -"lmZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"lpR" = ( -/obj/structure/table/wood, -/obj/machinery/computer/records/employment, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) -"lql" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13) - }, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"ltQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/flame/lighter/zippo, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/unsimulated/floor{ - icon_state = "redbluefull"; - dir = 8 - }, -/area/tdome/tdomeobserve) -"lwa" = ( -/obj/machinery/door/airlock/centcom{ - icon_state = "door_locked"; - id_tag = "CentComArrivalsForeDrAft"; - locked = 1; - name = "Fore Checkpoint"; - opacity = 1; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"lzF" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"lBS" = ( -/obj/structure/filingcabinet, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 4 - }, -/area/centcom/spawning) -"lGN" = ( -/turf/simulated/shuttle/wall/dark, -/area/shuttle/legion/centcom) -"lHs" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"lKQ" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/weapon/gun/energy/blaster, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"lRL" = ( -/obj/machinery/door/airlock/centcom{ - icon = 'icons/obj/doors/Doorcomglass.dmi'; - name = "Shuttle Bridge Access"; - opacity = 0; - req_access = list(19) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"lSw" = ( -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "CentComArrivalsAftDrAft"; - name = "aft bolt control"; - pixel_x = 31; - pixel_y = -5; - req_access = list(101); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "CentComArrivalsAftDrFore"; - name = "fore bolt control"; - pixel_x = 31; - pixel_y = 5; - req_access = list(101); - specialfunctions = 4 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"lUI" = ( -/obj/random/junk, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 4 - }, -/area/centcom/spawning) -"lVS" = ( -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/weapon/rfd/construction, -/obj/item/weapon/rfd/construction, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd/construction, -/obj/item/weapon/rfd/construction, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/item/weapon/rfd_ammo, -/obj/structure/table/reinforced/steel, -/obj/machinery/light{ - dir = 4; - status = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"lYs" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"lZi" = ( -/obj/item/weapon/wrench, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"lZz" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"mbS" = ( -/turf/unsimulated/floor{ - icon_state = "green" - }, -/area/tdome) -"mcy" = ( -/turf/unsimulated/floor{ - icon_state = "rampbottom"; - dir = 2 - }, -/area/centcom/spawning) -"mgj" = ( +"iJt" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/rifle, /obj/structure/window/reinforced/crescent{ @@ -21718,86 +21093,54 @@ icon_state = "rwindow"; dir = 4 }, -/obj/machinery/door/window/southleft, +/obj/machinery/door/window/northright{ + req_access = list(101) + }, /obj/item/weapon/storage/box/teargas, /obj/item/clothing/mask/gas/tactical, -/obj/machinery/light/spot{ - icon_state = "tube1"; - dir = 1 - }, +/obj/machinery/light/spot, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"mlN" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) -"mnK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, +"iMg" = ( +/obj/structure/window/reinforced/holowindow/disappearing, /turf/unsimulated/floor{ icon_state = "floor" }, -/area/centcom/ferry) -"mrn" = ( -/turf/unsimulated/floor{ - icon_state = "bluecorner"; - dir = 1 - }, -/area/centcom/spawning) -"muP" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"mwM" = ( -/obj/structure/bed/chair, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark{ - name = "tdomeobserve" - }, -/turf/unsimulated/floor{ - icon_state = "redbluefull"; +/area/centcom/holding) +"iVj" = ( +/obj/machinery/atmospherics/pipe/tank/air{ dir = 8 }, -/area/tdome/tdomeobserve) -"myA" = ( -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "legion_shuttle_sensor"; - master_tag = null; - pixel_y = 32 - }, /turf/simulated/shuttle/plating, /area/shuttle/legion/centcom) -"mzf" = ( -/turf/unsimulated/floor{ - icon_state = "red"; - dir = 10 +"iWk" = ( +/obj/machinery/door/airlock/centcom{ + name = "Garage"; + req_access = list(111) }, -/area/tdome) -"mBm" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"jri" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"jtU" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor4" + }, +/area/shuttle/escape/centcom) +"jtX" = ( +/obj/structure/bookcase/libraryspawn/reference{ + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"jxC" = ( /obj/machinery/button/remote/blast_door{ id = "CentComArrivalsForeMid"; name = "Center Checkpoint"; @@ -21832,18 +21175,23 @@ icon_state = "floor" }, /area/centcom/holding) -"mBn" = ( -/turf/unsimulated/floor{ - icon_state = "wood" +"jzd" = ( +/obj/machinery/door/blast/regular/open{ + dir = 1; + id = "odinaslockdown" + }, +/obj/structure/sign/directions/dock{ + dir = 4; + icon_state = "direction_dock"; + pixel_x = 0; + pixel_y = -32 }, -/area/centcom/ferry) -"mEu" = ( /turf/unsimulated/floor{ - icon_state = "rampbottom"; - dir = 1 + icon_state = "blue"; + dir = 6 }, /area/centcom/spawning) -"mHF" = ( +"jAR" = ( /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, @@ -21855,6 +21203,479 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark, /area/centcom/legion) +"jEA" = ( +/obj/machinery/status_display/arrivals_display, +/turf/unsimulated/wall/riveted, +/area/centcom/spawning) +"jFm" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"jHE" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"jNg" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/blaster/rifle, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"jNX" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 6; + icon_state = "spline_plain" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/shared_dream) +"jVd" = ( +/obj/machinery/light/spot{ + icon_state = "tube1"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"jZN" = ( +/obj/machinery/door/airlock/centcom{ + name = "Cryo Storage"; + req_access = list(38) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"kbl" = ( +/turf/simulated/floor/tiled/dark, +/turf/simulated/shuttle/wall/dark{ + icon_state = "diagonalWall3" + }, +/area/shuttle/legion/centcom) +"kfZ" = ( +/turf/unsimulated/floor, +/area/space) +"khE" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"kjv" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon_state = "redbluefull"; + dir = 8 + }, +/area/tdome/tdomeobserve) +"kmi" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/retro/equipped, +/obj/item/weapon/rig/retro/equipped, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/clothing/accessory/legion/specialist, +/obj/item/clothing/accessory/legion/specialist, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"knv" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"kuN" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"kxM" = ( +/obj/item/modular_computer/console/preset/command, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/spawning) +"kzM" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/centcom/spawning) +"kGq" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome/tdome2) +"kGz" = ( +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/obj/machinery/vending/cola{ + can_move = 0 + }, +/turf/unsimulated/floor{ + icon_state = "wood_siding8" + }, +/area/centcom/spawning) +"kHX" = ( +/obj/machinery/light/spot, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/template_noop) +"kIc" = ( +/obj/structure/simple_door/wood, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"kJz" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/rifle, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/window/southright, +/obj/item/weapon/storage/box/teargas, +/obj/item/clothing/mask/gas/tactical, +/obj/machinery/light/spot{ + icon_state = "tube1"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"kKU" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/tiled/dark, +/area/shuttle/legion/centcom) +"kMm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"kMV" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/tdome) +"kPr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/shuttle/legion/centcom) +"kWr" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/tdome) +"kZY" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"lfz" = ( +/obj/effect/landmark{ + name = "skrell_entry" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/shared_dream) +"lgl" = ( +/obj/structure/table/wood, +/obj/item/weapon/material/ashtray/glass, +/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"lhj" = ( +/obj/structure/coatrack, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"liw" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome) +"ljh" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) +"llK" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdome2) +"lmt" = ( +/obj/machinery/door/blast/regular/open{ + dir = 1; + id = "odinaslockdown" + }, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 10 + }, +/area/centcom/spawning) +"lrJ" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"ltm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "grimy" + }, +/area/centcom/shared_dream) +"ltQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "redbluefull"; + dir = 8 + }, +/area/tdome/tdomeobserve) +"lvG" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/blaster/carbine, +/obj/item/weapon/gun/energy/blaster/carbine, +/obj/item/weapon/gun/energy/blaster/carbine, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"lxf" = ( +/obj/vehicle/bike/speeder, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"lzh" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/shuttle/legion/centcom) +"lBS" = ( +/obj/structure/filingcabinet, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 4 + }, +/area/centcom/spawning) +"lHB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + icon_state = "bulb1"; + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/shuttle/legion/centcom) +"lLp" = ( +/obj/machinery/door/blast/odin{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "CentComArrivalsForeInt"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"lQc" = ( +/obj/machinery/vending/cola{ + name = "Free Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"lQh" = ( +/obj/machinery/computer/records/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"lUI" = ( +/obj/random/junk, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 4 + }, +/area/centcom/spawning) +"lZi" = ( +/obj/item/weapon/wrench, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"mbS" = ( +/turf/unsimulated/floor{ + icon_state = "green" + }, +/area/tdome) +"mcy" = ( +/turf/unsimulated/floor{ + icon_state = "rampbottom"; + dir = 2 + }, +/area/centcom/spawning) +"mkf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "legion_shuttle_vent" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) +"mla" = ( +/obj/machinery/computer/shuttle_control/legion, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"mmc" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/autoinjectors, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"mnr" = ( +/turf/simulated/floor/tiled/dark, +/turf/simulated/shuttle/wall/dark{ + dir = 4; + icon_state = "diagonalWall3" + }, +/area/shuttle/legion/centcom) +"mrn" = ( +/turf/unsimulated/floor{ + icon_state = "bluecorner"; + dir = 1 + }, +/area/centcom/spawning) +"mrs" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/shuttle/escape/centcom) +"mrD" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"mwM" = ( +/obj/structure/bed/chair, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "redbluefull"; + dir = 8 + }, +/area/tdome/tdomeobserve) +"mzf" = ( +/turf/unsimulated/floor{ + icon_state = "red"; + dir = 10 + }, +/area/tdome) +"mEu" = ( +/turf/unsimulated/floor{ + icon_state = "rampbottom"; + dir = 1 + }, +/area/centcom/spawning) +"mGj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "mIi" = ( /obj/effect/landmark{ name = "tdome2" @@ -21867,6 +21688,15 @@ name = "plating" }, /area/tdome/tdome2) +"mIn" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/retro/equipped, +/obj/item/weapon/rig/retro/equipped, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/clothing/accessory/legion/specialist, +/obj/item/clothing/accessory/legion/specialist, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "mJp" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; @@ -21877,6 +21707,21 @@ icon_state = "dark" }, /area/centcom/holding) +"mLC" = ( +/obj/structure/flora/pottedplant/random, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mOH" = ( +/obj/machinery/door/airlock/centcom{ + name = "Cmdt Office"; + req_access = list(108,109) + }, +/obj/machinery/door/blast/odin{ + id = "tcfl"; + name = "Heavy Support" + }, +/turf/simulated/floor/wood, +/area/centcom/legion) "mRj" = ( /obj/structure/table/holotable, /turf/unsimulated/floor{ @@ -21884,51 +21729,27 @@ dir = 10 }, /area/centcom/holding) -"mVi" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket{ - amount_per_transfer_from_this = 50 +"mTC" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "legion_shuttle"; + pixel_x = 0; + pixel_y = 32 }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +/turf/simulated/shuttle/floor{ + icon_state = "floor7" }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 1 - }, -/area/centcom/legion) +/area/shuttle/legion/centcom) "mWJ" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/centcom/holding) -"mXo" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"nch" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 - }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/template_noop, +"nbF" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/dark, /area/centcom/legion) "ndx" = ( /obj/structure/cryofeed{ @@ -21940,10 +21761,6 @@ dir = 2 }, /area/centcom/spawning) -"nhH" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "nhX" = ( /obj/machinery/computer/pod{ id = "thunderdomegen"; @@ -21954,20 +21771,15 @@ dir = 5 }, /area/tdome/tdomeadmin) -"nnW" = ( -/turf/simulated/floor/tiled/dark, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" +"nlQ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10; + icon_state = "spline_plain" }, -/area/shuttle/legion/centcom) -"npm" = ( -/obj/machinery/door/airlock/external{ - frequency = 1331; - id_tag = "legion_shuttle_lock" +/turf/unsimulated/floor{ + icon_state = "grimy" }, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) +/area/centcom/shared_dream) "npu" = ( /obj/structure/disposalpipe/segment, /turf/unsimulated/floor{ @@ -21993,29 +21805,12 @@ icon_state = "wood_siding2" }, /area/centcom/spawning) -"nsp" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/item/clothing/head/helmet/legion, -/obj/item/clothing/head/helmet/legion, -/obj/item/clothing/head/helmet/legion, -/obj/item/clothing/head/helmet/legion, -/obj/item/clothing/head/helmet/legion, -/obj/item/clothing/head/helmet/legion, +"nzK" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, /turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"nsX" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, /area/shuttle/legion/centcom) -"nxM" = ( -/obj/machinery/iv_drip, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) "nDd" = ( /obj/machinery/computer/security/telescreen, /turf/unsimulated/floor{ @@ -22023,46 +21818,47 @@ dir = 5 }, /area/tdome/tdomeadmin) -"nLj" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 +"nLy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" }, -/turf/unsimulated/floor{ - name = "plating" +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" }, /area/shuttle/escape/centcom) -"nQz" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 1 +"nOB" = ( +/obj/structure/table/steel, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/unsimulated/floor{ + icon_state = "white" }, +/area/centcom/shared_dream) +"nQT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) +"nRS" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/gauss/emp, +/obj/item/ammo_magazine/gauss/emp, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/ammo_magazine/gauss, +/obj/item/weapon/gun/projectile/gauss, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"nTM" = ( -/obj/machinery/door/blast/odin{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "CentComArrivalsAftInt"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) "nWy" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; @@ -22080,6 +21876,18 @@ icon_state = "green" }, /area/centcom/holding) +"nZr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft, +/obj/machinery/door/blast/odin{ + dir = 1; + id = "CentComArrivalsForeChkpt"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) "obk" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove{ @@ -22106,13 +21914,59 @@ dir = 5 }, /area/centcom/spawning) -"oeI" = ( +"oex" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 1 + dir = 4; + status = 2 }, +/turf/simulated/floor/tiled/ramp, +/area/shuttle/escape/centcom) +"ofH" = ( +/obj/effect/landmark{ + name = "skrell_entry" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"ofL" = ( +/obj/mecha/medical/odysseus/loaded, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/centcom/legion) +"ofX" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_dock"; + name = "docking port controller"; + pixel_x = 25; + pixel_y = 0; + req_one_access = list(13); + tag_door = "centcom_dock_airlock" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"oii" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/template_noop, +/area/centcom/legion) "ojX" = ( /obj/random/junk, /turf/unsimulated/floor{ @@ -22125,35 +21979,22 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor, /area/tdome) -"omP" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/floor_decal/corner/grey/diagonal, +"onA" = ( +/obj/structure/flora/pottedplant/random, /turf/unsimulated/floor{ - icon_state = "white" + icon_state = "wood" }, /area/centcom/shared_dream) -"ora" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/light{ - dir = 4; - status = 2 - }, +"ooJ" = ( +/obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/shuttle/floor{ - icon_state = "floor3" + icon_state = "floor7" }, -/area/shuttle/escape/centcom) -"osR" = ( -/obj/machinery/door/airlock/centcom{ - name = "Representative Office"; - req_access = list(38) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) +/area/shuttle/legion/centcom) +"otv" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "ouk" = ( /obj/structure/banner/unmovable, /turf/unsimulated/floor{ @@ -22161,20 +22002,31 @@ dir = 6 }, /area/centcom/spawning) -"owz" = ( -/turf/simulated/floor/tiled/dark, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" +"ovn" = ( +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"ovw" = ( +/turf/unsimulated/wall/fakeglass{ + dir = 4; + icon_state = "fakewindows" }, -/area/shuttle/legion/centcom) -"oFp" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +/area/centcom/shared_dream) +"oxQ" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/wall/riveted, +/area/centcom/holding) +"oGc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 4 }, -/obj/machinery/light/small/emergency, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) +/obj/structure/banner, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) "oGN" = ( /obj/machinery/cryopod, /turf/unsimulated/floor{ @@ -22197,12 +22049,6 @@ icon_state = "floor" }, /area/tdome) -"oIg" = ( -/turf/unsimulated/floor{ - icon_state = "ramptop"; - dir = 2 - }, -/area/centcom/shared_dream) "oIB" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; @@ -22213,27 +22059,12 @@ icon_state = "floor" }, /area/tdome) -"oKP" = ( -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "carpet"; - dir = 2 - }, -/area/centcom/shared_dream) -"oKT" = ( -/obj/machinery/light{ - dir = 2; - icon_state = "tube1"; - pixel_y = 0 +"oKe" = ( +/obj/machinery/door/airlock/centcom{ + name = "Engineering Preparation"; + req_access = list(111) }, +/obj/machinery/door/blast/odin/shuttle/tcfl, /turf/simulated/floor/tiled/dark, /area/centcom/legion) "oNb" = ( @@ -22248,13 +22079,6 @@ dir = 8 }, /area/centcom/holding) -"oOz" = ( -/obj/machinery/door/airlock/centcom{ - name = "Garage"; - req_access = list(111) - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "oTr" = ( /obj/machinery/door/blast/regular{ dir = 1; @@ -22265,31 +22089,23 @@ icon_state = "dark" }, /area/tdome) -"oTw" = ( -/obj/structure/table/wood, -/obj/machinery/button/remote/blast_door{ - id = "tcfl-c"; - name = "Cmdt Office"; - pixel_y = 6 - }, -/obj/machinery/button/remote/blast_door{ - id = "tcfl"; - name = "Heavy Support"; - pixel_y = -3 - }, -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"oWJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, +"oTL" = ( +/obj/machinery/iv_drip, /turf/simulated/shuttle/floor{ - icon_state = "floor7" + icon_state = "floor3" }, /area/shuttle/escape/centcom) +"oXD" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/machinery/door/blast/odin{ + dir = 1; + id = "CentComArrivalsAftChkpt"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) "oXZ" = ( /obj/machinery/light{ dir = 4; @@ -22300,15 +22116,17 @@ dir = 4 }, /area/centcom/holding) -"peS" = ( -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/glasses/night{ - pixel_x = -1; - pixel_y = -3 +"pfF" = ( +/obj/machinery/door/airlock/centcom{ + icon = 'icons/obj/doors/Doorcomglass.dmi'; + name = "Shuttle Bridge Access"; + opacity = 0; + req_access = list(19) }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) "pgL" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/fullgrass, @@ -22326,35 +22144,20 @@ name = "grass" }, /area/centcom/spawning) -"pgO" = ( -/obj/effect/floor_decal/carpet, -/turf/unsimulated/floor{ - icon_state = "carpet"; - dir = 2 +"pll" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/centcom/shared_dream) -"phq" = ( -/obj/structure/bookcase/libraryspawn/reference{ - opacity = 0 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/decal/cleanable/cobweb, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"piD" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"pjF" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion/centcom) -"pkn" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"plE" = ( /turf/simulated/floor/tiled/dark, /area/centcom/legion) "plH" = ( @@ -22396,72 +22199,62 @@ name = "plating" }, /area/tdome/tdome2) -"ppL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"prd" = ( -/obj/structure/table/rack, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"psa" = ( -/obj/machinery/light/spot{ - icon_state = "tube1"; +"pyq" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 1 }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, /turf/unsimulated/floor{ - icon_state = "floor" + name = "plating" }, -/area/centcom/ferry) -"ptB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/medical_wall{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/ramp, /area/shuttle/escape/centcom) "pCY" = ( /turf/unsimulated/floor{ icon_state = "plaque" }, /area/centcom/spawning) +"pDA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/shared_dream) +"pHf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "pHo" = ( /obj/machinery/door/airlock/glass, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"pHV" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) +"pIj" = ( +/obj/machinery/light/spot{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) "pJg" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 6 }, /area/tdome) -"pLj" = ( -/obj/machinery/door/airlock/centcom{ - name = "Security Preparation"; - req_access = list(111) - }, -/obj/machinery/door/blast/odin/shuttle/tcfl, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "pMw" = ( /obj/item/device/camera, /turf/unsimulated/floor{ @@ -22469,21 +22262,81 @@ dir = 8 }, /area/tdome/tdomeobserve) -"pOv" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, +"pNu" = ( /obj/machinery/door/blast/odin{ + density = 0; dir = 1; - id = "CentComArrivalsAftChkpt"; - name = "Security Doors" + icon_state = "pdoor0"; + id = "CentComArrivalsCommand"; + name = "Security Doors"; + opacity = 0 }, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"pTV" = ( -/obj/structure/closet/crate/freezer/rations, +"pQl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Corporate Liaison" + }, +/obj/effect/landmark{ + name = "LateJoinCorporate Liaison" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"pRV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/clothing/head/helmet/legion, +/obj/item/clothing/head/helmet/legion, +/obj/item/clothing/head/helmet/legion, +/obj/item/clothing/head/helmet/legion, +/obj/item/clothing/head/helmet/legion, +/obj/item/clothing/head/helmet/legion, /turf/simulated/floor/tiled/dark, /area/centcom/legion) +"pRW" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_dock_airlock"; + locked = 1; + name = "Arrivals Airlock"; + req_access = list(13) + }, +/turf/unsimulated/floor{ + icon_state = "warnplate"; + dir = 8 + }, +/area/centcom/holding) +"pXa" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"pXT" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/template_noop, +/area/space) "pYi" = ( /obj/machinery/shower{ dir = 8; @@ -22496,66 +22349,33 @@ dir = 2 }, /area/centcom/spawning) -"qaa" = ( -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 8 +"qdE" = ( +/obj/machinery/vending/snack{ + name = "Free Chocolate Corp"; + prices = list() }, -/obj/effect/floor_decal/carpet{ - icon_state = "carpet_edges"; - dir = 10 +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"qdO" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Shuttle Brig"; + req_access = list(2) }, -/obj/effect/landmark{ - name = "skrell_entry" - }, -/turf/unsimulated/floor{ - icon_state = "carpet"; - dir = 2 - }, -/area/centcom/shared_dream) -"qbl" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/effect/landmark{ - name = "skrell_entry" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"qdN" = ( -/obj/structure/closet/crate/freezer/rations, /turf/simulated/shuttle/floor{ - icon_state = "floor2" + icon_state = "floor7" }, /area/shuttle/escape/centcom) -"qfx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 +"qfi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 }, -/obj/structure/banner, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 }, -/area/shuttle/escape/centcom) -"qfL" = ( -/obj/machinery/door/blast/odin{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "CentComArrivalsForeMid"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"qgm" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/centcom/legion) "qiJ" = ( @@ -22569,30 +22389,6 @@ icon_state = "wood_siding4" }, /area/centcom/spawning) -"qjx" = ( -/obj/structure/closet/medical_wall{ - pixel_x = -32 - }, -/obj/item/weapon/storage/firstaid/brute, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) "qkB" = ( /obj/machinery/door/airlock/centcom{ name = "Real Fake Doors! and Co"; @@ -22614,10 +22410,6 @@ name = "plating" }, /area/tdome/tdome1) -"qoi" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/wall/riveted, -/area/centcom/holding) "qpo" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; @@ -22632,28 +22424,21 @@ dir = 2 }, /area/centcom/spawning) -"qps" = ( -/obj/structure/flora/pottedplant/random, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"qyR" = ( -/obj/effect/landmark{ - name = "skrell_entry" - }, -/obj/structure/bed/chair/comfy/black, -/turf/unsimulated/floor{ - icon_state = "grimy" +"qpO" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"qrp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"qsb" = ( +/turf/simulated/wall/wood, /area/centcom/shared_dream) -"qAt" = ( -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) "qBr" = ( /obj/structure/target_stake, /obj/item/target, @@ -22668,17 +22453,41 @@ dir = 8 }, /area/centcom/holding) -"qBR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +"qCT" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/rifle, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 8 }, -/obj/structure/window/reinforced{ +/obj/structure/window/reinforced/crescent{ icon_state = "rwindow"; dir = 4 }, -/turf/simulated/shuttle/plating, -/area/merchant_station) +/obj/machinery/door/window/southleft, +/obj/item/weapon/storage/box/teargas, +/obj/item/clothing/mask/gas/tactical, +/obj/machinery/light/spot{ + icon_state = "tube1"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"qCY" = ( +/obj/machinery/door/blast/odin{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "CentComArrivalsForeExt"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) "qFv" = ( /obj/structure/table/standard, /obj/item/stack/medical/bruise_pack, @@ -22689,17 +22498,24 @@ dir = 5 }, /area/tdome/tdomeadmin) -"qGm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"qFM" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 1 }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet"; + dir = 2 + }, +/area/centcom/shared_dream) "qGF" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -22709,27 +22525,19 @@ dir = 4 }, /area/centcom/spawning) -"qIM" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/retro/equipped, -/obj/item/weapon/rig/retro/equipped, -/obj/item/weapon/rig/retro/equipped, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"qMP" = ( -/obj/structure/bed/chair{ - dir = 8 +"qIy" = ( +/turf/unsimulated/floor{ + icon_state = "floor" }, +/area/template_noop) +"qIz" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 }, -/obj/machinery/light{ - dir = 4; - status = 0 +/turf/simulated/shuttle/floor{ + icon_state = "floor3" }, -/turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) "qOp" = ( /turf/unsimulated/floor{ @@ -22737,11 +22545,6 @@ dir = 2 }, /area/tdome) -"qOB" = ( -/obj/machinery/chemical_dispenser/ert, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "qOT" = ( /obj/machinery/light, /turf/unsimulated/floor{ @@ -22759,12 +22562,11 @@ icon_state = "green" }, /area/centcom/holding) -"qSs" = ( -/turf/unsimulated/wall/fakeglass{ - dir = 1; - icon_state = "fakewindows" - }, -/area/centcom/shared_dream) +"qSp" = ( +/obj/mecha/working/ripley/combat, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "qTU" = ( /obj/machinery/status_display/arrivals_display{ pixel_y = 32 @@ -22774,71 +22576,54 @@ dir = 2 }, /area/centcom/spawning) -"qUz" = ( +"qWA" = ( /obj/structure/table/rack, -/obj/item/weapon/gun/energy/blaster/rifle, +/obj/item/weapon/rig/retro/equipped, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"qWc" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion/centcom) -"qWs" = ( -/obj/machinery/light{ - dir = 2; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/vehicle/bike/speeder, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"qYR" = ( -/obj/item/mecha_parts/mecha_equipment/teleporter, -/obj/item/mecha_parts/mecha_tracking, -/obj/item/mecha_parts/mecha_tracking, -/obj/item/mecha_parts/mecha_tracking, -/obj/item/mecha_parts/mecha_tracking, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "rbA" = ( /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"rco" = ( -/obj/structure/banner, -/turf/unsimulated/floor{ - icon_state = "floor" +"rcV" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 }, -/area/centcom/holding) +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) "rdm" = ( /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 4 }, /area/centcom/spawning) -"rdC" = ( -/obj/machinery/vending/security, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"rjf" = ( -/obj/structure/table/rack, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/weapon/gun/energy/stunrevolver, -/obj/item/weapon/gun/energy/stunrevolver, -/obj/effect/floor_decal/industrial/outline/blue, +"rgo" = ( +/obj/item/modular_computer/console/preset/medical, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"rgE" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, /turf/simulated/floor/tiled/dark, /area/centcom/legion) +"rgL" = ( +/obj/structure/sign/flag/jargon/right, +/turf/simulated/wall/wood, +/area/centcom/shared_dream) +"rhh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/light/small/emergency, +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) "rjz" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 @@ -22847,11 +22632,6 @@ icon_state = "dark" }, /area/centcom/holding) -"rkv" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor4" - }, -/area/shuttle/escape/centcom) "rnK" = ( /obj/machinery/light{ icon_state = "tube1"; @@ -22877,10 +22657,16 @@ icon_state = "redfull" }, /area/centcom/spawning) -"ruB" = ( -/obj/vehicle/droppod, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/dark, +"ruF" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"rvv" = ( +/turf/simulated/floor/carpet/blue, /area/centcom/legion) "rxd" = ( /obj/structure/table/standard, @@ -22889,19 +22675,14 @@ dir = 5 }, /area/tdome/tdomeadmin) -"rxP" = ( -/obj/structure/bed/chair/wood, -/obj/effect/landmark{ - name = "skrell_entry" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"ryb" = ( +"rxJ" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/dark, /area/centcom/legion) +"ryi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) "ryW" = ( /obj/structure/bed/chair{ dir = 1 @@ -22925,35 +22706,6 @@ icon_state = "floor" }, /area/centcom/spawning) -"rAX" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/hypospray, -/obj/item/weapon/reagent_containers/hypospray, -/obj/item/weapon/reagent_containers/hypospray, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"rCL" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cryo Storage"; - req_access = list(38) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) -"rEo" = ( -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) "rIj" = ( /obj/structure/table/holotable, /obj/machinery/readybutton{ @@ -22964,24 +22716,41 @@ dir = 6 }, /area/centcom/holding) -"rLz" = ( -/obj/item/modular_computer/console/preset/research, +"rIE" = ( +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/weapon/storage/firstaid/regular, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"rNu" = ( -/obj/effect/landmark{ - name = "skrell_entry" +"rMk" = ( +/turf/simulated/shuttle/wall/dark, +/area/shuttle/legion/centcom) +"rPt" = ( +/obj/structure/table/standard{ + name = "plastic table frame" }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) "rQI" = ( /obj/item/weapon/beach_ball/holoball, /turf/unsimulated/floor{ @@ -22996,29 +22765,29 @@ dir = 8 }, /area/tdome/tdomeobserve) -"rUc" = ( -/obj/machinery/door/airlock/centcom{ - name = "Cmdt Office"; - req_access = list(108,109) +"rRd" = ( +/turf/unsimulated/floor{ + name = "plating" }, -/obj/machinery/door/blast/odin{ - id = "tcfl"; - name = "Heavy Support" +/area/space) +"rZL" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 32 }, -/turf/simulated/floor/wood, -/area/centcom/legion) -"saj" = ( -/obj/structure/bed/chair/office/bridge{ - dir = 4 +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/status_display{ - pixel_y = -32 +/turf/simulated/floor/tiled, +/area/centcom/ferry) +"sbb" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "legion_shuttle_sensor"; + master_tag = null; + pixel_y = 32 }, -/obj/machinery/light, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) +/turf/simulated/shuttle/plating, +/area/shuttle/legion/centcom) "sck" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, @@ -23026,29 +22795,29 @@ icon_state = "floor" }, /area/centcom/spawning) -"scs" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(5) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) "scL" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 1 }, /area/centcom/spawning) -"sdU" = ( -/obj/machinery/door/airlock/centcom{ - name = "Leader Preparation"; - req_access = list(111) +"sds" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/obj/machinery/door/blast/odin/shuttle/tcfl, /turf/simulated/floor/tiled/dark, /area/centcom/legion) +"sfn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/merchant_station) "sha" = ( /obj/effect/landmark{ name = "tdome1" @@ -23057,74 +22826,48 @@ name = "plating" }, /area/tdome/tdome1) -"smD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ +"shc" = ( +/turf/unsimulated/wall/fakeglass{ + icon_state = "fakewindows2"; dir = 8 }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/legion/centcom) +/area/centcom/shared_dream) +"shO" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "ssJ" = ( /turf/unsimulated/floor{ icon_state = "greencorner" }, /area/tdome) -"sup" = ( +"suQ" = ( /obj/structure/table/reinforced, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/mask/gas/tactical, +/obj/item/clothing/mask/gas/tactical, +/obj/item/clothing/mask/gas/tactical, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"sur" = ( -/obj/machinery/suit_storage_unit/standard_unit, +"syX" = ( +/obj/item/modular_computer/console/preset/research, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"szc" = ( +/obj/machinery/door/airlock/centcom{ + name = "Security Preparation"; + req_access = list(111) + }, +/obj/machinery/door/blast/odin/shuttle/tcfl, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"svS" = ( -/obj/machinery/light/spot{ - icon_state = "tube1"; - dir = 4 - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/space) -"szk" = ( -/obj/machinery/vending/cola{ - name = "Free Robust Softdrinks"; - prices = list() - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"sAh" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion/centcom) -"sEr" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10; - icon_state = "spline_plain" - }, -/turf/unsimulated/floor{ - icon_state = "grimy" - }, +"sBH" = ( +/turf/simulated/floor/beach/water/ocean, /area/centcom/shared_dream) -"sEH" = ( -/obj/vehicle/bike/speeder, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "sII" = ( /obj/structure/table/standard, /obj/item/clothing/ears/earmuffs{ @@ -23144,6 +22887,16 @@ dir = 8 }, /area/centcom/holding) +"sLc" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/obj/item/mecha_parts/mecha_equipment/tool/cable_layer, +/obj/structure/table/reinforced/steel, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "sPf" = ( /obj/item/weapon/reagent_containers/food/drinks/cans/cola, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, @@ -23154,26 +22907,26 @@ dir = 8 }, /area/tdome/tdomeobserve) -"sRU" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"sUv" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Unlocked Autolathe" +"sPW" = ( +/turf/unsimulated/wall/fakeglass, +/area/centcom/shared_dream) +"sRQ" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"sXY" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/shuttle/escape/centcom) +"sSH" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/ferry) +"sWB" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/centcom/legion) "sYT" = ( @@ -23196,6 +22949,15 @@ dir = 8 }, /area/centcom/spawning) +"tcc" = ( +/obj/machinery/light/spot{ + icon_state = "tube1"; + dir = 4 + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/space) "tcD" = ( /obj/machinery/computer/records/security, /turf/unsimulated/floor{ @@ -23236,6 +22998,49 @@ dir = 10 }, /area/centcom/spawning) +"tjZ" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor2" + }, +/area/shuttle/escape/centcom) +"tkH" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"tmi" = ( +/turf/simulated/floor/holofloor/space{ + density = 1 + }, +/area/centcom/shared_dream) +"tqs" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"tsf" = ( +/obj/machinery/door/airlock/centcom{ + name = "Cmdt Office"; + req_access = list(108,109) + }, +/obj/machinery/door/blast/odin{ + dir = 4; + id = "tcfl-c"; + name = "Cmdt Office" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "ttJ" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/fullgrass, @@ -23249,24 +23054,25 @@ name = "grass" }, /area/centcom/spawning) -"tuD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) -"twl" = ( -/obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "wood" +"ttZ" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + id_tag = "CentComArrivalsAftDrAft"; + locked = 1; + name = "Aft Checkpoint"; + opacity = 1; + req_access = list(101) }, -/area/centcom/shared_dream) -"twY" = ( -/obj/item/weapon/mop, -/obj/structure/mopbucket, /turf/unsimulated/floor{ - icon_state = "vault"; - dir = 1 + icon_state = "floor" }, -/area/centcom/legion) +/area/centcom/holding) +"twx" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) "txF" = ( /obj/machinery/atmospherics/valve, /turf/unsimulated/floor{ @@ -23274,35 +23080,6 @@ dir = 5 }, /area/tdome/tdomeadmin) -"tzG" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "escape_shuttle"; - pixel_x = -25; - pixel_y = 0; - req_one_access = list(13); - tag_door = "escape_shuttle_hatch" - }, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"tAe" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/gauss/emp, -/obj/item/ammo_magazine/gauss/emp, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/ammo_magazine/gauss, -/obj/item/weapon/gun/projectile/gauss, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 2; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) "tBx" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; @@ -23313,14 +23090,20 @@ icon_state = "floor" }, /area/centcom/spawning) -"tBH" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/storage/firstaid/regular, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) +"tCJ" = ( +/obj/structure/table/reinforced, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/taperoll/police, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "tEe" = ( /obj/structure/holohoop{ dir = 1 @@ -23329,39 +23112,59 @@ icon_state = "green" }, /area/centcom/holding) +"tEt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) "tEF" = ( /turf/unsimulated/floor{ icon_state = "neutral"; dir = 8 }, /area/tdome) -"tEG" = ( +"tGb" = ( +/obj/effect/floor_decal/spline/plain, +/turf/unsimulated/floor{ + icon_state = "grimy" + }, +/area/centcom/shared_dream) +"tGf" = ( /obj/machinery/light{ dir = 4; - status = 0 + icon_state = "tube1"; + pixel_x = 0 }, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"tMQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft, -/obj/machinery/door/blast/odin{ - dir = 1; - id = "CentComArrivalsForeChkpt"; - name = "Security Doors" +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"tHq" = ( +/obj/machinery/light{ + dir = 2; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/vehicle/bike/speeder, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"tJV" = ( +/obj/effect/decal{ + desc = "A standard newsfeed handler for use on commercial space stations. All the news you absolutely have no use for, in one place!"; + icon = 'icons/obj/terminals.dmi'; + icon_state = "newscaster_normal"; + name = "newscaster"; + pixel_x = -28; + pixel_y = 0 }, /turf/unsimulated/floor{ - icon_state = "floor" + icon_state = "wood" }, -/area/centcom/holding) -"tPv" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/shuttle/escape/centcom) +/area/centcom/shared_dream) +"tPL" = ( +/turf/unsimulated/wall/riveted, +/area/centcom/legion) "tQM" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/sunglasses{ @@ -23382,20 +23185,851 @@ dir = 8 }, /area/centcom/holding) -"tVs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) "tWF" = ( /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 8 }, /area/centcom/spawning) -"tWV" = ( +"tYF" = ( +/obj/item/weapon/extinguisher, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"ucx" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"ucM" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/clothing/suit/storage/vest/legion, +/obj/item/clothing/suit/storage/vest/legion, +/obj/item/clothing/suit/storage/vest/legion, +/obj/item/clothing/suit/storage/vest/legion, +/obj/item/clothing/suit/storage/vest/legion, +/obj/item/clothing/suit/storage/vest/legion, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"ucX" = ( +/obj/effect/landmark{ + name = "skrell_entry" + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "grimy" + }, +/area/centcom/shared_dream) +"ugi" = ( +/obj/machinery/computer/pod{ + id = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"uhS" = ( +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"unX" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"uoa" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"upZ" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/machinery/door/blast/odin{ + dir = 1; + id = "CentComArrivalsForeChkpt"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"uqa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"uri" = ( +/turf/simulated/floor/tiled/dark, +/turf/simulated/shuttle/wall/dark{ + dir = 6; + icon_state = "diagonalWall3" + }, +/area/shuttle/legion/centcom) +"uuc" = ( +/obj/structure/table/standard, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"uwb" = ( +/obj/effect/landmark{ + name = "skrell_entry" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/shared_dream) +"uwE" = ( +/obj/machinery/light/spot{ + icon_state = "tube1"; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"uFF" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/unsimulated/floor{ + icon_state = "grimy" + }, +/area/centcom/shared_dream) +"uGh" = ( +/obj/machinery/button/remote/blast_door{ + id = "odinaslockdown"; + name = "Arrivals Lockdown"; + pixel_x = 8; + pixel_y = 28; + req_access = list(109) + }, +/obj/machinery/button/remote/blast_door{ + id = "odinasshutters"; + name = "Security Shutters"; + pixel_x = -8; + pixel_y = 28; + req_access = list(109) + }, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 5 + }, +/area/centcom/spawning) +"uGx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/merchant_station) +"uGY" = ( +/turf/unsimulated/wall/riveted, +/area/tdome/tdome1) +"uLN" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_dock_airlock"; + locked = 1; + name = "Arrivals Airlock"; + req_access = list(13) + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/centcom/holding) +"uPK" = ( +/obj/structure/flora/pottedplant/random{ + anchored = 1 + }, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 4 + }, +/area/centcom/spawning) +"uRd" = ( +/obj/machinery/door/blast/odin{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "CentComArrivalsAftExt"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"uRX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"uSM" = ( +/obj/machinery/door/airlock/centcom{ + name = "Representative Office"; + req_access = list(38) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"uSR" = ( +/turf/simulated/floor/wood, +/area/centcom/legion) +"uTx" = ( +/obj/machinery/door/airlock/centcom{ + name = "Unisex Restroom" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/centcom/spawning) +"uTP" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/ferry) +"uVE" = ( +/obj/structure/sign/directions/dock{ + dir = 4; + icon_state = "direction_dock"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/unsimulated/floor{ + icon_state = "red"; + dir = 6 + }, +/area/centcom/spawning) +"uVN" = ( +/obj/structure/flora/pottedplant/random, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"uXj" = ( +/obj/structure/flora/pottedplant/random, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"vah" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/shuttle/escape/centcom) +"vaK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/centcom/legion) +"vcI" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"vdL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Staff Only"; + opacity = 1; + req_access = list(109) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/spawning) +"viN" = ( +/obj/machinery/computer/shuttle_control/legion, +/turf/simulated/floor/carpet/blue, +/area/centcom/legion) +"viY" = ( +/obj/structure/bed/chair/comfy/black, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"vnF" = ( +/obj/structure/table/rack, +/obj/item/weapon/melee/energy/sword/knife, +/obj/item/weapon/shield/energy/legion, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"voh" = ( +/turf/unsimulated/floor{ + icon_state = "redcorner"; + dir = 8 + }, +/area/tdome) +"vqe" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome/tdome1) +"vqF" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"vum" = ( +/obj/structure/sign/directions/civ{ + dir = 8; + icon_state = "direction_civ"; + pixel_y = -32 + }, +/turf/unsimulated/floor{ + icon_state = "red"; + dir = 10 + }, +/area/centcom/spawning) +"vve" = ( +/obj/machinery/computer/pod{ + id = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "redyellowfull"; + dir = 5 + }, +/area/tdome/tdomeadmin) +"vJh" = ( +/obj/structure/target_stake, +/obj/item/target, +/obj/effect/decal/warning_stripes, +/turf/unsimulated/floor{ + icon_state = "redfull" + }, +/area/centcom/holding) +"vNK" = ( +/obj/structure/banner/unmovable, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 5 + }, +/area/centcom/spawning) +"vOc" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/shared_dream) +"vOE" = ( +/obj/structure/table/wood, +/obj/item/weapon/newspaper, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"vQx" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"vQX" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"vTb" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"vVq" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"vWC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/tdome) +"vYL" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 5 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/centcom/spawning) +"wbH" = ( +/obj/machinery/door/blast/odin{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "CentComArrivalsForeMid"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"wcG" = ( +/obj/machinery/cryopod/robot, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/centcom/spawning) +"wgU" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon_state = "red"; + dir = 2 + }, +/area/centcom/spawning) +"wjW" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/wrench, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"wpF" = ( +/obj/structure/cryofeed, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/centcom/spawning) +"wsp" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/backpack/legion, +/obj/item/weapon/storage/backpack/legion, +/obj/item/weapon/storage/backpack/legion, +/obj/item/weapon/storage/backpack/legion, +/obj/item/weapon/storage/backpack/legion, +/obj/item/weapon/storage/backpack/legion, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"wtn" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"wtu" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"wtN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"wwM" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + icon_state = "carpet_edges"; + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet"; + dir = 2 + }, +/area/centcom/shared_dream) +"wCV" = ( +/obj/structure/bookcase/libraryspawn/reference{ + opacity = 0 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"wHq" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/weapon/gun/energy/blaster, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"wID" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "legion_shuttle" + }, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/legion/centcom) +"wLt" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome) +"wMr" = ( +/turf/unsimulated/wall/riveted, +/area/tdome/tdome2) +"wSY" = ( +/obj/machinery/door/blast/odin{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "CentComArrivalsAftInt"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"wTs" = ( +/turf/unsimulated/floor{ + icon_state = "red"; + dir = 6 + }, +/area/centcom/holding) +"wUW" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "grass1"; + name = "grass" + }, +/area/centcom/spawning) +"xaE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/northright{ + req_access = list(109) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "odinasshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "blue"; + dir = 1 + }, +/area/centcom/spawning) +"xaM" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome) +"xcE" = ( +/obj/machinery/door/airlock/centcom{ + name = "Security Checkpoint"; + opacity = 1; + req_access = list(109) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/spawning) +"xcV" = ( +/obj/item/mecha_parts/mecha_equipment/tool/extinguisher, +/obj/item/mecha_parts/mecha_equipment/tool/rfd_c, +/obj/item/weapon/pickaxe/diamonddrill, +/obj/structure/table/reinforced/steel, +/obj/item/weapon/pickaxe/diamonddrill, +/obj/item/weapon/pickaxe/diamonddrill, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"xft" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + req_access = list(101) + }, +/obj/machinery/door/blast/odin{ + dir = 1; + id = "CentComArrivalsAftChkpt"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"xiv" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon_state = "redbluefull"; + dir = 8 + }, +/area/tdome/tdomeobserve) +"xjr" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/rifle, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced/crescent{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/window/northleft{ + req_access = list(101) + }, +/obj/item/weapon/storage/box/teargas, +/obj/item/clothing/mask/gas/tactical, +/obj/machinery/light/spot, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"xkF" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon_state = "redbluefull"; + dir = 8 + }, +/area/tdome/tdomeobserve) +"xpH" = ( +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "CentComArrivalsAftDrAft"; + name = "aft bolt control"; + pixel_x = 31; + pixel_y = -5; + req_access = list(101); + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "CentComArrivalsAftDrFore"; + name = "fore bolt control"; + pixel_x = 31; + pixel_y = 5; + req_access = list(101); + specialfunctions = 4 + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"xvL" = ( +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/ferry) +"xyK" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + id_tag = "CentComArrivalsAftDrFore"; + locked = 1; + name = "Aft Checkpoint"; + opacity = 1; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"xzx" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor2" + }, +/area/shuttle/escape/centcom) +"xCV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/ghostspawpoint{ + identifier = "OdinCheckpoint"; + name = "igs - OdinCheckpoint" + }, +/turf/unsimulated/floor{ + icon_state = "floor" + }, +/area/centcom/holding) +"xDP" = ( +/obj/structure/table/reinforced, +/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/tool/passenger, +/obj/item/mecha_parts/mecha_equipment/tool/passenger, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) +"xDW" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "green"; + dir = 4 + }, +/area/centcom/holding) +"xEY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/shuttle/floor{ + icon_state = "floor2" + }, +/area/shuttle/escape/centcom) +"xIt" = ( +/obj/structure/sign/nosmoking_2, +/turf/unsimulated/wall/riveted, +/area/centcom/spawning) +"xIW" = ( +/turf/unsimulated/floor{ + icon_state = "ramptop"; + dir = 2 + }, +/area/centcom/shared_dream) +"xLv" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + name = "plating" + }, +/area/tdome) +"xNc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor3" + }, +/area/shuttle/escape/centcom) +"xOP" = ( /obj/item/stack/material/glass{ amount = 50 }, @@ -23468,665 +24102,13 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark, /area/centcom/legion) -"tYB" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/stunrevolver, -/obj/item/weapon/gun/energy/stunrevolver, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"tYF" = ( -/obj/item/weapon/extinguisher, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"uaX" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/light/small/emergency, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) -"ubN" = ( -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"uei" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"ugi" = ( -/obj/machinery/computer/pod{ - id = "thunderdome"; - name = "Thunderdome Blast Door Control" - }, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"ugx" = ( -/obj/mecha/combat/tank/jotun, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"uja" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/centcom/ferry) -"ukZ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/weapon/handcuffs, -/obj/item/device/flash, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/storage/belt/security/tactical, -/obj/item/weapon/gun/energy/stunrevolver, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"unL" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8; - icon_state = "loadingarea" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"uoA" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; +"xSq" = ( +/obj/machinery/door/airlock/external{ frequency = 1331; - id_tag = "legion_shuttle_vent" + id_tag = "legion_shuttle_interior" }, /turf/simulated/shuttle/plating, /area/shuttle/legion/centcom) -"urE" = ( -/turf/simulated/floor/holofloor/space{ - density = 1 - }, -/area/centcom/shared_dream) -"utM" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"uwy" = ( -/obj/machinery/door/airlock/centcom{ - name = "Medical Preparation"; - req_access = list(111) - }, -/obj/machinery/door/blast/odin/shuttle/tcfl, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"uDy" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/shuttle/escape/centcom) -"uFz" = ( -/obj/structure/table/wood, -/obj/item/weapon/material/ashtray/glass, -/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, -/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) -"uGh" = ( -/obj/machinery/button/remote/blast_door{ - id = "odinaslockdown"; - name = "Arrivals Lockdown"; - pixel_x = 8; - pixel_y = 28; - req_access = list(109) - }, -/obj/machinery/button/remote/blast_door{ - id = "odinasshutters"; - name = "Security Shutters"; - pixel_x = -8; - pixel_y = 28; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 5 - }, -/area/centcom/spawning) -"uGY" = ( -/turf/unsimulated/wall/riveted, -/area/tdome/tdome1) -"uIr" = ( -/obj/machinery/door/airlock/external{ - locked = 1; - req_access = list(110); - welded = 1 - }, -/turf/simulated/floor/tiled, -/area/merchant_station) -"uMl" = ( -/obj/machinery/computer/shuttle_control/legion, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/legion/centcom) -"uMV" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"uNs" = ( -/obj/structure/table/reinforced, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/storage/belt/security/tactical, -/obj/item/weapon/storage/belt/security/tactical, -/obj/item/weapon/storage/belt/security/tactical, -/obj/item/taperoll/police, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"uPK" = ( -/obj/structure/flora/pottedplant/random{ - anchored = 1 - }, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 4 - }, -/area/centcom/spawning) -"uTx" = ( -/obj/machinery/door/airlock/centcom{ - name = "Unisex Restroom" - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/centcom/spawning) -"uUq" = ( -/obj/effect/landmark{ - name = "TCFLCommander" - }, -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"uVE" = ( -/obj/structure/sign/directions/dock{ - dir = 4; - icon_state = "direction_dock"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/unsimulated/floor{ - icon_state = "red"; - dir = 6 - }, -/area/centcom/spawning) -"uYx" = ( -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"uYV" = ( -/obj/mecha/medical/odysseus/loaded, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"vcI" = ( -/obj/structure/bed/chair, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"vdL" = ( -/obj/machinery/door/airlock/centcom{ - name = "Staff Only"; - opacity = 1; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/spawning) -"vge" = ( -/obj/structure/sign/flag/jargon/right, -/turf/simulated/wall/wood, -/area/centcom/shared_dream) -"voh" = ( -/turf/unsimulated/floor{ - icon_state = "redcorner"; - dir = 8 - }, -/area/tdome) -"vqe" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark{ - name = "tdome1" - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/tdome/tdome1) -"vqF" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"vrV" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/item/clothing/suit/storage/vest/legion, -/obj/item/clothing/suit/storage/vest/legion, -/obj/item/clothing/suit/storage/vest/legion, -/obj/item/clothing/suit/storage/vest/legion, -/obj/item/clothing/suit/storage/vest/legion, -/obj/item/clothing/suit/storage/vest/legion, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"vsg" = ( -/obj/machinery/door/blast/odin{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "CentComArrivalsForeExt"; - name = "Security Doors"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"vum" = ( -/obj/structure/sign/directions/civ{ - dir = 8; - icon_state = "direction_civ"; - pixel_y = -32 - }, -/turf/unsimulated/floor{ - icon_state = "red"; - dir = 10 - }, -/area/centcom/spawning) -"vup" = ( -/turf/unsimulated/wall/fakeglass{ - icon_state = "fakewindows2"; - dir = 8 - }, -/area/centcom/shared_dream) -"vve" = ( -/obj/machinery/computer/pod{ - id = "thunderdomeaxe"; - name = "Thunderdome Axe Supply" - }, -/turf/unsimulated/floor{ - icon_state = "redyellowfull"; - dir = 5 - }, -/area/tdome/tdomeadmin) -"vwj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "grimy" - }, -/area/centcom/shared_dream) -"vxN" = ( -/obj/effect/floor_decal/spline/plain, -/turf/unsimulated/floor{ - icon_state = "grimy" - }, -/area/centcom/shared_dream) -"vzY" = ( -/obj/machinery/door/airlock/centcom{ - name = "Hangar"; - req_access = list(111) - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"vEZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/wrench, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"vGR" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/unsimulated/floor{ - icon_state = "grimy" - }, -/area/centcom/shared_dream) -"vJh" = ( -/obj/structure/target_stake, -/obj/item/target, -/obj/effect/decal/warning_stripes, -/turf/unsimulated/floor{ - icon_state = "redfull" - }, -/area/centcom/holding) -"vJk" = ( -/obj/effect/landmark{ - name = "skrell_entry" - }, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "grimy" - }, -/area/centcom/shared_dream) -"vMV" = ( -/obj/machinery/door/airlock/centcom{ - icon_state = "door_locked"; - id_tag = "CentComArrivalsAftDrFore"; - locked = 1; - name = "Aft Checkpoint"; - opacity = 1; - req_access = list(101) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/holding) -"vNK" = ( -/obj/structure/banner/unmovable, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 5 - }, -/area/centcom/spawning) -"vQv" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"vWC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/tdome) -"vYL" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 5 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/centcom/spawning) -"wcG" = ( -/obj/machinery/cryopod/robot, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/centcom/spawning) -"wdb" = ( -/obj/machinery/computer/shuttle_control/legion, -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"wgU" = ( -/obj/structure/window/reinforced, -/turf/unsimulated/floor{ - icon_state = "red"; - dir = 2 - }, -/area/centcom/spawning) -"wpF" = ( -/obj/structure/cryofeed, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/centcom/spawning) -"wyP" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet/blue, -/area/centcom/legion) -"wAW" = ( -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"wBP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"wKb" = ( -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"wLt" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark{ - name = "tdome1" - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/tdome) -"wMr" = ( -/turf/unsimulated/wall/riveted, -/area/tdome/tdome2) -"wNx" = ( -/obj/effect/floor_decal/industrial/loading, -/obj/machinery/door/blast/odin{ - id = "tcfl" - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"wSG" = ( -/obj/structure/coatrack, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/shared_dream) -"wTs" = ( -/turf/unsimulated/floor{ - icon_state = "red"; - dir = 6 - }, -/area/centcom/holding) -"wUW" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/window/reinforced/crescent{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "grass1"; - name = "grass" - }, -/area/centcom/spawning) -"wVE" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_dock_airlock"; - locked = 1; - name = "Arrivals Airlock"; - req_access = list(13) - }, -/turf/unsimulated/floor{ - icon_state = "warnplate"; - dir = 8 - }, -/area/centcom/holding) -"xaE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(109) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "odinasshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/unsimulated/floor{ - icon_state = "blue"; - dir = 1 - }, -/area/centcom/spawning) -"xaM" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/tdome) -"xcE" = ( -/obj/machinery/door/airlock/centcom{ - name = "Security Checkpoint"; - opacity = 1; - req_access = list(109) - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/spawning) -"xhi" = ( -/obj/machinery/door/airlock/centcom{ - name = "Preparation Zone"; - req_access = list(111) - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"xiv" = ( -/obj/machinery/vending/coffee, -/turf/unsimulated/floor{ - icon_state = "redbluefull"; - dir = 8 - }, -/area/tdome/tdomeobserve) -"xkF" = ( -/obj/machinery/vending/cigarette, -/turf/unsimulated/floor{ - icon_state = "redbluefull"; - dir = 8 - }, -/area/tdome/tdomeobserve) -"xmF" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/legion/centcom) -"xua" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"xuS" = ( -/obj/structure/flora/pottedplant/random, -/turf/simulated/floor/tiled, -/area/merchant_station) -"xDW" = ( -/obj/structure/window/reinforced/holowindow/disappearing{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "green"; - dir = 4 - }, -/area/centcom/holding) -"xEX" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 6; - icon_state = "spline_plain" - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/centcom/shared_dream) -"xIp" = ( -/obj/structure/bed/chair/comfy/black, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) -"xIt" = ( -/obj/structure/sign/nosmoking_2, -/turf/unsimulated/wall/riveted, -/area/centcom/spawning) -"xIy" = ( -/obj/mecha/working/ripley/combat, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/centcom/legion) -"xLv" = ( -/obj/effect/landmark{ - name = "tdome2" - }, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/tdome) "xSv" = ( /obj/machinery/light, /turf/unsimulated/floor{ @@ -24134,60 +24116,63 @@ dir = 2 }, /area/centcom/spawning) -"xSM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Corporate Liaison" - }, -/obj/effect/landmark{ - name = "LateJoinCorporate Liaison" - }, -/turf/unsimulated/floor{ - icon_state = "floor" - }, -/area/centcom/ferry) "xTL" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 9 }, /area/centcom/holding) -"xVm" = ( -/turf/unsimulated/wall/riveted, -/area/space) -"xVy" = ( +"xXF" = ( /obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - req_access = list(101) - }, +/obj/machinery/door/window/southright, /obj/machinery/door/blast/odin{ dir = 1; - id = "CentComArrivalsAftChkpt"; + id = "CentComArrivalsForeChkpt"; name = "Security Doors" }, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) +"xYH" = ( +/turf/unsimulated/wall/riveted, +/area/space) +"xYI" = ( +/obj/structure/table/wood, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/shared_dream) +"yet" = ( +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/taperoll/engineering, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) "yeD" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/tdome) -"yeM" = ( -/obj/machinery/door/airlock/glass{ - name = "Emergency Supplies" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/shuttle/escape/centcom) -"ygf" = ( -/turf/unsimulated/wall/riveted, -/area/centcom/legion) "yks" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/lavendergrass, @@ -24201,6 +24186,21 @@ name = "grass" }, /area/centcom/spawning) +"ylk" = ( +/obj/structure/sign/flag/jargon/left, +/turf/simulated/wall/wood, +/area/centcom/shared_dream) +"ymi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/legion) (1,1,1) = {" aaa @@ -26628,7 +26628,7 @@ aMi aMi aPq aMi -xuS +mLC aVg aVg aVg @@ -27911,7 +27911,7 @@ aaM aaM aaM aXy -uIr +bbx aMp aaM alI @@ -28168,7 +28168,7 @@ aaM aaM aaM aMl -efi +gjm aMl aaM aaM @@ -30485,9 +30485,9 @@ aXM aXM aYf aMl -qAt -qAt -dnb +rcV +rcV +uGx aMi aMi aVg @@ -30999,8 +30999,8 @@ aXI aXM aTu aMl -tVs -tVs +bIF +bIF aNr aMi aMi @@ -31258,8 +31258,8 @@ aMl aMl aaM aaM -qBR -jCI +sfn +cgB aTr aVg alC @@ -37401,24 +37401,24 @@ aWW aWW aWW aWW -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT aWW aWW aWW @@ -37658,24 +37658,24 @@ aWW aWW aWW aWW -iix -ygf -ygf -ygf -ygf -ygf +pXT +tPL +tPL +tPL +tPL +tPL aWW aWW -ygf -sRU -sRU -ygf -sRU -sRU -sRU -ygf -ygf -iix +tPL +rgE +rgE +tPL +rgE +rgE +rgE +tPL +tPL +pXT aWW aWW aWW @@ -37915,29 +37915,29 @@ aWW aWW aWW aWW -iix -ygf -hvR -wAW -uei -ygf +pXT +tPL +wsp +gIk +wtn +tPL aWW aWW -ygf -wKb -wKb -ygf -dAY -peS -ukZ -lKQ -ygf -iix -iix -iix -iix -iix -iix +tPL +plE +plE +tPL +uhS +fqX +hjv +wHq +tPL +pXT +pXT +pXT +pXT +pXT +pXT aWW aWW aaM @@ -38172,29 +38172,29 @@ aWW aWW aWW aWW -iix -sRU -bax -wKb -oKT -ygf -sRU -sRU -ygf -oeI -wKb -sRU -wKb -wKb -wKb -wKb -ygf -ygf -sRU -ygf -sRU -ygf -iix +pXT +rgE +dIO +plE +iBs +tPL +rgE +rgE +tPL +kMm +plE +rgE +plE +plE +plE +plE +tPL +tPL +rgE +tPL +rgE +tPL +pXT aWW aWW aaM @@ -38429,29 +38429,29 @@ aWW aWW aWW aWW -iix -sRU -bax -wKb -wKb -sRU -wKb -wKb -wKb -wKb -wKb -sdU -wKb -wKb -wKb -wKb -hCX -wKb -wKb -fbL -wKb -sRU -iix +pXT +rgE +dIO +plE +plE +rgE +plE +plE +plE +plE +plE +hRt +plE +plE +plE +plE +tsf +plE +plE +gGB +plE +rgE +pXT aWW aWW aaM @@ -38686,29 +38686,29 @@ aWW aWW aWW aWW -iix -sRU -bax -wKb -wKb -xhi -wKb -wKb -wKb -wKb -wKb -sRU -wKb -wKb -wKb -wKb -ygf -ygf -ygf -ygf -wKb -ygf -iix +pXT +rgE +dIO +plE +plE +imI +plE +plE +plE +plE +plE +rgE +plE +plE +plE +plE +tPL +tPL +tPL +tPL +plE +tPL +pXT aWW aWW aaM @@ -38943,31 +38943,31 @@ aWW aWW aWW aWW -iix -sRU -bax -wKb -wKb -xhi -wKb -wKb -wKb -wKb -wKb -ygf -gaO -eLO -ibb -jPG -ygf -nch -nch -ygf -wKb -sRU -iix -iix -iix +pXT +rgE +dIO +plE +plE +imI +plE +plE +plE +plE +plE +tPL +geX +fYP +qWA +vnF +tPL +oii +oii +tPL +plE +rgE +pXT +pXT +pXT aaM aaM aaM @@ -39200,31 +39200,31 @@ aWW aWW aWW aWW -iix -sRU -bax -wKb -wKb -sRU -wKb -wKb -wKb -wKb -oKT -ygf -sRU -sRU -sRU -ygf -ygf -ygf -ygf -ygf -fMH -ygf -ygf -ygf -iix +pXT +rgE +dIO +plE +plE +rgE +plE +plE +plE +plE +iBs +tPL +rgE +rgE +rgE +tPL +tPL +tPL +tPL +tPL +gCq +tPL +tPL +tPL +pXT aaM aaM aaM @@ -39457,31 +39457,31 @@ aWW aWW aWW aWW -iix -sRU -bax -wKb -oKT -ygf -sRU -sRU -ygf -oeI -wKb -ygf -jng -wKb -wKb -wKb -gez -ygf -aIJ -aIJ -aIJ -aIJ -dAp -ygf -iix +pXT +rgE +dIO +plE +iBs +tPL +rgE +rgE +tPL +kMm +plE +tPL +iIW +plE +plE +plE +nbF +tPL +uSR +uSR +uSR +uSR +gOW +tPL +pXT aaM aaM aaM @@ -39714,31 +39714,31 @@ aWW aWW aWW aWW -iix -ygf -fHx -xua -szk -ygf -wKb -wKb -ygf -wKb -wKb -sRU -nQz -wKb -wKb -wKb -qOB -ygf -ubN -oTw -ubN -aIJ -aIJ -sRU -iix +pXT +tPL +tkH +qdE +lQc +tPL +plE +plE +tPL +plE +plE +rgE +jFm +plE +plE +plE +knv +tPL +rvv +hLD +rvv +uSR +uSR +rgE +pXT aaM aaM aaM @@ -39971,31 +39971,31 @@ aWW aWW aWW aWW -iix -ygf -ygf -ygf -ygf -ygf -wKb -wKb -sRU -wKb -wKb -uwy -wKb -wKb -wKb -wKb -jZf -ygf -uUq -wyP -eNX -aIJ -aIJ -sRU -iix +pXT +tPL +tPL +tPL +tPL +tPL +plE +plE +rgE +plE +plE +dhL +plE +plE +plE +plE +hLg +tPL +brP +bwJ +hVa +uSR +uSR +rgE +pXT aaM aaM aaM @@ -40228,31 +40228,31 @@ aWW aWW aWW aWW -iix -ygf -ruB -wNx -wKb -wKb -wKb -wKb -sRU -wKb -wKb -sRU -oeI -wKb -wKb -wKb -rAX -ygf -mXo -uMV -ubN -aIJ -aIJ -sRU -iix +pXT +tPL +eAC +ccP +plE +plE +plE +plE +rgE +plE +plE +rgE +kMm +plE +plE +plE +bUL +tPL +vaK +faq +rvv +uSR +uSR +rgE +pXT aaM aaM aaM @@ -40485,31 +40485,31 @@ aWW aWW aWW aWW -iix -ygf -ygf -ygf -oeI -wKb -wKb -bhP -sRU -wKb -wKb -ygf -ryb -arp -rjf -bRw -gQu -ygf -ubN -wdb -ubN -aIJ -aIJ -ygf -iix +pXT +tPL +tPL +tPL +kMm +plE +plE +iDx +rgE +plE +plE +tPL +rxJ +mIn +fdg +jHE +mmc +tPL +rvv +viN +rvv +uSR +uSR +tPL +pXT aaM aaM aaM @@ -40742,31 +40742,31 @@ aWW aWW aWW aWW -iix -ygf -ruB -wNx -wKb -wKb -wKb -bhP -sRU -wKb -oKT -ygf -ygf -sRU -sRU -sRU -ygf -ygf -ygf -ygf -ygf -ygf -rUc -ygf -iix +pXT +tPL +eAC +ccP +plE +plE +plE +iDx +rgE +plE +iBs +tPL +tPL +rgE +rgE +rgE +tPL +tPL +tPL +tPL +tPL +tPL +mOH +tPL +pXT aaM aaM aaM @@ -40999,31 +40999,31 @@ aWW aWW aWW aWW -iix -ygf -ygf -ygf -oeI -wKb -wKb -wKb -sRU -wKb -wKb -ygf -sXY -uNs -muP -wKb -hCm -ygf -wKb -wKb -wKb -wKb -wKb -ygf -iix +pXT +tPL +tPL +tPL +kMm +plE +plE +plE +rgE +plE +plE +tPL +suQ +tCJ +uoa +plE +dDS +tPL +plE +plE +plE +plE +plE +tPL +pXT aaM aaM aaM @@ -41256,31 +41256,31 @@ aWW aWW aWW aWW -iix -ygf -ruB -wNx -wKb -wKb -wKb -wKb -sRU -wKb -wKb -sRU -wKb -wKb -wKb -wKb -fEe -ygf -wKb -wKb -wKb -wKb -wKb -ygf -iix +pXT +tPL +eAC +ccP +plE +plE +plE +plE +rgE +plE +plE +rgE +plE +plE +plE +plE +ioZ +tPL +plE +plE +plE +plE +plE +tPL +pXT aaM aaM aaM @@ -41513,31 +41513,31 @@ aWW aWW aWW aWW -iix -ygf -ygf -ygf -oeI -wKb -wKb -oKT -ygf -oeI -wKb -sRU -oeI -wKb -wKb -wKb -cMG -ygf -oeI -wKb -wKb -wKb -oKT -ygf -iix +pXT +tPL +tPL +tPL +kMm +plE +plE +iBs +tPL +kMm +plE +rgE +kMm +plE +plE +plE +lvG +tPL +kMm +plE +plE +plE +iBs +tPL +pXT aaM aaM aaM @@ -41770,31 +41770,31 @@ aWW aWW aWW aWW -iix -ygf -ruB -wNx -wKb -wKb -wKb -wKb -vzY -wKb -wKb -pLj -wKb -wKb -wKb -wKb -qUz -ygf -eIK -bkH -bkH -piD -wKb -ygf -iix +pXT +tPL +eAC +ccP +plE +plE +plE +plE +fpt +plE +plE +szc +plE +plE +plE +plE +jNg +tPL +blT +mGj +mGj +uqa +plE +tPL +pXT aaM aaM aaM @@ -42027,31 +42027,31 @@ aWW aWW aWW aWW -iix -ygf -ygf -ygf -oeI -wKb -wKb -oKT -ygf -oeI -wKb -sRU -oeI -wKb -wKb -wKb -tAe -ygf -eIK -wKb -ugx -piD -wKb -ygf -iix +pXT +tPL +tPL +tPL +kMm +plE +plE +iBs +tPL +kMm +plE +rgE +kMm +plE +plE +plE +ggL +tPL +blT +plE +dem +uqa +plE +tPL +pXT aaM aaM aaM @@ -42284,31 +42284,31 @@ aWW aWW aWW aWW -iix -ygf -ruB -wNx -wKb -wKb -wKb -wKb -sRU -wKb -wKb -sRU -wKb -wKb -wKb -wKb -gzC -ygf -jxh -caR -caR -piD -oKT -ygf -iix +pXT +tPL +eAC +ccP +plE +plE +plE +plE +rgE +plE +plE +rgE +plE +plE +plE +plE +nRS +tPL +wtu +pHf +pHf +uqa +iBs +tPL +pXT aaM aaM aaM @@ -42541,31 +42541,31 @@ aWW aWW aWW aWW -iix -ygf -ygf -ygf -oeI -wKb -wKb -bhP -sRU -wKb -wKb -ygf -qIM -vrV -nsp -wKb -rdC -ygf -wKb -wKb -wKb -wKb -wKb -ygf -iix +pXT +tPL +tPL +tPL +kMm +plE +plE +iDx +rgE +plE +plE +tPL +eRL +ucM +pRV +plE +otv +tPL +plE +plE +plE +plE +plE +tPL +pXT aaM aaM aaM @@ -42791,38 +42791,38 @@ aaM aaM aaM aaM -iix -iix -iix -iix -iix -iix -iix -iix -ygf -ruB -wNx -wKb -wKb -wKb -bhP -sRU -wKb -oKT -ygf -ygf -sRU -sRU -sRU -ygf -ygf -wKb -wKb -wKb -jOT -wKb -ygf -iix +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +tPL +eAC +ccP +plE +plE +plE +iDx +rgE +plE +iBs +tPL +tPL +rgE +rgE +rgE +tPL +tPL +plE +plE +plE +tGf +plE +tPL +pXT aaM aaM aaM @@ -43048,38 +43048,38 @@ aaM aaM aaM aaM -iix -ygf -ygf -ygf -ygf -ygf -ygf -ygf -ygf -ygf -ygf -oeI -wKb -wKb -wKb -sRU -wKb -wKb -ygf -jPk -tWV -lVS -ctZ -jbf -ygf -ygf -ygf -ygf -ygf -kSx -ygf -iix +pXT +tPL +tPL +tPL +tPL +tPL +tPL +tPL +tPL +tPL +tPL +kMm +plE +plE +plE +rgE +plE +plE +tPL +qrp +xOP +gaa +yet +kmi +tPL +tPL +tPL +tPL +tPL +dqN +tPL +pXT aaM aaM aaM @@ -43305,38 +43305,38 @@ aaM aaM aaM aaM -iix -ygf -caO -utM -wKb -utM -wKb -wKb -utM -wKb -wKb -wKb -wKb -wKb -wKb -ygf -oeI -wKb -sRU -oeI -wKb -wKb -wKb -wKb -pkn -lHs -pkn -lcg -sRU -wKb -sRU -iix +pXT +tPL +mla +qpO +plE +qpO +plE +plE +qpO +plE +plE +plE +plE +plE +plE +tPL +kMm +plE +rgE +kMm +plE +plE +plE +plE +jri +kZY +jri +bIX +rgE +plE +rgE +pXT aaM aaM aaM @@ -43562,38 +43562,38 @@ aaM aaM aaM aaM -iix -bee -kux -caR -unL -unL -caR -caR -caR -caR -caR -caR -caR -caR -lZz -vzY -wKb -wKb -hkI -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -wKb -sRU -wKb -sRU -iix +pXT +dpR +hMq +pHf +fcK +fcK +pHf +pHf +pHf +pHf +pHf +pHf +pHf +pHf +sds +fpt +plE +plE +oKe +plE +plE +plE +plE +plE +plE +plE +plE +plE +rgE +plE +rgE +pXT aaM aaM aaM @@ -43819,38 +43819,38 @@ aaM aaM aaM aaM -iix -bee -eIK -owz -npm -npm -dXV -lGN -lGN -lGN -lGN -lGN -lGN -cOT -piD -ygf -oeI -wKb -sRU -oeI -wKb -wKb -wKb -wKb -ecp -ihv -qgm -qgm -sRU -wKb -sRU -iix +pXT +dpR +blT +faL +bOT +bOT +wID +rMk +rMk +rMk +rMk +rMk +rMk +kbl +uqa +tPL +kMm +plE +rgE +kMm +plE +plE +plE +plE +com +vQX +sWB +sWB +rgE +plE +rgE +pXT aaM aaM aaM @@ -44076,38 +44076,38 @@ aaM aaM aaM aaM -iix -bee -eIK -lGN -uoA -uoA -lGN -gze -smD -gze -nsX -nsX -qWc -geO -piD -sRU -wKb -wKb -ygf -cDv -bSG -bzx -prd -tYB -ygf -ygf -ygf -ygf -ygf -kSx -ygf -iix +pXT +dpR +blT +rMk +mkf +mkf +rMk +kPr +hES +kPr +ooJ +ooJ +ihi +bSv +uqa +rgE +plE +plE +tPL +khE +pXa +bBP +gfM +vQx +tPL +tPL +tPL +tPL +tPL +dqN +tPL +pXT aaM aaM aaM @@ -44333,38 +44333,38 @@ aaM aaM aaM aaM -iix -bee -eIK -lGN -mlN -oFp -lGN -euK -euK -euK -euK -euK -qWc -pjF -piD -sRU -wKb -oKT -ygf -ygf -sRU -sRU -sRU -ygf -ygf -koO -qYR -dAj -jlc -wKb -ygf -iix +pXT +dpR +blT +rMk +eLT +nQT +rMk +lzh +lzh +lzh +lzh +lzh +ihi +kKU +uqa +rgE +plE +iBs +tPL +tPL +rgE +rgE +rgE +tPL +tPL +fQl +cIO +xcV +xDP +plE +tPL +pXT aaM aaM aaM @@ -44590,38 +44590,38 @@ aaM aaM aaM aaM -iix -bee -eIK -lGN -itf -tuD -iaY -euK -euK -uMl -euK -euK -qWc -pjF -piD -sRU -wKb -wKb -sRU -sUv -sup -pTV -pHV -bUA -ygf -wKb -wKb -wKb -wKb -oKT -ygf -iix +pXT +dpR +blT +rMk +byo +ryi +xSq +lzh +lzh +dzJ +lzh +lzh +ihi +kKU +uqa +rgE +plE +plE +rgE +fLN +tqs +bfF +wtN +gpt +tPL +plE +plE +plE +plE +iBs +tPL +pXT aaM aaM aaM @@ -44847,38 +44847,38 @@ aaM aaM aaM aaM -iix -bee -eIK -lGN -myA -uaX -lGN -cUY -euK -euK -euK -euK -qWc -pjF -piD -sRU -wKb -wKb -sRU -oeI -wKb -wKb -wKb -wKb -ygf -oeI -wKb -wKb -wKb -wKb -sRU -iix +pXT +dpR +blT +rMk +sbb +rhh +rMk +mTC +lzh +lzh +lzh +lzh +ihi +kKU +uqa +rgE +plE +plE +rgE +kMm +plE +plE +plE +plE +tPL +kMm +plE +plE +plE +plE +rgE +pXT aaM aaM aaM @@ -45104,38 +45104,38 @@ aaM aaM aaM aaM -iix -bee -eIK -lGN -gVf -xmF -lGN -jNO -hrI -jNO -nsX -nsX -qWc -sAh -piD -sRU -wKb -wKb -iIZ -wKb -wKb -wKb -wKb -wKb -oOz -wKb -wKb -wKb -wKb -wKb -sRU -iix +pXT +dpR +blT +rMk +ljh +iVj +rMk +ixO +lHB +ixO +ooJ +ooJ +ihi +nzK +uqa +rgE +plE +plE +exF +plE +plE +plE +plE +plE +iWk +plE +plE +plE +plE +plE +rgE +pXT aaM aaM aaM @@ -45361,38 +45361,38 @@ aaM aaM aaM aaM -iix -bee -eIK -gtu -lGN -lGN -lGN -lGN -lGN -lGN -lGN -lGN -lGN -nnW -piD -sRU -wKb -wKb -sRU -oeI -wKb -wKb -wKb -wKb -ygf -lgX -wKb -wKb -wKb -qWs -ygf -iix +pXT +dpR +blT +uri +rMk +rMk +rMk +rMk +rMk +rMk +rMk +rMk +rMk +mnr +uqa +rgE +plE +plE +rgE +kMm +plE +plE +plE +plE +tPL +sLc +plE +plE +plE +tHq +tPL +pXT aaM aaM aaM @@ -45618,38 +45618,38 @@ aaM aaM aaM aaM -iix -bee -hxk -bkH -bkH -bkH -bkH -bkH -qGm -bkH -bkH -bkH -bkH -bkH -bPK -ygf -oeI -wKb -sRU -bFS -sur -nhH -twY -mVi -ygf -mHF -wKb -jOT -wKb -sEH -ygf -iix +pXT +dpR +bzY +mGj +mGj +mGj +mGj +mGj +ymi +mGj +mGj +mGj +mGj +mGj +qfi +tPL +kMm +plE +rgE +had +lrJ +shO +frj +iip +tPL +jAR +plE +tGf +plE +lxf +tPL +pXT aaM aaM aaM @@ -45875,38 +45875,38 @@ aaM aaM aaM aaM -iix -ygf -ygf -bLG -bLG -bLG -bLG -bLG -bLG -bLG -bLG -bLG -bLG -bLG -ygf -ygf -sRU -sRU -ygf -ygf -sRU -sRU -ygf -ygf -ygf -ygf -xIy -ygf -uYV -ygf -ygf -iix +pXT +tPL +tPL +fnJ +fnJ +fnJ +fnJ +fnJ +fnJ +fnJ +fnJ +fnJ +fnJ +fnJ +tPL +tPL +rgE +rgE +tPL +tPL +rgE +rgE +tPL +tPL +tPL +tPL +qSp +tPL +ofL +tPL +tPL +pXT aaM aaM aaM @@ -46132,38 +46132,38 @@ aaM aaM aaM aaM -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -iix -ygf -sRU -ygf -sRU -ygf -iix -iix +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +pXT +tPL +rgE +tPL +rgE +tPL +pXT +pXT aaM aaM aaM @@ -46413,13 +46413,13 @@ aWW aWW aWW aWW -iix -iix -iix -iix -iix -iix -iix +pXT +pXT +pXT +pXT +pXT +pXT +pXT aWW aaM aaM @@ -48026,7 +48026,7 @@ aaM aaM aaM aXY -gpt +hcD aXY aaM aaM @@ -48283,7 +48283,7 @@ aaM aaM aaM aXY -ebU +hkt aXY aaM aaM @@ -48540,7 +48540,7 @@ aaM aaM aaM aXY -uja +rZL aXY aaM aaM @@ -48797,7 +48797,7 @@ aaM aXY aXY aXY -rCL +jZN aXY aaM aaM @@ -49051,11 +49051,11 @@ aaM aaM aaM aaM -iNZ -egS -xSM -rEo -iNZ +sSH +vVq +pQl +xvL +sSH aaM aaM aaM @@ -49308,11 +49308,11 @@ aaM aaM aaM aaM -iNZ -lpR -cAT -rEo -iNZ +sSH +egp +ruF +xvL +sSH aaM aaM aaM @@ -49566,9 +49566,9 @@ aaM aaM aaM aXY -psa -mnK -rEo +jVd +hqq +xvL aXY aaM aaM @@ -49823,9 +49823,9 @@ aaM aaM aaM aXY -rEo -rEo -rEo +xvL +xvL +xvL aXY aaM aaM @@ -50079,11 +50079,11 @@ aaM aaM aaM aaM -iNZ -xIp -rEo -rEo -iNZ +sSH +viY +xvL +xvL +sSH aaM aaM aaM @@ -50336,11 +50336,11 @@ aaM aaM aaM aaM -iNZ -uFz -kQs -rEo -iNZ +sSH +lgl +pIj +xvL +sSH aaM aaM aaM @@ -50596,7 +50596,7 @@ aRi aWe aWe aWe -rEo +xvL aXY aaM aaM @@ -50853,7 +50853,7 @@ aLo aRy aRy aWe -rEo +xvL aXY aaM aaM @@ -51012,38 +51012,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -51110,7 +51110,7 @@ aQp aRy aRp aXY -osR +uSM aXY aIb aIb @@ -51269,38 +51269,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -51526,38 +51526,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -51783,38 +51783,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -52040,38 +52040,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -52297,38 +52297,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -52554,38 +52554,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -52811,38 +52811,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -53068,38 +53068,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -53325,38 +53325,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -53582,38 +53582,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -53839,38 +53839,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -54096,38 +54096,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -eGj -eGj -eGj -eGj -eGj -eIo -eGj -eGj -eGj -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +qsb +qsb +qsb +qsb +qsb +dgH +qsb +qsb +qsb +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -54353,38 +54353,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -hBB -bgj -beY -fYS -bSA -bdg -wBP -phq -eGj -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +dLF +vOc +ixY +dRO +tJV +efa +gud +wCV +qsb +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -54610,38 +54610,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -vup -bgj -rNu -fYS -fXF -kLn -qaa -hzu -eGj -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +shc +vOc +lfz +dRO +htG +fty +hHC +jtX +qsb +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -54719,7 +54719,7 @@ aXY aCi aDh aDp -mBn +uTP aLd aEi aCi @@ -54867,38 +54867,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -vup -beT -bFv -fYS -qbl -jem -iSE -hzu -eGj -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +shc +hFp +uwb +dRO +cjq +bhh +cdG +jtX +qsb +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aWW aWW aWW @@ -55124,38 +55124,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -vup -fap -csz -fYS -qbl -jem -pgO -hzu -eGj -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +shc +nOB +cNv +dRO +cjq +bhh +eNH +jtX +qsb +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -55381,38 +55381,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -bXT -omP -csz -xEX -fXF -kCv -oKP -lYs -eIo -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +ovw +pDA +cNv +jNX +htG +qFM +wwM +unX +dgH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -55638,38 +55638,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -eGj -csz -csz -oIg -fXF -fXF -fXF -esL -eGj -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +qsb +cNv +cNv +xIW +htG +htG +htG +bBg +qsb +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -55895,38 +55895,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -eGj -vwj -ijN -oIg -fXF -rxP -gAG -fsV -hBB -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +qsb +ltm +hcK +xIW +htG +gov +vOE +vTb +dLF +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -56152,38 +56152,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -hAn -ijN -ijN -sEr -fXF -rxP -twl -fsV -vup -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +ylk +hcK +hcK +nlQ +htG +gov +xYI +vTb +shc +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -56409,38 +56409,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -vge -qyR -vGR -vxN -fXF -rxP -twl -fsV -bXT -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +rgL +dix +uFF +tGb +htG +gov +xYI +vTb +ovw +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -56666,38 +56666,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -eGj -ijN -vJk -vxN -kLH -wSG -fXF -cQi -eIo -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +qsb +hcK +ucX +tGb +ofH +lhj +htG +onA +dgH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -56923,38 +56923,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -eGj -eGj -qSs -kZH -kVe -qSs -kZH -eGj -eGj -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +qsb +qsb +gII +sPW +kIc +gII +sPW +qsb +qsb +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -57180,38 +57180,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -57437,38 +57437,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -57694,38 +57694,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -57951,38 +57951,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -58208,38 +58208,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -dXP -gVO -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +sBH +gnq +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -58465,38 +58465,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -58722,38 +58722,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -58979,38 +58979,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -59081,7 +59081,7 @@ aSn aSn aZb aXc -ppL +tEt aOB aLs aSn @@ -59236,38 +59236,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -59332,9 +59332,9 @@ aZW aZW aZW aZW -qoi -lRL -lRL +oxQ +pfF +pfF aZW aZW aZW @@ -59344,7 +59344,7 @@ aOB aZW aOB aZW -fbV +evz aZW aZW aZW @@ -59493,38 +59493,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -59589,7 +59589,7 @@ aaM aaM aaM aaM -iHH +cXm aOB aOB aZW @@ -59597,9 +59597,9 @@ aOB aOB aOB aZW -cII +lLp aZW -nTM +wSY aZW aOB aOB @@ -59750,38 +59750,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -59846,21 +59846,21 @@ aaM aaM aaM aaM -iHH +cXm aOB -bXb +eXK aZW -cJR +kJz aOB -kwo -eXd +fok +upZ aOB aUf aOB -pOv -kwo +oXD +fok aOB -dfm +iJt aZW aZW aZW @@ -60007,38 +60007,38 @@ aaM aaM aaM aaM -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE -urE +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi +tmi aaM aWW aWW @@ -60103,21 +60103,21 @@ alI alI alI alI -cmm -eEo -eEo +dAB +qIy +qIy aZW -jJh +dVB aOB aNZ -evd +xXF aOB -enF +ciO aOB -eaE -dQW +fdN +xCV aOB -jJh +dVB aZW aMW aZB @@ -60360,19 +60360,19 @@ aaM aaM aaM aaM -iHH -eEo -eEo -faA +cXm +qIy +qIy +crG aOB aOB -mBm +jxC aZW -qfL +wbH aZW -dFe +bnM aZW -erK +ghA aOB aOB aNw @@ -60617,21 +60617,21 @@ aaM aaM aaM aaM -iHH -eEo -eEo +cXm +qIy +qIy aZW -jJh +dVB aOB aNZ -tMQ +nZr aOB aVe aOB -xVy -dQW +xft +xCV aOB -jJh +dVB aZW aRU aMI @@ -60874,21 +60874,21 @@ aaM aaM aaM aaM -iHH -eEo -gAd +cXm +qIy +kHX aZW -mgj +qCT aOB -kwo -eXd +fok +upZ aOB aLW aOB -pOv -kwo +oXD +fok aOB -fIj +xjr aZW aUy aUy @@ -61131,20 +61131,20 @@ aZW aZW aZW aZW -qoi +oxQ aOB aOB aZW aOB -ffV +aEz aOB aZW -vsg +qCY aZW -fXt +uRd aZW aOB -lSw +xpH aOB aZW aZW @@ -61389,20 +61389,20 @@ aWl aQC aQC aPT -kxR -kxR +pNu +pNu aZW aZW aZW -lwa +cRK aZW aOB aZW aOB aZW -vMV +xyK aZW -cku +ttZ aZW aQC aQC @@ -61654,11 +61654,11 @@ aPT aOB aOB aOB -cLT +uwE aOB aOB aOB -dfJ +uLN aCm aPT aQC @@ -61908,13 +61908,13 @@ aOB aOB aOB aPT -rco -ika +eWk +ofX aOB aOB aOB aOB -rco +eWk aPT aCm aPT @@ -62167,9 +62167,9 @@ aCl aPT aZW aZW -wVE -wVE -wVE +pRW +pRW +pRW aZW aZW aPT @@ -62424,9 +62424,9 @@ aCn ayK azV ayK -lql -lql -lql +cGa +cGa +cGa ayK azV ayK @@ -62672,26 +62672,26 @@ aTn aQC ayK ayK -rLz +syX ayK -vQv +eGH azx -tzG +gaf azx ayK -vQv +eGH azx azx azx azx azx -kAZ +uXj ayK aDT aEm aEB aXi -fLi +sRQ aQC aZW aNj @@ -62929,16 +62929,16 @@ aTn azV azV aDY -saj +hIH ayK aAD azx -uYx -tEG +ucx +dZk aAr azx azx -tEG +dZk azx azx azx @@ -62947,8 +62947,8 @@ aDC aDU aDU aDU -nLj -uDy +vah +mrs aQC aZW aRf @@ -63184,7 +63184,7 @@ aZp aZW aTn azV -khY +rgo azv aDY ayK @@ -63201,11 +63201,11 @@ azV azx azx azV -oWJ -egw -oWJ -nLj -uDy +hHX +qdO +hHX +vah +mrs aQC aZW aRf @@ -63443,26 +63443,26 @@ aTn azV azf azw -aro +qIz aDY -ptB -chs +gvh +ovn ayK ayL -bwQ +pll aQu aQu -lmZ +uRX aQu -emO +gDf azx -iNX +twx ayK aDW aDU aDU -nLj -uDy +vah +mrs aQC aZW aRf @@ -63699,10 +63699,10 @@ aZW aTn azV azg -rkv +jtU azW aDY -imv +dgf aAU aBh azx @@ -63718,7 +63718,7 @@ azV aDX aEp aDX -eQF +pyq aFu aQC aZW @@ -63956,7 +63956,7 @@ aZW aTn azV azh -dBx +bib azX aAp aAG @@ -63964,13 +63964,13 @@ aAV ayK aBB aBR -eEU -eEU -eEU -eEU -dlm +bXa +bXa +bXa +bXa +hjm azx -chs +ovn ayK ayK ayK @@ -64213,25 +64213,25 @@ aZW aTn azV azg -dBx +bib azY aAp aAG aAV ayK aBB -bwQ +pll aQu aQu aQu aQu -emO +gDf azx azx -scs +fxt aDZ -bdf -qjx +idM +rIE ayK ayK aQC @@ -64470,10 +64470,10 @@ aZW aTn azV azg -rkv +jtU azW aDY -qfx +oGc aAU aBh azx @@ -64490,7 +64490,7 @@ aEa aDY aEE aXi -fLi +sRQ aQC aZW aRf @@ -64726,28 +64726,28 @@ aZp aZW aTn azV -bWu +lQh azy -jkj +xNc aDY -bjo -chs +oex +ovn ayK azx aBR -eEU -eEU -eEU -eEU -dlm +bXa +bXa +bXa +bXa +hjm azx azx azV aEa aDY aEE -nLj -uDy +vah +mrs aQC aZW aRf @@ -64984,27 +64984,27 @@ aZW aTn azV aAn -dxQ +hko aDY ayK ayK ayK ayK azx -bwQ +pll aQu aQu aQu aQu -emO +gDf azx azx azV aEb aDY -nxM -nLj -uDy +oTL +vah +mrs aQC aZW aRf @@ -65242,11 +65242,11 @@ aQC azV azV aDY -goF +fgc ayK -beq -tPv -yeM +tjZ +xzx +fxP azx azx azx @@ -65255,13 +65255,13 @@ azx azx azx azx -iNX +twx ayK aEc aEs -ljR -nLj -uDy +uuc +vah +mrs aQC aZW aRf @@ -65499,25 +65499,25 @@ aQC aQC ayK ayK -rLz +syX ayK -qdN -gak +fCn +xEY ayK -tBH +rPt aBR -eEU -eEU -qMP -eEU -dlm +bXa +bXa +eRv +bXa +hjm azx -qps +uVN ayK -lzF -ora -vEZ -eQF +mrD +nLy +wjW +pyq aFu aQC aZW @@ -66523,31 +66523,31 @@ aOv aOv aZp aZW -aDO -kNy -svS -kNy -kNy -kNy -kNy -kNy -kNy -kNy -kNy -kNy -kNy -kNy -svS -kNy -kNy -kNy -kNy -kNy -kNy -kNy -kNy -svS -kNy +kfZ +rRd +tcc +rRd +rRd +rRd +rRd +rRd +rRd +rRd +rRd +rRd +rRd +rRd +tcc +rRd +rRd +rRd +rRd +rRd +rRd +rRd +rRd +tcc +rRd aZW aNs aRf @@ -66779,32 +66779,32 @@ aaM aaM aaM aaM -xVm -xVm -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX -hqX +xYH +xYH +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI +cqI aZW aUy aWh diff --git a/maps/exodus/exodus-5_asteroid.dmm b/maps/exodus/exodus-5_asteroid.dmm index 69d06024915..f0cfeaad3e6 100644 --- a/maps/exodus/exodus-5_asteroid.dmm +++ b/maps/exodus/exodus-5_asteroid.dmm @@ -3809,7 +3809,7 @@ dir = 5; health = 1e+007 }, -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" diff --git a/maps/space_ruins/derelict.dmm b/maps/space_ruins/derelict.dmm index ea0dfbf129f..32f3d15fbde 100644 --- a/maps/space_ruins/derelict.dmm +++ b/maps/space_ruins/derelict.dmm @@ -2823,7 +2823,7 @@ /turf/simulated/floor/airless, /area/derelict/hallway/southwest) "iZ" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/wall, /area/derelict/hallway/southeast) "ja" = ( @@ -3518,7 +3518,7 @@ /turf/simulated/floor/tiled/white, /area/derelict/hallway/southeast) "li" = ( -/obj/structure/sign/bluecross{ +/obj/structure/sign/greencross{ pixel_x = 32 }, /obj/effect/decal/cleanable/dirt, diff --git a/maps/space_ruins/scrapheap.dmm b/maps/space_ruins/scrapheap.dmm index 253d58eb2e5..805051a6fca 100644 --- a/maps/space_ruins/scrapheap.dmm +++ b/maps/space_ruins/scrapheap.dmm @@ -743,7 +743,7 @@ /turf/simulated/floor/wood, /area/derelict/ship) "cm" = ( -/obj/structure/sign/bluecross, +/obj/structure/sign/greencross, /turf/simulated/wall/r_wall, /area/derelict/ship) "cn" = ( @@ -886,6 +886,17 @@ /obj/effect/decal/cleanable/vomit, /turf/simulated/floor/tiled/white, /area/derelict/ship) +"cF" = ( +/turf/simulated/floor, +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/shuttle/wall/dark{ + dir = 8; + icon_state = "diagonalWall3" + }, +/area/derelict/ship) "cG" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -3301,7 +3312,6 @@ dir = 8 }, /turf/simulated/shuttle/wall/dark{ - dir = 8; icon_state = "diagonalWall3" }, /area/derelict/ship) @@ -13400,16 +13410,6 @@ /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/dark, /area/derelict/storage/engine_storage) -"MD" = ( -/turf/simulated/floor, -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion"; - dir = 8 - }, -/turf/simulated/shuttle/wall/dark{ - icon_state = "diagonalWall3" - }, -/area/derelict/ship) "ME" = ( /turf/simulated/shuttle/wall/dark, /area/mine/unexplored) @@ -72710,13 +72710,13 @@ gh gh gh gh -jN +cF pN pJ pJ pJ pJ -MD +jN gh gh gh @@ -73479,7 +73479,7 @@ ad fN gh pG -jN +cF pJ pK kx @@ -73489,7 +73489,7 @@ kx kx pU pJ -MD +jN pG fN ad