From a3b7625c96934c19717b66e0eff85f88bca7e4b7 Mon Sep 17 00:00:00 2001 From: kingofkosmos Date: Sun, 27 Sep 2015 12:33:26 +0300 Subject: [PATCH 001/418] Adds "On Fire" screen alert. Resists when you click it. Adds a warning-message when you try to help-intent someone who's on fire. Makes fire spread from burning people who are lying down take 2 seconds if you stand on top of them. Spreading is immediate if you're covered in flammable stuff. --- code/_onclick/hud/alert.dm | 7 +++++++ code/modules/mob/living/carbon/carbon.dm | 4 ++++ code/modules/mob/living/carbon/human/human.dm | 9 +++++++-- code/modules/mob/living/living_defense.dm | 13 +++++-------- 4 files changed, 23 insertions(+), 10 deletions(-) diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm index d56f4d792e8..69e439c9431 100644 --- a/code/_onclick/hud/alert.dm +++ b/code/_onclick/hud/alert.dm @@ -185,6 +185,10 @@ wall or lattice strucure, to push yourself off of if you want to move. A jetpack magboots would let you walk around normally on the floor. Barring those, you can throw things, use a fire extuingisher, \ or shoot a gun to move around via Newton's 3rd Law of motion." +/obj/screen/alert/fire + name = "On Fire" + desc = "You're on fire. Stop, drop and roll to put the fire out or move to a vacuum area." + //ALIENS /obj/screen/alert/alien_tox @@ -288,6 +292,9 @@ so as to remain in compliance with the most up-to-date laws." return if(master) return usr.client.Click(master, location, control, params) + else if(isliving(usr)) + var/mob/living/L = usr + return L.resist() /obj/screen/alert/Destroy() return QDEL_HINT_PUTINPOOL //Don't destroy me, I have a family! diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index bf6ee02563f..3f0168ff319 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -142,6 +142,10 @@ mode() // Activate held item /mob/living/carbon/proc/help_shake_act(mob/living/carbon/M) + if(on_fire) + M << "You can't put them out with just your bare hands!" + return + if(health >= 0) if(lying) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 7a52ea7fbdb..e451179e787 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -260,13 +260,18 @@ popup.open() // called when something steps onto a human -// this could be made more general, but for now just handle mulebot /mob/living/carbon/human/Crossed(atom/movable/AM) var/obj/machinery/bot/mulebot/MB = AM if(istype(MB)) MB.RunOver(src) - spreadFire(AM) + var/mob/living/carbon/M = AM + if(M.fire_stacks > 0) //stand on top of a burning person when covered in flammable stuff, catch fire + spreadFire(AM) + return + + if(do_after(AM, 20, target = null)) //stand still for too long on top of a burning person, catch fire + spreadFire(AM) //Added a safety check in case you want to shock a human mob directly through electrocute_act. /mob/living/carbon/human/electrocute_act(shock_damage, obj/source, siemens_coeff = 1.0, safety = 0, override = 0) diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 9a332445538..a6068c2d973 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -109,7 +109,10 @@ /mob/living/proc/IgniteMob() if(fire_stacks > 0 && !on_fire) on_fire = 1 + src.visible_message("[src] catches fire!", \ + "You're set on fire!") src.AddLuminosity(3) + throw_alert("fire") update_fire() /mob/living/proc/ExtinguishMob() @@ -117,6 +120,7 @@ on_fire = 0 fire_stacks = 0 src.AddLuminosity(-3) + clear_alert("fire") update_fire() /mob/living/proc/update_fire() @@ -154,18 +158,11 @@ /mob/living/proc/spreadFire(mob/living/L) if(!istype(L)) return - var/L_old_on_fire = L.on_fire if(on_fire) //Only spread fire stacks if we're on fire - fire_stacks /= 2 - L.fire_stacks += fire_stacks + L.fire_stacks = fire_stacks L.IgniteMob() - if(L_old_on_fire) //Only ignite us and gain their stacks if they were onfire before we bumped them - L.fire_stacks /= 2 - fire_stacks += L.fire_stacks - IgniteMob() - //Mobs on Fire end From 58483beb504c49f9f2781bf3b22b4826857d845f Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Tue, 15 Sep 2015 18:41:42 +0100 Subject: [PATCH 002/418] Hand of god gamemode! be_special and antag defines are no longer limited to 16 values (1 - 32768) by being changed from a bitfield to a list, an appropriate block of code exists to automatically update bitfield versions to the new list format. the list format allows us to have (functionally) infinite antag types. --- code/__DEFINES/hud.dm | 3 + code/__DEFINES/preferences.dm | 32 +- code/__HELPERS/game.dm | 4 +- code/__HELPERS/unsorted.dm | 4 +- code/_globalvars/configuration.dm | 4 +- code/_onclick/hud/_defines.dm | 4 + code/_onclick/hud/hud.dm | 10 +- code/_onclick/hud/other_mobs.dm | 26 +- code/controllers/subsystem/jobs.dm | 2 +- code/controllers/subsystem/pai.dm | 2 +- code/datums/hud.dm | 2 + code/datums/mind.dm | 195 ++++++- code/game/gamemodes/blob/blob.dm | 2 +- code/game/gamemodes/changeling/changeling.dm | 2 +- .../game/gamemodes/changeling/traitor_chan.dm | 2 +- code/game/gamemodes/game_mode.dm | 6 +- code/game/gamemodes/handofgod/_handofgod.dm | 452 ++++++++++++++++ code/game/gamemodes/handofgod/god.dm | 122 +++++ code/game/gamemodes/handofgod/items.dm | 180 +++++++ code/game/gamemodes/handofgod/objectives.dm | 125 +++++ code/game/gamemodes/handofgod/powers.dm | 260 +++++++++ code/game/gamemodes/handofgod/structures.dm | 497 ++++++++++++++++++ code/game/gamemodes/handofgod/traps.dm | 115 ++++ .../game/gamemodes/malfunction/malfunction.dm | 2 +- code/game/gamemodes/revolution/revolution.dm | 2 +- code/game/gamemodes/traitor/traitor.dm | 2 +- code/game/gamemodes/wizard/raginmages.dm | 2 +- code/game/machinery/turrets.dm | 18 +- .../items/stacks/sheets/sheet_types.dm | 21 +- code/modules/admin/verbs/one_click_antag.dm | 12 +- code/modules/admin/verbs/randomverbs.dm | 4 +- code/modules/client/preferences.dm | 57 +- code/modules/client/preferences_savefile.dm | 41 +- code/modules/client/preferences_toggles.dm | 5 +- code/modules/mob/transform_procs.dm | 18 + icons/mob/back.dmi | Bin 84017 -> 85689 bytes icons/mob/feet.dmi | Bin 13271 -> 12904 bytes icons/mob/hands.dmi | Bin 7170 -> 7965 bytes icons/mob/head.dmi | Bin 122965 -> 123842 bytes icons/mob/hud.dmi | Bin 3728 -> 3961 bytes icons/mob/inhands/items_lefthand.dmi | Bin 98771 -> 99949 bytes icons/mob/inhands/items_righthand.dmi | Bin 97002 -> 98147 bytes icons/mob/mob.dmi | Bin 223097 -> 224650 bytes icons/obj/clothing/gloves.dmi | Bin 10528 -> 10958 bytes icons/obj/clothing/hats.dmi | Bin 59088 -> 59429 bytes icons/obj/clothing/shoes.dmi | Bin 8701 -> 8953 bytes icons/obj/clothing/suits.dmi | Bin 84634 -> 85040 bytes icons/obj/hand_of_god_structures.dmi | Bin 0 -> 23657 bytes icons/obj/items.dmi | Bin 44439 -> 48207 bytes icons/obj/projectiles.dmi | Bin 32592 -> 32899 bytes tgstation.dme | 7 + 51 files changed, 2159 insertions(+), 83 deletions(-) create mode 100644 code/game/gamemodes/handofgod/_handofgod.dm create mode 100644 code/game/gamemodes/handofgod/god.dm create mode 100644 code/game/gamemodes/handofgod/items.dm create mode 100644 code/game/gamemodes/handofgod/objectives.dm create mode 100644 code/game/gamemodes/handofgod/powers.dm create mode 100644 code/game/gamemodes/handofgod/structures.dm create mode 100644 code/game/gamemodes/handofgod/traps.dm create mode 100644 icons/obj/hand_of_god_structures.dmi diff --git a/code/__DEFINES/hud.dm b/code/__DEFINES/hud.dm index f4f703601a7..6851c7891fa 100644 --- a/code/__DEFINES/hud.dm +++ b/code/__DEFINES/hud.dm @@ -25,3 +25,6 @@ #define ANTAG_HUD_WIZ 8 #define ANTAG_HUD_SHADOW 9 + +#define ANTAG_HUD_HOG_BLUE 10 +#define ANTAG_HUD_HOG_RED 11 diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index 65084617ba1..b5674ad9dd4 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -28,20 +28,22 @@ #define TOGGLES_DEFAULT_CHAT (CHAT_OOC|CHAT_DEAD|CHAT_GHOSTEARS|CHAT_GHOSTSIGHT|CHAT_PRAYER|CHAT_RADIO|CHAT_PULLR|CHAT_GHOSTWHISPER|CHAT_GHOSTPDA|CHAT_GHOSTRADIO) -//Antag toggles +//Antag preferences #define BE_TRAITOR 1 #define BE_OPERATIVE 2 -#define BE_CHANGELING 4 -#define BE_WIZARD 8 -#define BE_MALF 16 -#define BE_REV 32 -#define BE_ALIEN 64 -#define BE_PAI 128 -#define BE_CULTIST 256 -#define BE_BLOB 512 -#define BE_NINJA 1024 -#define BE_MONKEY 2048 -#define BE_GANG 4096 -#define BE_SHADOWLING 8192 -#define BE_ABDUCTOR 16384 -#define BE_REVENANT 32768 +#define BE_CHANGELING 3 +#define BE_WIZARD 4 +#define BE_MALF 5 +#define BE_REV 6 +#define BE_ALIEN 7 +#define BE_PAI 8 +#define BE_CULTIST 9 +#define BE_BLOB 10 +#define BE_NINJA 11 +#define BE_MONKEY 12 +#define BE_GANG 13 +#define BE_SHADOWLING 14 +#define BE_ABDUCTOR 15 +#define BE_REVENANT 16 +#define BE_HOG_GOD 17 +#define BE_HOG_CULTIST 18 diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index 21626590306..b9db0f1e61b 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -290,14 +290,14 @@ // Will return a list of active candidates. It increases the buffer 5 times until it finds a candidate which is active within the buffer. -/proc/get_candidates(be_special_flag=0, afk_bracket=3000) +/proc/get_candidates(be_special_type, afk_bracket=3000) var/list/candidates = list() // Keep looping until we find a non-afk candidate within the time bracket (we limit the bracket to 10 minutes (6000)) while(!candidates.len && afk_bracket < 6000) for(var/mob/dead/observer/G in player_list) if(G.client != null) if(!(G.mind && G.mind.current && G.mind.current.stat != DEAD)) - if(!G.client.is_afk(afk_bracket) && (G.client.prefs.be_special & be_special_flag)) + if(!G.client.is_afk(afk_bracket) && (be_special_type in G.client.prefs.be_special)) candidates += G.client afk_bracket += 600 // Add a minute to the bracket, for every attempt return candidates diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 1bc6978f701..8970de09b22 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -290,6 +290,8 @@ Turf and target are seperate in case you want to teleport some distance from a t newname = pick(mime_names) if("ai") newname = pick(ai_names) + if("deity") + newname = pick(clown_names|ai_names|mime_names) //pick any old name else return @@ -1427,7 +1429,7 @@ B --><-- A stop_orbit() sleep(1) //sadly this is the only way to ensure the original orbit proc stops and resets the atom's transform. if (orbiting || !istype(A)) //post sleep re-check - return + return orbiting = A var/angle = 0 var/matrix/initial_transform = matrix(transform) diff --git a/code/_globalvars/configuration.dm b/code/_globalvars/configuration.dm index 2a4cfb7fb1b..dac3d69f6fd 100644 --- a/code/_globalvars/configuration.dm +++ b/code/_globalvars/configuration.dm @@ -49,5 +49,7 @@ var/list/be_special_flags = list( "Gang" = BE_GANG, "Abductor" = BE_ABDUCTOR, "Revenant" = BE_REVENANT, - "Shadowling" = BE_SHADOWLING + "Shadowling" = BE_SHADOWLING, + "Hand of god, god" = BE_HOG_GOD, + "Hand of god, cultist" = BE_HOG_CULTIST ) diff --git a/code/_onclick/hud/_defines.dm b/code/_onclick/hud/_defines.dm index e6235d4587e..b69241d19ad 100644 --- a/code/_onclick/hud/_defines.dm +++ b/code/_onclick/hud/_defines.dm @@ -124,3 +124,7 @@ #define ui_head "WEST+1:8,SOUTH+3:11" +//Hand of God, god +#define ui_deityhealth "EAST-1:28,CENTER-2:13" +#define ui_deitypower "EAST-1:28,CENTER-1:15" +#define ui_deityfollowers "EAST-1:28,CENTER:17" \ No newline at end of file diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index d947bfa6553..058aaa29b2b 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -97,9 +97,16 @@ var/datum/global_hud/global_hud = new() var/obj/screen/lingchemdisplay var/obj/screen/lingstingdisplay + var/obj/screen/blobpwrdisplay var/obj/screen/blobhealthdisplay + var/obj/screen/alien_plasma_display + + var/obj/screen/deity_health_display + var/obj/screen/deity_power_display + var/obj/screen/deity_follower_display + var/obj/screen/nightvisionicon var/obj/screen/r_hand_hud_object var/obj/screen/l_hand_hud_object @@ -199,7 +206,8 @@ var/datum/global_hud/global_hud = new() drone_hud(ui_style) else if(isswarmer(mymob)) swarmer_hud() - + else if(is_handofgod_god(mymob)) + hoggod_hud() //Version denotes which style should be displayed. blank or 0 means "next version" /datum/hud/proc/show_hud(version = 0) diff --git a/code/_onclick/hud/other_mobs.dm b/code/_onclick/hud/other_mobs.dm index cc9937f5e71..598cf1d3507 100644 --- a/code/_onclick/hud/other_mobs.dm +++ b/code/_onclick/hud/other_mobs.dm @@ -34,4 +34,28 @@ mymob.client.screen = list() mymob.client.screen += list(blobpwrdisplay, blobhealthdisplay) - mymob.client.screen += mymob.client.void \ No newline at end of file + mymob.client.screen += mymob.client.void + + +/datum/hud/proc/hoggod_hud(ui_style = 'icons/mob/screen_midnight.dmi') + deity_health_display = new /obj/screen() + deity_health_display.name = "Nexus Health" + deity_health_display.icon_state = "deity_nexus" + deity_health_display.screen_loc = ui_deityhealth + deity_health_display.layer = 20 + + deity_power_display = new /obj/screen() + deity_power_display.name = "Faith" + deity_power_display.icon_state = "deity_power" + deity_power_display.screen_loc = ui_deitypower + deity_power_display.layer = 20 + + deity_follower_display = new /obj/screen() + deity_follower_display.name = "Followers" + deity_follower_display.icon_state = "deity_followers" + deity_follower_display.screen_loc = ui_deityfollowers + deity_follower_display.layer = 20 + + mymob.client.screen = null + + mymob.client.screen += list(deity_health_display, deity_power_display, deity_follower_display) diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm index 743d799374f..0af03b4370d 100644 --- a/code/controllers/subsystem/jobs.dm +++ b/code/controllers/subsystem/jobs.dm @@ -81,7 +81,7 @@ var/datum/subsystem/job/SSjob if(!job.player_old_enough(player.client)) Debug("FOC player not old enough, Player: [player]") continue - if(flag && (!player.client.prefs.be_special & flag)) + if(flag && (!(flag in player.client.prefs.be_special))) Debug("FOC flag failed, Player: [player], Flag: [flag], ") continue if(player.mind && job.title in player.mind.restricted_roles) diff --git a/code/controllers/subsystem/pai.dm b/code/controllers/subsystem/pai.dm index e4a6ce4b51e..8fe3e03edbb 100644 --- a/code/controllers/subsystem/pai.dm +++ b/code/controllers/subsystem/pai.dm @@ -193,7 +193,7 @@ var/datum/subsystem/pai/SSpai for(var/datum/paiCandidate/c in SSpai.candidates) if(c.key == O.key) hasSubmitted = 1 - if(!hasSubmitted && (O.client.prefs.be_special & BE_PAI)) + if(!hasSubmitted && (BE_PAI in O.client.prefs.be_special)) question(O.client) /datum/subsystem/pai/proc/question(client/C) diff --git a/code/datums/hud.dm b/code/datums/hud.dm index f17de6bbbcb..73a1b86084c 100644 --- a/code/datums/hud.dm +++ b/code/datums/hud.dm @@ -11,6 +11,8 @@ var/datum/atom_hud/huds = list( \ ANTAG_HUD_OPS = new/datum/atom_hud/antag(), \ ANTAG_HUD_WIZ = new/datum/atom_hud/antag(), \ ANTAG_HUD_SHADOW = new/datum/atom_hud/antag(), \ + ANTAG_HUD_HOG_BLUE = new/datum/atom_hud/antag(),\ + ANTAG_HUD_HOG_RED = new/datum/atom_hud/antag(),\ ) /datum/atom_hud diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 116bc8ac19c..8195859a45f 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -184,6 +184,16 @@ remove_objectives() remove_antag_equip() +/datum/mind/proc/remove_hog_follower_prophet() + ticker.mode.red_deity_followers -= src + ticker.mode.red_deity_prophets -= src + ticker.mode.blue_deity_prophets -= src + ticker.mode.blue_deity_followers -= src + ticker.mode.update_hog_icons_removed(src, "red") + ticker.mode.update_hog_icons_removed(src, "blue") + + + /datum/mind/proc/remove_antag_equip() var/list/Mob_Contents = current.get_contents() for(var/obj/item/I in Mob_Contents) @@ -275,7 +285,7 @@ else text += "head|loyal|EMPLOYEE|headrev|rev" - if(current && current.client && current.client.prefs.be_special & BE_REV) + if(current && current.client && (BE_REV in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -293,7 +303,7 @@ else text += "NONE" - if(current && current.client && current.client.prefs.be_special & BE_GANG) + if(current && current.client && (BE_GANG in current.client.prefs.be_special)) text += "|Enabled in Prefs
" else text += "|Disabled in Prefs
" @@ -340,7 +350,7 @@ else text += "loyal|EMPLOYEE|cultist" - if(current && current.client && current.client.prefs.be_special & BE_CULTIST) + if(current && current.client && (BE_CULTIST in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -360,7 +370,7 @@ else text += "yes|NO" - if(current && current.client && current.client.prefs.be_special & BE_WIZARD) + if(current && current.client && (BE_WIZARD in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -384,7 +394,7 @@ // if (istype(changeling) && changeling.changelingdeath) // text += "
All the changelings are dead! Restart in [round((changeling.TIME_TO_GET_REVIVED-(world.time-changeling.changelingdeathtime))/10)] seconds." - if(current && current.client && current.client.prefs.be_special & BE_CHANGELING) + if(current && current.client && (BE_CHANGELING in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -409,7 +419,7 @@ else text += "operative|NANOTRASEN" - if(current && current.client && current.client.prefs.be_special & BE_OPERATIVE) + if(current && current.client && (BE_OPERATIVE in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -428,7 +438,7 @@ else text += "traitor|LOYAL" - if(current && current.client && current.client.prefs.be_special & BE_TRAITOR) + if(current && current.client && (BE_TRAITOR in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -447,7 +457,7 @@ else text += "shadowling|thrall|HUMAN" - if(current && current.client && current.client.prefs.be_special & BE_SHADOWLING) + if(current && current.client && (BE_SHADOWLING in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -466,13 +476,41 @@ else text += "Abductor|human" - if(current && current.client && current.client.prefs.be_special & BE_ABDUCTOR) + if(current && current.client && (BE_ABDUCTOR in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" sections["abductor"] = text + /** HAND OF GOD **/ + text = "hand of god" + if(ticker.mode.config_tag == "handofgod") + text = uppertext(text) + text = "[text]: " + if(src in ticker.mode.red_deity_prophets) + text += "RED PROPHET|red follower|employee|blue follower|blue prophet" + else if (src in ticker.mode.red_deity_followers) + text += "red prophet|RED FOLLOWER|employee|blue follower|blue prophet" + else if (src in ticker.mode.blue_deity_followers) + text += "red prophet|red follower|employee|BLUE FOLLOWER|blue prophet" + else if (src in ticker.mode.blue_deity_prophets) + text += "red prophet|red follower|employee|blue follower|BLUE PROPHET" + else + text += "red prophet|red follower|EMPLOYEE|blue follower|blue prophet" + + if(current && current.client && (BE_HOG_GOD in current.client.prefs.be_special)) + text += "|HOG God Enabled in Prefs" + else + text += "|HOG God Disabled in Prefs" + + if(current && current.client && (BE_HOG_CULTIST in current.client.prefs.be_special)) + text += "|HOG Cultist Enabled in Prefs" + else + text += "|HOG Disabled in Prefs" + + sections["follower"] = text + /** MONKEY ***/ if (istype(current, /mob/living/carbon)) text = "monkey" @@ -494,7 +532,7 @@ else text += "healthy|infected|human|OTHER" - if(current && current.client && current.client.prefs.be_special & BE_MONKEY) + if(current && current.client && (BE_MONKEY in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -525,7 +563,7 @@ n_e_robots++ text += "
[n_e_robots] of [ai.connected_robots.len] slaved cyborgs are emagged. Unemag" - if(current && current.client && current.client.prefs.be_special & BE_MALF) + if(current && current.client && (BE_MALF in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -616,7 +654,7 @@ if(!def_value)//If it's a custom objective, it will be an empty string. def_value = "custom" - var/new_obj_type = input("Select objective type:", "Objective type", def_value) as null|anything in list("assassinate", "maroon", "debrain", "protect", "destroy", "prevent", "hijack", "escape", "survive", "martyr", "steal", "download", "nuclear", "capture", "absorb", "custom") + var/new_obj_type = input("Select objective type:", "Objective type", def_value) as null|anything in list("assassinate", "maroon", "debrain", "protect", "destroy", "prevent", "hijack", "escape", "survive", "martyr", "steal", "download", "nuclear", "capture", "absorb", "custom","follower block (HOG)","build (HOG)","deicide (HOG)", "follower escape (HOG)", "sacrifice prophet (HOG)") if (!new_obj_type) return var/datum/objective/new_objective = null @@ -716,6 +754,22 @@ new_objective.owner = src new_objective.target_amount = target_number + if("follower block (HOG)") + new_objective = new /datum/objective/follower_block + new_objective.owner = src + if("build (HOG)") + new_objective = new /datum/objective/build + new_objective.owner = src + if("deicide (HOG)") + new_objective = new /datum/objective/deicide + new_objective.owner = src + if("follower escape (HOG)") + new_objective = new /datum/objective/escape_followers + new_objective.owner = src + if("sacrifice prophet (HOG)") + new_objective = new /datum/objective/sacrifice_prophet + new_objective.owner = src + if ("custom") var/expl = stripped_input(usr, "Custom objective:", "Objective", objective ? objective.explanation_text : "") if (!expl) return @@ -748,6 +802,36 @@ objective.completed = !objective.completed log_admin("[key_name(usr)] toggled the win state for [current]'s objective: [objective.explanation_text]") + else if (href_list["handofgod"]) + switch(href_list["handofgod"]) + if("clear") //wipe handofgod status + if((src in ticker.mode.red_deity_followers) || (src in ticker.mode.blue_deity_followers) || (src in ticker.mode.red_deity_prophets) || (src in ticker.mode.blue_deity_prophets)) + remove_hog_follower_prophet() + current << "You have been brainwashed... again! Your faith is no more!" + message_admins("[key_name_admin(usr)] has de-hand of god'ed [current].") + log_admin("[key_name(usr)] has de-hand of god'ed [current].") + + if("red follower") + make_Handofgod_follower("red") + message_admins("[key_name_admin(usr)] has red follower'ed [current].") + log_admin("[key_name(usr)] has red follower'ed [current].") + + if("red prophet") + make_Handofgod_prophet("red") + message_admins("[key_name_admin(usr)] has red prophet'ed [current].") + log_admin("[key_name(usr)] has red prophet'ed [current].") + + if("blue follower") + make_Handofgod_follower("blue") + message_admins("[key_name_admin(usr)] has blue follower'ed [current].") + log_admin("[key_name(usr)] has blue follower'ed [current].") + + if("blue prophet") + make_Handofgod_prophet("blue") + message_admins("[key_name_admin(usr)] has blue prophet'ed [current].") + log_admin("[key_name(usr)] has blue prophet'ed [current].") + + else if (href_list["revolution"]) switch(href_list["revolution"]) if("clear") @@ -1442,6 +1526,93 @@ H.loc = L.loc +/datum/mind/proc/make_Handofgod_follower(colour) + . = 0 + switch(colour) + if("red") + //Remove old allegiances + if(src in ticker.mode.blue_deity_followers || src in ticker.mode.blue_deity_prophets) + current << "You are no longer a member of the Blue cult!" + + ticker.mode.blue_deity_followers -= src + ticker.mode.blue_deity_prophets -= src + + if(src in ticker.mode.red_deity_prophets) + current << "You have lost the connection with your deity, but you still believe in their grand design, You are no longer a prophet!" + ticker.mode.red_deity_prophets -= src + + ticker.mode.red_deity_followers |= src + current << "You are now a follower of the red cult's god!" + + special_role = "Hand of God: Red Follower" + . = 1 + if("blue") + //Remove old allegiances + if(src in ticker.mode.red_deity_followers || src in ticker.mode.red_deity_prophets) + current << "You are no longer a member of the Red cult!" + + ticker.mode.red_deity_followers -= src + ticker.mode.red_deity_prophets -= src + + if(src in ticker.mode.blue_deity_prophets) + current << "You have lost the connection with your deity, but you still believe in their grand design, You are no longer a prophet!" + ticker.mode.blue_deity_prophets -= src + + ticker.mode.blue_deity_followers |= src + current << "You are now a follower of the blue cult's god!" + + special_role = "Hand of God: Blue Follower" + . = 1 + else + return 0 + + ticker.mode.update_hog_icons_removed(src,"red") + ticker.mode.update_hog_icons_removed(src,"blue") + ticker.mode.greet_hog_follower(src,colour) + ticker.mode.update_hog_icons_added(src, colour) + +/datum/mind/proc/make_Handofgod_prophet(colour) + . = 0 + switch(colour) + if("red") + //Remove old allegiances + + if(src in ticker.mode.blue_deity_followers || src in ticker.mode.blue_deity_prophets) + current << "You are no longer a member of the Blue cult!" + + ticker.mode.blue_deity_followers -= src + ticker.mode.blue_deity_prophets -= src + ticker.mode.red_deity_followers -= src + + ticker.mode.red_deity_prophets |= src + current << "You are now a prophet of the red cult's god!" + + special_role = "Hand of God: Red Prophet" + . = 1 + if("blue") + //Remove old allegiances + + if(src in ticker.mode.red_deity_followers || src in ticker.mode.red_deity_prophets) + current << "You are no longer a member of the Red cult!" + + ticker.mode.red_deity_followers -= src + ticker.mode.red_deity_prophets -= src + ticker.mode.blue_deity_followers -= src + + ticker.mode.blue_deity_prophets |= src + current << "You are now a prophet of the blue cult's god!" + + special_role = "Hand of God: Blue Prophet" + . = 1 + + else + return 0 + + ticker.mode.update_hog_icons_removed(src,"red") + ticker.mode.update_hog_icons_removed(src,"blue") + ticker.mode.greet_hog_follower(src,colour) + ticker.mode.update_hog_icons_added(src, colour) + /datum/mind/proc/AddSpell(obj/effect/proc_holder/spell/spell) spell_list += spell diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm index 06153d71aff..8f468a7abb9 100644 --- a/code/game/gamemodes/blob/blob.dm +++ b/code/game/gamemodes/blob/blob.dm @@ -53,7 +53,7 @@ var/list/blob_nodes = list() /datum/game_mode/blob/proc/get_blob_candidates() var/list/candidates = list() for(var/mob/living/carbon/human/player in player_list) - if(!player.stat && player.mind && !player.mind.special_role && !jobban_isbanned(player, "Syndicate") && (player.client.prefs.be_special & BE_BLOB)) + if(!player.stat && player.mind && !player.mind.special_role && !jobban_isbanned(player, "Syndicate") && (BE_BLOB in player.client.prefs.be_special)) if(age_check(player.client)) candidates += player return candidates diff --git a/code/game/gamemodes/changeling/changeling.dm b/code/game/gamemodes/changeling/changeling.dm index a88707f19cc..76261e44be0 100644 --- a/code/game/gamemodes/changeling/changeling.dm +++ b/code/game/gamemodes/changeling/changeling.dm @@ -105,7 +105,7 @@ var/list/slot2type = list("head" = /obj/item/clothing/head/changeling, "wear_mas if(ticker.mode.changelings.len >= changelingcap) //Caps number of latejoin antagonists return if(ticker.mode.changelings.len <= (changelingcap - 2) || prob(100 - (config.changeling_scaling_coeff*2))) - if(character.client.prefs.be_special & BE_CHANGELING) + if(BE_CHANGELING in character.client.prefs.be_special) if(!jobban_isbanned(character.client, "changeling") && !jobban_isbanned(character.client, "Syndicate")) if(age_check(character.client)) if(!(character.job in restricted_jobs)) diff --git a/code/game/gamemodes/changeling/traitor_chan.dm b/code/game/gamemodes/changeling/traitor_chan.dm index b236141c7f3..99d4b8bef22 100644 --- a/code/game/gamemodes/changeling/traitor_chan.dm +++ b/code/game/gamemodes/changeling/traitor_chan.dm @@ -66,7 +66,7 @@ ..() return if(ticker.mode.changelings.len <= (changelingcap - 2) || prob(100 / (config.changeling_scaling_coeff * 4))) - if(character.client.prefs.be_special & BE_CHANGELING) + if(BE_CHANGELING in character.client.prefs.be_special) if(!jobban_isbanned(character.client, "changeling") && !jobban_isbanned(character.client, "Syndicate")) if(age_check(character.client)) if(!(character.job in restricted_jobs)) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index b47f6b500c3..68d77aab7a9 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -304,6 +304,8 @@ if(BE_CULTIST) roletext="cultist" if(BE_MONKEY) roletext="monkey" if(BE_ABDUCTOR) roletext="abductor" + if(BE_HOG_GOD) roletext="hand of god, god" + if(BE_HOG_CULTIST) roletext="hand of god, cultist" // Ultimate randomizing code right here @@ -317,7 +319,7 @@ for(var/mob/new_player/player in players) if(player.client && player.ready) - if(player.client.prefs.be_special & role) + if(role in player.client.prefs.be_special) if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, roletext)) //Nodrak/Carn: Antag Job-bans if(age_check(player.client)) //Must be older than the minimum age candidates += player.mind // Get a list of all the people who want to be the antagonist for this round @@ -331,7 +333,7 @@ if(candidates.len < recommended_enemies) for(var/mob/new_player/player in players) if(player.client && player.ready) - if(!(player.client.prefs.be_special & role)) // We don't have enough people who want to be antagonist, make a seperate list of people who don't want to be one + if(!(role in player.client.prefs.be_special)) // We don't have enough people who want to be antagonist, make a seperate list of people who don't want to be one if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, roletext)) //Nodrak/Carn: Antag Job-bans drafted += player.mind diff --git a/code/game/gamemodes/handofgod/_handofgod.dm b/code/game/gamemodes/handofgod/_handofgod.dm new file mode 100644 index 00000000000..f80448f5586 --- /dev/null +++ b/code/game/gamemodes/handofgod/_handofgod.dm @@ -0,0 +1,452 @@ + +var/global/list/global_handofgod_traptypes = list() +var/global/list/global_handofgod_structuretypes = list() +var/global/list/global_handofgod_itemtypes = list() + + +/datum/game_mode + var/list/datum/mind/red_deities = list() + var/list/datum/mind/red_deity_prophets = list() + var/list/datum/mind/red_deity_followers = list() + + var/list/datum/mind/blue_deities = list() + var/list/datum/mind/blue_deity_prophets = list() + var/list/datum/mind/blue_deity_followers = list() + + var/list/datum/mind/unassigned_followers = list() //for roundstart team assigning + var/list/datum/mind/assigned_to_red = list() + var/list/datum/mind/assigned_to_blue = list() + + +/datum/game_mode/hand_of_god + name = "hand of god" + config_tag = "handofgod" + antag_flag = BE_HOG_CULTIST //Followers use BE_HOG_CULTIST, Gods are picked later on with BE_HOG_GOD + + required_players = 1 //20-25+ + required_enemies = 0 //This MUST be an even number to function properly. This number counts + //all enemy players involved, as in both teams combined. Recommended: 8 + //If you want to test something by yourself, set to zero. Note that you will produce one unavoidable + //runtime due to an empty list being pick()'d. + + recommended_enemies = 2 + + restricted_jobs = list("Chaplain","AI", "Cyborg", "Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Head of Personnel") + var/finished = 0 + + +/datum/game_mode/hand_of_god/announce() + world << "The current game mode is - Hand of God!" + world << "Two cults are onboard the station, seeking to overthrow the other, and anyone who stands in their way." + world << "Followers - complete your deity's objectives. Convert crewmembers to your cause by using your deity's nexus. Remember - there is no you, there is only the cult." + world << "Prophets - Command your cult by the will of your deity. You are a high-value target, so be careful!" + world << "Personnel - Do not let any cult succeed in its mission. Loyalty implants and holy water will revert them to neutral, hopefully nonviolent crew." + + +///////////// +//Pre setup// +///////////// + +/datum/game_mode/hand_of_god/pre_setup() + if(config.protect_roles_from_antagonist) + restricted_jobs += protected_jobs + + if(config.protect_assistant_from_antagonist) + restricted_jobs += "Assistant" + + for(var/datum/mind/player in antag_candidates) + for(var/job in restricted_jobs) //Remove heads and junk + if(player.assigned_role == job) + antag_candidates -= player + + for(var/F in 1 to recommended_enemies) + if(!antag_candidates.len) + break + var/datum/mind/follower = pick_n_take(antag_candidates) + unassigned_followers += follower + log_game("[follower.key] (ckey) has been selected as a follower, However teams have not been decided yet.") + + while(unassigned_followers.len > (required_enemies / 2)) + var/datum/mind/chosen = pick_n_take(unassigned_followers) + add_hog_follower(chosen,"red") + + while(unassigned_followers.len) + var/datum/mind/chosen = pick_n_take(unassigned_followers) + add_hog_follower(chosen,"blue") + + return 1 + + +////////////// +//Post Setup// +////////////// + +//Pick a follower to uplift into a god +/datum/game_mode/hand_of_god/post_setup() + + //Find viable red god + var/list/red_god_possibilities = get_players_for_role(BE_HOG_GOD) + red_god_possibilities &= red_deity_followers //followers only + if(!red_god_possibilities.len) //No candidates? just pick any follower regardless of prefs + red_god_possibilities = red_deity_followers + + //Make red god + var/datum/mind/red_god = pick_n_take(red_god_possibilities) + red_god.current.become_god("red") + ticker.mode.forge_deity_objectives(red_god) + remove_hog_follower(red_god,0) + add_god(red_god,"red") + + //Find viable blue god + var/list/blue_god_possibilities = get_players_for_role(BE_HOG_GOD) + blue_god_possibilities &= blue_deity_followers //followers only + if(!blue_god_possibilities.len) //No candidates? just pick any follower regardless of prefs + blue_god_possibilities = blue_deity_followers + + var/datum/mind/blue_god = pick_n_take(blue_god_possibilities) + blue_god.current.become_god("blue") + ticker.mode.forge_deity_objectives(blue_god) + remove_hog_follower(blue_god,0) + add_god(blue_god,"blue") + + +/////////////////// +//Objective Procs// +/////////////////// + +/datum/game_mode/proc/forge_deity_objectives(datum/mind/deity) + switch(rand(1,100)) + if(1 to 30) + var/datum/objective/deicide/deicide = new + deicide.owner = deity + deicide.find_target() + deity.objectives += deicide + + if(!(locate(/datum/objective/escape_followers) in deity.objectives)) + var/datum/objective/escape_followers/recruit = new + recruit.owner = deity + deity.objectives += recruit + recruit.gen_amount_goal(8, 12) + + if(31 to 60) + var/datum/objective/sacrifice_prophet/sacrifice = new + sacrifice.owner = deity + deity.objectives += sacrifice + + if(!(locate(/datum/objective/escape_followers) in deity.objectives)) + var/datum/objective/escape_followers/recruit = new + recruit.owner = deity + deity.objectives += recruit + recruit.gen_amount_goal(8, 12) + + if(61 to 85) + var/datum/objective/build/build = new + build.owner = deity + deity.objectives += build + build.gen_amount_goal(8, 16) + + var/datum/objective/sacrifice_prophet/sacrifice + sacrifice.owner = deity + deity.objectives += sacrifice + + if(!(locate(/datum/objective/escape_followers) in deity.objectives)) + var/datum/objective/escape_followers/recruit = new + recruit.owner = deity + deity.objectives += recruit + recruit.gen_amount_goal(8, 12) + + else + if (!locate(/datum/objective/follower_block) in deity.objectives) + var/datum/objective/follower_block/block = new + block.owner = deity + deity.objectives += block + +/////////////// +//Greet procs// +/////////////// + +/datum/game_mode/proc/greet_hog_follower(datum/mind/follower_mind,colour) + if(colour) + follower_mind.current << "You are a follwer of the [colour] cult's god!" + else + follower_mind.current << "You are a follwer of a cult's god!" + + +///////////////// +//Convert procs// +///////////////// + +/datum/game_mode/proc/add_hog_follower(datum/mind/follower_mind, colour = "No Colour") + var/mob/living/carbon/human/H = follower_mind.current + if(isloyal(H)) + H << "Your loyalty implant blocked the influence of the [colour] deity. " + return 0 + if((follower_mind in red_deity_followers) || (follower_mind in red_deity_prophets) || (follower_mind in blue_deity_followers) || (follower_mind in blue_deity_prophets)) + H << "You already belong to a deity, your strong faith has blocked out the conversion attempt by the followers of the [colour] deity." + return 0 + var/obj/item/weapon/nullrod/N = locate() in H + if(N) + H << "Your null rod prevented the [colour] deity from brainwashing you." + return 0 + + if(colour == "red") + red_deity_followers += follower_mind + if(colour == "blue") + blue_deity_followers += follower_mind + + update_hog_icons_added(follower_mind, colour) + follower_mind.special_role = "Hand of God: [capitalize(colour)] Follower" + follower_mind.current.attack_log += "\[[time_stamp()]\] Has been converted to the [colour] follower cult!" + return 1 + + +/datum/game_mode/proc/add_god(datum/mind/god_mind, colour = "No Colour") + if(colour == "red") + red_deities += god_mind + if(colour == "blue") + blue_deities += god_mind + god_mind.current.attack_log += "\[[time_stamp()]\] Has been made into a [colour] deity!" + god_mind.special_role = "Hand of God: [colour] God" + update_hog_icons_added(god_mind, colour) + +////////////////// +//Deconvert proc// +////////////////// + +/datum/game_mode/proc/remove_hog_follower(datum/mind/follower_mind, announce = 1)//deconverts both + follower_mind.remove_hog_follower_prophet() + update_hog_icons_removed(follower_mind,"red") + update_hog_icons_removed(follower_mind,"blue") + + if(announce) + follower_mind.current.attack_log += "\[[time_stamp()]\] Has been deconverted from a deity's cult!" + follower_mind.current << "Your mind has been cleared from the brainwashing the followers have done to you. Now you serve yourself and the crew." + for(var/mob/living/M in view(follower_mind.current)) + M << "[follower_mind.current] looks like their faith is shattered, they're no longer a cultist!" + + + +////////////////////// +// Mob helper procs // +////////////////////// + +/proc/is_handofgod_god(A) + if(istype(A, /mob/camera/god)) + return 1 + return 0 + + +/proc/is_handofgod_bluecultist(A) + if(ishuman(A)) + var/mob/living/carbon/human/H = A + if(H.mind) + if(H.mind in ticker.mode.blue_deity_followers|ticker.mode.blue_deity_prophets) + return 1 + return 0 + + +/proc/is_handofgod_redcultist(A) + if(ishuman(A)) + var/mob/living/carbon/human/H = A + if(H.mind) + if(H.mind in ticker.mode.red_deity_followers|ticker.mode.red_deity_prophets) + return 1 + return 0 + + +/proc/is_handofgod_blueprophet(A) + if(ishuman(A)) + var/mob/living/carbon/human/H = A + if(H.mind) + if(H.mind in ticker.mode.blue_deity_prophets) + return 1 + return 0 + + +/proc/is_handofgod_redprophet(A) + if(ishuman(A)) + var/mob/living/carbon/human/H = A + if(H.mind) + if(H.mind in ticker.mode.red_deity_prophets) + return 1 + return 0 + + + +/proc/is_handofgod_cultist(A) //any of them what so ever, blue, red, hot pink, whatever. + if(is_handofgod_redcultist(A)) + return 1 + if(is_handofgod_bluecultist(A)) + return 1 + return 0 + + +/proc/is_handofgod_prophet(A) //any of them what so ever, blue, red, hot pink, whatever + if(ishuman(A)) + var/mob/living/carbon/human/H = A + if(H.mind) + if(H.mind in ticker.mode.blue_deity_prophets|ticker.mode.red_deity_prophets) + return 1 + return 0 + + +/mob/camera/god/proc/is_handofgod_myprophet(A) + if(!ishuman(A)) + return 0 + var/mob/living/carbon/human/H = A + if(!H.mind) + return 0 + + if(side == "red") + if(H.mind in ticker.mode.red_deity_prophets) + return 1 + else if(side == "blue") + if(H.mind in ticker.mode.blue_deity_prophets) + return 1 + + +////////////////////// +//Roundend Reporting// +////////////////////// + + +/datum/game_mode/proc/declare_completion_handofgod() + if(red_deities.len) + var/text = "
The red cult:" + for(var/datum/mind/red_god in red_deities) + var/godwin = 1 + + text += "
[red_god.key] was the red deity, [red_god.name] (" + if(red_god.current) + if(red_god.current.stat == DEAD) + text += "died" + else + text += "survived" + else + text += "ceased existing, guess they got deleted rofl" + text += ")" + if(red_deity_prophets.len) + for(var/datum/mind/red_prophet in red_deity_prophets) + text += "
The red prophet was [red_prophet.name] ([red_prophet.key])" + else + text += "
the red prophet was killed for their beliefs." + + text += "
Red follower count: [red_deity_followers.len]" + text += "
Red followers: " + for(var/datum/mind/player in red_deity_followers) + text += "[player.name] ([player.key])" + + var/objectives = "" + if(red_god.objectives.len) + var/count = 1 + for(var/datum/objective/O in red_god.objectives) + if(O.check_completion()) + objectives += "
Objective #[count]: [O.explanation_text] Success!" + feedback_add_details("god_objective","[O.type]|SUCCESS") + else + objectives += "
Objective #[count]: [O.explanation_text] Fail." + feedback_add_details("god_objective","[O.type]|FAIL") + godwin = 0 + count++ + + text += objectives + + if(godwin) + text += "
The red cult and deity were successful!" + feedback_add_details("god_success","SUCCESS") + else + text += "
The red cult and deity have failed!" + feedback_add_details("god_success","FAIL") + + text += "
" + + world << text + + if(blue_deities.len) + var/text = "
The blue cult:" + for(var/datum/mind/blue_god in blue_deities) + var/godwin = 1 + + text += "
[blue_god.key] was the blue deity, [blue_god.name] (" + if(blue_god.current) + if(blue_god.current.stat == DEAD) + text += "died" + else + text += "survived" + else + text += "ceased existing, guess they got deleted rofl" + text += ")" + if(blue_deity_prophets.len) + for(var/datum/mind/blue_prophet in blue_deity_prophets) + text += "
The blue prophet was [blue_prophet.name] ([blue_prophet.key])" + else + text += "
the blue prophet was killed for their beliefs." + + text += "
Blue follower count: [blue_deity_followers.len]" + text += "
Blue followers: " + for(var/datum/mind/player in blue_deity_followers) + text += "[player.name] ([player.key])" + + var/objectives = "" + if(blue_god.objectives.len) + var/count = 1 + for(var/datum/objective/O in blue_god.objectives) + if(O.check_completion()) + objectives += "
Objective #[count]: [O.explanation_text] Success!" + feedback_add_details("god_objective","[O.type]|SUCCESS") + else + objectives += "
Objective #[count]: [O.explanation_text] Fail." + feedback_add_details("god_objective","[O.type]|FAIL") + godwin = 0 + count++ + + text += objectives + + if(godwin) + text += "
The blue cult and deity were successful!" + feedback_add_details("god_success","SUCCESS") + else + text += "
The blue cult and deity have failed!" + feedback_add_details("god_success","FAIL") + + text += "
" + + world << text + + ..() + return 1 + + +/datum/game_mode/proc/update_hog_icons_added(datum/mind/hog_mind,side) + var/hud_key + var/rank = 0 + if(side == "red") + hud_key = ANTAG_HUD_HOG_RED + if(is_handofgod_redprophet(hog_mind)) + rank = 1 + + else if(side == "blue") + hud_key = ANTAG_HUD_HOG_BLUE + if(is_handofgod_blueprophet(hog_mind)) + rank = 1 + + if(is_handofgod_god(hog_mind)) + rank = 2 + + if(hud_key) + var/datum/atom_hud/antag/hog_hud = huds[hud_key] + hog_hud.join_hud(hog_mind.current) + set_antag_hud(hog_mind.current, "hog-[side]-[rank]") + + +/datum/game_mode/proc/update_hog_icons_removed(datum/mind/hog_mind,side) + var/hud_key + if(side == "red") + hud_key = ANTAG_HUD_HOG_RED + else if(side == "blue") + hud_key = ANTAG_HUD_HOG_BLUE + + if(hud_key) + var/datum/atom_hud/antag/hog_hud = huds[hud_key] + hog_hud.leave_hud(hog_mind.current) + set_antag_hud(hog_mind.current,null) diff --git a/code/game/gamemodes/handofgod/god.dm b/code/game/gamemodes/handofgod/god.dm new file mode 100644 index 00000000000..31d39ea8bfe --- /dev/null +++ b/code/game/gamemodes/handofgod/god.dm @@ -0,0 +1,122 @@ + +/mob/camera/god + name = "deity" //Auto changes to the player's deity name/random name + real_name = "deity" + icon = 'icons/mob/mob.dmi' + icon_state = "marker" + invisibility = 60 + see_in_dark = 0 + sight = SEE_TURFS | SEE_MOBS | SEE_OBJS | SEE_SELF + languages = HUMAN | MONKEY | ALIEN | ROBOT | SLIME | DRONE | SWARMER + + var/faith = 0 + var/max_faith = 100 + var/side = "neutral" //Red or Blue for the gamemode + var/obj/structure/divine/nexus/god_nexus = null //The source of the god's power in this realm, kill it and the god is kill + var/nexus_required = FALSE //If the god dies from losing it's nexus, defaults to off so that gods don't instantly die at roundstart + var/followers_required = 0 //Same as above + var/alive_followers = 0 + var/mob/living/carbon/human/prophet = null //The prophet of this god + var/list/structures = list() + var/prophets_sacrificed_in_name = 0 + + +/mob/camera/god/New(loc, newName, side = "neutral") + ..() + real_name = newName + name = real_name + side = side + update_icons() + + +/mob/camera/god/update_icons() + icon_state = "[initial(icon_state)]-[side]" + + +/mob/camera/god/Stat() + ..() + if(statpanel("Status")) + if(god_nexus) + stat("Nexus health: ", god_nexus.health) + stat("Followers: ", alive_followers) + stat("Faith: ", "[faith]/[max_faith]") + + +/mob/camera/god/Login() + ..() + sync_mind() + src << "You are a deity!" + src << "You are a deity and are worshipped by a cult! You are rather weak right now, but that will change as you gain more followers." + src << "You will need to place an anchor to this world, a Nexus, in two minutes. If you don't, one will be placed for you randomly." + src << "Your Follower count determines how many people believe in you and are a part of your cult. If this drops to zero, you will die." + src << "Your Nexus Integrity tells you the condition of your nexus. If your nexus is destroyed, you die as well, but your powers are amplified when near it." + src << "Your Faith is used to interact with the world. This will regenerate on it's own, and it goes faster when you have more followers." + src << "The first thing you should do after placing your nexus is to appoint a prophet. Only prophets can hear you talk, unless you use an expensive power." + update_health_hud() + + +/mob/camera/god/proc/update_health_hud() + if(god_nexus && hud_used && hud_used.deity_health_display) + hud_used.deity_health_display.maptext = "
[god_nexus.health]
" + + +/mob/camera/god/proc/add_faith(faith_amt) + if(faith_amt) + faith = Clamp(faith+faith_amt, 0, max_faith) + if(hud_used && hud_used.deity_power_display) + hud_used.deity_power_display.maptext = "
[faith]
" + + +/mob/camera/god/proc/update_followers() + alive_followers = 0 + var/list/all_followers + + if(side == "red") + all_followers = ticker.mode.red_deity_followers|ticker.mode.red_deity_prophets + if(side == "blue") + all_followers = ticker.mode.blue_deity_followers|ticker.mode.blue_deity_prophets + + for(var/datum/mind/F in all_followers) + if(F.current && F.current.stat != DEAD) + alive_followers++ + + if(hud_used && hud_used.deity_follower_display) + hud_used.deity_follower_display.maptext = "
[alive_followers]
" + + +/mob/camera/god/say(msg) + if(!msg) + return + if(client) + if(client.prefs.muted & MUTE_IC) + src << "You cannot send IC messages (muted)." + return + if(src.client.handle_spam_prevention(msg,MUTE_IC)) + return + if(stat) + return + + god_speak(msg) + + +/mob/camera/god/proc/god_speak(msg) + log_say("Hand of God: [capitalize(side)] God/[key_name(src)] : [msg]") + msg = trim(copytext(sanitize(msg), 1, MAX_MESSAGE_LEN)) + if(!msg) + return + + msg = say_quote(msg, get_spans()) + var/rendered = "Divine Telepathy, [name] [msg]" + + for(var/mob/M in mob_list) + if(is_handofgod_myprophet(M) || isobserver(M)) + M.show_message(rendered, 2) + src << rendered + + +/mob/camera/god/emote(act,m_type = 1 ,msg = null) + return + + +/mob/camera/god/Move(NewLoc, Dir = 0) + loc = NewLoc diff --git a/code/game/gamemodes/handofgod/items.dm b/code/game/gamemodes/handofgod/items.dm new file mode 100644 index 00000000000..017e0486edd --- /dev/null +++ b/code/game/gamemodes/handofgod/items.dm @@ -0,0 +1,180 @@ + + +/obj/item/weapon/banner + name = "banner" + icon = 'icons/obj/items.dmi' + icon_state = "banner" + item_state = "banner" + desc = "A banner with Nanotrasen's logo on it." + +/obj/item/weapon/banner/red + name = "red banner" + icon_state = "banner-red" + item_state = "banner-red" + desc = "A banner with the logo of the red deity." + +/obj/item/weapon/banner/red/examine() + ..() + if(is_handofgod_redcultist(usr)) + usr << "A banner representing our might against the heretics." + else if(is_handofgod_bluecultist(usr)) + usr << "A heretical banner that should be destroyed posthaste." + + +/obj/item/weapon/banner/blue + name = "red banner" + icon_state = "banner-red" + item_state = "banner-red" + desc = "A banner with the logo of the blue deity" + +/obj/item/weapon/banner/blue/examine() + ..() + + if(is_handofgod_redcultist(usr)) + usr << "A heretical banner that should be destroyed posthaste." + else if(is_handofgod_bluecultist(usr)) + usr << "A banner representing our might against the heretics." + + +/obj/item/weapon/storage/backpack/bannerpack + name = "nanotrasen banner backpack" + desc = "It's a backpack with lots of extra room. A banner with Nanotrasen's logo is attached, that can't be removed." + max_combined_w_class = 27 //6 more then normal, for the tradeoff of declaring yourself an antag at all times. + icon_state = "bannerpack" + + +/obj/item/weapon/storage/backpack/bannerpack/red + name = "red banner backpack" + desc = "It's a backpack with lots of extra room. A red banner is attached, that can't be removed." + icon_state = "bannerpack-red" + + +/obj/item/weapon/storage/backpack/bannerpack/blue + name = "blue banner backpack" + desc = "It's a backpack with lots of extra room. A blue banner is attached, that can't be removed." + icon_state = "bannerpack-blue" + + + +//this is all part of one item set +/obj/item/clothing/suit/armor/plate/crusader + name = "Crusader's Armor" + icon_state = "crusader" + w_class = 4 //bulky + slowdown = 2.0 //gotta pretend we're balanced. + armor = list(melee = 50, bullet = 50, laser = 50, energy = 40, bomb = 60, bio = 0, rad = 0) + +/obj/item/clothing/suit/armor/plate/crusader/red + icon_state = "crusader-red" + +/obj/item/clothing/suit/armor/plate/crusader/blue + icon_state = "crusader-blue" + +/obj/item/clothing/suit/armor/plate/crusader/examine(mob/user) + ..() + if(!is_handofgod_cultist(user)) + usr << "Armor that's comprised of metal and cloth." + else + usr << "Armor that was used to protect from backstabs, gunshots, explosives, and lasers. The original wearers of this type of armor were trying to avoid being murdered. Since they're not around anymore, you're not sure if they were successful or not." + + +/obj/item/clothing/head/helmet/plate/crusader + name = "Crusader's Hood" + icon_state = "crusader" + w_class = 3 //normal + flags = BLOCKHAIR + body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS + armor = list(melee = 50, bullet = 50, laser = 50, energy = 40, bomb = 60, bio = 0, rad = 0) + +/obj/item/clothing/head/helmet/plate/crusader/blue + icon_state = "crusader-blue" + +/obj/item/clothing/head/helmet/plate/crusader/red + icon_state = "crusader-red" + + +/obj/item/clothing/head/helmet/plate/examine(mob/user) + ..() + if(!is_handofgod_cultist(user)) + usr << "A brownish hood." + else + usr << "A hood that's very protective, despite being made of cloth. Due to the tendency of the wearer to be targeted for assassinations, being protected from being shot in the face was very important.." + + +/obj/item/clothing/gloves/plate + name = "Plate Gauntlets" + icon_state = "crusader" + siemens_coefficient = 0 + cold_protection = HANDS + min_cold_protection_temperature = GLOVES_MIN_TEMP_PROTECT + heat_protection = HANDS + max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT + + +/obj/item/clothing/gloves/plate/red + icon_state = "crusader-red" + +/obj/item/clothing/gloves/plate/blue + icon_state = "crusader-blue" + + +/obj/item/clothing/gloves/plate/examine(mob/user) + ..() + if(!is_handofgod_cultist(user)) + usr << "They're like gloves, but made of metal." + else + usr << "Protective gloves that are also blessed to protect from heat and shock." + + +/obj/item/clothing/shoes/plate + name = "Plate Boots" + icon_state = "crusader" + w_class = 3 //normal + armor = list(melee = 50, bullet = 50, laser = 50, energy = 40, bomb = 60, bio = 0, rad = 0) //does this even do anything on boots? + flags = NOSLIP + cold_protection = FEET + min_cold_protection_temperature = SHOES_MIN_TEMP_PROTECT + heat_protection = FEET + max_heat_protection_temperature = SHOES_MAX_TEMP_PROTECT + + +/obj/item/clothing/shoes/plate/red + icon_state = "crusader-red" + +/obj/item/clothing/shoes/plate/blue + icon_state = "crusader-blue" + + +/obj/item/clothing/shoes/plate/examine(mob/user) + ..() + if(!is_handofgod_cultist(user)) + usr << "Metal boots, they look heavy." + else + usr << "Heavy boots that are blessed for sure footing. You'll be safe from being taken down by the heresy that is the banana peel." + + +/obj/item/weapon/storage/box/itemset/crusader + name = "Crusader's Armor Set" //i can't into ck2 references + desc = "This armor is said to be based on the armor of kings on another world thousands of years ago, who tended to assassinate, conspire, and plot against everyone who tried to do the same to them. Some things never change." + + +/obj/item/weapon/storage/box/itemset/crusader/blue/New() + ..() + contents = list() + sleep(1) + new /obj/item/clothing/suit/armor/plate/crusader/blue(src) + new /obj/item/clothing/head/helmet/plate/crusader/blue(src) + new /obj/item/clothing/gloves/plate/blue(src) + new /obj/item/clothing/shoes/plate/blue(src) + + +/obj/item/weapon/storage/box/itemset/crusader/red/New() + ..() + contents = list() + sleep(1) + new /obj/item/clothing/suit/armor/plate/crusader/red(src) + new /obj/item/clothing/head/helmet/plate/crusader/red(src) + new /obj/item/clothing/gloves/plate/red(src) + new /obj/item/clothing/shoes/plate/red(src) + + diff --git a/code/game/gamemodes/handofgod/objectives.dm b/code/game/gamemodes/handofgod/objectives.dm new file mode 100644 index 00000000000..dc66cad6c44 --- /dev/null +++ b/code/game/gamemodes/handofgod/objectives.dm @@ -0,0 +1,125 @@ + +/datum/objective/build + dangerrating = 15 + martyr_compatible = 1 + + +/datum/objective/build/proc/gen_amount_goal(lower, upper) + target_amount = rand(lower, upper) + explanation_text = "Build [target_amount] shrines." + return target_amount + + +/datum/objective/build/check_completion() + if(!owner || !owner.current) + return 0 + + var/shrines = 0 + if(is_handofgod_god(owner.current)) + var/mob/camera/god/G = owner.current + for(var/obj/structure/divine/shrine/S in G.structures) + S++ + + return (shrines >= target_amount) + + + +/datum/objective/deicide + dangerrating = 20 + martyr_compatible = 1 + +/datum/objective/deicide/check_completion() + if(target && target.current && target.current.stat == DEAD) + return 1 + return 0 + + +/datum/objective/deicide/find_target() + if(!owner || !owner.current) + return + + if(is_handofgod_god(owner.current)) + var/mob/camera/god/G = owner.current + if(G.side == "red") + target = ticker.mode.blue_deities[1] + if(G.side == "blue") + target = ticker.mode.red_deities[1] + + update_explanation_text() + +/datum/objective/deicide/update_explanation_text() + ..() + if(target && target.current) + explanation_text = "Phase [target.name], the false god, out of this plane of existence.." + else + explanation_text = "Free Objective" + + + +/datum/objective/follower_block + explanation_text = "Do not allow any followers of the false god to escape on the station's shuttle alive." + dangerrating = 25 + martyr_compatible = 1 + +/datum/objective/follower_block/check_completion() + var/side = "ABORT" + if(is_handofgod_redcultist(owner.current)) + side = "red" + else if(is_handofgod_bluecultist(owner.current)) + side = "blue" + if(side == "ABORT") + return 0 + + var/area/A = SSshuttle.emergency.areaInstance + + for(var/mob/living/player in player_list) + if(player.mind && player.stat != DEAD && get_area(player) == A) + if(side == "red") + if(is_handofgod_bluecultist(player)) + return 0 + else if(side == "blue") + if(is_handofgod_redcultist(player)) + return 0 + return 1 + + + +/datum/objective/escape_followers + dangerrating = 5 + + +/datum/objective/escape_followers/proc/gen_amount_goal(lower,upper) + target_amount = rand(lower,upper) + explanation_text = "Your will must surpass this station. Having [target_amount] followers escape on the shuttle or pods will allow that." + return target_amount + + +/datum/objective/escape_followers/check_completion() + var/escaped = 0 + if(is_handofgod_god(owner.current)) + var/mob/camera/god/G = owner.current + if(G.side == "red") + for(var/datum/mind/follower_mind in ticker.mode.red_deity_followers) + if(follower_mind.current && follower_mind.current.stat != DEAD) + if(follower_mind.current.onCentcom()) + escaped++ + + if(G.side == "blue") + for(var/datum/mind/follower_mind in ticker.mode.blue_deity_followers) + if(follower_mind.current && follower_mind.current.stat != DEAD) + if(follower_mind.current.onCentcom()) + escaped++ + + return (escaped >= target_amount) + + +/datum/objective/sacrifice_prophet + explanation_text = "A false prophet is preaching their god's faith on the station. Sacrificing them will show the mortals who the true god is." + dangerrating = 10 + + +/datum/objective/sacrifice_prophet/check_completion() + var/mob/camera/god/G = owner.current + if(istype(G)) + return G.prophets_sacrificed_in_name + return 0 diff --git a/code/game/gamemodes/handofgod/powers.dm b/code/game/gamemodes/handofgod/powers.dm new file mode 100644 index 00000000000..ff32219d909 --- /dev/null +++ b/code/game/gamemodes/handofgod/powers.dm @@ -0,0 +1,260 @@ + +/mob/camera/god/proc/ability_cost(cost = 0,structures = 0, requires_conduit = 0) + if(cost && faith < cost) + return 0 + if(structures && !(isturf(loc) || istype(loc, /turf/space))) + src << "Your structure would just float away, you need stable ground!" + return 0 + if(structures && (locate(/obj/structure) in get_turf(src))) + src << "There is another structure here, Select an empty spot." + + if(requires_conduit) + //Organised this way as there can be multiple conduits, so it's more likely to be a conduit check. + if(!locate(/obj/structure/divine/conduit) in range(src,15)) + if(!locate(/obj/structure/divine/nexus) in range(src, 15)) + return 0 + + return 1 + + +/mob/camera/god/verb/returntonexus() + set category = "Deity" + set name = "Goto Nexus" + set desc = "Teleports you to your next instantly." + + if(god_nexus) + Move(get_turf(god_nexus)) + else + src << "You don't even have a Nexus, construct one." + + +/mob/camera/god/verb/jumptofollower() + set category = "Deity" + set name = "Jump to Follower" + set desc = "Teleports you to one of your followers." + var/list/following = list() + if(side == "red") + following = ticker.mode.red_deity_followers + else if(side == "blue") + following = ticker.mode.blue_deity_followers + else + src << "You are unaligned, and thus do not have followers" + return + + var/datum/mind/choice = input("Choose a follower","Jump to Follower") as null|anything in following + if(choice && choice.current) + Move(get_turf(choice.current)) + + +/mob/camera/god/verb/newprophet() + set category = "Deity" + set name = "Appoint Prophet (100)" + set desc = "Appoint one of your followers as your Prophet, who can hear your words" + + var/list/following = list() + + if(!ability_cost(100)) + src << "You lack the faith to make a prophet." + return + if(side == "red") + if(ticker.mode.red_deity_prophets.len) + src << "You can only have one prophet alive at a time." + else + following = ticker.mode.red_deity_followers + else if(side == "blue") + if(ticker.mode.blue_deity_prophets.len) + src << "You can only have one prophet alive at a time." + else + following = ticker.mode.blue_deity_followers + + else + src << "You are unalligned, and thus do not have prophets" + return + + var/datum/mind/choice = input("Choose a follower to make into your prophet","Prophet Uplifting") as null|anything in following + if(choice && choice.current && choice.current.stat != DEAD) + src << "You choose [choice.current] as your prophet." + choice.make_Handofgod_prophet(side) + add_faith(-100) + + +/mob/camera/god/verb/talk(msg as text) + set category = "Deity" + set name = "Talk to Anyone (20)" + set desc = "Allows you to send a message to anyone, regardless of their faith." + if(!ability_cost(20)) + src << "You lack the faith to convene with others." + return + var/mob/choice = input("Choose who you wish to talk to", "Talk to ANYONE") as null|anything in mob_list + if(choice) + var/original = msg + msg = "You hear a voice coming from everywhere and nowhere... [msg]" + choice << msg + src << "You say the following to [choice], [original]" + add_faith(-20) + + +/mob/camera/god/verb/smite() + set category = "Deity" + set name = "Smite (40)" + set desc = "Hits anything under you with a moderate amount of damage." + + if(!ability_cost(40,0,1)) + src << "You lack the faith to smite others." + return + if(!range(7,god_nexus)) + src << "You lack the strength to smite this far from your nexus." + return + + for(var/mob/living/L in get_turf(src)) + L.adjustFireLoss(20) + L.adjustBruteLoss(20) + L.Weaken(2) + L << "You feel the wrath of [name]!" + add_faith(-40) + + +/mob/camera/god/verb/holyslumber() + set category = "Deity" + set name = "Holy Slumber (20)" + set desc = "Knocks out the mortal below you for a brief amount of time." + + if(!ability_cost(20,0,1)) + src << "You lack the faith to lull mortals to sleep." + return + + for(var/mob/living/L in get_turf(src)) + src << "You whisper a lullaby into the ears of [L]. Moments later they drift off..." + L << "You hear a lullaby so soft..." + L.SetSleeping(40) + add_faith(-20) + + +/mob/camera/god/verb/disaster() + set category = "Deity" + set name = "Invokle Disaster (300)" //difficult to reach without lots of followers + set desc = "Tug at the fibres of reality itself and bend it to your whims!" + + if(!ability_cost(300,0,1)) + src << "You lack the faith to bend reality." + return + + var/event = pick(/datum/round_event/meteor_wave, /datum/round_event/communications_blackout, /datum/round_event/radiation_storm, /datum/round_event/carp_migration, + /datum/round_event/spacevine, /datum/round_event/vent_clog, /datum/round_event/wormholes) + if(event) + new event() + add_faith(-300) + + +/mob/camera/god/verb/constructnexus() + set category = "Deity" + set name = "Construct Nexus" + set desc = "Instantly creates your nexus, You can only do this once, make sure you're happy with it!" + + if(ability_cost(0,1,0)) + var/obj/structure/divine/nexus/N = new(get_turf(src)) + N.deity = src + N.side = side + god_nexus = N + nexus_required = TRUE + verbs -= /mob/camera/god/verb/constructnexus + //verbs += /mob/camera/god/verb/movenexus //Translocators have no sprite + update_health_hud() + + +/* //Transolocators have no sprite +/mob/camera/god/verb/movenexus() + set category = "Deity" + set name = "Relocate Nexus (50)" + set desc = "Instantly relocates your nexus to an existing translocator belonging to your faith, this destroys the translocator in the process" + + if(ability_cost(50,0,0) && god_nexus) + var/list/translocators = list() + var/list/used_keys = list() + for(var/obj/structure/divine/translocator/T in structures) + translocators["[T.name] ([get_area(T)])"] = T + + if(!translocators.len) + src << "You have no translocators!" + return + + var/picked = input(src,"Choose a translocator","Relocate Nexus") as null|anything in translocators + if(!picked || !translocators[picked]) + return + + var/obj/structure/divine/translocator/T = translocators[T] + var/turf/Tturf = get_turf(T) + god_nexus.loc = T + translocators[picked] = null + add_faith(-50) + qdel(T) +*/ + +/mob/camera/god/verb/construct_structures() + set category = "Deity" + set name = "Construct Structure (75)" + set desc = "Create the foundation of a divine object." + + if(ability_cost(75,1,1)) + var/construct = input("Choose what you wish to create.", "Divine Construction") as null|anything in global_handofgod_structuretypes + if(!construct || !global_handofgod_structuretypes[construct] || !ability_cost(75,1,1)) //check again, they might try to cheat the input window. + return + var/obj/structure/divine/construct_type = global_handofgod_structuretypes[construct] //it's a path but we need to initial() some vars + if(!construct_type) + return + + src << "You lay the foundations for \a [construct], your followers must finish the construction using metal and glass." + add_faith(-75) + + var/obj/structure/divine/construction_holder/CH = new(get_turf(src)) + CH.assign_deity(src) + CH.setup_construction(construct_type) + CH.visible_message("[src] has created a transparent, unfinished [construct]. It can be finished by adding materials.") + + +/mob/camera/god/verb/construct_traps() + set category = "Deity" + set name = "Construct Trap (20)" + set desc = "Creates a ward or trap." + + if(ability_cost(20,1,1)) + var/trap = input("Choose what you wish to create.", "Divine Traps") as null|anything in global_handofgod_traptypes + if(!trap || !global_handofgod_traptypes[trap] || !ability_cost(20,1,1)) + return + + src << "You lay \a [trap]." + add_faith(-20) + + var/traptype = global_handofgod_traptypes[trap] + new traptype (get_turf(src)) + + + + +/mob/camera/god/verb/construct_items() + set category = "Deity" + set name = "Construct Items (20)" + set desc = "Construct some items for your followers" + + if(ability_cost(20,1,1)) + var/list/item_types = list() + if(side == "red") + item_types["red banner"] = /obj/item/weapon/banner/red + item_types["red bannerbackpack"] = /obj/item/weapon/storage/backpack/bannerpack/red + item_types["red armour"] = /obj/item/weapon/storage/box/itemset/crusader/red + + else if(side == "blue") + item_types["blue banner"] = /obj/item/weapon/banner/blue + item_types["blue bannerbackpack"] = /obj/item/weapon/storage/backpack/bannerpack/blue + item_types["blue armour"] = /obj/item/weapon/storage/box/itemset/crusader/blue + + + var/item = input("Choose what you wish to create.", "Divine Items") as null|anything in item_types + if(!item || !global_handofgod_itemtypes[item] || !ability_cost(20,1,1)) + return + + src << "You produce \a [item]" + add_faith(-20) + + var/itemtype = global_handofgod_itemtypes[item] + new itemtype (get_turf(src)) diff --git a/code/game/gamemodes/handofgod/structures.dm b/code/game/gamemodes/handofgod/structures.dm new file mode 100644 index 00000000000..7197b4a8082 --- /dev/null +++ b/code/game/gamemodes/handofgod/structures.dm @@ -0,0 +1,497 @@ + +/obj/structure/divine + name = "divine construction site" + icon = 'icons/obj/hand_of_god_structures.dmi' + desc = "An unfinished divine building" + anchored = 1 + density = 1 + var/trap = FALSE + var/metal_cost = 0 + var/glass_cost = 0 + var/lesser_gem_cost = 0 + var/greater_gem_cost = 0 + var/mob/camera/god/deity + var/side = "neutral" //"blue" or "red", also used for colouring structures when construction is started by a deity + var/health = 100 + var/maxhealth = 100 + var/autocolours = TRUE //do we colour to our side? + +/obj/structure/divine/New() + ..() + if(!trap) + if(!global_handofgod_structuretypes[name]) + global_handofgod_structuretypes[name] = type + else + if(!global_handofgod_traptypes[name]) + global_handofgod_traptypes[name] = type + + +/obj/structure/divine/proc/update_icons() + if(autocolours) + icon_state = "[initial(icon_state)]-[side]" + + +/obj/structure/divine/Destroy() + if(deity) + deity.structures -= src + return ..() + + +/obj/structure/divine/proc/healthcheck() + if(!health) + visible_message("\The [src] was destroyed!") + qdel(src) + + +/obj/structure/divine/attackby(obj/item/I, mob/user) + if(!I) + return 0 + + playsound(get_turf(src), I.hitsound, 50, 1) + visible_message("\The [src] has been attack with \the [I][(user ? " by [user]/" : ".")]!") + health = max(0, health-I.force) + healthcheck() + + +/obj/structure/divine/bullet_act(obj/item/projectile/Proj) + if(!Proj) + return 0 + + if(Proj.damage_type == BRUTE || Proj.damage_type == BURN) + health = max(0, health-Proj.damage) + healthcheck() + + +/obj/structure/divine/attack_animal(mob/living/simple_animal/M) + if(!M) + return 0 + + visible_message("\The [src] has been attacked by \the [M]!") + var/damage = rand(M.melee_damage_lower, M.melee_damage_upper) + if(!damage) + return + health = max(0, health-damage) + healthcheck() + + +/obj/structure/divine/proc/assign_deity(mob/camera/god/new_deity, alert_old_deity = TRUE) + if(!new_deity) + return 0 + if(deity && alert_old_deity) + deity << "Your [name] was captured by [new_deity]'s cult!" + deity.structures -= src + deity = new_deity + deity.structures |= src + side = deity.side + update_icons() + + +/obj/structure/divine/construction_holder + alpha = 125 + var/obj/structure/divine/construction_result = /obj/structure/divine //a path, but typed to /obj/structure/divine for initial() + + +/obj/structure/divine/construction_holder/proc/setup_construction(construct_type) + if(ispath(construct_type)) + construction_result = construct_type + name = "[initial(construction_result.name)] construction site " + icon_state = initial(construction_result.icon_state) + metal_cost = initial(construction_result.metal_cost) + glass_cost = initial(construction_result.glass_cost) + lesser_gem_cost = initial(construction_result.lesser_gem_cost) + greater_gem_cost = initial(construction_result.greater_gem_cost) + desc = "An unfinished [initial(construction_result.name)]." + + +/obj/structure/divine/construction_holder/attackby(obj/item/I, mob/user) + if(!I || !user) + return 0 + + if(istype(I, /obj/item/stack/sheet/metal)) + var/obj/item/stack/sheet/metal/M = I + if(metal_cost) + var/spend = min(metal_cost, M.amount) + user << "You add [spend] metal to \the [src]" + metal_cost = max(0, metal_cost - spend) + M.use(spend) + check_completion() + else + user << "\the [src] does not require anymore metal" + return + + if(istype(I, /obj/item/stack/sheet/glass)) + var/obj/item/stack/sheet/glass/G = I + if(glass_cost) + var/spend = min(glass_cost, G.amount) + user << "You add [spend] glass to \the [src]" + glass_cost = max(0, glass_cost - spend) + G.use(spend) + check_completion() + else + user << "\the [src] does not require anymore glass" + return + + if(istype(I, /obj/item/stack/sheet/lessergem)) + var/obj/item/stack/sheet/lessergem/LG = I + if(lesser_gem_cost) + var/spend = min(lesser_gem_cost, LG.amount) + user << "You add [spend] lesser gems to \the [src]" + lesser_gem_cost = max(0, lesser_gem_cost - spend) + LG.use(spend) + check_completion() + else + user << "\the [src] does not require anymore lesser gems" + return + + if(istype(I, /obj/item/stack/sheet/greatergem)) + var/obj/item/stack/sheet/greatergem/GG = I //GG! + if(greater_gem_cost) + var/spend = min(greater_gem_cost, GG.amount) + user << "You add [spend] greater gems to \the [src]" + greater_gem_cost = max(0, greater_gem_cost - spend) + GG.use(spend) + check_completion() + else + user << "\the [src] does not require anymore greater gems" + return + + ..() + + +/obj/structure/divine/construction_holder/proc/check_completion() + if(!metal_cost && !glass_cost && !lesser_gem_cost && !greater_gem_cost) + visible_message("\The [initial(construction_result.name)] is complete!") + new construction_result (get_turf(src)) + qdel(src) + + +/obj/structure/divine/construction_holder/examine(mob/user) + ..() + + if(metal_cost || glass_cost || lesser_gem_cost || greater_gem_cost) + user << "To finish construction it requires the following materials:
" + if(metal_cost) + user << "[metal_cost] metal " + if(glass_cost) + user << "[glass_cost] glass " + if(lesser_gem_cost) + user << "[lesser_gem_cost] lesser gems " + if(greater_gem_cost) + user << "[greater_gem_cost] greater gems " + + +/obj/structure/divine/nexus + name = "nexus" + desc = "It anchors a deity to this world. It radiates an unusual aura. Culstists protect this at all costs. It looks well protected from explosion shock." + icon_state = "nexus" + health = 500 + maxhealth = 500 + var/faith_regen_rate = 1 + var/list/powerpylons = list() + + +/obj/structure/divine/nexus/ex_act() + return + + +/obj/structure/divine/nexus/healthcheck() + if(deity) + deity.update_health_hud() + + if(!health) + if(deity && deity.nexus_required) + deity << "Your nexus was destroyed. You feel yourself fading..." + qdel(deity) + visible_message("\The [src] was destroyed!") + + +/obj/structure/divine/nexus/New() + SSobj.processing |= src + + +/obj/structure/divine/nexus/process() + healthcheck() + if(deity) + deity.update_followers() + deity.add_faith(faith_regen_rate + (powerpylons.len / 5) + (deity.alive_followers / 3)) + + +/obj/structure/divine/nexus/Destroy() + SSobj.processing -= src + return ..() + + +/obj/structure/divine/conduit + name = "conduit" + desc = "It allows a deity to extend their reach. Their powers are just as potent near a conduit as a nexus." + icon_state = "conduit" + health = 150 + maxhealth = 150 + metal_cost = 25 + glass_cost = 10 + + +/obj/structure/divine/forge + name = "forge" + desc = "A forge fueled by divine might, it allows the creation of sacred and powerful artifacts. It requires common materials to craft objects." + icon_state = "forge" + health = 250 + maxhealth = 250 + density = 0 + maxhealth = 250 + metal_cost = 40 + + +/obj/structure/divine/convertaltar + name = "conversion taltar" + desc = "An altar dedicated to a deity. Cultists can \"forcefully teach\" their non-aligned crewmembers to join their side and take up their deity." + icon_state = "convertaltar" + density = 0 + metal_cost = 20 + + +/obj/structure/divine/convertaltar/attack_hand(mob/living/user) + var/mob/living/carbon/human/H = locate() in get_turf(src) + if(!is_handofgod_cultist(user)) + user << "You try to use it, but unfortunately you don't know any rituals." + return + if(!H) + return + if(!H.mind) + user << "Only sentients may serve your deity." + return + if((side == "red" && is_handofgod_redcultist(user)) || (side == "blue" && is_handofgod_bluecultist(user))) + user << "You invoke the conversion ritual." + ticker.mode.add_hog_follower(H.mind, side) + else + user << "You invoke the conversion ritual." + user << "But the altar ignores your words..." + + +/obj/structure/divine/sacrificealtar + name = "sacrificial altar" + desc = "An altar designed to perform blood sacrifice for a deity. The cultists performing the sacrifice will gain a powerful material to use in their forge. Sacrificing a prophet will yield even better results." + icon_state = "sacrificealtar" + density = 0 + metal_cost = 30 + + +/obj/structure/divine/sacrificealtar/attack_hand(mob/living/user) + var/mob/living/L = locate() in get_turf(src) + if(!is_handofgod_cultist(user)) + user << "You try to use it, but unfortunately you don't know any rituals." + return + if(!L) + return + if((side == "red" && is_handofgod_redcultist(user)) || (side == "blue" && is_handofgod_bluecultist(user))) + if((side == "red" && is_handofgod_redcultist(L)) || (side == "blue" && is_handofgod_bluecultist(L))) + user << "You cannot sacrifice a fellow cultist." + return + user << "You attempt to sacrifice [L] by invoking the sacrificial ritual." + sacrifice(L) + else + user << "You attempt to sacrifice [L] by invoking the sacrificial ritual." + user << "But the altar ignores your words..." + + +/obj/structure/divine/sacrificealtar/proc/sacrifice(mob/living/L) + if(!L) + L = locate() in get_turf(src) + if(L) + if(ismonkey(L)) + var/luck = rand(1,4) + if(luck > 3) + new /obj/item/stack/sheet/lessergem(get_turf(src)) + + else if(ishuman(L)) + var/mob/living/carbon/human/H = L + + //Sacrifice altars can't teamkill + if(side == "red" && is_handofgod_redcultist(H)) + return + else if(side == "blue" && is_handofgod_bluecultist(H)) + return + + if(is_handofgod_prophet(H)) + new /obj/item/stack/sheet/greatergem(get_turf(src)) + if(deity) + deity.prophets_sacrificed_in_name++ + else + new /obj/item/stack/sheet/lessergem(get_turf(src)) + + else if(isAI(L) || istype(L, /mob/living/carbon/alien/humanoid/queen)) + new /obj/item/stack/sheet/greatergem(get_turf(src)) + else + new /obj/item/stack/sheet/lessergem(get_turf(src)) + L.gib() + + +/obj/structure/divine/healingfountain + name = "healing fountain" + desc = "A fountain containing the waters of life... or death, depending on where your allegiances lie" + icon_state = "puddle" + metal_cost = 15 + glass_cost = 10 + autocolours = FALSE + var/time_between_uses = 1800 + var/last_process = 0 + + +/obj/structure/divine/healingfountain/attack_hand(mob/living/user) + if(last_process + time_between_uses > world.time) + user << "The foundtain appears to be empty." + return + last_process = world.time + if(!is_handofgod_cultist(user)) + user << "The water burns!" + user.reagents.add_reagent("hell_water",20) + else + user << "The water feels warm ans soothing as you touch it. The fountain immediately dries up shortly afterwards." + user.reagents.add_reagent("doctorsdelight",20) + update_icons() + + +/obj/structure/divine/healingfountain/update_icons() + if(last_process + time_between_uses > world.time) + icon_state = "fountain-dry" + else + icon_state = "fountain" + + +/obj/structure/divine/powerpylon + name = "power pylon" + desc = "A pylon which increases the deity's rate it can influence the world." + icon_state = "powerpylon" + density = 1 + health = 30 + maxhealth = 30 + metal_cost = 10 + glass_cost = 30 + + +/obj/structure/divine/powerpylon/New() + ..() + if(deity && deity.god_nexus) + deity.god_nexus.powerpylons |= src + + +/obj/structure/divine/powerpylon/Destroy() + if(deity && deity.god_nexus) + deity.god_nexus.powerpylons -= src + return ..() + + +/obj/structure/divine/defensepylon + name = "defense pylon" + desc = "A plyon which is blessed to withstand many blows, and fire strong bolts at nonbelivers." + icon_state = "defensepylon" + health = 150 + maxhealth = 150 + metal_cost = 30 + glass_cost = 40 + var/obj/machinery/gun_turret/defensepylon_internal_turret/pylon_gun + + +/obj/structure/divine/defensepylon/New() + ..() + pylon_gun = new() + pylon_gun.base = src + + +/obj/structure/divine/defensepylon/Destroy() + qdel(pylon_gun) //just in case + return ..() + + +/obj/structure/divine/defensepylon/assign_deity(mob/camera/god/new_deity, alert_old_deity = TRUE) + if(..() && pylon_gun) + pylon_gun.faction = side + pylon_gun.side = side + + +//This sits inside the defenspylon, to avoid copypasta +/obj/machinery/gun_turret/defensepylon_internal_turret + name = "defense pylon" + desc = "A plyon which is blessed to withstand many blows, and fire strong bolts at nonbelivers." + icon = 'icons/obj/hand_of_god_structures.dmi' + icon_state = "defensepylon" + health = 200 + base_icon_state = "defenspylon" + scan_range = 7 + faction = "rofl I'm not supposed to exist" + projectile_type = /obj/item/projectile/beam/pylon_bolt + fire_sound = 'sound/weapons/emitter2.ogg' + var/side = "neutral" + + +/obj/machinery/gun_turret/defensepylon_internal_turret/fire(atom/target) + var/obj/item/projectile/A = ..() + if(A) + A.color = side + + +/obj/item/projectile/beam/pylon_bolt + name = "divine bolt" + icon_state = "greyscale_bolt" + damage = 15 + + +/obj/structure/divine/shrine + name = "shrine" + desc = "A shrine dedicated to a deity." + icon_state = "shrine" + metal_cost = 20 + glass_cost = 20 + + +/obj/structure/divine/shrine/assign_deity(mob/camera/god/new_deity, alert_old_deity = TRUE) + if(..()) + name = "shrine to [new_deity.name]" + desc = "A shrine dedicated to [new_deity.name]" + + + + +//Functional, but need sprites +/* +/obj/structure/divine/translocator + name = "translocator" + desc = "A powerful structure, made with a greater gem. It allows a deity to move their nexus to where this stands" + icon_state = "translocator" + health = 100 + maxhealth = 100 + metal_cost = 20 + glass_cost = 20 + greater_gem_cost = 1 + + +/obj/structure/divine/lazarusaltar + name = "lazarus altar" + desc = "A very powerful altar capable of bringing life back to the recently deceased, made with a greater gem. It can revive anyone and will heal virtually all wounds, but they are but a shell of their former self." + icon_state = "lazarusaltar" + density = 0 + health = 100 + maxhealth = 100 + metal_cost = 20 + greater_gem_cost = 1 + + +/obj/structure/divine/lazarusaltar/attack_hand(mob/living/user) + var/mob/living/L = locate() in get_turf(src) + if(!is_handofgod_culstist(user)) + user << "You try to use it, but unfortunately you don't know any rituals." + return + if(!L) + return + + if((side == "red" && is_handofgod_redcultist(user))) || (side == "blue" && is_handofgod_bluecultist(user))) + user << "You attempt to revive [L] by invoking the rebirth ritual." + L.revive() + L.adjustCloneLoss(50) + L.adjustStaminaLoss(100) + else + user << "You attempt to revive [L] by invoking the rebirth ritual." + user << "But the altar ignores your words..." +*/ + + diff --git a/code/game/gamemodes/handofgod/traps.dm b/code/game/gamemodes/handofgod/traps.dm new file mode 100644 index 00000000000..a2eef75831e --- /dev/null +++ b/code/game/gamemodes/handofgod/traps.dm @@ -0,0 +1,115 @@ + +/obj/structure/divine/trap + name = "IT'S A TARP" + desc = "stepping on me is a guaranteed bad day" + icon_state = "trap" + density = 0 + alpha = 30 //initially quite hidden when not "recharging" + health = 20 + maxhealth = 20 + trap = TRUE + autocolours = FALSE + var/last_trigger = 0 + var/time_between_triggers = 600 //takes a minute to recharge + + +/obj/structure/divine/trap/Crossed(atom/movable/AM) + if(last_trigger + time_between_triggers > world.time) + return + alpha = 30 + if(isliving(AM)) + var/mob/living/L = AM + last_trigger = world.time + alpha = 200 + trap_effect(L) + spawn(time_between_triggers) + if(src) + alpha = 30 + + +/obj/structure/divine/trap/examine(mob/user) + ..() + if(!isliving(user)) //bad ghosts, stop trying to powergame from beyond the grave + return + user << "You reveal a trap!" + alpha = 200 + spawn(time_between_triggers) + if(src) + alpha = 30 + + +/obj/structure/divine/trap/proc/trap_effect(mob/living/L) + return + + +/obj/structure/divine/trap/stun + name = "shock trap" + desc = "A trap that will shock you, it will burn your flesh and render you immobile, You'd better avoid it." + icon_state = "trap-shock" + + +/obj/structure/divine/trap/stun/trap_effect(mob/living/L) + L << "You are paralyzed from the intense shock!" + L.Weaken(5) + var/turf/Lturf = get_turf(L) + new /obj/effect/effect/sparks/electricity(Lturf) + new /obj/effect/effect/sparks(Lturf) + + +/obj/structure/divine/trap/fire + name = "flame trap" + desc = "A trap that will set you ablaze. You'd better avoid it." + icon_state = "trap-fire" + + +/obj/structure/divine/trap/fire/trap_effect(mob/living/L) + L << "Spontaneous combustion!" + L.Weaken(1) + var/turf/Lturf = get_turf(L) + new /obj/effect/hotspot(Lturf) + new /obj/effect/effect/sparks(Lturf) + + +/obj/structure/divine/trap/chill + name = "frost trap" + desc = "A trap that will chill you to the bone. You'd better avoid it." + icon_state = "trap-frost" + + +/obj/structure/divine/trap/chill/trap_effect(mob/living/L) + L << "You're frozen solid!" + L.Weaken(1) + L.bodytemperature -= 300 + new /obj/effect/effect/sparks(get_turf(L)) + + +/obj/structure/divine/trap/damage + name = "earth trap" + desc = "A trap that will summon a small earthquake, just for you. You'd better avoid it." + icon_state = "trap-earth" + + +/obj/structure/divine/trap/damage/trap_effect(mob/living/L) + L << "The ground quakes beneath your feet!" + L.Weaken(5) + L.adjustBruteLoss(35) + var/turf/Lturf = get_turf(L) + new /obj/effect/effect/sparks(Lturf) + new /obj/structure/flora/rock(Lturf) + + +/obj/structure/divine/trap/ward + name = "Divine Ward" + desc = "A divine barrier, It looks like you could destroy it with enough effort, or wait for it to dissipate..." + icon_state = "ward" + health = 150 + maxhealth = 150 + density = 1 + time_between_triggers = 1200 //Exists for 2 minutes + + +/obj/structure/divine/trap/ward/New() + ..() + spawn(time_between_triggers) + if(src) + qdel(src) diff --git a/code/game/gamemodes/malfunction/malfunction.dm b/code/game/gamemodes/malfunction/malfunction.dm index 0cbded335b7..cdc1436890d 100644 --- a/code/game/gamemodes/malfunction/malfunction.dm +++ b/code/game/gamemodes/malfunction/malfunction.dm @@ -33,7 +33,7 @@ var/datum/job/ai/DummyAIjob = new for(var/mob/new_player/player in player_list) if(player.client && player.ready) - if(player.client.prefs.be_special & BE_MALF) + if(BE_MALF in player.client.prefs.be_special) if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, "AI") && DummyAIjob.player_old_enough(player.client)) antag_candidates += player.mind antag_candidates = shuffle(antag_candidates) diff --git a/code/game/gamemodes/revolution/revolution.dm b/code/game/gamemodes/revolution/revolution.dm index 882accb90c0..7b98750dd58 100644 --- a/code/game/gamemodes/revolution/revolution.dm +++ b/code/game/gamemodes/revolution/revolution.dm @@ -187,7 +187,7 @@ var/list/promotable_revs = list() for(var/datum/mind/khrushchev in revolutionaries) if(khrushchev.current && khrushchev.current.client && khrushchev.current.stat != DEAD) - if(khrushchev.current.client.prefs.be_special & BE_REV) + if(BE_REV in khrushchev.current.client.prefs.be_special) promotable_revs += khrushchev if(promotable_revs) var/datum/mind/stalin = pick(promotable_revs) diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm index 7d2d552ebd3..a9061a49969 100644 --- a/code/game/gamemodes/traitor/traitor.dm +++ b/code/game/gamemodes/traitor/traitor.dm @@ -74,7 +74,7 @@ if(ticker.mode.traitors.len >= traitorcap) //Upper cap for number of latejoin antagonists return if(ticker.mode.traitors.len <= (traitorcap - 2) || prob(100 / (config.traitor_scaling_coeff * 2))) - if(character.client.prefs.be_special & BE_TRAITOR) + if(BE_TRAITOR in character.client.prefs.be_special) if(!jobban_isbanned(character.client, "traitor") && !jobban_isbanned(character.client, "Syndicate")) if(age_check(character.client)) if(!(character.job in restricted_jobs)) diff --git a/code/game/gamemodes/wizard/raginmages.dm b/code/game/gamemodes/wizard/raginmages.dm index d59f47796b5..9d253fc5c5c 100644 --- a/code/game/gamemodes/wizard/raginmages.dm +++ b/code/game/gamemodes/wizard/raginmages.dm @@ -78,7 +78,7 @@ spawn(rand(500, 700)) message_admins("SWF is still pissed, sending another wizard - [max_mages - mages_made] left.") for(var/mob/dead/observer/G in player_list) - if(G.client && !G.client.holder && !G.client.is_afk() && G.client.prefs.be_special & BE_WIZARD) + if(G.client && !G.client.holder && !G.client.is_afk() && (BE_WIZARD in G.client.prefs.be_special)) if(!jobban_isbanned(G, "wizard") && !jobban_isbanned(G, "Syndicate")) if(age_check(G.client)) candidates += G diff --git a/code/game/machinery/turrets.dm b/code/game/machinery/turrets.dm index 70e783b5416..48d5f9d9739 100644 --- a/code/game/machinery/turrets.dm +++ b/code/game/machinery/turrets.dm @@ -357,6 +357,7 @@ var/base_icon_state = "syndieturret" var/projectile_type = /obj/item/projectile/bullet var/fire_sound = 'sound/weapons/Gunshot.ogg' + var/atom/base = null //where do to range calculations, firing projectiles, etc. from. allows for turrets inside of things to work icon = 'icons/obj/turrets.dmi' icon_state = "syndieturret0" @@ -364,6 +365,8 @@ ..() take_damage(0) //check your health icon_state = "[base_icon_state]" + "0" + if(!base) + base = src /obj/machinery/gun_turret/ex_act(severity, target) switch(severity) @@ -397,6 +400,9 @@ die() return state = 2 + if(!base) + state = 2 + update_icon() return @@ -424,7 +430,7 @@ return /obj/machinery/gun_turret/proc/validate_target(atom/target) - if(get_dist(target, src)>scan_range) + if(get_dist(target, base)>scan_range) return 0 if(istype(target, /mob)) var/mob/M = target @@ -452,13 +458,13 @@ /obj/machinery/gun_turret/proc/get_target() var/list/pos_targets = list() var/target = null - for(var/mob/living/M in view(scan_range,src)) + for(var/mob/living/M in view(scan_range,base)) if(M.stat) continue if(faction in M.faction) continue pos_targets += M - for(var/obj/mecha/M in oview(scan_range, src)) + for(var/obj/mecha/M in oview(scan_range, base)) if(M.occupant) if(faction in M.occupant.faction) continue @@ -474,11 +480,11 @@ if(!target) cur_target = null return - src.dir = get_dir(src,target) + src.dir = get_dir(base,target) var/turf/targloc = get_turf(target) if(!src) return - var/turf/curloc = get_turf(src) + var/turf/curloc = get_turf(base) if (!targloc || !curloc) return if (targloc == curloc) @@ -489,7 +495,7 @@ A.yo = targloc.y - curloc.y A.xo = targloc.x - curloc.x A.fire() - return + return A //////////////////////// diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 269822a24a6..2d3f88be56a 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -152,4 +152,23 @@ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ /obj/item/stack/sheet/cardboard/New(var/loc, var/amount=null) recipes = cardboard_recipes - return ..() \ No newline at end of file + return ..() + + + +/obj/item/stack/sheet/lessergem + name = "lesser gems" + desc = "Rare kind of gems which are only gained by blood sacrifice to minor deities. They are needed in crafting powerful objects." + singular_name = "lesser gem" + icon_state = "sheet-lessergem" + origin_tech = "materials=4" + + +/obj/item/stack/sheet/greatergem + name = "greater gems" + desc = "Rare kind of gems which are only gained by blood sacrifice to minor deities. They are needed in crafting powerful objects." + singular_name = "greater gem" + icon_state = "sheet-greatergem" + origin_tech = "materials=8" + + diff --git a/code/modules/admin/verbs/one_click_antag.dm b/code/modules/admin/verbs/one_click_antag.dm index 1a7ea857617..3b6e546ffc0 100644 --- a/code/modules/admin/verbs/one_click_antag.dm +++ b/code/modules/admin/verbs/one_click_antag.dm @@ -65,7 +65,7 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(applicant.client.prefs.be_special & BE_TRAITOR) + if(BE_TRAITOR in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if (!applicant.mind.special_role) @@ -101,7 +101,7 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(applicant.client.prefs.be_special & BE_CHANGELING) + if(BE_CHANGELING in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if (!applicant.mind.special_role) @@ -135,7 +135,7 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(applicant.client.prefs.be_special & BE_REV) + if(BE_REV in applicant.client.prefs.be_special) if(applicant.stat == CONSCIOUS) if(applicant.mind) if(!applicant.mind.special_role) @@ -206,7 +206,7 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(applicant.client.prefs.be_special & BE_CULTIST) + if(BE_CULTIST in applicant.client.prefs.be_special) if(applicant.stat == CONSCIOUS) if(applicant.mind) if(!applicant.mind.special_role) @@ -387,7 +387,7 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(applicant.client.prefs.be_special & BE_GANG) + if(BE_GANG in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if(!applicant.mind.special_role) @@ -624,7 +624,7 @@ var/list/mob/living/carbon/human/candidates = list() var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(applicant.client.prefs.be_special & BE_SHADOWLING) + if(BE_SHADOWLING in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if(!applicant.mind.special_role) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 6b1a1d37eb2..aff9de65d5e 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -198,7 +198,7 @@ var/list/candidates = list() for(var/mob/M in player_list) if(M.stat != DEAD) continue //we are not dead! - if(!M.client.prefs.be_special & BE_ALIEN) continue //we don't want to be an alium + if(!(BE_ALIEN in M.client.prefs.be_special)) continue //we don't want to be an alium if(M.client.is_afk()) continue //we are afk if(M.mind && M.mind.current && M.mind.current.stat != DEAD) continue //we have a live body we are tied to candidates += M.ckey @@ -822,7 +822,7 @@ var/list/datum/outfit/custom_outfits = list() //Admin created outfits id_select += "" id_select += "" - var/dat = {" + var/dat = {" Create Outfit
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 5f04c0f69b9..ed47f320aeb 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -4,21 +4,23 @@ var/list/preferences_datums = list() var/global/list/special_roles = list( //keep synced with the defines BE_* in setup.dm //some autodetection here. - "traitor" = /datum/game_mode/traitor, //0 - "operative" = /datum/game_mode/nuclear, //1 - "changeling" = /datum/game_mode/changeling, //2 - "wizard" = /datum/game_mode/wizard, //3 - "malf AI" = /datum/game_mode/malfunction, //4 - "revolutionary" = /datum/game_mode/revolution, //5 - "alien", //6 - "pAI/posibrain", //7 - "cultist" = /datum/game_mode/cult, //8 - "blob" = /datum/game_mode/blob, //9 - "ninja", //10 - "monkey" = /datum/game_mode/monkey, //11 - "gangster" = /datum/game_mode/gang, //12 - "shadowling" = /datum/game_mode/shadowling, //13 - "abductor" = /datum/game_mode/abduction //14 + "traitor" = /datum/game_mode/traitor, //0 + "operative" = /datum/game_mode/nuclear, //1 + "changeling" = /datum/game_mode/changeling, //2 + "wizard" = /datum/game_mode/wizard, //3 + "malf AI" = /datum/game_mode/malfunction, //4 + "revolutionary" = /datum/game_mode/revolution, //5 + "alien", //6 + "pAI/posibrain", //7 + "cultist" = /datum/game_mode/cult, //8 + "blob" = /datum/game_mode/blob, //9 + "ninja", //10 + "monkey" = /datum/game_mode/monkey, //11 + "gangster" = /datum/game_mode/gang, //12 + "shadowling" = /datum/game_mode/shadowling, //13 + "abductor" = /datum/game_mode/abduction, //14 + "hand of god, god" = /datum/game_mode/hand_of_god, //15 + "hand of god, culstist" = /datum/game_mode/hand_of_god, //16 ) @@ -36,7 +38,14 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set //game-preferences var/lastchangelog = "" //Saved changlog filesize to detect if there was a change var/ooccolor = null - var/be_special = 0 //Special role selection + + //Antag preferences + var/list/be_special = list() //Special role selection + var/tmp/old_be_special = 0 //Bitflag version of be_special, used to update old savefiles and nothing more + //If it's 0, that's good, if it's anything but 0, the owner of this prefs file's antag choices were, + //autocorrected this round, not that you'd need to check that. + + var/UI_style = "Midnight" var/toggles = TOGGLES_DEFAULT var/chat_toggles = TOGGLES_DEFAULT_CHAT @@ -362,8 +371,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set if(jobban_isbanned(user, "Syndicate")) dat += "You are banned from antagonist roles." - src.be_special = 0 - var/n = 0 + src.be_special = list() for (var/i in special_roles) if(jobban_isbanned(user, i)) dat += "Be [i]: BANNED
" @@ -374,11 +382,13 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set var/datum/game_mode/temp_mode = new mode_path days_remaining = temp_mode.get_remaining_days(user.client) + var/antagkey = capitalize(i) + if(days_remaining) dat += "Be [i]: \[IN [days_remaining] DAYS]
" else - dat += "Be [i]: [src.be_special&(1<
" - n++ + dat += "Be [i]:
[(antagkey in be_special) ? "Yes" : "No"]
" + dat += "" dat += "
" @@ -988,8 +998,11 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set UI_style = "Midnight" if("be_special") - var/num = text2num(href_list["num"]) - be_special ^= (1<> lastchangelog S["UI_style"] >> UI_style S["be_special"] >> be_special + + if(islist(S["be_special"])) + S["be_special"] >> be_special + else //force update and store the old bitflag version of be_special + needs_update = 11 + S["be_special"] >> old_be_special + S["default_slot"] >> default_slot S["chat_toggles"] >> chat_toggles S["toggles"] >> toggles @@ -108,12 +147,12 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car //try to fix any outdated data if necessary if(needs_update >= 0) update_preferences(needs_update) //needs_update = savefile_version if we need an update (positive integer) + update_antagchoices(needs_update) //Sanitize ooccolor = sanitize_ooccolor(sanitize_hexcolor(ooccolor, 6, 1, initial(ooccolor))) lastchangelog = sanitize_text(lastchangelog, initial(lastchangelog)) UI_style = sanitize_inlist(UI_style, list("Midnight", "Plasmafire", "Retro"), initial(UI_style)) - be_special = sanitize_integer(be_special, 0, 65535, initial(be_special)) default_slot = sanitize_integer(default_slot, 1, max_save_slots, initial(default_slot)) toggles = sanitize_integer(toggles, 0, 65535, initial(toggles)) ghost_form = sanitize_inlist(ghost_form, ghost_forms, initial(ghost_form)) diff --git a/code/modules/client/preferences_toggles.dm b/code/modules/client/preferences_toggles.dm index 7a44e73a182..8ef72561893 100644 --- a/code/modules/client/preferences_toggles.dm +++ b/code/modules/client/preferences_toggles.dm @@ -214,7 +214,10 @@ set desc = "Toggles which special roles you would like to be a candidate for, during events." var/role_flag = be_special_flags[role] if(!role_flag) return - prefs.be_special ^= role_flag + if(role_flag in prefs.be_special) + prefs.be_special -= role_flag + else + prefs.be_special += role_flag prefs.save_preferences() src << "You will [(prefs.be_special & role_flag) ? "now" : "no longer"] be considered for [role] events (where possible)." feedback_add_details("admin_verb","TBeSpecial") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 674b88eacb6..c8dc49ed77b 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -441,6 +441,24 @@ gib(src) +/mob/proc/become_god(var/side) + if(client) + src << sound(null, repeat = 0, wait = 0, wolume = 85, channel = 1) + + var/mob/camera/god/G = new(loc, side = side) + G.invisibility = 40 + if(mind) + mind.transfer_to(G) + else + G.key = key + + G.job = "Deity" + G.rename_self("deity", 0) + + . = G + qdel(src) + + /mob/living/carbon/human/proc/corgize() if (notransform) diff --git a/icons/mob/back.dmi b/icons/mob/back.dmi index 2ee2ec8d0825b2b37aa7fe19c57d2d655006d796..60384992877488bcdb5caac11164e7cadd472a33 100644 GIT binary patch literal 85689 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 K<#NTRA^!__k_tHh literal 84017 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 gPF+&}4M5j?`h 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 diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 8e8051c6fe6c13d05da873c74b0649ea55a46d63..23ab8e3e101016e9bed1675d0687ef6e86086e01 100644 GIT binary patch delta 8915 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 diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index 4fc1a449fb96c6bda8c9745cb18aeafda476ea67..c714bc016271d0cbb4d9567fe3c65d55901a49af 100644 GIT binary patch delta 3580 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 F_%{_NBK!aV diff --git a/icons/mob/inhands/items_lefthand.dmi b/icons/mob/inhands/items_lefthand.dmi index f3510784ba39a4a62e5ddcca0338ccc824cfdac6..54941791a10d308dfc69a60d5a865705192eeec9 100644 GIT binary patch delta 18677 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 delta 16936 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 z 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

Jr9Jr^G+q_L%1t7tpNzhJQx8P^^!$)(; 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 g(tpYSTj~$>M0~jxPvJn> z=0AM*|K0n$Yu&TfVGZZ(z0VuZe)sdfdtVI`N6r(+a{xNN`bJ*Lww~4=j_zKLZmuAZ zPiAe}Q0$r{Sk0)xH)BzdD{&!k{WjIj@b6RpC(8Ni_X&3qB?)_Lmp3`XamdL(;w(e!2y#zKPI(Szgr$ENoLR~rZ0l~ zIX(`ogve00t&#kuWl`L#$!ZILrsY=X-! zMyzk)_)Q-fUcL&gmtkqn+KWaHNsN(YmUTS;@6WBBrIo;>{adr|lQ$W}NiK6#s+n8F zz6b+$Phyh?C_fA(bxVu2E<=>OtI86}!>j57hk4(AXvl`SJa+#e%qFr`aPx*r2GkXN z#^I11BqOQagv8|TKiI?C#Zi*-Uy5DO(7eO^a=G{IZK9%OshBv=cvalnhn2s1>Jkyc z`e$e7Wn<$W8N*LrfO>fODuWK5t7Q;Q4H$?6X$Di=6%u9zOvG^FtPut84oU5#4BZ;% zD3{8BBCN8+VacN9vN!Li7(I8VY@RlGkzg-AtN){mTEdqs(%n zKM-r{-yQfw^ZB34nb)fA)wlC_Z)@nWBs&~E=k7%Kx5L&lN%f7ECFD+S|B?JSE{rQ8 z$O5^>YV4L_Oy_Q@O=Nm}k?Kj@WpEm8U85;@SiK^er<|f$hDWRC*1GW10yp%KTi}uR zB6cKp@!o!gldZ~DU;<8nByqc54u%zeJHC01*xX=H$xrHA<*y}&TMIcjzKKalXl_LA z-1EW#p?Nh3?hJ!fKXX_CZWc+$^Gf;v3=BVoZ%T}&>86!@-d%^@i;-GU^lx|08D8Ih z4Y)&gn66rR*9g_~#v3s}4nY~gUZJc`@UYztg`GCMo_q_}B$Yc)^ZyS28pwtBwy z^zfo=YU&o~m@>#M#t#E$mKCo~gM;LFK?=`_e~XFvFK+bt)HkG+XUNdkf?P|B`|9<2 zW}WLkjdykV!&?KIAkK^FC`<%hx`j_ut(bgCE%nlx6;cJXjJslW;I(^YBL)R9zu5)-SU7nV<4hvq!{D9PHs+J;QIzG-DVh9sIB(IIetW5MJB_*douaPP1ol(D1ZPFeplD!alY z7AX7s*A#t`fPzNuoXV%4-a7bgkmpZ2El&P3muD<>aQhHFzLy~OmZsEzF9Oq9JcFE$ zzZZE`J;EqOP2F6|yAX(Q^KA)k%=+L+dfVa?jN}h+o#GFhKS-f^%lf;;X>#)s4^P9t zWJBikcjwzOpmMdwmR|)08`K@G3m

0y3Z~0#HW{lS#d6wOI75v8Ymy;*K0o?RD9w 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%0A`AjLw7-mw} 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

~EBx|T?<@m_7YKB}qoYAeB&M_ZnOVFITI%()tx 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 literal 10528 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 diff --git a/icons/obj/clothing/shoes.dmi b/icons/obj/clothing/shoes.dmi index e4326609bbde6acde2cb2dbb479165a2a6dc70a5..456630d118255734a01f1535a71b457f4a4cbc38 100644 GIT binary patch literal 8953 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 diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 2fab1409b4c00fc77fc654d52a803ea8f0fcad5d..ce7fcde94ce26482e3575e42423bf5f30c08d05c 100644 GIT binary patch literal 85040 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 QfPg-(|$V{4bH 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 literal 0 HcmV?d00001 diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index f8487ed72da21f2b020027b53f5b8fc2f94ce151..23fcf38beefbb9f2df51a078bd8dcf18160a67b1 100644 GIT binary patch literal 48207 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%0DUh6Y&iMFpftSaJ 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 I#EpXf7qI#3IRF3v diff --git a/icons/obj/projectiles.dmi b/icons/obj/projectiles.dmi index 72ef46c7163dbf7fffe968d3346e47a643d77f94..db4baca713c2a59852bc70c209bf3f6489064821 100644 GIT binary patch delta 11897 zcmX|nWmr_-7w#EC7(r4>q>+$RQ9v3=NtGW+gGx(D*PIasDG3EZ=~9pyq@{)iX^Ek` z8-bw)X72F6&%J!&th4voYp;0M+V7r0932L7TQ^m&P^*aYQPX|{Q0Ps!y z{$G#omN<<$zom8a@n&QK_pd+K7|gvOD4OWBCyoo_iJjLDPJEt4$ZI%N3lwUs^?s8+ z+%NX^$5q1^3X{Ap-#1Mf|BYOktE)X937QT!oEF=3B$j)-cpS!~N_Z;G+lRd{YM>G} z`8z^6YMMzaZ1O9=ko^PSCnOUXE0NLMs&sA2wNs*veB!i7Kn=m;_JA5qCt>^K$L_}? z%`y1f`Sr$%h9Z_y^45wa*>8_rX1Br$Fz+-<^X5q?f2}D$#9PWA>SxDc*WdAbV`g`7QSuIqG`Y-yI^nAf`kG!or%i0ubJiH&!)H(N+Ohz8*Nyx@s0=v7SFZrT806n z&@X@EF+AkwF+6U9zG(lPT0Vd)^&)X$zaP`O|+ZExz$N8)#X-H#f53Jp5*C9v?8^6u>x4L;sm~n}`!}lZw{gcxU>Ml{!+~Ql3gab=UnNN2|4)hnJ2U1_ z_D<=iXgLva+)8Ab#2t#xC5IM&PsHdhM732eTwkI{C5z@BDf7eQ=*ryP-2Ip4UuEG> zJb}mhmiCmPv}L7OADQP&uQMMR5uUv!^@8SHKxJ~lyR2kPdGT>Cm_RXlA6INj^fNoW z1tVS$w?E*GJJ-o;$8SmE)BONMTnnufbWqPzf?YXmg)E0|uu7d2mw`Le98rQD1BX5kHx@IgMitahB`90L0b^Fg0JsCCFSj(tkR zZ=B&;aCl;AfPIk%+_PzT1&l*~`;(0;es5$wMi~se()(y)oSrX2*r0cg_!N|Fpu54V6?`Xk;gacj^ zkYFmi>Wl9#IbZ)x1aXY)o!ir`-auLU0Wmap`d*;RYggS-2eLo63nRHca-gX~@8ur*h!ukLog#lR zg`kNr63+|ncJfjQt^7qQ<(}7-ww!%!i+?I)DZV8af!(=J&{o2I`n;skd7?TEZt*mR z7ZI1ev<29U=yly-Ta89JHk4#X?g{Mu$5j>^Jw!LM&4Dm=Te#aQ0E^^{dHtJ)tPE*a zJ0)Vda@+e-ry2XxdCDB*#GV(fgd5EPVYx{dIQoAEUq@N?5&J6q7uhIz`P z7IDs@fIunVx%ugzU`NX|i*Roml&vK;Kvs|{oeIt;Ka{<#POoPy8I-koSWi8q{V@i z4kSd)$3+LJ`%5@g~T$|)u2b+1RYYs!_^t~u6#`Mh8-Rv?z)}>6xhF_ z`fppA;Yrg#uk;J=`YpLXj7rf2KZ zn$x8)t=abQ_A+aD&pFtbhDNe@m%Oq+A^oUb?Cdfbly$y4VpMvqZ&jyG%wR6fBW@VPD+p5sP9(X<>vnGWIQgf8jEo@eWXp?WXeC_jd86?f!?RjtgtT}I`EEA01j8@rb!I+jIrBgv5!JI z_ETg#ILh&ppk__{AzL-6dL^ErNQu5lfPMCoTU1xtCJDE-$9c>4k{{wO|D#R5w1XDE z%4bmMRP;tg`dt!t+d@Z&jEHNEN=?Ml3#XJ6Z`As~OC!Q-VR$RrJ*@ZvNdXv?buTyi z45a&Sdua0wdTyX`n1R#pdS}9+SF(oS&8e!lUu`MCX`Q-1ns06p1E-jjxfI4gYU zNBLLEK22SPk`TXZBSvn>adieK6Gcl^@BGEt8L`F15kGCy>;Q#S(T{mFvrxBDkl^rn zRnRQ;{3$~^#`TdaQNds~=ikk}is=)j`#U@9VMdpI_9TEne=MaDN%koIt5D*LcADhA z6n$qW@Xhr&4Q2XOA75dIe`E>?1ZSX>mOpP)p|%$OiF24Gz}YAb z?!AV&OZF$`#ahxebvIiJi<4xzvQ&b*K<$9bxygs&7r556&p@ow=Q$t`;|$dyed%bd z+qTQ({)|1*UTazLfIR)+{@{Byan;^LuBmH)R$$^A8GFS-Yo}sq9{5vwaI_86V8RT$BOgZ&xUmC8@cQ@&_W$5_pj1^gFGYeJ z&SZlACI(fqwm3AaZ3Pd4TdtL`?D0*5xik?`=3?-d;ZGTnAoXZLP1Sqbsu_QFy{iv(WPLmltCIv zm#OT;vp0V`6UH``m#T-ySmvx91>$v4_W5&QjX8G!(ibaIgSF#*Y1E5pVsU{ygj$pKT1qg**tNfZ4&Uk43lFb9^woBlxW6)78iGjn4H)*?70e9 z?X<8!u1^n|M6ixs(=MTf$2;=iO2eJ!&sSBYMAl}5PDSn)C#}gLieM$R1geDBiruIL9M(0FKz91Hj3@}q zeEzC-po-uxMEjzT4GwNO4@StU*@@$M<#%cUm5bQskN+M*40f_?k6#7~ZBMtQez~}_ z$SQep$tKKkeLVFswN>#$Xf)gTqn#XwDAZ%7=6m*q%cRSKPEs>7`g|?VHpNnU&-E7f z6Tsi77of+#RHNd7R=(!5G1SlAka@~68ClX^IzS~hU^(yqBHX7h4ZeK&t~OOVMp$~t{&aUM4AN{W<=`7sIM_`ss4Q4I|$HvEfZ=^sEbY0S0tgVAV=aX%*yPaX3a!K$y+^Stz z(x@fJ16Mv^wpd%_cIXPGTKV#61w^9^_nB-y9Q78Qymd>87nA-t*1@Ta7mDrq7#h{h z5>SHA@KliO=SYh!k2IfN(yaA-&1Cj>-xEmC-#KWz=TYKQ89Fgy(bH#HHgMvwwoM*h zwx=pZ)y5sqXu%C;zrJMa%>BuBs}46Qd%4)eW?*}KShqV^61~49ejL*B?NmeNjpkIo z)|+XTn1{+q0d$Bv4lp2>YJR9BRCM@-;f)zZqg=+(d8w} z+$N!|t{@fH${vyIJKv(13iRCNO#_sllCZ(wkSCL92nSy`MTRTT6p8v1S&NNk(11hc zZp?1?#fcQJL+b!?E?#y|K*QRaj*|=b| zZ1Y3n0Vo&Z=Jgy~*|FUqkhQI!bm51Bnpa?J!jc{1R*Z2O>5_?SMJ z@Htv{G!H*wxz+y9PG^WTVLZ589B=1Cbm_+wLZi&xOs+`%;HvL+b6Sjj{&yeQ{4A z#?^im`KyNI+6Nb%QkC2(D=Njb zS;T{_Z455g6}S*bqF2XB8s(=N3%B7rrjqSX-)cs=h%jl!5~`>hH>a|OwV)Z3;xw$d zqO08OstvUKDid$qWuZpyxmDS9-Gdz$K-!zw!=`Pf3SvUAf^6ocyvhAFrgT}YV7#qAjWSsm3U*ABTZ&w zgY)fFnRT*Ac3{_I(H+LA+$1TCIp69aRH$KZ5<2laodW^4?#v$nd!2Uv0MajSl z?8v>`!aEu~iKm+R=-$aq&8*R#MdGiR~UqbMdMc zC^|Y(j8nDe_OO()!G{koWh58hOo{&Qzsoj-0YfEp(2()TZ+bd}F1}gUiHXE`DwEX| zPx(GRJrfGVuWm{30M|>%6`x^o<-76ywF7B1i_}l%bGt^EsESMziRXF7!HD@U#QJZ_ za8FjHpBPqG$sY(LQ8sUN7z%PBNK{Fr>2LM-q`Lv#D%DU_oceEp3j_^aT8j?JRY1m_ z9#s(2_{d>vI_Z_kxn`aYJOoZ8JX?{z)xFr7OsHeJJh2kRid-kr~Hz{iU|-DzG@v4 zNs9=pB0{JL&&QKD5pkdI8^6Q;%OqC3-gDItq*8{*(LHa+0;&6T^TXFx#T5GAqW#_ydfYBLGwEZLTcO-w{;@xd5hX+uAJPxKgHkv;VNJ5 z**by5^9m*d-^(q%RRRy`7V3B67oU)EUaL(0#kY4q&WxprS)SS|GxzupUf_4obNh8b zrHu|BcIZj84qpztXBtp4gSDu(^gc55K^N~6X3xT@6iI{^8ruB>wAevqVVg|)I3Atp zJ%7=Z%d*4dW3xxt-2Fj_0B0oebJ8?;AWQp?=Tl-besvapQ~aSn2C3lpObb`d5D`T; zYTH3iB2Oa1UQ{wm|0mCm%bvVRHuwi-6)8#_m#k+=PJ+%qb5{{F1md*MXbKuf$X*C@vNoQ?#5>M}axZ$66h2 z`VHBxQ-==jX~B*46pFPOH8ZTyYL~B`+YmxQcH;2o-^UeY7Je5+fBn6mG?YnDTXmfU zzU{a7lfJH*WbMGd&PtNF+Q1giISAqG*{8WMmGz;7fsGov02{TkMm1+JX#ZWXO6XjN z3*BDrD&BDaV;@U#qtbl0^l+oB0t{_mY(lLu5&TL9Q0w!h(g_qj;||bo$70kje`&w{ zq;DU88~RJ#1mQ&#*iAe6<2qY#f394PRZz{pmy!hYISdHAbd~r~I{}k1Jd#1Gh9|AQ zmkY54RTSkZgj$rY)UU0rsTVe4VzaXv@b@u({Fe;40$h8?lha(Xv4`eJNfu)4z*Puo zjbD#=ukBj&Hd1P!IbTlYueL$z?ecyO4TPMU39s^qh6+n56VdmFZqU%7{wY>WqenM(T= z-k(HIOnPv)_z?_Mby`3{@l*6G28&vnqLE7i!X2R?aRY$L_jxFZQ_ftBq&lmQYU}1+RBJR))i}$H*2rWQaR}oI5wGC z-K4NrK0{&d8;XTYuT)Kl9EWhW+-;#2cJ;HAw!7|e%N%&u|3qkuf%03-2hj`W>lyHI zG5`}wyp^~DqCgf<3gt6k;O3&vRM6$G-`(Mx4qqb{I zmVCS>Wg635$~h2(&wY{GicYMkZ-?l&{&P6SZ~0vdxEBA{jt^wo_E{Y4_9tcSO{_ZV zoGQj;^>?bbyXG$}McLL^-bUC-s@x`3)Tn+&0>KacrM_tGzf)@IZvh9#e^VZ7Mb2#M zK0A`zG1lPDCWno55!(@cRDBAKC)BxcYKveFo8(uIfqV0gfxLTYpV?zAz1iYD0%(+Q zb-#ss0@pt<$T5P{y2-ZlT;5kx^k0%?%1_&8M@((CMo(X3e)mwG0BEY;OQ`@WX$Z@b z%X_^Tt~tijmuuz(l!#l2FSoyUt#%SN@mni?)1Lq44MMUrM}kb8hhs^ju!%F5HFN*? zI}UHap(Gy&IajX6$j3|8`YOpyvi`(o*laKQcy75esK$L>(m3f3^~Z@x4qs;^wIoht z`?nN5p=lveq@V3$uj>UipoEaGEW5A^GR=X_a|~Dfgo2~5llbDIdBjbp@EJ$Wt;liD^EC6d1xjfR}d5w(v*ZZz|q(&luxF1mBzRR8Ai}Rm3!0x+n+~|X9QgSd!rro1mXS!G8IBUY;6Wb>Zb>K5)5s9TC6R-L-kqx- z(W9#K6E`*zxz=@%!c_0cOQlHt#tl(xode0Jhzc0lyUUdz;}Q=UgFJDqI*T!IAWv

6?OHmIx@>H|D8Y}amfv1HWi$DKf_L*fSc?ZK*I{^KRIj!6R0g(CTtAr$5DqMQc`)nL$r=S|;4<#Pi&F-IH)4>*^WmdWl_=K~@ z3ZqslYihrKu{lh(H1~uBY@Ve3VBQ@255cdca-<3*t@h!cpvUlpWKxBNC|2RYUzLsx z#wQYK^06SIPE1(^8EKAQ0$XTX#HysL+>YhQ-zq?5>2Ou8v@>GHv3qx?w$Z;W%dE7C zru2wn5hz-zY%mPN{Gw{&F9h{Q>5D!U+&`Xx?1IYgmXcERzaFYu6Y5dKeAf;A?gUll z=bHkOAg$$pltbt2$AOOCUg3v47*y?gMaOU%SR554#lCn^Y?7fPq~9kOH=MFncOd@wTk$lyF{7-qGTjN09+2HRpFra`Y&xXmZq#V(>@&Hqt_m}(2A<|^8 z5q)5u|Ll`+++6m#Ojq}DBrLE0AOO^7E5E5DQ#^GS{%kAjx^->BOyf-LqtI$-CR8Up zV4{%_B1V-^gOpV#sTf58Wgmzv4E_78=Z2!mk})}a+V?2MV$P~IOVRzlif3+P0eS8Y ziDuAuN=G5HZt;5t$Xw%V|E+r}ect2N$?aeC?Q#{}QK=xL@t+@yM^9%)?}L9_d2gtz zq`Lmf!R;)v!()=6)6>oI@h$hdJVzV*RiZL1#Zq)i84FFxKp;3}+fJfa)Q=K_0HhAlD`O`7 zi}QXM!W$S-kvV%1d1|u|R4A$No3`tQ&#Qb3&2k2THAB+|N3cHr(&ZM|7ANTGsHGn( zn~RZ2IR6=(6X}vXW{K)p4A&g#bjpyRopSWiX7pb1K|W4n8Bcp=fr{j_Aj+(UTRM7Z zXYDw(o)b;z`3huizPcc366=kQFF3_z_ucz7_yI#&ma(tjMEzxqAECR$foQ3PLoK$O( zxTEqWujO;CWzE}4w97@^T826X+B3;5+rl4OAKQkc@k_ctRTp&~u&eS^*$dOd3hI(gBVD|6y%X7^_%qvwEBurAFoFE1G(a zS-avZY-cD;KRglY%k8Y_p|xU%aqawsd;CIvY4-`Yy!HY@ywiC*w~<}3jtj=3O-fn8 zv6!@D&_p=sUwa&0I&;wPa4&OY$H~TB`XMXA-h6cE}RyQ6t}gF+&6ZCDRh)s9!Ef z)-(w1o?6bc4MQ$!t?G(eRH>H}Xp|5_Lw7?Bs7)=+zKacrFs~aJ5;aOVtS$`UfO$m? ze>Or@yF|7K2VOwYW*$0*tBLNdUSkXGN#F-p`F+K$(_gRU7R+d$^D#r#?;E_2;3zza z&I0*5W6An&Qa&)#{q9y7Z-k|9W4u*B<$gRlhJQsuB|=f?m2=+a zrphrux@WhgGs9|r(rN!+p3#8_fvb`D#0I>s@~&$vmY+WLt6!{8r^kt~XApy39khfs zupb(oPZgI!ub^)=9&P_w7jA_2VdgrXWL!BFZxO^qZ;^PGA=Mp@wiYlAK8J3~${Nzp z8B(iWw98l<*yiv1m{c<>9M4$O4(4Fu1_F6VpkJ0)lTW9P8&ZQy^SKxJnf>!8kW-m6 zzo!;Pi)of?q#iBZE=&R?i-;Fa8oVAG?j-KNYkZs}%TB=oey)OA=1y4?Ht9v$X5GcWTWbcYPcl0OGvnuUJa|cyMfD&FzH5Mp;9JjT9#MLR z9nC>pPJPLX4?>{>>)u^+uNmqJTYvPGTtnj?bQ|y`#~QA1<$^5G!6BlZ@xjG)&` zT-%Mut&brNH`t;A`neHB4d-i1YHY!j?v(T_f-NV^p{yl!RKWgdfX}iSowCNw>}B9% z6YZr;!kQ!`wNzfOhZ&0P7g>+Zv~*AM94irF z1CwmgbP0KR7yRML?hNbM$;~dvpvjTx0y*9sedyF(MGvTboG|&U`Q9-Kcj$&Vd9-!L zW|I;w4y0bZ{neesUYPE*3$ z@p`}VpzYpX%5=ZgZ&j%Bmxq8s@qG065M;ZwQ3X-WY{Rh7al?6KfCKY4Bl8PetX6Hm zL(Eh1Tg93!zi5>nMvJ#Er#bO?fXX*)&>y*`mH;M9z^BNXW&w^`&j0F>5tIJO`%pz&B@?_cdP*kyBcJHM5^wigBEQzD- zNXTm&9~A_^wX`T|Yz`mIKQMalKQrrd^{zxrfgJb>`yP{a!u+zq|6#iCVuYa#KW7Z_ z{$y?)h2otksNbwZ?UVhxS>XA6-3&}DG^SzwLv5&6X^SqlFhfDGbM+Nzab-pWt=(rS zW0fKr-y$agkyo^u|4Hra1Xt=r2j^$`Rel%w1j(AoR`q|QsG9mA7W5&NaYa6@evGOis0lnP+WC5^m6eW;{2!24gf;0;Qu^R!W8cSbxX}x zMblD`{@LVRw!nHmEz(X#&epXu$~55X@)2o6r-mz)fn@%oEtNt>l?<1e>)h#it)s8S zi3YDB8!!KX|3ZqvQ?z{j$+2n8iYayHqUAmlDdC3?Hcgr1GR*%AP+>h zbvq3IWni~tNAM#+ZbP_;8YI$<;>^C~nGUZAzpoJdRR5n|>(8@QV(R5hfOq0XbK*O} z-(q`2H*Y++?^a3*AV(}U!J9y-@O8j9>hkB!JYpfk8~|QDo~{-w0y2nPpLbHw?NQJU zemN57RcHOK%<`5pgUTCBNsMp~kQTq{%L{4>`;Y|2YG&OQ1O8~A71DX1Pv*AY(Vp`f zKkN{3dfo~tZ$cJ1ND(_KND`4pX&C&|xf{4AS*>JNV*b0psTQaqTqd-CkE2rj2BmvG z)_U>`!CykYI&+}&yk-flu;KEh8q`b8?;7{^N~{yM?vUqd=SOS9c>|70Jri)3;@F z+1A6)Tt&m9TEkLXo~@p3h&X!!-$7E}t+hRJBb~jJAJDo(s|T zo(c zC&}Hx0g@u=+CS+jdTb|Rol!h$!9iR##u^=YPd}icaj=H|#*0&axa4NE+8rH!MH3A7 zt_62S=)Mod|FpUDnOGc@m!CZ!cHLJ({|9x{7ibOPyKA>q}Wq`xkAIv?VU)S5kpa!vgG z3t{Hqa4oiIn1q362R0WQ)yE5{`g0IyZ5qREa_-*SZEkB*0kvk-V^~;OwT`I87KM)8 z|Iszd$)|56bGCH7v?NZi!Y^t0Q`p0 zCZUS(gC+yAhuYcT@rmv1yNQA1`W;q+Gq+lG!%_0}`k&gGBJRS~jywV|TU!~`GPpfM zxepm>RwSI1+>x8LM2^+Lytl3y`^=xMWssGcwYfH)*-un6jFt%F>kai>Z6@O=x-I=KcZEOwKwhKd zz2(+r2(`Rh^h^DANkUl11+I^i&NHCd3C;*IRdMxYE-x?tc84fg_fIogt^<@i-3gr| zQvA6+#&pZ))yoYcIMyrCcZFnqaZb<<{x!e&pF|krIn?!kW~CQ|>PJ&{VV5Is_TmWM zb6S(TW^tax^S#s+gP#**!Fi9*Ii3;s(=<((6hBNI6o7k+oa#zLjH#j9qz8;$^@Q9l z<2ev-lKp`5`?RK__zj#yzLL4sM6&;3heTLnSE8VD?AKsv7=+K^z6M2OeCdl*C|9nG z;Dw5!UmtN?Wsp}O$Y!eoh#wN!W__g6aHE2ASIlRCI6u)&Epjeefg)nJvx610wZ(zf zM#Ra=LqKL}jyb;}rr^H1qH+a2t`rJ`9a7w6c})0?YxeW;N)RwaTI}5Nf60h#jaF+f z1TFc9pSJ#(3s$gRy*M$ENSh2K=T5h!hrZxbOZecKmRZFaOJv zrW3JIA*B-$y8opWfdFnAAAh;h7D4~B_klhM*7&b(4aOQ&>i_a~+kg9?- z=?I}o3mpk1guL*3|F_or@Yeg1b?>=z=g#ce=ggUX@+K5Icm_!j1kr(ypLnai@UngB z=;7_??gjwg$2)kTaDU-|)`%N>LQ;KMY#+%E>*m zCiT1O>64}dYf$w0nYg$~`D_|XVJpq3f|L{(lm_Tx-a1nV-v}QW{UwV1T(onmf z$OJjOK3v(T)N5$=$)Q;klQYVp$-jp5+3UO(vihE{RwdPB?Ba}oc}c{r{^fcH@?e*r zVqk=~5NlgaHTsVPF1MLZh+F$4Q7Ba5TAv(VhUwBuonKG{EBfw&Nv=-aW+ zf0JeGS8uWf7)ZO^F|`b@(fr08Hnf*1jOjzP+F-~|7Ga`48u>%@Ia!5;$95($qSDZyvz6f&d_H)j$MuM%P?_KgaA4 zgL<5USbxKrk_0!Pd`M5;n6f>l3WY`XH2|wwiZ+k z> zwd>~LCU%7o{pZ4bhKx2mO#DlZ)@qjIWj78|W$UAw>Itsh$ZAmOEl~qJ5)J|hjlUO& z2UxH}9#GMohh>tl3d?fRf9&0RV?gDA5u&}>2};%ZOm6Z&oV)hW)*LfRjHsneYm@)9 zOJ3^yC;a$W`k_s04mS|0g(ygE@L4Oo0{FWhooT9GUgW`SYxWZV4BI><5<|HF`rX9C zDyy5oMyL>tR+K&^UiNcekIOV$DE2XEpA%9}R0VX+rmeo!C{RwPNUiI^sCvq@#YJPm z7$O5;oFGpQPdfb5> z!RD@QxX@0tosxISB#Pz%p^$6#;7-@J)pG+PRr9k^jt2pZW$2ra&1=lh4C|@-@Eakp zb-%}5-i#O}enBpQS=GyaHV#X4F)>6iaVC9W!QYTeRu;g~Hb=RCj8@WM0o{V7X!paF zisb=~$fRX0tf}R`zkWcrG0vz9-c9e^)6Q;)Z<=1mbY9c;CamYMZXV=xlcjZ270RF7 zj(iNV8O!kg_E&NIOKsOuw2QC|r)qvJq-%;9t-pb7gO9>RCS*BaF^(W~2m6d471PDDr9f$Pd{RFc2 zYy-9dyRTN^AtbClcf0{9a5s_lFJHR?zlv+9 zE~>lah4HP)gt|T-$K&wN=ntod$OFaRlcrvVk7wK)+Dr3-OF?PfOlfV8c23Spj-=E5 z8MhodFPK;<=fp6srao0JP-0++zdq|3FWklVodoLB*+F68@ldA#_+=vE`hA@H>kot{ zU9gAz36yh@h-_i_JK>aZ#^oGkmcwr@!Ra`iX=SFj>A{uU#pZcB2@i$mSRT$jT|Kzd z1mzi9r+;n$0;F%dV!*x=Jl_kGd^)3PAp{|#f{n?aT_@AEHbPCb>*N^C zFt#lw=INJzV)3OR_S0u)I{y8PZhUco-XfBFcIz=%LgRXH2j4xt&MSCoNfeJI+bJfV z^|Bwzw-E?>$TGCX2OemJhL)7~x_b!baB_UM-3YAK2It6u2`yxBXG7t)mThbKw};}{ zqW>gv^D3Qt#tL_J$P`i&q+1&#Q03dQgCY@mG^x0YTNxqLI& z1gS0!l1qd}94f_&Na{`&5>KWh!%c~f%9-&TmGmwio#+OZ(e(==90qZJieRAU*UDYp z-b-Q(ZVMxQ-OFQyfuL8!^XJraNS{AcSenpvYf=byustJ@5nm(w;oz`(+nYi&yIt$= zs~I7~i(ThqbqQ@+le!yK`V;`rA%vi60bI!Ro9sK)spDx>uu{XwX}m~Xdz*S*!-~owayBV3D^IM>M$z!apgw} zn#a#0u5V4BFM>sT>6J$MwzYPD#`!G3gm7rxEtB1o@i_Vr08Jf=U z;6~kTOkoZD2k>aKOCTO2ITeL%@nlZdD z-CWwe2hTRJ{Iqf9rvXlJr$M`a|b#MF|R6KmifH?dN$KEH+xN--wDCYg?P0=~~yku-**!Fsm49! z=P`;lB_wiutnh*le^%<-R!TXM`*LBFm(e1!~ zQQED8x8Wy*2sw4&-^T7ImZ>`YtIdS!6egR^!fyK0HOd)d@J@WE&|D;H6511t zQ`Bij2w7Ex-`G+;N`#$Aq3Ne5&+5RA#mF2>&}#|tZ&KJAl(|b^zHMEG9#Qyka%b}{ zUFjCPH9kpZHAZ=GVASOFbR(=K;4liCY0mjiGTBiLfj@zK-Fbm5sO;) z!()+c(Zr-%s5ZxYe%zsRrXYi4iT1ZT_vyNI)H1K;hhH0nASM+0!;XXfqIOa?VfKbI z;{nDdb`b=|xX8Z*=N=nff$YC~NyzXW&I?dz<^FVbZ!M)$DoI>G-n6#6x~?c`+~JMe z(oNYn$HKd7BNTiKAfsIjh@#4MqQ70;vta&oMToU*Nt^-mb$;7DKlrMR*D@m_c1%#p zcXhfZ{*&n0x&^uL$Fd~01mUuI??aUjFpbY>ms?n+SSHEkGhM>3E-$M}Mfwc#6>H+B zTlB9bEw(#pDjX)`twD}@_c0>;hVb)cZT|^fO)0FRTZ*mcr;9~+u*aLT6B3n#m`K!( zaxAcTE*c&X?T(6*{%-4iKikrSpi(3T9E7((9}T`3$`VR{lG%VX)%Ne=*T)A#4qrAH z+ zvnhGPLL0Y{9d5sAYp^_aXHf$8rv1Z_rtovE>0<54ZiVawfw@bNK{ZXJ4TWxRzbN_g zFOb4bVBqZ2BxPn{q=`jchOY_5;Oriai#40QI{D1OAyYeW5I;}uU4n);oFU9lEpek- zQ3#g5a;ewia}2q7LC-U~uv%VLp-&9r3+48_hyE(jDhXW(Ko}`9Z{vAk$&`i1vGV6H zqVh=lWII2$SFX43LCCj@e{{8$wk|Lz=A^8@9>@H+DOKS+j>tgo0c$ zWlgm@8dTrbA4S>eU_BMhJgMDlKt<|{)Wa8*IdE?P78O~|bC+L`SLlJ85>Fq5Pf!3< zQVM!1E|KPU6UHyd7z6yfxtMX`efJ$&HLGqZ60GnfPNU5R7aS9UPC4fmDIw7slZ+Qw zAmygWrQV}Yp@o)mb@$J zKg6tE0|| zEX(o$>EQ6tg0AiTe2OU`Q!n-Xl6h!FwU6Y3iKqQ0y7}Ga>C5ixm`>K}Oy~k57Dq4DCBi=2uPNY?QY^_*z z?J-*$o(&vWc>ilUw2+!AH4dI6-9JS!`3~$r29wbLN?)#)O02C(Vxy8Xm z(?c!$nH62wZUn!F;q!G8g=+r-M=)Oj(El&M{GpVX5YV46T2dA-|MQCKPGF_c0~r53 zhI{?U@ck-rF2t=N=XUWW1F?%r{7AJT4<-l$iI{?l!J9y*<$&TjO;j{d!}WB^e-1Vl zdGugEQomv+>Jk*32mpa6>mzbQ$0f*FyiU*Ft!XSH}mPGhhLX8(SMinyVz` zxpM=2tsak#sQ3#s9NRM`gn!-KZ*ftAOi(Ca>^+CS3cT7B;guzhdi$5EJDdc|>J|(av+m8cAdP$#MHA4Ic_GB+n=S6i6Imr`9 zM#gqAKm~;H7a&Pp3SQ_|*>w1@naZ7SJZ)`F4EmfAhSN$ z@YO2NnQJU5y<~YINklcRvj{?yGNO3wex+XTA}u!}^2q|xBU=~XPB@idbsF#u#B7sZ zo?Y*6WXY}%9_Af{L?W&<*PFY$52!|hg*4vKmjzLj76UJ;t$nRVvwQ7wn0aIY3N=sV zFS$$!;!G1}PWTtX?&Biv_<}*^DF~_4(ag6V^3HGEc5`ItWFaK<1@xa#wmm5}GU&Rb zFh{=BO>8;ym{sQ^@n8QU7FY^n4WXQXir>z`&sjfkMgKefvV_z6_>oNC22`wERy%K* zFf7sFP_rkdnluQxD%E8bUB!FUMIe@s;Is$EAGo2PbMbyQ`R7WhC|3SRBEb)$xy@7` zls{B#t@Y&wDM|=aDoUI6jE#xJTS}M>#EglQXan~%2ZY&T->2p$cyk!1B0`_q`23i@ zNd@HwhQlM~Fk20_JNuyeOX#XUTqTf#;ndbyr_xf=;bNs&D_O@{%F~xa4zx66<6`N! zzsHr-_nl|#lz*}^PeaZ_p2NbUA8eCvuFsa;S&z4S_7sdT&3M$fT&7yBRLnl^kopbXZnPJ?q_Ix?ASpH zuFAsNGc%MdW9G$LHvpWo=Hus?#bh3f@&DU%pNa@xxYbfwb!|bOk_iV_mo)GU9F_(7 z7;x;4i7DRi1ua>H1+-=`J{fbvdOLb_`?=6vT}P1S`2Md6QFSGXid>;%7P3_ zN^u^D)TVnvb$jt**t-RAy+tNx3#w=xU>nIsj9N^;%uvowmptZGYb>cdNabNGdQCo3 zOAdNeC)<%rbDJi~kUBYe&l{l}jaD~OQDO{lVci)yS$SbzOPzk`n| zV!(7DXRMAm5(u>UJfjs-PCw(EQ~D#+ z+)iGX=Y)A}DZ10VnVLmfD%%k!{4Tfin^`EaX24h6d!B^{@Q9zbLru`XhLymSNNG;1 z?-28{R3osIdColco7}XPM>iQ2A)Wy6KOwH*+C(2@)zLdK1`9{B%#dd#_$|E4e>l>^ zNo1)wnPd5QK%}*9Ljft9vi}?$8Ms_M$B>#xhwM*tRXh7h@&dm4Pln#f{ zM-f@tHt2uyl*9@zj*V32rqQgt)u5^B1T{5=)8a(RescD=?-+%s_>pklW^$#UQeED_ zv$oMA&DpYT5)#?X=9qwKVFlH9lfW9lOe3OjQ|fU1}TQYKUUBw2bT`1G5L-5 za5m6NEIGX*MT6)EPq~4%m(W|?GtiuDwN}xcA6rf5xx{8N+TrGfz^RbQ290E#gD^Aw zD!|Mh4bt=NkEf1?OdjhVTAn1|bbJopBDpvzG-{5-bmUu2UplzV_R~hmoz*GAeSb=E zOlB{mv^R;8w2t)6b>k#3xo{Sl=lKXUmug!&-f}tgA5z90Z)SRy-&$s%v{&yqHG)L1 zS86kT?`C*X%zZ|GQdilXh}Qo7N$9jbaAS`L-p>Hr1RjcUmW4i@o0tLv|F-qqryawnf?7=n0who^!c?<#&0y` z)rAu3ZTqqnYqNpRkshw1H{qS^xV*gI!*tT*x zx>>x}XA8N`Z09(RJ>fl?aIkDjJ3TmrV+Kw((xYK3uGZHgB0&wjmK=m<0o`jqPWr0) zsoa#_6x9x#=$T`wDhH`d0@RTxODT79&wiG%t=hM3>q(#&)0lgo<5X%!)`+#ejf@Uf zDEaMuEC~~ACH1n`3F~x&?@&Ph-ie-=Y+QsH(fJvKBn2w)Frp2yOk>as5q~5ZD;ggT;n7des_N=aQdfCSx z>igk$BwVJf>nE>iyub65s>RCsCaUWorSwL|_~}XX{`4dCwp5osx}0>x6vz{Yer)Ra+{m_K83qwDBh02lsYyQRoFnx!*UI^}06#{{cnFAUr=`h2LzL`g zM4R@e2Uh)x>Wa6GkOPj+#+CGL3=gYVvP*)?)Oo*$v>O1m>ckgM+ReMjzoaE>=DaaS zGQEX5h@L3pnBt(tq9@!QNFvCCgji^<;MZ=foOUH2|F z0311rUYNMuV%&P{+8e9cKIHg{o)O2qqTwD81uycsJcc*BLN5MVaQpXt7Vd-kqKlqp zzK|7J?NxKdN2nl9QNz2$#$Q{`qL?sFmLJe#(J$yXr7kEA@AVsKN^tb1_E635#xiJH z1{uw~}Ao6R@W=Syd@NtH6tz&EWA`B_u&DLhimYIS60~FlO4gX^JjgWENIc(^xNwR-V#L7%};oTi0Gl)1$GTBGsFFF-uHy&$1wD#FUHv_*Y?8 zB(AUcgUfYY)QF{MGI)A_*h8)Jm{o3lTXz;U?P5i&;d;to;)z&NN_cT6*CJ?iYdvWn zGax0N@2HR~Z?84EDMI1!tkD}+VzmEs*Xf-X(ih0)@NrW^G~LejAy;+_e7Ubz%~FgD zhz_o05fj}Ho%eQAG3>Fwk7a3CD;b|V(rgiU{cc%DAF0`L0d$g)c2xtqc6T_#5{yOk z{Q|q{wh{{FBO{A@k9}5DL)fZBX_x#C`ihTkKA_N)cBVg44`z$o|&={?*`i|smK9Nd0D3%>ZesZt)m$^e_%`DL9Ys|w5nOI zt{9uQIDyUC$<*!~;4Z_X)sgqPJOP?mzpDq2C^T4Rq)_OP*e-_T;`nhzM}fN0t+X2( zKew%XWF;%)P|YC}I?aHxI|MyApQbWB9)3Vkm9wL-Jlb_cg|JS$RAjVEP>-;E_K_A# z{ak7OBVzj+Y5?$`2_#(S+6B4YW>o>G9AFjY>qIT}b}R>UGI2XI4I(Z)FDAqfL$!ZH z_Aa^Rjw}6=hbc^3mESWS;=RY!fBVgveJJ+(LF)Hpnb!i}O;c0{vDrq9xiL@%%B#It z)cx6EUB!{^VeQ^A=6eVH(}Z}@g5X$vT(a_|UU5-phNtJYIGxx3#}ecT9f@!`lp9M1 z+ngb*Oy#8qbA>1c? z$2ff;WaA!X(tV}!`|>e$qBZp*9bQaEa6F`- z@#a}b-F)0e%E~V^Mpn%1^*i3o9ock#;dvM0C{9l9?E~F-5AwW)6t=+OgQLk(o|fR= z;EWL<4mo-RfQ9lHaH|JZbc-!Sd{X$wHy9A5Q)cWu>QwvC_~TnugP*2?TkPm$j4(e% z7y|-2q|?k9dw-d_`d?%2`d?~1H>sg955^f@{&;X|P(|;3EPNO*0o4ay*I87v+Rj*s z%aRGq#@^2#E>YomZ{_F%+V#YN*;gs~1vyE&fXq{MBitcllWtC-W%<>W?Z=c#r|Yam zS5P7DEzDu2XFHc&zRri2_SJg!>fD(>W&^`fN=G)>ksryy^A-$-LhO*$n~y`IE?0#Z zyx|jIMe3?#yz|P<7J10riIs~H=ra)DGF|4NnMunzVp55wzYHj->CeNj-TZA{8`4uW z8ef(pd2K#r@$v5V^EY$0vV%$ptoXuZ#|F`vwmSpfVAM z!~<&xpya=+zDx!;RKCaoc_L$R>2ONXx8P=~k7-h;xI9LuqQ&e;3we_Kk~2?@FK@zl zbCm%p^LLwdE%Ie>lFe%OB}C>6zvGU03GYSPqn$})NFUmq@ zHn0Yqgh2n`?H2jW1h}EDiXViXy0%Gbm$#lLTlb#f)de)S+b-sr!jdEgc2DK+QM%As zU9fl&-;FPtM^xcFPB^Ues`r+zzmEv{U9q@dGCk{mL0YWxQLy_=oKe%2=1kPqmH3{$ z2;M^1cD6NN_Qu_Ci{5*%DBY`+$_z)Ie<3f-uj?X&&JdRy&EL%!`azjP4{LeHsUp+m zS=EX=`mW^4u{_PAYP@>EM}H*b;ObMN?%y>#4C*%KbLKs+a;ZK3Kw2Rvqv1nR%;0Hn zRSkeSg7=~S5{N}95fxqbmTBP+rtdlga>nhdyAgZ<4$IbqQZisW02a7&5%(aeGD7E>g?JOA! zGQhI#o2o@|d1HlE-@SX{EgiCF+(aY_7wIl+$!%|h=xe^FbN_Sn!`$=OZ@ZyRon;b_ z+o*K?LKhd~o8Zu+r<+w%53Yw_I$2OkWfK2uiO6iYy8(Ih=uuf^<;`(?v99t23^B!t zE^;~+`}JiL*344~CyCpCwjXcw&a8NYN)y{`iIET9HIpd~duN_zUO*M7%}_;78|`js z@Ye3R1Y4iY1WgR8ytv!NuBOibw!9uA5o8`qujnwKliRP&XUT%N>-R0gzW-}~i7e;2 z?*Mk*>N+0pw#`^VCPTVT=tiDvj(R2>E~o(jn`hPW?`G=3UQKN75e>M!VeW&;{7cfCC#7LnkM1=%-fT_9}l#^s2f{cFC-`cq<-jR#W3DiuL(y z8Kif1eH*&eN8H2Pkj7TKO>Nz|(d)x?R;>yk=#5i7@pV~k!sTQKjV;@);;$I+tvl*K z8>z*{jH?ad#Sqn zF3N49Le2`fGDKKv&Z&^8xA2^yQf02P{9{d|x}ec~O+EFP^zDmz;mf1%>(nkFb>FhC zB|=y{ITcT5Zf~@dT%Vx}UGGyQ#z{cuI!H7XIj6z_cH9>CR~DFCA1(PrrjH^Ehcq7x zg}5(ngOfSEihGKQFw&WDH#~{bqdTzmlG{9JsU-Bhf$Sx#E>9b(bY-AJv^nrdA@K}s z%be5rK?ZxSw5An0>_RBI(&m}RYN{dsShyr3A!zfrXyq-()>jxF^NoLJ+j)$>4;JO# zjqh=#UGq4geeOZzee~V(sWhkq8&rB4Xn(B%qpnUHLx&KtCWkg>`It>OuhXsC~ z!mi)zQlc$dCXq9(ge>9t9dh%Zg-d76)cR6=-`j>*fo2QvF2Mj$HfIKQSn&n9@#K1EMoR#|hZu&6yhD380556mR*`wN1mHFD6_ zo&x>26~yyTr$$tA!LGv#jGwk;Hv$&l-~K$0Fr70QlgfnD=48NC^5BklZBWJ`By8`e zzlAuy-WvVMw!(MNg=jWAw$Y;PI-Aj!fpUEcpP^-AA_ zaKTY$I#t5+c%Juh!)RVR@Gh9<;hz)*X5rSPGx*>w{efc2`VrTo4!B+qQR# ztmTS-)ihlWR0kahnUMutuOA8P8RKS+T>mQ21D63LGaKoJ%aI;}GwT~QnXbm|m`!;r zOBPSnZLK&PP3O7}-TiTUDlaJP8cF;;c_-M3P6mpuoEoT4iwucv`6b+!`iNomU8t)2 zuO~r9$FQj&gPLTa&$p^Zbzo7dh2^E!9%_!Uhl7cJ3?z}`od*v<5=Z{ifl2Dg0~q)J z?^g38H{$c>&lbXue@rWqBpAk&c3I%uFN3X*p1GY1#OK;LU6>CrhO&;IOvM(~VnpO$ zRu3%$3Z&n?DP7X1{H~Ug0RR}}cPT9=M?57s-`JT$wf6T3F3hZ~Her`*KmLzP&Dlb~ zy`^s3ECy3rW_Q^JihNt}DS8{5n)BHsJ~A zbqFTD3GAxfj2SxN;0bHYB8l_v43iLjd@DVVeA;pB87Xia+4yiwgLSUGQ{G}Ywi{2a zi$`_!piS$s_q*7?WR;8GQH&42cG?pZvTeHH3Y;7YWkFl39 z^2nKPw^xf95x4Y^O!#{D>8P3REyGE+T}nVIqp3hHch=#tP^jgyZ!>F8xb>={rhg8B zNJ@Wc8p|)p+`bKtnxR8l2>*?zn-n&bTJ}Joqs^ohZ+X6r#Qt{wic7Q=5*B81rHwv{ z4j#cCjnz6odGh4DAY)=ta8nn3+Y@%D(Vq7ruBepYJU+q+hGD%Um-pp96;L!_8;8|cPcV4T83#x z>bCPrf7?#XAZW0Wq{<)f+si2`LI{E5gB?{9yv|bBtqAyozuhapvk7__R=a)>3R zN_r0%oEHa^=)-&g&E1b=$}s+8{Z&#uh}5OpoAW9r+)(9z>aWQE_wAVyU}oH!o=`_p Qn*l&eU01DK#pd<@0?vWP1^@s6 diff --git a/tgstation.dme b/tgstation.dme index 23408636bb2..24ecc4a3349 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -347,6 +347,13 @@ #include "code\game\gamemodes\gang\gang_datum.dm" #include "code\game\gamemodes\gang\gang_pen.dm" #include "code\game\gamemodes\gang\recaller.dm" +#include "code\game\gamemodes\handofgod\_handofgod.dm" +#include "code\game\gamemodes\handofgod\god.dm" +#include "code\game\gamemodes\handofgod\items.dm" +#include "code\game\gamemodes\handofgod\objectives.dm" +#include "code\game\gamemodes\handofgod\powers.dm" +#include "code\game\gamemodes\handofgod\structures.dm" +#include "code\game\gamemodes\handofgod\traps.dm" #include "code\game\gamemodes\malfunction\Malf_Modules.dm" #include "code\game\gamemodes\malfunction\malfunction.dm" #include "code\game\gamemodes\meteor\meteor.dm" From 059a1700a73a4ac566efcfb27d28226d4b717ccd Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Sun, 27 Sep 2015 17:25:02 +0100 Subject: [PATCH 003/418] Fixes botched merge on DME --- tgstation.dme | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tgstation.dme b/tgstation.dme index d18cf4d1376..0a04b559eef 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -128,6 +128,7 @@ #include "code\ATMOSPHERICS\pipes\simple.dm" #include "code\ATMOSPHERICS\pipes\heat_exchange\he_pipes.dm" #include "code\ATMOSPHERICS\pipes\heat_exchange\junction.dm" +#include "code\ATMOSPHERICS\pipes\heat_exchange\manifold.dm" #include "code\ATMOSPHERICS\pipes\heat_exchange\simple.dm" #include "code\controllers\configuration.dm" #include "code\controllers\failsafe.dm" @@ -317,6 +318,7 @@ #include "code\game\gamemodes\changeling\powers\absorb.dm" #include "code\game\gamemodes\changeling\powers\adrenaline.dm" #include "code\game\gamemodes\changeling\powers\augmented_eyesight.dm" +#include "code\game\gamemodes\changeling\powers\biodegrade.dm" #include "code\game\gamemodes\changeling\powers\chameleon_skin.dm" #include "code\game\gamemodes\changeling\powers\digitalcamo.dm" #include "code\game\gamemodes\changeling\powers\fakedeath.dm" @@ -406,6 +408,7 @@ #include "code\game\machinery\cloning.dm" #include "code\game\machinery\constructable_frame.dm" #include "code\game\machinery\deployable.dm" +#include "code\game\machinery\dna_scanner.dm" #include "code\game\machinery\doppler_array.dm" #include "code\game\machinery\droneDispenser.dm" #include "code\game\machinery\flasher.dm" @@ -470,6 +473,7 @@ #include "code\game\machinery\computer\communications.dm" #include "code\game\machinery\computer\computer.dm" #include "code\game\machinery\computer\crew.dm" +#include "code\game\machinery\computer\dna_console.dm" #include "code\game\machinery\computer\HolodeckControl.dm" #include "code\game\machinery\computer\law.dm" #include "code\game\machinery\computer\medical.dm" @@ -695,7 +699,9 @@ #include "code\game\objects\items\weapons\implants\implant_explosive.dm" #include "code\game\objects\items\weapons\implants\implant_freedom.dm" #include "code\game\objects\items\weapons\implants\implant_loyality.dm" +#include "code\game\objects\items\weapons\implants\implant_misc.dm" #include "code\game\objects\items\weapons\implants\implant_storage.dm" +#include "code\game\objects\items\weapons\implants\implant_track.dm" #include "code\game\objects\items\weapons\implants\implantcase.dm" #include "code\game\objects\items\weapons\implants\implantchair.dm" #include "code\game\objects\items\weapons\implants\implanter.dm" @@ -765,6 +771,7 @@ #include "code\game\objects\structures\crates_lockers\closets.dm" #include "code\game\objects\structures\crates_lockers\crates.dm" #include "code\game\objects\structures\crates_lockers\largecrate.dm" +#include "code\game\objects\structures\crates_lockers\closets\cardboardbox.dm" #include "code\game\objects\structures\crates_lockers\closets\crittercrate.dm" #include "code\game\objects\structures\crates_lockers\closets\fitness.dm" #include "code\game\objects\structures\crates_lockers\closets\gimmick.dm" @@ -965,6 +972,7 @@ #include "code\modules\detectivework\footprints_and_rag.dm" #include "code\modules\detectivework\scanner.dm" #include "code\modules\emoji\emoji_parse.dm" +#include "code\modules\events\abductor.dm" #include "code\modules\events\alien_infestation.dm" #include "code\modules\events\anomaly.dm" #include "code\modules\events\anomaly_bluespace.dm" @@ -1247,6 +1255,7 @@ #include "code\modules\mob\living\simple_animal\shade.dm" #include "code\modules\mob\living\simple_animal\simple_animal.dm" #include "code\modules\mob\living\simple_animal\bot_swarm\swarmer.dm" +#include "code\modules\mob\living\simple_animal\bot_swarm\swarmer_event.dm" #include "code\modules\mob\living\simple_animal\friendly\butterfly.dm" #include "code\modules\mob\living\simple_animal\friendly\cat.dm" #include "code\modules\mob\living\simple_animal\friendly\crab.dm" From 7fa35114fa117c2ef619e5e7b30fb1667de529bc Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Mon, 28 Sep 2015 20:16:08 -0700 Subject: [PATCH 004/418] Captain --- code/game/jobs/job/captain.dm | 9 ++--- .../crates_lockers/closets/secure/security.dm | 1 + html/changelogs/Kor-PR-Captain.yml | 36 +++++++++++++++++++ 3 files changed, 42 insertions(+), 4 deletions(-) create mode 100644 html/changelogs/Kor-PR-Captain.yml diff --git a/code/game/jobs/job/captain.dm b/code/game/jobs/job/captain.dm index 57cc571b705..d5b77ecbf4c 100644 --- a/code/game/jobs/job/captain.dm +++ b/code/game/jobs/job/captain.dm @@ -28,13 +28,14 @@ Captain id = /obj/item/weapon/card/id/gold belt = /obj/item/device/pda/captain - ears = /obj/item/device/radio/headset/heads/captain + glasses = /obj/item/clothing/glasses/sunglasses + ears = /obj/item/device/radio/headset/heads/captain/alt + gloves = /obj/item/clothing/gloves/color/captain uniform = /obj/item/clothing/under/rank/captain suit = /obj/item/clothing/suit/armor/vest/capcarapace shoes = /obj/item/clothing/shoes/sneakers/brown head = /obj/item/clothing/head/caphat - backpack_contents = list(/obj/item/weapon/storage/box/silver_ids=1,\ - /obj/item/weapon/melee/classic_baton/telescopic=1) + backpack_contents = list(/obj/item/weapon/melee/classic_baton/telescopic=1) backpack = /obj/item/weapon/storage/backpack/captain satchel = /obj/item/weapon/storage/backpack/satchel_cap @@ -98,5 +99,5 @@ Head of Personnel /datum/outfit/job/hop/post_equip(mob/living/carbon/human/H) ..() - + announce_head(H, list("Supply", "Service")) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 1bc7cf4fdf6..58652633d18 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -19,6 +19,7 @@ new /obj/item/clothing/suit/armor/vest/capcarapace/alt(src) new /obj/item/weapon/cartridge/captain(src) new /obj/item/clothing/shoes/sneakers/brown(src) + new /obj/item/weapon/storage/box/silver_ids(src) new /obj/item/device/radio/headset/heads/captain/alt(src) new /obj/item/clothing/glasses/sunglasses/gar/supergar(src) new /obj/item/clothing/gloves/color/captain(src) diff --git a/html/changelogs/Kor-PR-Captain.yml b/html/changelogs/Kor-PR-Captain.yml new file mode 100644 index 00000000000..173b1da13a0 --- /dev/null +++ b/html/changelogs/Kor-PR-Captain.yml @@ -0,0 +1,36 @@ +################################ +# 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 +# spellcheck (typo fixes) +# experiment +# tgs (TG-ported fixes?) +################################# + +# Your name. +author: Kor + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Slightly changed what items spawn on the captain vs in his locker, hopefully saving some annoying inventory shuffle at roundstart." From b9394257dae3562771314ba9ccfe4c03de7d8a04 Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Wed, 7 Oct 2015 22:11:19 +0100 Subject: [PATCH 005/418] About a million changes, but largely: Functional (Sort of) Antag Huds, Mind fixes, and Final glue to get the mode working. --- code/__DEFINES/preferences.dm | 19 --- code/__DEFINES/role_preferences.dm | 50 ++++++ code/_globalvars/configuration.dm | 20 --- code/controllers/subsystem/pai.dm | 4 +- code/datums/hud.dm | 15 +- code/datums/mind.dm | 42 +++-- code/game/gamemodes/abduction/abduction.dm | 2 +- code/game/gamemodes/antag_hud.dm | 17 +- code/game/gamemodes/antag_spawner.dm | 6 +- code/game/gamemodes/blob/blob.dm | 4 +- code/game/gamemodes/blob/blobs/core.dm | 2 +- code/game/gamemodes/changeling/changeling.dm | 6 +- .../game/gamemodes/changeling/traitor_chan.dm | 8 +- code/game/gamemodes/cult/cult.dm | 2 +- code/game/gamemodes/game_mode.dm | 19 +-- code/game/gamemodes/gang/gang.dm | 2 +- code/game/gamemodes/handofgod/_handofgod.dm | 57 ++++--- code/game/gamemodes/handofgod/god.dm | 43 +++-- code/game/gamemodes/handofgod/items.dm | 47 ++++-- code/game/gamemodes/handofgod/objectives.dm | 7 +- code/game/gamemodes/handofgod/powers.dm | 155 ++++++++++-------- code/game/gamemodes/handofgod/structures.dm | 62 +++++-- code/game/gamemodes/handofgod/traps.dm | 10 +- .../game/gamemodes/malfunction/malfunction.dm | 6 +- code/game/gamemodes/monkey/monkey.dm | 2 +- code/game/gamemodes/nuclear/nuclear.dm | 2 +- code/game/gamemodes/revolution/revolution.dm | 4 +- code/game/gamemodes/shadowling/shadowling.dm | 2 +- code/game/gamemodes/traitor/traitor.dm | 6 +- code/game/gamemodes/wizard/artefact.dm | 2 +- code/game/gamemodes/wizard/raginmages.dm | 4 +- code/game/gamemodes/wizard/soulstone.dm | 2 +- code/game/gamemodes/wizard/wizard.dm | 2 +- code/game/jobs/job/job.dm | 2 +- code/game/machinery/turrets.dm | 7 +- code/game/objects/effects/spiders.dm | 2 +- code/modules/admin/verbs/one_click_antag.dm | 22 +-- code/modules/admin/verbs/randomverbs.dm | 2 +- code/modules/client/preferences.dm | 32 +--- code/modules/client/preferences_savefile.dm | 41 ++++- code/modules/client/preferences_toggles.dm | 23 ++- code/modules/events/alien_infestation.dm | 2 +- code/modules/events/wizard/imposter.dm | 2 +- code/modules/mob/dead/observer/observer.dm | 6 + .../carbon/alien/special/alien_embryo.dm | 2 +- code/modules/mob/living/living_defines.dm | 1 - .../living/simple_animal/guardian/guardian.dm | 2 +- .../mob/living/simple_animal/morph/morph.dm | 2 +- .../living/simple_animal/revenant/revenant.dm | 2 +- .../revenant/revenant_spawn_event.dm | 2 +- .../simple_animal/slaughter/slaughterevent.dm | 2 +- code/modules/mob/login.dm | 2 + code/modules/mob/mob_defines.dm | 1 + code/modules/mob/transform_procs.dm | 9 +- code/modules/ninja/ninja_event.dm | 2 +- .../research/xenobiology/xenobiology.dm | 2 +- data/mode.txt | 2 +- icons/mob/feet.dmi | Bin 12903 -> 12900 bytes icons/mob/mob.dmi | Bin 235989 -> 235990 bytes icons/mob/screen_gen.dmi | Bin 99902 -> 101167 bytes icons/mob/suit.dmi | Bin 263205 -> 264859 bytes icons/obj/hand_of_god_structures.dmi | Bin 23657 -> 24275 bytes icons/obj/items.dmi | Bin 48710 -> 47892 bytes icons/obj/storage.dmi | Bin 54306 -> 55434 bytes tgstation.dme | 1 + 65 files changed, 475 insertions(+), 329 deletions(-) create mode 100644 code/__DEFINES/role_preferences.dm diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index b5674ad9dd4..bfa8b697c98 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -28,22 +28,3 @@ #define TOGGLES_DEFAULT_CHAT (CHAT_OOC|CHAT_DEAD|CHAT_GHOSTEARS|CHAT_GHOSTSIGHT|CHAT_PRAYER|CHAT_RADIO|CHAT_PULLR|CHAT_GHOSTWHISPER|CHAT_GHOSTPDA|CHAT_GHOSTRADIO) -//Antag preferences -#define BE_TRAITOR 1 -#define BE_OPERATIVE 2 -#define BE_CHANGELING 3 -#define BE_WIZARD 4 -#define BE_MALF 5 -#define BE_REV 6 -#define BE_ALIEN 7 -#define BE_PAI 8 -#define BE_CULTIST 9 -#define BE_BLOB 10 -#define BE_NINJA 11 -#define BE_MONKEY 12 -#define BE_GANG 13 -#define BE_SHADOWLING 14 -#define BE_ABDUCTOR 15 -#define BE_REVENANT 16 -#define BE_HOG_GOD 17 -#define BE_HOG_CULTIST 18 diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm new file mode 100644 index 00000000000..63b85ec17b6 --- /dev/null +++ b/code/__DEFINES/role_preferences.dm @@ -0,0 +1,50 @@ + + +//Values for antag preferences, event roles, etc. unified here + + + +//These are synced with the Database, if you change the values of the defines +//then you MUST update the database! +#define ROLE_TRAITOR "traitor" +#define ROLE_OPERATIVE "operative" +#define ROLE_CHANGELING "changeling" +#define ROLE_WIZARD "wizard" +#define ROLE_MALF "malf AI" +#define ROLE_REV "revolutionary" +#define ROLE_ALIEN "xenomorph" +#define ROLE_PAI "pAI" +#define ROLE_CULTIST "cultist" +#define ROLE_BLOB "blob" +#define ROLE_NINJA "space ninja" +#define ROLE_MONKEY "monkey" +#define ROLE_GANG "gangster" +#define ROLE_SHADOWLING "shadowling" +#define ROLE_ABDUCTOR "abductor" +#define ROLE_REVENANT "revenant" +#define ROLE_HOG_GOD "hand of god: god" +#define ROLE_HOG_CULTIST "hand of god: cultist" + + +//Missing assignment means it's not a gamemode specific role, IT'S NOT A BUG OR ERROR. +//The gamemode specific ones are just so the gamemodes can query whether a player is old enough +//(in game days played) to play that role +var/global/list/special_roles = list( + ROLE_TRAITOR = /datum/game_mode/traitor, + ROLE_OPERATIVE = /datum/game_mode/nuclear, + ROLE_CHANGELING = /datum/game_mode/changeling, + ROLE_WIZARD = /datum/game_mode/wizard, + ROLE_MALF = /datum/game_mode/malfunction, + ROLE_REV = /datum/game_mode/revolution, + ROLE_ALIEN, + ROLE_PAI, + ROLE_CULTIST = /datum/game_mode/cult, + ROLE_BLOB = /datum/game_mode/blob, + ROLE_NINJA, + ROLE_MONKEY = /datum/game_mode/monkey, + ROLE_GANG = /datum/game_mode/gang, + ROLE_SHADOWLING = /datum/game_mode/shadowling, + ROLE_ABDUCTOR = /datum/game_mode/abduction, + ROLE_HOG_GOD = /datum/game_mode/hand_of_god, + ROLE_HOG_CULTIST = /datum/game_mode/hand_of_god, +) diff --git a/code/_globalvars/configuration.dm b/code/_globalvars/configuration.dm index dac3d69f6fd..550a4672621 100644 --- a/code/_globalvars/configuration.dm +++ b/code/_globalvars/configuration.dm @@ -33,23 +33,3 @@ var/MAX_EX_LIGHT_RANGE = 14 var/MAX_EX_FLASH_RANGE = 14 var/MAX_EX_FLAME_RANGE = 14 -var/list/be_special_flags = list( - "Traitor" = BE_TRAITOR, - "Operative" = BE_OPERATIVE, - "Changeling" = BE_CHANGELING, - "Wizard" = BE_WIZARD, - "Malf AI" = BE_MALF, - "Revolutionary" = BE_REV, - "Alien Lifeform" = BE_ALIEN, - "pAI" = BE_PAI, - "Cultist" = BE_CULTIST, - "Blob" = BE_BLOB, - "Ninja" = BE_NINJA, - "Monkey" = BE_MONKEY, - "Gang" = BE_GANG, - "Abductor" = BE_ABDUCTOR, - "Revenant" = BE_REVENANT, - "Shadowling" = BE_SHADOWLING, - "Hand of god, god" = BE_HOG_GOD, - "Hand of god, cultist" = BE_HOG_CULTIST - ) diff --git a/code/controllers/subsystem/pai.dm b/code/controllers/subsystem/pai.dm index 8fe3e03edbb..af09a53846a 100644 --- a/code/controllers/subsystem/pai.dm +++ b/code/controllers/subsystem/pai.dm @@ -181,7 +181,7 @@ var/datum/subsystem/pai/SSpai /datum/subsystem/pai/proc/requestRecruits() for(var/mob/dead/observer/O in player_list) - if(jobban_isbanned(O, "pAI")) + if(jobban_isbanned(O, ROLE_PAI)) continue if(asked.Find(O.key)) if(world.time < asked[O.key] + askDelay) @@ -193,7 +193,7 @@ var/datum/subsystem/pai/SSpai for(var/datum/paiCandidate/c in SSpai.candidates) if(c.key == O.key) hasSubmitted = 1 - if(!hasSubmitted && (BE_PAI in O.client.prefs.be_special)) + if(!hasSubmitted && (ROLE_PAI in O.client.prefs.be_special)) question(O.client) /datum/subsystem/pai/proc/question(client/C) diff --git a/code/datums/hud.dm b/code/datums/hud.dm index 73a1b86084c..25fa65173aa 100644 --- a/code/datums/hud.dm +++ b/code/datums/hud.dm @@ -21,6 +21,8 @@ var/datum/atom_hud/huds = list( \ var/list/hud_icons = list() //these will be the indexes for the atom's hud_list /datum/atom_hud/proc/remove_hud_from(mob/M) + if(!M) + return if(src in M.permanent_huds) return for(var/atom/A in hudatoms) @@ -28,31 +30,38 @@ var/datum/atom_hud/huds = list( \ hudusers -= M /datum/atom_hud/proc/remove_from_hud(atom/A) + if(!A) + return for(var/mob/M in hudusers) remove_from_single_hud(M, A) hudatoms -= A /datum/atom_hud/proc/remove_from_single_hud(mob/M, atom/A) //unsafe, no sanity apart from client - if(!M.client) + if(!M || !M.client || !A) return for(var/i in hud_icons) M.client.images -= A.hud_list[i] /datum/atom_hud/proc/add_hud_to(mob/M) + if(!M) + return hudusers |= M for(var/atom/A in hudatoms) add_to_single_hud(M, A) /datum/atom_hud/proc/add_to_hud(atom/A) + if(!A) + return hudatoms |= A for(var/mob/M in hudusers) add_to_single_hud(M, A) /datum/atom_hud/proc/add_to_single_hud(mob/M, atom/A) //unsafe, no sanity apart from client - if(!M.client) + if(!M || !M.client || !A) return for(var/i in hud_icons) - M.client.images |= A.hud_list[i] + if(A.hud_list[i]) + M.client.images |= A.hud_list[i] //MOB PROCS /mob/proc/reload_huds() diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 69bd3770660..81a45534cc2 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -61,10 +61,10 @@ src.key = key -/datum/mind/proc/transfer_to(mob/living/new_character) - if(!istype(new_character)) - throw EXCEPTION("transfer_to(): new_character must be mob/living") - return +/datum/mind/proc/transfer_to(mob/new_character) + //if(!istype(new_character)) + // throw EXCEPTION("transfer_to(): new_character must be mob/living") + // return if(current) //remove ourself from our old body's mind variable current.mind = null @@ -285,7 +285,7 @@ else text += "head|loyal|EMPLOYEE|headrev|rev" - if(current && current.client && (BE_REV in current.client.prefs.be_special)) + if(current && current.client && (ROLE_REV in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -303,7 +303,7 @@ else text += "NONE" - if(current && current.client && (BE_GANG in current.client.prefs.be_special)) + if(current && current.client && (ROLE_GANG in current.client.prefs.be_special)) text += "|Enabled in Prefs
" else text += "|Disabled in Prefs
" @@ -350,7 +350,7 @@ else text += "loyal|EMPLOYEE|cultist" - if(current && current.client && (BE_CULTIST in current.client.prefs.be_special)) + if(current && current.client && (ROLE_CULTIST in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -370,7 +370,7 @@ else text += "yes|NO" - if(current && current.client && (BE_WIZARD in current.client.prefs.be_special)) + if(current && current.client && (ROLE_WIZARD in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -394,7 +394,7 @@ // if (istype(changeling) && changeling.changelingdeath) // text += "
All the changelings are dead! Restart in [round((changeling.TIME_TO_GET_REVIVED-(world.time-changeling.changelingdeathtime))/10)] seconds." - if(current && current.client && (BE_CHANGELING in current.client.prefs.be_special)) + if(current && current.client && (ROLE_CHANGELING in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -419,7 +419,7 @@ else text += "operative|NANOTRASEN" - if(current && current.client && (BE_OPERATIVE in current.client.prefs.be_special)) + if(current && current.client && (ROLE_OPERATIVE in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -438,7 +438,7 @@ else text += "traitor|LOYAL" - if(current && current.client && (BE_TRAITOR in current.client.prefs.be_special)) + if(current && current.client && (ROLE_TRAITOR in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -457,7 +457,7 @@ else text += "shadowling|thrall|HUMAN" - if(current && current.client && (BE_SHADOWLING in current.client.prefs.be_special)) + if(current && current.client && (ROLE_SHADOWLING in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -476,7 +476,7 @@ else text += "Abductor|human" - if(current && current.client && (BE_ABDUCTOR in current.client.prefs.be_special)) + if(current && current.client && (ROLE_ABDUCTOR in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -499,12 +499,12 @@ else text += "red prophet|red follower|EMPLOYEE|blue follower|blue prophet" - if(current && current.client && (BE_HOG_GOD in current.client.prefs.be_special)) + if(current && current.client && (ROLE_HOG_GOD in current.client.prefs.be_special)) text += "|HOG God Enabled in Prefs" else text += "|HOG God Disabled in Prefs" - if(current && current.client && (BE_HOG_CULTIST in current.client.prefs.be_special)) + if(current && current.client && (ROLE_HOG_CULTIST in current.client.prefs.be_special)) text += "|HOG Cultist Enabled in Prefs" else text += "|HOG Disabled in Prefs" @@ -532,7 +532,7 @@ else text += "healthy|infected|human|OTHER" - if(current && current.client && (BE_MONKEY in current.client.prefs.be_special)) + if(current && current.client && (ROLE_MONKEY in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -563,7 +563,7 @@ n_e_robots++ text += "
[n_e_robots] of [ai.connected_robots.len] slaved cyborgs are emagged. Unemag" - if(current && current.client && (BE_MALF in current.client.prefs.be_special)) + if(current && current.client && (ROLE_MALF in current.client.prefs.be_special)) text += "|Enabled in Prefs" else text += "|Disabled in Prefs" @@ -1536,6 +1536,8 @@ ticker.mode.blue_deity_followers -= src ticker.mode.blue_deity_prophets -= src + current.faction |= "red god" + current.faction -= "blue god" if(src in ticker.mode.red_deity_prophets) current << "You have lost the connection with your deity, but you still believe in their grand design, You are no longer a prophet!" @@ -1553,6 +1555,8 @@ ticker.mode.red_deity_followers -= src ticker.mode.red_deity_prophets -= src + current.faction -= "red god" + current.faction |= "blue god" if(src in ticker.mode.blue_deity_prophets) current << "You have lost the connection with your deity, but you still believe in their grand design, You are no longer a prophet!" @@ -1579,6 +1583,8 @@ if(src in ticker.mode.blue_deity_followers || src in ticker.mode.blue_deity_prophets) current << "You are no longer a member of the Blue cult!" + current.faction -= "blue god" + current.faction |= "red god" ticker.mode.blue_deity_followers -= src ticker.mode.blue_deity_prophets -= src @@ -1594,6 +1600,8 @@ if(src in ticker.mode.red_deity_followers || src in ticker.mode.red_deity_prophets) current << "You are no longer a member of the Red cult!" + current.faction -= "red god" + current.faction |= "blue god" ticker.mode.red_deity_followers -= src ticker.mode.red_deity_prophets -= src diff --git a/code/game/gamemodes/abduction/abduction.dm b/code/game/gamemodes/abduction/abduction.dm index 1151de4f55f..8b280473a33 100644 --- a/code/game/gamemodes/abduction/abduction.dm +++ b/code/game/gamemodes/abduction/abduction.dm @@ -6,7 +6,7 @@ /datum/game_mode/abduction name = "abduction" config_tag = "abduction" - antag_flag = BE_ABDUCTOR + antag_flag = ROLE_ABDUCTOR recommended_enemies = 2 required_players = 15 var/max_teams = 4 diff --git a/code/game/gamemodes/antag_hud.dm b/code/game/gamemodes/antag_hud.dm index f2294177272..267cafccd31 100644 --- a/code/game/gamemodes/antag_hud.dm +++ b/code/game/gamemodes/antag_hud.dm @@ -1,9 +1,9 @@ /datum/atom_hud/antag hud_icons = list(ANTAG_HUD) -/datum/atom_hud/antag/proc/join_hud(mob/living/M) +/datum/atom_hud/antag/proc/join_hud(mob/M) if(!istype(M)) - CRASH("join_hud(): [M] ([M.type]) is not a living mob!") + CRASH("join_hud(): [M] ([M.type]) is not a mob!") if(M.mind.antag_hud) var/datum/atom_hud/antag/oldhud = M.mind.antag_hud oldhud.leave_hud(M) @@ -11,9 +11,9 @@ add_hud_to(M) M.mind.antag_hud = src -/datum/atom_hud/antag/proc/leave_hud(mob/living/M) +/datum/atom_hud/antag/proc/leave_hud(mob/M) if(!istype(M)) - CRASH("leave_hud(): [M] ([M.type]) is not a living mob!") + CRASH("leave_hud(): [M] ([M.type]) is not a mob!") remove_from_hud(M) remove_hud_from(M) M.mind.antag_hud = null @@ -21,17 +21,18 @@ //GAME_MODE PROCS //called to set a mob's antag icon state -/datum/game_mode/proc/set_antag_hud(mob/living/M, new_icon_state) +/datum/game_mode/proc/set_antag_hud(mob/M, new_icon_state) if(!istype(M)) - CRASH("set_antag_hud(): [M] ([M.type]) is not a living mob!") + CRASH("set_antag_hud(): [M] ([M.type]) is not a mob!") var/image/holder = M.hud_list[ANTAG_HUD] - holder.icon_state = new_icon_state + if(holder) + holder.icon_state = new_icon_state M.mind.antag_hud_icon_state = new_icon_state //MIND PROCS //this is called by mind.transfer_to() -/datum/mind/proc/transfer_antag_huds(mob/living/M) +/datum/mind/proc/transfer_antag_huds(mob/M) for(var/datum/atom_hud/antag/hud in huds) if(M in hud.hudusers) hud.leave_hud(M) diff --git a/code/game/gamemodes/antag_spawner.dm b/code/game/gamemodes/antag_spawner.dm index 99541008be4..066ecb1706e 100644 --- a/code/game/gamemodes/antag_spawner.dm +++ b/code/game/gamemodes/antag_spawner.dm @@ -53,7 +53,7 @@ if (used) H << "You already used this contract!" return - var/list/candidates = get_candidates(BE_WIZARD) + var/list/candidates = get_candidates(ROLE_WIZARD) if(candidates.len) src.used = 1 var/client/C = pick(candidates) @@ -135,7 +135,7 @@ borg_to_spawn = input("What type?", "Cyborg Type", type) as null|anything in possible_types if(!borg_to_spawn) return - var/list/borg_candicates = get_candidates(BE_OPERATIVE) + var/list/borg_candicates = get_candidates(ROLE_OPERATIVE) if(borg_candicates.len > 0) used = 1 var/client/C = pick(borg_candicates) @@ -171,7 +171,7 @@ /obj/item/weapon/antag_spawner/slaughter_demon/attack_self(mob/user) - var/list/demon_candidates = get_candidates(BE_ALIEN) + var/list/demon_candidates = get_candidates(ROLE_ALIEN) if(user.z != 1) user << "You should probably wait until you reach the station." return diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm index 8f468a7abb9..adb43dff46a 100644 --- a/code/game/gamemodes/blob/blob.dm +++ b/code/game/gamemodes/blob/blob.dm @@ -9,7 +9,7 @@ var/list/blob_nodes = list() /datum/game_mode/blob name = "blob" config_tag = "blob" - antag_flag = BE_BLOB + antag_flag = ROLE_BLOB required_players = 30 required_enemies = 1 @@ -53,7 +53,7 @@ var/list/blob_nodes = list() /datum/game_mode/blob/proc/get_blob_candidates() var/list/candidates = list() for(var/mob/living/carbon/human/player in player_list) - if(!player.stat && player.mind && !player.mind.special_role && !jobban_isbanned(player, "Syndicate") && (BE_BLOB in player.client.prefs.be_special)) + if(!player.stat && player.mind && !player.mind.special_role && !jobban_isbanned(player, "Syndicate") && (ROLE_BLOB in player.client.prefs.be_special)) if(age_check(player.client)) candidates += player return candidates diff --git a/code/game/gamemodes/blob/blobs/core.dm b/code/game/gamemodes/blob/blobs/core.dm index b4abfdc9e57..e7647a048b0 100644 --- a/code/game/gamemodes/blob/blobs/core.dm +++ b/code/game/gamemodes/blob/blobs/core.dm @@ -98,7 +98,7 @@ var/list/candidates = list() if(!new_overmind) - candidates = get_candidates(BE_BLOB) + candidates = get_candidates(ROLE_BLOB) if(candidates.len) C = pick(candidates) else diff --git a/code/game/gamemodes/changeling/changeling.dm b/code/game/gamemodes/changeling/changeling.dm index 1f845c99e96..f1101aa26fb 100644 --- a/code/game/gamemodes/changeling/changeling.dm +++ b/code/game/gamemodes/changeling/changeling.dm @@ -15,7 +15,7 @@ var/list/slot2type = list("head" = /obj/item/clothing/head/changeling, "wear_mas /datum/game_mode/changeling name = "changeling" config_tag = "changeling" - antag_flag = BE_CHANGELING + antag_flag = ROLE_CHANGELING restricted_jobs = list("AI", "Cyborg") protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain") required_players = 15 @@ -105,8 +105,8 @@ var/list/slot2type = list("head" = /obj/item/clothing/head/changeling, "wear_mas if(ticker.mode.changelings.len >= changelingcap) //Caps number of latejoin antagonists return if(ticker.mode.changelings.len <= (changelingcap - 2) || prob(100 - (config.changeling_scaling_coeff*2))) - if(BE_CHANGELING in character.client.prefs.be_special) - if(!jobban_isbanned(character.client, "changeling") && !jobban_isbanned(character.client, "Syndicate")) + if(ROLE_CHANGELING in character.client.prefs.be_special) + if(!jobban_isbanned(character.client, ROLE_CHANGELING) && !jobban_isbanned(character.client, "Syndicate")) if(age_check(character.client)) if(!(character.job in restricted_jobs)) character.mind.make_Changling() diff --git a/code/game/gamemodes/changeling/traitor_chan.dm b/code/game/gamemodes/changeling/traitor_chan.dm index 99d4b8bef22..2d906e37ed0 100644 --- a/code/game/gamemodes/changeling/traitor_chan.dm +++ b/code/game/gamemodes/changeling/traitor_chan.dm @@ -18,7 +18,7 @@ /datum/game_mode/traitor/changeling/can_start() if(!..()) return 0 - possible_changelings = get_players_for_role(BE_CHANGELING) + possible_changelings = get_players_for_role(ROLE_CHANGELING) if(possible_changelings.len < required_enemies) return 0 return 1 @@ -30,7 +30,7 @@ if(config.protect_assistant_from_antagonist) restricted_jobs += "Assistant" - var/list/datum/mind/possible_changelings = get_players_for_role(BE_CHANGELING) + var/list/datum/mind/possible_changelings = get_players_for_role(ROLE_CHANGELING) var/num_changelings = 1 @@ -66,8 +66,8 @@ ..() return if(ticker.mode.changelings.len <= (changelingcap - 2) || prob(100 / (config.changeling_scaling_coeff * 4))) - if(BE_CHANGELING in character.client.prefs.be_special) - if(!jobban_isbanned(character.client, "changeling") && !jobban_isbanned(character.client, "Syndicate")) + if(ROLE_CHANGELING in character.client.prefs.be_special) + if(!jobban_isbanned(character.client, ROLE_CHANGELING) && !jobban_isbanned(character.client, "Syndicate")) if(age_check(character.client)) if(!(character.job in restricted_jobs)) character.mind.make_Changling() diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm index eb56a644fb6..9d30823d8c0 100644 --- a/code/game/gamemodes/cult/cult.dm +++ b/code/game/gamemodes/cult/cult.dm @@ -50,7 +50,7 @@ /datum/game_mode/cult name = "cult" config_tag = "cult" - antag_flag = BE_CULTIST + antag_flag = ROLE_CULTIST restricted_jobs = list("Chaplain","AI", "Cyborg", "Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Head of Personnel") protected_jobs = list() required_players = 20 diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 33da424db36..a6ebfca59f4 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -292,21 +292,6 @@ var/list/drafted = list() var/datum/mind/applicant = null - var/roletext - switch(role) - if(BE_CHANGELING) roletext="changeling" - if(BE_TRAITOR) roletext="traitor" - if(BE_OPERATIVE) roletext="operative" - if(BE_WIZARD) roletext="wizard" - if(BE_REV) roletext="revolutionary" - if(BE_GANG) roletext="gangster" - if(BE_CULTIST) roletext="cultist" - if(BE_MONKEY) roletext="monkey" - if(BE_ABDUCTOR) roletext="abductor" - if(BE_HOG_GOD) roletext="hand of god, god" - if(BE_HOG_CULTIST) roletext="hand of god, cultist" - - // Ultimate randomizing code right here for(var/mob/new_player/player in player_list) if(player.client && player.ready) @@ -319,7 +304,7 @@ for(var/mob/new_player/player in players) if(player.client && player.ready) if(role in player.client.prefs.be_special) - if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, roletext)) //Nodrak/Carn: Antag Job-bans + if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, role)) //Nodrak/Carn: Antag Job-bans if(age_check(player.client)) //Must be older than the minimum age candidates += player.mind // Get a list of all the people who want to be the antagonist for this round @@ -333,7 +318,7 @@ for(var/mob/new_player/player in players) if(player.client && player.ready) if(!(role in player.client.prefs.be_special)) // We don't have enough people who want to be antagonist, make a seperate list of people who don't want to be one - if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, roletext)) //Nodrak/Carn: Antag Job-bans + if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, role)) //Nodrak/Carn: Antag Job-bans drafted += player.mind if(restricted_jobs) diff --git a/code/game/gamemodes/gang/gang.dm b/code/game/gamemodes/gang/gang.dm index c641b5f6392..ac06d76921c 100644 --- a/code/game/gamemodes/gang/gang.dm +++ b/code/game/gamemodes/gang/gang.dm @@ -12,7 +12,7 @@ var/list/gang_colors_pool = list("red","orange","yellow","green","blue","purple" /datum/game_mode/gang name = "gang war" config_tag = "gang" - antag_flag = BE_GANG + antag_flag = ROLE_GANG restricted_jobs = list("Security Officer", "Warden", "Detective", "AI", "Cyborg","Captain", "Head of Personnel", "Head of Security", "Chief Engineer", "Research Director", "Chief Medical Officer") required_players = 20 required_enemies = 2 diff --git a/code/game/gamemodes/handofgod/_handofgod.dm b/code/game/gamemodes/handofgod/_handofgod.dm index f80448f5586..b0d6609c268 100644 --- a/code/game/gamemodes/handofgod/_handofgod.dm +++ b/code/game/gamemodes/handofgod/_handofgod.dm @@ -1,7 +1,6 @@ var/global/list/global_handofgod_traptypes = list() var/global/list/global_handofgod_structuretypes = list() -var/global/list/global_handofgod_itemtypes = list() /datum/game_mode @@ -21,18 +20,12 @@ var/global/list/global_handofgod_itemtypes = list() /datum/game_mode/hand_of_god name = "hand of god" config_tag = "handofgod" - antag_flag = BE_HOG_CULTIST //Followers use BE_HOG_CULTIST, Gods are picked later on with BE_HOG_GOD - - required_players = 1 //20-25+ - required_enemies = 0 //This MUST be an even number to function properly. This number counts - //all enemy players involved, as in both teams combined. Recommended: 8 - //If you want to test something by yourself, set to zero. Note that you will produce one unavoidable - //runtime due to an empty list being pick()'d. - - recommended_enemies = 2 + antag_flag = ROLE_HOG_CULTIST //Followers use ROLE_HOG_CULTIST, Gods are picked later on with ROLE_HOG_GOD + required_players = 25 + required_enemies = 8 + recommended_enemies = 8 restricted_jobs = list("Chaplain","AI", "Cyborg", "Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Head of Personnel") - var/finished = 0 /datum/game_mode/hand_of_god/announce() @@ -85,29 +78,32 @@ var/global/list/global_handofgod_itemtypes = list() /datum/game_mode/hand_of_god/post_setup() //Find viable red god - var/list/red_god_possibilities = get_players_for_role(BE_HOG_GOD) + var/list/red_god_possibilities = get_players_for_role(ROLE_HOG_GOD) red_god_possibilities &= red_deity_followers //followers only if(!red_god_possibilities.len) //No candidates? just pick any follower regardless of prefs red_god_possibilities = red_deity_followers //Make red god var/datum/mind/red_god = pick_n_take(red_god_possibilities) - red_god.current.become_god("red") - ticker.mode.forge_deity_objectives(red_god) - remove_hog_follower(red_god,0) - add_god(red_god,"red") + if(red_god) + red_god.current.become_god("red") + ticker.mode.forge_deity_objectives(red_god) + remove_hog_follower(red_god,0) + add_god(red_god,"red") //Find viable blue god - var/list/blue_god_possibilities = get_players_for_role(BE_HOG_GOD) + var/list/blue_god_possibilities = get_players_for_role(ROLE_HOG_GOD) blue_god_possibilities &= blue_deity_followers //followers only if(!blue_god_possibilities.len) //No candidates? just pick any follower regardless of prefs blue_god_possibilities = blue_deity_followers + //Make blue god var/datum/mind/blue_god = pick_n_take(blue_god_possibilities) - blue_god.current.become_god("blue") - ticker.mode.forge_deity_objectives(blue_god) - remove_hog_follower(blue_god,0) - add_god(blue_god,"blue") + if(blue_god) + blue_god.current.become_god("blue") + ticker.mode.forge_deity_objectives(blue_god) + remove_hog_follower(blue_god,0) + add_god(blue_god,"blue") /////////////////// @@ -145,7 +141,7 @@ var/global/list/global_handofgod_itemtypes = list() deity.objectives += build build.gen_amount_goal(8, 16) - var/datum/objective/sacrifice_prophet/sacrifice + var/datum/objective/sacrifice_prophet/sacrifice = new sacrifice.owner = deity deity.objectives += sacrifice @@ -194,6 +190,8 @@ var/global/list/global_handofgod_itemtypes = list() if(colour == "blue") blue_deity_followers += follower_mind + H.faction |= "[colour] god" + update_hog_icons_added(follower_mind, colour) follower_mind.special_role = "Hand of God: [capitalize(colour)] Follower" follower_mind.current.attack_log += "\[[time_stamp()]\] Has been converted to the [colour] follower cult!" @@ -218,6 +216,11 @@ var/global/list/global_handofgod_itemtypes = list() update_hog_icons_removed(follower_mind,"red") update_hog_icons_removed(follower_mind,"blue") + if(follower_mind.current) + var/mob/living/carbon/human/H = follower_mind.current + H.faction -= "red god" + H.faction -= "blue god" + if(announce) follower_mind.current.attack_log += "\[[time_stamp()]\] Has been deconverted from a deity's cult!" follower_mind.current << "Your mind has been cleared from the brainwashing the followers have done to you. Now you serve yourself and the crew." @@ -296,7 +299,6 @@ var/global/list/global_handofgod_itemtypes = list() var/mob/living/carbon/human/H = A if(!H.mind) return 0 - if(side == "red") if(H.mind in ticker.mode.red_deity_prophets) return 1 @@ -305,12 +307,13 @@ var/global/list/global_handofgod_itemtypes = list() return 1 + ////////////////////// //Roundend Reporting// ////////////////////// -/datum/game_mode/proc/declare_completion_handofgod() +/datum/game_mode/hand_of_god/declare_completion() if(red_deities.len) var/text = "
The red cult:" for(var/datum/mind/red_god in red_deities) @@ -422,15 +425,15 @@ var/global/list/global_handofgod_itemtypes = list() var/rank = 0 if(side == "red") hud_key = ANTAG_HUD_HOG_RED - if(is_handofgod_redprophet(hog_mind)) + if(is_handofgod_redprophet(hog_mind.current)) rank = 1 else if(side == "blue") hud_key = ANTAG_HUD_HOG_BLUE - if(is_handofgod_blueprophet(hog_mind)) + if(is_handofgod_blueprophet(hog_mind.current)) rank = 1 - if(is_handofgod_god(hog_mind)) + if(is_handofgod_god(hog_mind.current)) rank = 2 if(hud_key) diff --git a/code/game/gamemodes/handofgod/god.dm b/code/game/gamemodes/handofgod/god.dm index 31d39ea8bfe..c6505654a6e 100644 --- a/code/game/gamemodes/handofgod/god.dm +++ b/code/game/gamemodes/handofgod/god.dm @@ -8,25 +8,31 @@ see_in_dark = 0 sight = SEE_TURFS | SEE_MOBS | SEE_OBJS | SEE_SELF languages = HUMAN | MONKEY | ALIEN | ROBOT | SLIME | DRONE | SWARMER + hud_possible = list(ANTAG_HUD) - var/faith = 0 + var/faith = 100 //For initial prophet appointing/stupid purchase var/max_faith = 100 var/side = "neutral" //Red or Blue for the gamemode var/obj/structure/divine/nexus/god_nexus = null //The source of the god's power in this realm, kill it and the god is kill var/nexus_required = FALSE //If the god dies from losing it's nexus, defaults to off so that gods don't instantly die at roundstart var/followers_required = 0 //Same as above var/alive_followers = 0 - var/mob/living/carbon/human/prophet = null //The prophet of this god var/list/structures = list() var/prophets_sacrificed_in_name = 0 -/mob/camera/god/New(loc, newName, side = "neutral") +/mob/camera/god/New() ..() - real_name = newName - name = real_name - side = side update_icons() + build_hog_construction_lists() + + //Force nexuses after 2 minutes in hand of god mode + if(ticker && ticker.mode && ticker.mode.name == "hand of god") + spawn(1200) + if(src) + if(!god_nexus) + place_nexus() + src << "You failed to place your nexus, and it has been placed for you!" /mob/camera/god/update_icons() @@ -47,10 +53,10 @@ sync_mind() src << "You are a deity!" src << "You are a deity and are worshipped by a cult! You are rather weak right now, but that will change as you gain more followers." - src << "You will need to place an anchor to this world, a Nexus, in two minutes. If you don't, one will be placed for you randomly." - src << "Your Follower count determines how many people believe in you and are a part of your cult. If this drops to zero, you will die." - src << "Your Nexus Integrity tells you the condition of your nexus. If your nexus is destroyed, you die as well, but your powers are amplified when near it." - src << "Your Faith is used to interact with the world. This will regenerate on it's own, and it goes faster when you have more followers." + src << "You will need to place an anchor to this world, a Nexus, in two minutes. If you don't, one will be placed immediately below you." + src << "Your Follower count determines how many people believe in you and are a part of your cult." + src << "Your Nexus Integrity tells you the condition of your nexus. If your nexus is destroyed, you will die." + src << "Your Faith is used to interact with the world. This will regenerate on it's own, and it goes faster when you have more followers and power pylons." src << "The first thing you should do after placing your nexus is to appoint a prophet. Only prophets can hear you talk, unless you use an expensive power." update_health_hud() @@ -62,11 +68,26 @@ /mob/camera/god/proc/add_faith(faith_amt) if(faith_amt) - faith = Clamp(faith+faith_amt, 0, max_faith) + faith = round(Clamp(faith+faith_amt, 0, max_faith)) if(hud_used && hud_used.deity_power_display) hud_used.deity_power_display.maptext = "

[faith]
" + +/mob/camera/god/proc/place_nexus() + if(god_nexus) + return 0 + + var/obj/structure/divine/nexus/N = new(get_turf(src)) + N.assign_deity(src) + god_nexus = N + nexus_required = TRUE + verbs -= /mob/camera/god/verb/constructnexus + //verbs += /mob/camera/god/verb/movenexus //Translocators have no sprite + update_health_hud() + + + /mob/camera/god/proc/update_followers() alive_followers = 0 var/list/all_followers diff --git a/code/game/gamemodes/handofgod/items.dm b/code/game/gamemodes/handofgod/items.dm index 017e0486edd..d1a957f2058 100644 --- a/code/game/gamemodes/handofgod/items.dm +++ b/code/game/gamemodes/handofgod/items.dm @@ -6,6 +6,33 @@ icon_state = "banner" item_state = "banner" desc = "A banner with Nanotrasen's logo on it." + var/moralecooldown = 0 + var/moralewait = 600 + + +/obj/item/weapon/banner/attack_self(mob/living/carbon/human/user) + if(moralecooldown + moralewait > world.time) + return + var/side = "" + if(is_handofgod_redcultist(user)) + side = "red" + else if (is_handofgod_bluecultist(user)) + side = "blue" + + if(!side) + return + user << "You increase the morale of your fellows!" + moralecooldown = world.time + + for(var/mob/living/carbon/human/H in range(4,get_turf(src))) + if((side == "red") && is_handofgod_redcultist(H) || (side == "blue") && is_handofgod_bluecultist(H)) + H << "Your morale is increased by [user]'s banner!" + H.adjustBruteLoss(-15) + H.adjustFireLoss(-15) + H.AdjustStunned(-2) + H.AdjustWeakened(-2) + H.AdjustParalysis(-2) + /obj/item/weapon/banner/red name = "red banner" @@ -16,15 +43,15 @@ /obj/item/weapon/banner/red/examine() ..() if(is_handofgod_redcultist(usr)) - usr << "A banner representing our might against the heretics." + usr << "A banner representing our might against the heretics. We may use it to increase the morale of our fellow members!" else if(is_handofgod_bluecultist(usr)) usr << "A heretical banner that should be destroyed posthaste." /obj/item/weapon/banner/blue - name = "red banner" - icon_state = "banner-red" - item_state = "banner-red" + name = "blue banner" + icon_state = "banner-blue" + item_state = "banner-blue" desc = "A banner with the logo of the blue deity" /obj/item/weapon/banner/blue/examine() @@ -33,7 +60,7 @@ if(is_handofgod_redcultist(usr)) usr << "A heretical banner that should be destroyed posthaste." else if(is_handofgod_bluecultist(usr)) - usr << "A banner representing our might against the heretics." + usr << "A banner representing our might against the heretics. We may use it to increase the morale of our fellow members!" /obj/item/weapon/storage/backpack/bannerpack @@ -58,7 +85,7 @@ //this is all part of one item set /obj/item/clothing/suit/armor/plate/crusader - name = "Crusader's Armor" + name = "Crusader's Armour" icon_state = "crusader" w_class = 4 //bulky slowdown = 2.0 //gotta pretend we're balanced. @@ -73,9 +100,9 @@ /obj/item/clothing/suit/armor/plate/crusader/examine(mob/user) ..() if(!is_handofgod_cultist(user)) - usr << "Armor that's comprised of metal and cloth." + usr << "Armour that's comprised of metal and cloth." else - usr << "Armor that was used to protect from backstabs, gunshots, explosives, and lasers. The original wearers of this type of armor were trying to avoid being murdered. Since they're not around anymore, you're not sure if they were successful or not." + usr << "Armour that was used to protect from backstabs, gunshots, explosives, and lasers. The original wearers of this type of armour were trying to avoid being murdered. Since they're not around anymore, you're not sure if they were successful or not." /obj/item/clothing/head/helmet/plate/crusader @@ -154,8 +181,8 @@ /obj/item/weapon/storage/box/itemset/crusader - name = "Crusader's Armor Set" //i can't into ck2 references - desc = "This armor is said to be based on the armor of kings on another world thousands of years ago, who tended to assassinate, conspire, and plot against everyone who tried to do the same to them. Some things never change." + name = "Crusader's Armour Set" //i can't into ck2 references + desc = "This armour is said to be based on the armor of kings on another world thousands of years ago, who tended to assassinate, conspire, and plot against everyone who tried to do the same to them. Some things never change." /obj/item/weapon/storage/box/itemset/crusader/blue/New() diff --git a/code/game/gamemodes/handofgod/objectives.dm b/code/game/gamemodes/handofgod/objectives.dm index dc66cad6c44..2d5585ca372 100644 --- a/code/game/gamemodes/handofgod/objectives.dm +++ b/code/game/gamemodes/handofgod/objectives.dm @@ -29,9 +29,10 @@ martyr_compatible = 1 /datum/objective/deicide/check_completion() - if(target && target.current && target.current.stat == DEAD) - return 1 - return 0 + if(target) + if(target.current) //Gods are deleted when they lose + return 0 + return 1 /datum/objective/deicide/find_target() diff --git a/code/game/gamemodes/handofgod/powers.dm b/code/game/gamemodes/handofgod/powers.dm index ff32219d909..241b3094872 100644 --- a/code/game/gamemodes/handofgod/powers.dm +++ b/code/game/gamemodes/handofgod/powers.dm @@ -1,18 +1,43 @@ /mob/camera/god/proc/ability_cost(cost = 0,structures = 0, requires_conduit = 0) - if(cost && faith < cost) + if(faith < cost) + src << "You lack the faith!" return 0 - if(structures && !(isturf(loc) || istype(loc, /turf/space))) - src << "Your structure would just float away, you need stable ground!" - return 0 - if(structures && (locate(/obj/structure) in get_turf(src))) - src << "There is another structure here, Select an empty spot." + + if(structures) + if(!isturf(loc) || istype(loc, /turf/space)) + src << "Your structure would just float away, you need stable ground!" + return 0 + + var/turf/T = get_turf(src) + if(T) + if(T.density) + src << "There is something blocking your structure!" + return 0 + + for(var/atom/movable/AM in T) + if(AM == src) + continue + if(AM.density) + src << "There is something blocking your structure!" + return 0 if(requires_conduit) //Organised this way as there can be multiple conduits, so it's more likely to be a conduit check. - if(!locate(/obj/structure/divine/conduit) in range(src,15)) - if(!locate(/obj/structure/divine/nexus) in range(src, 15)) - return 0 + var/valid = 0 + for(var/obj/structure/divine/conduit/C in range(src,15)) + if(C.side == side) + valid++ + break + + if(!valid) + for(var/obj/structure/divine/nexus/N in range(src,15)) + if(N.side == side) + valid++ + break + if(!valid) + src << "You must be near your Nexus or a Conduit to do this!" + return 0 return 1 @@ -34,9 +59,9 @@ set desc = "Teleports you to one of your followers." var/list/following = list() if(side == "red") - following = ticker.mode.red_deity_followers + following = ticker.mode.red_deity_followers|ticker.mode.red_deity_prophets else if(side == "blue") - following = ticker.mode.blue_deity_followers + following = ticker.mode.blue_deity_followers|ticker.mode.blue_deity_prophets else src << "You are unaligned, and thus do not have followers" return @@ -54,16 +79,19 @@ var/list/following = list() if(!ability_cost(100)) - src << "You lack the faith to make a prophet." return if(side == "red") - if(ticker.mode.red_deity_prophets.len) + var/datum/mind/old_proph = locate() in ticker.mode.red_deity_prophets + if(old_proph && old_proph.current && old_proph.current.stat != DEAD) src << "You can only have one prophet alive at a time." + return else following = ticker.mode.red_deity_followers else if(side == "blue") - if(ticker.mode.blue_deity_prophets.len) + var/datum/mind/old_proph = locate() in ticker.mode.blue_deity_prophets + if(old_proph && old_proph.current && old_proph.current.stat != DEAD) src << "You can only have one prophet alive at a time." + return else following = ticker.mode.blue_deity_followers @@ -83,7 +111,6 @@ set name = "Talk to Anyone (20)" set desc = "Allows you to send a message to anyone, regardless of their faith." if(!ability_cost(20)) - src << "You lack the faith to convene with others." return var/mob/choice = input("Choose who you wish to talk to", "Talk to ANYONE") as null|anything in mob_list if(choice) @@ -100,7 +127,6 @@ set desc = "Hits anything under you with a moderate amount of damage." if(!ability_cost(40,0,1)) - src << "You lack the faith to smite others." return if(!range(7,god_nexus)) src << "You lack the strength to smite this far from your nexus." @@ -120,7 +146,6 @@ set desc = "Knocks out the mortal below you for a brief amount of time." if(!ability_cost(20,0,1)) - src << "You lack the faith to lull mortals to sleep." return for(var/mob/living/L in get_turf(src)) @@ -136,7 +161,6 @@ set desc = "Tug at the fibres of reality itself and bend it to your whims!" if(!ability_cost(300,0,1)) - src << "You lack the faith to bend reality." return var/event = pick(/datum/round_event/meteor_wave, /datum/round_event/communications_blackout, /datum/round_event/radiation_storm, /datum/round_event/carp_migration, @@ -151,15 +175,10 @@ set name = "Construct Nexus" set desc = "Instantly creates your nexus, You can only do this once, make sure you're happy with it!" - if(ability_cost(0,1,0)) - var/obj/structure/divine/nexus/N = new(get_turf(src)) - N.deity = src - N.side = side - god_nexus = N - nexus_required = TRUE - verbs -= /mob/camera/god/verb/constructnexus - //verbs += /mob/camera/god/verb/movenexus //Translocators have no sprite - update_health_hud() + if(!ability_cost(0,1,0) || z != 1) + return + + place_nexus() /* //Transolocators have no sprite @@ -195,21 +214,23 @@ set name = "Construct Structure (75)" set desc = "Create the foundation of a divine object." - if(ability_cost(75,1,1)) - var/construct = input("Choose what you wish to create.", "Divine Construction") as null|anything in global_handofgod_structuretypes - if(!construct || !global_handofgod_structuretypes[construct] || !ability_cost(75,1,1)) //check again, they might try to cheat the input window. - return - var/obj/structure/divine/construct_type = global_handofgod_structuretypes[construct] //it's a path but we need to initial() some vars - if(!construct_type) - return + if(!ability_cost(75,1,1)) + return - src << "You lay the foundations for \a [construct], your followers must finish the construction using metal and glass." - add_faith(-75) + var/construct = input("Choose what you wish to create.", "Divine Construction") as null|anything in global_handofgod_structuretypes + if(!construct || !global_handofgod_structuretypes[construct] || !ability_cost(75,1,1)) //check again, they might try to cheat the input window. + return - var/obj/structure/divine/construction_holder/CH = new(get_turf(src)) - CH.assign_deity(src) - CH.setup_construction(construct_type) - CH.visible_message("[src] has created a transparent, unfinished [construct]. It can be finished by adding materials.") + var/obj/structure/divine/construct_type = global_handofgod_structuretypes[construct] //it's a path but we need to initial() some vars + if(!construct_type) + return + + add_faith(-75) + + var/obj/structure/divine/construction_holder/CH = new(get_turf(src)) + CH.assign_deity(src) + CH.setup_construction(construct_type) + CH.visible_message("[src] has created a transparent, unfinished [construct]. It can be finished by adding materials.") /mob/camera/god/verb/construct_traps() @@ -217,16 +238,18 @@ set name = "Construct Trap (20)" set desc = "Creates a ward or trap." - if(ability_cost(20,1,1)) - var/trap = input("Choose what you wish to create.", "Divine Traps") as null|anything in global_handofgod_traptypes - if(!trap || !global_handofgod_traptypes[trap] || !ability_cost(20,1,1)) - return + if(!ability_cost(20,1,1)) + return - src << "You lay \a [trap]." - add_faith(-20) + var/trap = input("Choose what you wish to create.", "Divine Traps") as null|anything in global_handofgod_traptypes + if(!trap || !global_handofgod_traptypes[trap] || !ability_cost(20,1,1)) + return - var/traptype = global_handofgod_traptypes[trap] - new traptype (get_turf(src)) + src << "You lay \a [trap]." + add_faith(-20) + + var/traptype = global_handofgod_traptypes[trap] + new traptype (get_turf(src)) @@ -236,25 +259,27 @@ set name = "Construct Items (20)" set desc = "Construct some items for your followers" - if(ability_cost(20,1,1)) - var/list/item_types = list() - if(side == "red") - item_types["red banner"] = /obj/item/weapon/banner/red - item_types["red bannerbackpack"] = /obj/item/weapon/storage/backpack/bannerpack/red - item_types["red armour"] = /obj/item/weapon/storage/box/itemset/crusader/red + if(!ability_cost(20,1,1)) + return - else if(side == "blue") - item_types["blue banner"] = /obj/item/weapon/banner/blue - item_types["blue bannerbackpack"] = /obj/item/weapon/storage/backpack/bannerpack/blue - item_types["blue armour"] = /obj/item/weapon/storage/box/itemset/crusader/blue + var/list/item_types = list("claymore sword" = /obj/item/weapon/claymore) + if(side == "red") + item_types["red banner"] = /obj/item/weapon/banner/red + item_types["red bannerbackpack"] = /obj/item/weapon/storage/backpack/bannerpack/red + item_types["red armour"] = /obj/item/weapon/storage/box/itemset/crusader/red + + else if(side == "blue") + item_types["blue banner"] = /obj/item/weapon/banner/blue + item_types["blue bannerbackpack"] = /obj/item/weapon/storage/backpack/bannerpack/blue + item_types["blue armour"] = /obj/item/weapon/storage/box/itemset/crusader/blue - var/item = input("Choose what you wish to create.", "Divine Items") as null|anything in item_types - if(!item || !global_handofgod_itemtypes[item] || !ability_cost(20,1,1)) - return + var/item = input("Choose what you wish to create.", "Divine Items") as null|anything in item_types + if(!item || !item_types[item] || !ability_cost(20,1,1)) + return - src << "You produce \a [item]" - add_faith(-20) + src << "You produce \a [item]" + add_faith(-20) - var/itemtype = global_handofgod_itemtypes[item] - new itemtype (get_turf(src)) + var/itemtype = item_types[item] + new itemtype (get_turf(src)) diff --git a/code/game/gamemodes/handofgod/structures.dm b/code/game/gamemodes/handofgod/structures.dm index 7197b4a8082..4d435b55098 100644 --- a/code/game/gamemodes/handofgod/structures.dm +++ b/code/game/gamemodes/handofgod/structures.dm @@ -1,10 +1,24 @@ +/proc/build_hog_construction_lists() + if(global_handofgod_traptypes.len && global_handofgod_structuretypes.len) + return + + var/list/types = typesof(/obj/structure/divine) - /obj/structure/divine - /obj/structure/divine/trap + for(var/T in types) + var/obj/structure/divine/D = T + if(initial(D.constructable)) + if(initial(D.trap)) + global_handofgod_traptypes[initial(D.name)] = T + else + global_handofgod_structuretypes[initial(D.name)] = T + /obj/structure/divine name = "divine construction site" icon = 'icons/obj/hand_of_god_structures.dmi' desc = "An unfinished divine building" anchored = 1 density = 1 + var/constructable = TRUE var/trap = FALSE var/metal_cost = 0 var/glass_cost = 0 @@ -18,12 +32,6 @@ /obj/structure/divine/New() ..() - if(!trap) - if(!global_handofgod_structuretypes[name]) - global_handofgod_structuretypes[name] = type - else - if(!global_handofgod_traptypes[name]) - global_handofgod_traptypes[name] = type /obj/structure/divine/proc/update_icons() @@ -48,7 +56,7 @@ return 0 playsound(get_turf(src), I.hitsound, 50, 1) - visible_message("\The [src] has been attack with \the [I][(user ? " by [user]/" : ".")]!") + visible_message("\The [src] has been attack with \the [I][(user ? " by [user]" : ".")]!") health = max(0, health-I.force) healthcheck() @@ -77,20 +85,29 @@ /obj/structure/divine/proc/assign_deity(mob/camera/god/new_deity, alert_old_deity = TRUE) if(!new_deity) return 0 - if(deity && alert_old_deity) - deity << "Your [name] was captured by [new_deity]'s cult!" - deity.structures -= src + if(deity) + if(alert_old_deity) + deity << "Your [name] was captured by [new_deity]'s cult!" + deity.structures -= src deity = new_deity deity.structures |= src side = deity.side update_icons() + return 1 /obj/structure/divine/construction_holder alpha = 125 + constructable = FALSE var/obj/structure/divine/construction_result = /obj/structure/divine //a path, but typed to /obj/structure/divine for initial() + +/obj/structure/divine/construction_holder/assign_deity(mob/camera/god/new_deity, alert_old_deity = TRUE) + if(..()) + color = side + + /obj/structure/divine/construction_holder/proc/setup_construction(construct_type) if(ispath(construct_type)) construction_result = construct_type @@ -161,7 +178,8 @@ /obj/structure/divine/construction_holder/proc/check_completion() if(!metal_cost && !glass_cost && !lesser_gem_cost && !greater_gem_cost) visible_message("\The [initial(construction_result.name)] is complete!") - new construction_result (get_turf(src)) + var/obj/structure/divine/D = new construction_result (get_turf(src)) + D.assign_deity(deity) qdel(src) @@ -169,7 +187,7 @@ ..() if(metal_cost || glass_cost || lesser_gem_cost || greater_gem_cost) - user << "To finish construction it requires the following materials:
" + user << "To finish construction it requires the following materials:" if(metal_cost) user << "[metal_cost] metal " if(glass_cost) @@ -186,6 +204,7 @@ icon_state = "nexus" health = 500 maxhealth = 500 + constructable = FALSE var/faith_regen_rate = 1 var/list/powerpylons = list() @@ -199,7 +218,7 @@ deity.update_health_hud() if(!health) - if(deity && deity.nexus_required) + if(!qdeleted(deity) && deity.nexus_required) deity << "Your nexus was destroyed. You feel yourself fading..." qdel(deity) visible_message("\The [src] was destroyed!") @@ -214,6 +233,7 @@ if(deity) deity.update_followers() deity.add_faith(faith_regen_rate + (powerpylons.len / 5) + (deity.alive_followers / 3)) + deity.max_faith = initial(deity.max_faith) + (deity.alive_followers*10) //10 followers = 100 max faith, so disaster() at around 20 followers /obj/structure/divine/nexus/Destroy() @@ -231,6 +251,7 @@ glass_cost = 10 +/* //No good sprites, and not enough items to make it viable yet /obj/structure/divine/forge name = "forge" desc = "A forge fueled by divine might, it allows the creation of sacred and powerful artifacts. It requires common materials to craft objects." @@ -240,7 +261,7 @@ density = 0 maxhealth = 250 metal_cost = 40 - +*/ /obj/structure/divine/convertaltar name = "conversion taltar" @@ -248,9 +269,11 @@ icon_state = "convertaltar" density = 0 metal_cost = 20 + can_buckle = 1 /obj/structure/divine/convertaltar/attack_hand(mob/living/user) + ..() var/mob/living/carbon/human/H = locate() in get_turf(src) if(!is_handofgod_cultist(user)) user << "You try to use it, but unfortunately you don't know any rituals." @@ -274,9 +297,11 @@ icon_state = "sacrificealtar" density = 0 metal_cost = 30 + can_buckle = 1 /obj/structure/divine/sacrificealtar/attack_hand(mob/living/user) + ..() var/mob/living/L = locate() in get_turf(src) if(!is_handofgod_cultist(user)) user << "You try to use it, but unfortunately you don't know any rituals." @@ -329,7 +354,7 @@ /obj/structure/divine/healingfountain name = "healing fountain" desc = "A fountain containing the waters of life... or death, depending on where your allegiances lie" - icon_state = "puddle" + icon_state = "fountain" metal_cost = 15 glass_cost = 10 autocolours = FALSE @@ -349,13 +374,16 @@ user << "The water feels warm ans soothing as you touch it. The fountain immediately dries up shortly afterwards." user.reagents.add_reagent("doctorsdelight",20) update_icons() + spawn(time_between_uses) + if(src) + update_icons() /obj/structure/divine/healingfountain/update_icons() if(last_process + time_between_uses > world.time) icon_state = "fountain-dry" else - icon_state = "fountain" + icon_state = "fountain-[side]" /obj/structure/divine/powerpylon @@ -405,7 +433,7 @@ /obj/structure/divine/defensepylon/assign_deity(mob/camera/god/new_deity, alert_old_deity = TRUE) if(..() && pylon_gun) - pylon_gun.faction = side + pylon_gun.faction = "[side] god" pylon_gun.side = side diff --git a/code/game/gamemodes/handofgod/traps.dm b/code/game/gamemodes/handofgod/traps.dm index a2eef75831e..18022cf350e 100644 --- a/code/game/gamemodes/handofgod/traps.dm +++ b/code/game/gamemodes/handofgod/traps.dm @@ -22,9 +22,7 @@ last_trigger = world.time alpha = 200 trap_effect(L) - spawn(time_between_triggers) - if(src) - alpha = 30 + animate(src, alpha = 30, time = time_between_triggers) /obj/structure/divine/trap/examine(mob/user) @@ -33,9 +31,7 @@ return user << "You reveal a trap!" alpha = 200 - spawn(time_between_triggers) - if(src) - alpha = 30 + animate(src, alpha = 30, time = time_between_triggers) /obj/structure/divine/trap/proc/trap_effect(mob/living/L) @@ -99,7 +95,7 @@ /obj/structure/divine/trap/ward - name = "Divine Ward" + name = "divine ward" desc = "A divine barrier, It looks like you could destroy it with enough effort, or wait for it to dissipate..." icon_state = "ward" health = 150 diff --git a/code/game/gamemodes/malfunction/malfunction.dm b/code/game/gamemodes/malfunction/malfunction.dm index cdc1436890d..7185afec1eb 100644 --- a/code/game/gamemodes/malfunction/malfunction.dm +++ b/code/game/gamemodes/malfunction/malfunction.dm @@ -4,7 +4,7 @@ /datum/game_mode/malfunction name = "AI malfunction" config_tag = "malfunction" - antag_flag = BE_MALF + antag_flag = ROLE_MALF required_players = 25 required_enemies = 1 recommended_enemies = 1 @@ -29,11 +29,11 @@ required_players = max(required_enemies+1, required_players) //to prevent issues if players are set too low return ..() -/datum/game_mode/malfunction/get_players_for_role(role = BE_MALF) +/datum/game_mode/malfunction/get_players_for_role(role = ROLE_MALF) var/datum/job/ai/DummyAIjob = new for(var/mob/new_player/player in player_list) if(player.client && player.ready) - if(BE_MALF in player.client.prefs.be_special) + if(ROLE_MALF in player.client.prefs.be_special) if(!jobban_isbanned(player, "Syndicate") && !jobban_isbanned(player, "AI") && DummyAIjob.player_old_enough(player.client)) antag_candidates += player.mind antag_candidates = shuffle(antag_candidates) diff --git a/code/game/gamemodes/monkey/monkey.dm b/code/game/gamemodes/monkey/monkey.dm index 647230a4963..12f24f40b6e 100644 --- a/code/game/gamemodes/monkey/monkey.dm +++ b/code/game/gamemodes/monkey/monkey.dm @@ -4,7 +4,7 @@ /datum/game_mode/monkey name = "monkey" config_tag = "monkey" - antag_flag = BE_MONKEY + antag_flag = ROLE_MONKEY required_players = 20 required_enemies = 1 diff --git a/code/game/gamemodes/nuclear/nuclear.dm b/code/game/gamemodes/nuclear/nuclear.dm index 939cce46b06..847470b9dd4 100644 --- a/code/game/gamemodes/nuclear/nuclear.dm +++ b/code/game/gamemodes/nuclear/nuclear.dm @@ -8,7 +8,7 @@ required_players = 20 // 20 players - 5 players to be the nuke ops = 15 players remaining required_enemies = 5 recommended_enemies = 5 - antag_flag = BE_OPERATIVE + antag_flag = ROLE_OPERATIVE enemy_minimum_age = 14 var/const/agents_possible = 5 //If we ever need more syndicate agents. diff --git a/code/game/gamemodes/revolution/revolution.dm b/code/game/gamemodes/revolution/revolution.dm index 7b98750dd58..e74b03f8710 100644 --- a/code/game/gamemodes/revolution/revolution.dm +++ b/code/game/gamemodes/revolution/revolution.dm @@ -13,7 +13,7 @@ /datum/game_mode/revolution name = "revolution" config_tag = "revolution" - antag_flag = BE_REV + antag_flag = ROLE_REV restricted_jobs = list("Security Officer", "Warden", "Detective", "AI", "Cyborg","Captain", "Head of Personnel", "Head of Security", "Chief Engineer", "Research Director", "Chief Medical Officer") required_players = 20 required_enemies = 1 @@ -187,7 +187,7 @@ var/list/promotable_revs = list() for(var/datum/mind/khrushchev in revolutionaries) if(khrushchev.current && khrushchev.current.client && khrushchev.current.stat != DEAD) - if(BE_REV in khrushchev.current.client.prefs.be_special) + if(ROLE_REV in khrushchev.current.client.prefs.be_special) promotable_revs += khrushchev if(promotable_revs) var/datum/mind/stalin = pick(promotable_revs) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index 39b72b87b2c..73e9b258dff 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -67,7 +67,7 @@ Made by Xhuis /datum/game_mode/shadowling name = "shadowling" config_tag = "shadowling" - antag_flag = BE_SHADOWLING + antag_flag = ROLE_SHADOWLING required_players = 30 required_enemies = 2 recommended_enemies = 2 diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm index a9061a49969..0af84e59029 100644 --- a/code/game/gamemodes/traitor/traitor.dm +++ b/code/game/gamemodes/traitor/traitor.dm @@ -9,7 +9,7 @@ /datum/game_mode/traitor name = "traitor" config_tag = "traitor" - antag_flag = BE_TRAITOR + antag_flag = ROLE_TRAITOR restricted_jobs = list("Cyborg")//They are part of the AI if he is traitor so are they, they use to get double chances protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain")//AI", Currently out of the list as malf does not work for shit required_players = 0 @@ -74,8 +74,8 @@ if(ticker.mode.traitors.len >= traitorcap) //Upper cap for number of latejoin antagonists return if(ticker.mode.traitors.len <= (traitorcap - 2) || prob(100 / (config.traitor_scaling_coeff * 2))) - if(BE_TRAITOR in character.client.prefs.be_special) - if(!jobban_isbanned(character.client, "traitor") && !jobban_isbanned(character.client, "Syndicate")) + if(ROLE_TRAITOR in character.client.prefs.be_special) + if(!jobban_isbanned(character.client, ROLE_TRAITOR) && !jobban_isbanned(character.client, "Syndicate")) if(age_check(character.client)) if(!(character.job in restricted_jobs)) add_latejoin_traitor(character.mind) diff --git a/code/game/gamemodes/wizard/artefact.dm b/code/game/gamemodes/wizard/artefact.dm index 97a531cfaa8..a1ab355b0b1 100644 --- a/code/game/gamemodes/wizard/artefact.dm +++ b/code/game/gamemodes/wizard/artefact.dm @@ -243,7 +243,7 @@ var/global/list/multiverse = list() usr.mind.special_role = "[usr.real_name] Prime" evil = FALSE else - var/list/candidates = get_candidates(BE_WIZARD) + var/list/candidates = get_candidates(ROLE_WIZARD) if(candidates.len) var/client/C = pick(candidates) spawn_copy(C, get_turf(user.loc), user) diff --git a/code/game/gamemodes/wizard/raginmages.dm b/code/game/gamemodes/wizard/raginmages.dm index 5e0190f3ead..24e7765ac94 100644 --- a/code/game/gamemodes/wizard/raginmages.dm +++ b/code/game/gamemodes/wizard/raginmages.dm @@ -78,8 +78,8 @@ spawn(rand(500, 700)) message_admins("SWF is still pissed, sending another wizard - [max_mages - mages_made] left.") for(var/mob/dead/observer/G in player_list) - if(G.client && !G.client.holder && !G.client.is_afk() && (BE_WIZARD in G.client.prefs.be_special)) - if(!jobban_isbanned(G, "wizard") && !jobban_isbanned(G, "Syndicate")) + if(G.client && !G.client.holder && !G.client.is_afk() && (ROLE_WIZARD in G.client.prefs.be_special)) + if(!jobban_isbanned(G, ROLE_WIZARD) && !jobban_isbanned(G, "Syndicate")) if(age_check(G.client)) candidates += G if(!candidates.len) diff --git a/code/game/gamemodes/wizard/soulstone.dm b/code/game/gamemodes/wizard/soulstone.dm index e19a6ae1100..635c98a2bba 100644 --- a/code/game/gamemodes/wizard/soulstone.dm +++ b/code/game/gamemodes/wizard/soulstone.dm @@ -243,7 +243,7 @@ /obj/item/device/soulstone/proc/getCultGhost(obj/item/device/soulstone/C, mob/living/carbon/human/T, mob/U) - var/list/candidates = get_candidates(BE_CULTIST) + var/list/candidates = get_candidates(ROLE_CULTIST) shuffle(candidates) diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm index c500f390b6a..fba8f319a58 100644 --- a/code/game/gamemodes/wizard/wizard.dm +++ b/code/game/gamemodes/wizard/wizard.dm @@ -4,7 +4,7 @@ /datum/game_mode/wizard name = "wizard" config_tag = "wizard" - antag_flag = BE_WIZARD + antag_flag = ROLE_WIZARD required_players = 20 required_enemies = 1 recommended_enemies = 1 diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index ca5fb09823c..12b5328e579 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -170,6 +170,6 @@ /datum/outfit/job/proc/announce_head(var/mob/living/carbon/human/H, var/channels) //tells the given channel that the given mob is the new department head. See communications.dm for valid channels. spawn(4) //to allow some initialization - if(announcement_systems.len) + if(H && announcement_systems.len) var/obj/machinery/announcement_system/announcer = pick(announcement_systems) announcer.announce("NEWHEAD", H.real_name, H.job, channels) diff --git a/code/game/machinery/turrets.dm b/code/game/machinery/turrets.dm index 48d5f9d9739..4cc40393fc7 100644 --- a/code/game/machinery/turrets.dm +++ b/code/game/machinery/turrets.dm @@ -363,10 +363,11 @@ /obj/machinery/gun_turret/New() ..() - take_damage(0) //check your health - icon_state = "[base_icon_state]" + "0" if(!base) base = src + take_damage(0) //check your health + icon_state = "[base_icon_state]" + "0" + /obj/machinery/gun_turret/ex_act(severity, target) switch(severity) @@ -400,8 +401,6 @@ die() return state = 2 - if(!base) - state = 2 update_icon() return diff --git a/code/game/objects/effects/spiders.dm b/code/game/objects/effects/spiders.dm index 6815d522d29..020dfc4267f 100644 --- a/code/game/objects/effects/spiders.dm +++ b/code/game/objects/effects/spiders.dm @@ -198,7 +198,7 @@ S.poison_per_bite = poison_per_bite S.poison_type = poison_type if(player_spiders) - var/list/candidates = get_candidates(BE_ALIEN, ALIEN_AFK_BRACKET) + var/list/candidates = get_candidates(ROLE_ALIEN, ALIEN_AFK_BRACKET) shuffle(candidates) diff --git a/code/modules/admin/verbs/one_click_antag.dm b/code/modules/admin/verbs/one_click_antag.dm index 787d6dd9372..53a702938ba 100644 --- a/code/modules/admin/verbs/one_click_antag.dm +++ b/code/modules/admin/verbs/one_click_antag.dm @@ -65,11 +65,11 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(BE_TRAITOR in applicant.client.prefs.be_special) + if(ROLE_TRAITOR in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if (!applicant.mind.special_role) - if(!jobban_isbanned(applicant, "traitor") && !jobban_isbanned(applicant, "Syndicate")) + if(!jobban_isbanned(applicant, ROLE_TRAITOR) && !jobban_isbanned(applicant, "Syndicate")) if(temp.age_check(applicant.client)) if(!(applicant.job in temp.restricted_jobs)) candidates += applicant @@ -101,11 +101,11 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(BE_CHANGELING in applicant.client.prefs.be_special) + if(ROLE_CHANGELING in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if (!applicant.mind.special_role) - if(!jobban_isbanned(applicant, "changeling") && !jobban_isbanned(applicant, "Syndicate")) + if(!jobban_isbanned(applicant, ROLE_CHANGELING) && !jobban_isbanned(applicant, "Syndicate")) if(temp.age_check(applicant.client)) if(!(applicant.job in temp.restricted_jobs)) candidates += applicant @@ -135,11 +135,11 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(BE_REV in applicant.client.prefs.be_special) + if(ROLE_REV in applicant.client.prefs.be_special) if(applicant.stat == CONSCIOUS) if(applicant.mind) if(!applicant.mind.special_role) - if(!jobban_isbanned(applicant, "revolutionary") && !jobban_isbanned(applicant, "Syndicate")) + if(!jobban_isbanned(applicant, ROLE_REV) && !jobban_isbanned(applicant, "Syndicate")) if(temp.age_check(applicant.client)) if(!(applicant.job in temp.restricted_jobs)) candidates += applicant @@ -206,11 +206,11 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(BE_CULTIST in applicant.client.prefs.be_special) + if(ROLE_CULTIST in applicant.client.prefs.be_special) if(applicant.stat == CONSCIOUS) if(applicant.mind) if(!applicant.mind.special_role) - if(!jobban_isbanned(applicant, "cultist") && !jobban_isbanned(applicant, "Syndicate")) + if(!jobban_isbanned(applicant, ROLE_CULTIST) && !jobban_isbanned(applicant, "Syndicate")) if(temp.age_check(applicant.client)) if(!(applicant.job in temp.restricted_jobs)) candidates += applicant @@ -386,11 +386,11 @@ var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(BE_GANG in applicant.client.prefs.be_special) + if(ROLE_GANG in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if(!applicant.mind.special_role) - if(!jobban_isbanned(applicant, "gangster") && !jobban_isbanned(applicant, "Syndicate")) + if(!jobban_isbanned(applicant, ROLE_GANG) && !jobban_isbanned(applicant, "Syndicate")) if(temp.age_check(applicant.client)) if(!(applicant.job in temp.restricted_jobs)) candidates += applicant @@ -584,7 +584,7 @@ var/list/mob/living/carbon/human/candidates = list() var/mob/living/carbon/human/H = null for(var/mob/living/carbon/human/applicant in player_list) - if(BE_SHADOWLING in applicant.client.prefs.be_special) + if(ROLE_SHADOWLING in applicant.client.prefs.be_special) if(!applicant.stat) if(applicant.mind) if(!applicant.mind.special_role) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 1b1fbc8f80c..5f9b1b83f15 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -198,7 +198,7 @@ var/list/candidates = list() for(var/mob/M in player_list) if(M.stat != DEAD) continue //we are not dead! - if(!(BE_ALIEN in M.client.prefs.be_special)) continue //we don't want to be an alium + if(!(ROLE_ALIEN in M.client.prefs.be_special)) continue //we don't want to be an alium if(M.client.is_afk()) continue //we are afk if(M.mind && M.mind.current && M.mind.current.stat != DEAD) continue //we have a live body we are tied to candidates += M.ckey diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 88ed2918201..e76b4d11a2f 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2,26 +2,6 @@ var/list/preferences_datums = list() -var/global/list/special_roles = list( //keep synced with the defines BE_* in setup.dm -//some autodetection here. - "traitor" = /datum/game_mode/traitor, //0 - "operative" = /datum/game_mode/nuclear, //1 - "changeling" = /datum/game_mode/changeling, //2 - "wizard" = /datum/game_mode/wizard, //3 - "malf AI" = /datum/game_mode/malfunction, //4 - "revolutionary" = /datum/game_mode/revolution, //5 - "alien", //6 - "pAI/posibrain", //7 - "cultist" = /datum/game_mode/cult, //8 - "blob" = /datum/game_mode/blob, //9 - "ninja", //10 - "monkey" = /datum/game_mode/monkey, //11 - "gangster" = /datum/game_mode/gang, //12 - "shadowling" = /datum/game_mode/shadowling, //13 - "abductor" = /datum/game_mode/abduction, //14 - "hand of god, god" = /datum/game_mode/hand_of_god, //15 - "hand of god, culstist" = /datum/game_mode/hand_of_god, //16 -) /datum/preferences @@ -367,7 +347,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set dat += "" - dat += "

Antagonist Settings

" + dat += "

Special Role Settings

" if(jobban_isbanned(user, "Syndicate")) dat += "You are banned from antagonist roles." @@ -376,7 +356,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set for (var/i in special_roles) if(jobban_isbanned(user, i)) - dat += "Be [i]: BANNED
" + dat += "Be [capitalize(i)]: BANNED
" else var/days_remaining = null if(config.use_age_restriction_for_jobs && ispath(special_roles[i])) //If it's a game mode antag, check if the player meets the minimum age @@ -384,12 +364,10 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set var/datum/game_mode/temp_mode = new mode_path days_remaining = temp_mode.get_remaining_days(user.client) - var/antagkey = capitalize(i) - if(days_remaining) - dat += "Be [i]: \[IN [days_remaining] DAYS]
" + dat += "Be [capitalize(i)]: \[IN [days_remaining] DAYS]
" else - dat += "Be [i]: [(antagkey in be_special) ? "Yes" : "No"]
" + dat += "Be [capitalize(i)]: [(i in be_special) ? "Yes" : "No"]
" dat += "" @@ -1000,7 +978,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set toggles ^= ANNOUNCE_LOGIN if("be_special") - var/be_special_type = text2num(href_list["be_special_type"]) + var/be_special_type = href_list["be_special_type"] if(be_special_type in be_special) be_special -= be_special_type else diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 799317416d3..517214b0abd 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -52,14 +52,45 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/B_revenant = 32768 var/list/archived = list(B_traitor,B_operative,B_changeling,B_wizard,B_malf,B_rev,B_alien,B_pai,B_cultist,B_blob,B_ninja,B_monkey,B_gang,B_shadowling,B_abductor,B_revenant) - var/list/new_be_special = list() + + be_special = list() for(var/flag in archived) if(old_be_special & flag) - new_be_special += flag - - be_special = new_be_special.Copy() - + //this is shitty, but this proc should only be run once per player and then never again for the rest of eternity, + switch(flag) + if(1) //why aren't these the variables above? Good question, it's because byond complains the expression isn't constant, when it is. + be_special += ROLE_TRAITOR + if(2) + be_special += ROLE_OPERATIVE + if(4) + be_special += ROLE_CHANGELING + if(8) + be_special += ROLE_WIZARD + if(16) + be_special += ROLE_MALF + if(32) + be_special += ROLE_REV + if(64) + be_special += ROLE_ALIEN + if(128) + be_special += ROLE_PAI + if(256) + be_special += ROLE_CULTIST + if(512) + be_special += ROLE_BLOB + if(1024) + be_special += ROLE_NINJA + if(2048) + be_special += ROLE_MONKEY + if(4096) + be_special += ROLE_GANG + if(8192) + be_special += ROLE_SHADOWLING + if(16384) + be_special += ROLE_ABDUCTOR + if(32768) + be_special += ROLE_REVENANT /datum/preferences/proc/update_preferences(current_version) diff --git a/code/modules/client/preferences_toggles.dm b/code/modules/client/preferences_toggles.dm index 66705a05f59..6a1be869732 100644 --- a/code/modules/client/preferences_toggles.dm +++ b/code/modules/client/preferences_toggles.dm @@ -215,18 +215,33 @@ feedback_add_details("admin_verb", "SAmbi") //If you are copy-pasting this, I bet you read this comment expecting to see the same thing :^) //be special -/client/verb/toggle_be_special(role in be_special_flags) +/client/verb/toggle_be_special(/*role in be_special_flags*/) set name = "Toggle SpecialRole Candidacy" set category = "Preferences" set desc = "Toggles which special roles you would like to be a candidate for, during events." - var/role_flag = be_special_flags[role] - if(!role_flag) return + + var/list/options = list() + + for(var/role in special_roles) + var/key = capitalize(role) + if(role in prefs.be_special) + key += " (Enabled)" + else + key += " (Disabled)" + options[key] = role + + var/a_input = input(src,"Special role candicacy","Special roles") as null|anything in options + if(!a_input || !options[a_input]) + return + + var/role_flag = options[a_input] if(role_flag in prefs.be_special) prefs.be_special -= role_flag else prefs.be_special += role_flag + prefs.save_preferences() - src << "You will [(prefs.be_special & role_flag) ? "now" : "no longer"] be considered for [role] events (where possible)." + src << "You will [(role_flag in prefs.be_special) ? "now" : "no longer"] be considered for [capitalize(role_flag)] events (where possible)." feedback_add_details("admin_verb","TBeSpecial") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_member_publicity() diff --git a/code/modules/events/alien_infestation.dm b/code/modules/events/alien_infestation.dm index d244d7a8626..f043ed095a9 100644 --- a/code/modules/events/alien_infestation.dm +++ b/code/modules/events/alien_infestation.dm @@ -35,7 +35,7 @@ if(temp_vent_parent.other_atmosmch.len > 20) //Stops Aliens getting stuck in small networks. See: Security, Virology vents += temp_vent - var/list/candidates = get_candidates(BE_ALIEN, ALIEN_AFK_BRACKET) + var/list/candidates = get_candidates(ROLE_ALIEN, ALIEN_AFK_BRACKET) while(spawncount > 0 && vents.len && candidates.len) var/obj/vent = pick_n_take(vents) diff --git a/code/modules/events/wizard/imposter.dm b/code/modules/events/wizard/imposter.dm index 9a155830455..f6f0d3bd4b9 100644 --- a/code/modules/events/wizard/imposter.dm +++ b/code/modules/events/wizard/imposter.dm @@ -10,7 +10,7 @@ for(var/datum/mind/M in ticker.mode.wizards) if(!ishuman(M.current)) continue var/mob/living/carbon/human/W = M.current - var/list/candidates = get_candidates(BE_WIZARD) + var/list/candidates = get_candidates(ROLE_WIZARD) if(!candidates) return //Sad Trombone var/client/C = pick(candidates) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index b6649aada21..4ec0ffb2304 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -362,3 +362,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp ManualFollow(target) if(href_list["reenter"]) reenter_corpse() + + +//We don't want to update the current var +//But we will still carry a mind. +/mob/dead/observer/mind_initialize() + return diff --git a/code/modules/mob/living/carbon/alien/special/alien_embryo.dm b/code/modules/mob/living/carbon/alien/special/alien_embryo.dm index bb7abd6f7f9..049b5ceb22d 100644 --- a/code/modules/mob/living/carbon/alien/special/alien_embryo.dm +++ b/code/modules/mob/living/carbon/alien/special/alien_embryo.dm @@ -67,7 +67,7 @@ var/const/ALIEN_AFK_BRACKET = 450 // 45 seconds /obj/item/organ/internal/body_egg/alien_embryo/proc/AttemptGrow(gib_on_success = 1) if(!owner) return - var/list/candidates = get_candidates(BE_ALIEN, ALIEN_AFK_BRACKET) + var/list/candidates = get_candidates(ROLE_ALIEN, ALIEN_AFK_BRACKET) var/client/C = null // To stop clientless larva, we will check that our host has a client diff --git a/code/modules/mob/living/living_defines.dm b/code/modules/mob/living/living_defines.dm index 0c4d370dca7..27bd2ccb751 100644 --- a/code/modules/mob/living/living_defines.dm +++ b/code/modules/mob/living/living_defines.dm @@ -42,7 +42,6 @@ var/metabolism_efficiency = 1 //more or less efficiency to metabolize helpful/harmful reagents and regulate body temperature.. var/list/image/staticOverlays = list() var/has_limbs = 0 //does the mob have distinct limbs?(arms,legs, chest,head) - var/list/datum/action/actions = list() var/list/pipes_shown = list() var/last_played_vent diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm index 6940476fed3..9bc16167c99 100644 --- a/code/modules/mob/living/simple_animal/guardian/guardian.dm +++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm @@ -526,7 +526,7 @@ return used = TRUE user << "[use_message]" - var/list/candidates = get_candidates(BE_ALIEN, ALIEN_AFK_BRACKET) + var/list/candidates = get_candidates(ROLE_ALIEN, ALIEN_AFK_BRACKET) shuffle(candidates) diff --git a/code/modules/mob/living/simple_animal/morph/morph.dm b/code/modules/mob/living/simple_animal/morph/morph.dm index c815f567578..9b5b8dc4892 100644 --- a/code/modules/mob/living/simple_animal/morph/morph.dm +++ b/code/modules/mob/living/simple_animal/morph/morph.dm @@ -195,7 +195,7 @@ /datum/round_event/morph/proc/get_morph(end_if_fail = 0) key_of_morph = null if(!key_of_morph) - var/list/candidates = get_candidates(BE_ALIEN) + var/list/candidates = get_candidates(ROLE_ALIEN) if(!candidates.len) if(end_if_fail) return 0 diff --git a/code/modules/mob/living/simple_animal/revenant/revenant.dm b/code/modules/mob/living/simple_animal/revenant/revenant.dm index c90283d76ba..09ac892b2e7 100644 --- a/code/modules/mob/living/simple_animal/revenant/revenant.dm +++ b/code/modules/mob/living/simple_animal/revenant/revenant.dm @@ -385,7 +385,7 @@ break message_admins("The new revenant's old client either could not be found or is in a new, living mob - grabbing a random candidate instead...") else - var/list/candidates = get_candidates(BE_REVENANT) + var/list/candidates = get_candidates(ROLE_REVENANT) if(!candidates.len) message_admins("No candidates were found for the new revenant. Oh well!") return 0 diff --git a/code/modules/mob/living/simple_animal/revenant/revenant_spawn_event.dm b/code/modules/mob/living/simple_animal/revenant/revenant_spawn_event.dm index 0cb19dab3da..d21e9c04b03 100644 --- a/code/modules/mob/living/simple_animal/revenant/revenant_spawn_event.dm +++ b/code/modules/mob/living/simple_animal/revenant/revenant_spawn_event.dm @@ -21,7 +21,7 @@ return key_of_revenant = null if(!key_of_revenant) - var/list/candidates = get_candidates(BE_REVENANT) + var/list/candidates = get_candidates(ROLE_REVENANT) if(!candidates.len) if(end_if_fail) return 0 diff --git a/code/modules/mob/living/simple_animal/slaughter/slaughterevent.dm b/code/modules/mob/living/simple_animal/slaughter/slaughterevent.dm index cbc845bc69d..557271fc79b 100644 --- a/code/modules/mob/living/simple_animal/slaughter/slaughterevent.dm +++ b/code/modules/mob/living/simple_animal/slaughter/slaughterevent.dm @@ -15,7 +15,7 @@ /datum/round_event/slaughter/proc/get_slaughter(end_if_fail = 0) key_of_slaughter = null if(!key_of_slaughter) - var/list/candidates = get_candidates(BE_ALIEN) + var/list/candidates = get_candidates(ROLE_ALIEN) if(!candidates.len) if(end_if_fail) return 0 diff --git a/code/modules/mob/login.dm b/code/modules/mob/login.dm index f262ddefc1f..11ecdcaae72 100644 --- a/code/modules/mob/login.dm +++ b/code/modules/mob/login.dm @@ -56,6 +56,8 @@ client.screen += client.void + sync_mind() + // Calling update_interface() in /mob/Login() causes the Cyborg to immediately be ghosted; because of winget(). // Calling it in the overriden Login, such as /mob/living/Login() doesn't cause this. /mob/proc/update_interface() diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index 54262819d23..beb51711799 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -6,6 +6,7 @@ hud_possible = list(ANTAG_HUD) pressure_resistance = 8 var/datum/mind/mind + var/list/datum/action/actions = list() var/stat = 0 //Whether a mob is alive or dead. TODO: Move this to living - Nodrak diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index e186a902c8f..85afb664104 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -433,11 +433,9 @@ gib(src) -/mob/proc/become_god(var/side) - if(client) - src << sound(null, repeat = 0, wait = 0, wolume = 85, channel = 1) - - var/mob/camera/god/G = new(loc, side = side) +/mob/proc/become_god(var/side_colour) + var/mob/camera/god/G = new /mob/camera/god(loc) + G.side = side_colour G.invisibility = 40 if(mind) mind.transfer_to(G) @@ -446,6 +444,7 @@ G.job = "Deity" G.rename_self("deity", 0) + G.update_icons() . = G qdel(src) diff --git a/code/modules/ninja/ninja_event.dm b/code/modules/ninja/ninja_event.dm index 2e1e6528256..fda579af7ef 100644 --- a/code/modules/ninja/ninja_event.dm +++ b/code/modules/ninja/ninja_event.dm @@ -54,7 +54,7 @@ Contents: //selecting a candidate player if(!key) - var/list/candidates = get_candidates(BE_NINJA) + var/list/candidates = get_candidates(ROLE_NINJA) if(!candidates.len) return kill() var/client/C = pick(candidates) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index bee67a1fcec..dcf15871879 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -176,7 +176,7 @@ user << "You offer the sentience potion to [M]..." being_used = 1 - var/list/candidates = get_candidates(BE_ALIEN, ALIEN_AFK_BRACKET) + var/list/candidates = get_candidates(ROLE_ALIEN, ALIEN_AFK_BRACKET) shuffle(candidates) diff --git a/data/mode.txt b/data/mode.txt index cf1ffd5c991..436f08da95e 100644 --- a/data/mode.txt +++ b/data/mode.txt @@ -1 +1 @@ -extended \ No newline at end of file +handofgod diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index b10dcd929546c820bc2b30751c53b0a7358ae506..a1ede7661c1d6263b0bccff964076c02b21a95b5 100644 GIT binary patch delta 330 zcmV-Q0k!_;WaMO!Bmr-cB|v}geD9s!Qhn{e4=1%d9`Y+tbQn~rw(sjao1EoNmFi=Y zXC1h<BSCSYR;huCT~6>nN&HZS$-l-9uERD*nhCk)ueN4jK`fI>+)r<8cZi zMPTK5?njf1wc2CsKwk2!%_Yr_+G}%>DN5NCNrzUp?S>U1$2gLUEXRL1%uKbt^00I9V^w!8%Bie4w(b@i>KQAY|lufC`(ZJ(zXK zaX?n3DvGzw=i4ipr=B^#Qkh&}ptOpbkP^$RCD$}AB*OPHtt`pqVQ7rn0wsg1l-hs5 culi%D_NSfN9S`|0w*DGqYyyeZv!4OTFoEo+`~Uy| delta 333 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 delta 34771 zcmbTdWmuM77cB~+AQDQ6f{22GMRzMLr8Lsr9V!ak7$BX}ASGSWAi^Wk(w)-X-4C4k zeBa(@pS`c^{MkQVUa9+DYpyxR9AnHyK_qTX0B*=VxRvK5W{D--y;z-A9@cKlrbVN&L zhj?A=;o(57ZM|(PJ?1<)Jx>UV+~?hg*H(M1JERlNc75LZ~t-nrsb>$?QG{N?&by? z%%#R=K2ufepQ>E>MUaIvikMCE+(Y|LTwob|rk#X4zZxQ~K;>WZx9vLLqdINk=$Wjt z8-|jC8~n%-)>6FBSBXLfYj(G}mlYDO^jfH(tdzGEzWVITfdx^~ExvtUPJfncQybf8 zYmhYWty3^XeY~bKXntk;*K6Z;twi6lmA-#&pQmMwGv@;Sb%!Ps5G01$3EZwoAdA*! zb8^&Kcg+1opernv!*aM*l7Q3nTqf@aM&CbZ-JB5&;4}!IVInBL%%ECChKTiF7ZdFD=CpsGPIUf> z$l}lZD(}K5R{3#3qwB8ahl2i9*KACxu>@(UO_AVdJ}oA|F+N9JwN>WMnkG0N_%ze` zq&)DUs{AOh{(j!iDlKAwX;7}Pq)5xcwMu70URK+2ZM^Sq-;cz{Sy@w&7xOC&AJO?u zGt=E+T{vj6zwI4rVyb^5bOHUY-Kxx~W5KoKX2;Q{(8R*Y>Cr-B0Ii7b*nr#F(L#){ zJAd7ms~OKe;bIxiA~l-fs@0QOIEhcsC*Hcb399F7*ETeGU7>hnzdpw2;D2@Zoap56 z@Q3v#=cR$pA!YekY!)0TywEg$fyj0WB(6DRCxmB2(2MY_igY{henaV|6Tz02< zx$(C%f!ZfaleM4Xc^y6~rb;d$NwSgl8{@3r8i?`}_U- z_pa*qZ)_)O}Ti`$kPcb6;pZCVSFkG3#GkG=I0h>MNOgmw`btU{js(JL~Ox zuNS-S_Vn~Dj+8!rvp#m0k1r;c%c{t@g%p?Y#_#I)2j*Q#*iyl_(=7Y5b2SP-UKKgL z=K19+?Kb*g!ap{BnfqXMxGqnt{Oyz%rMSZUa(~WE4pYMJ?rx+n_my%$58hC@9qp@E zubh{9F6F6-;Hb&ST)`ZYLIVF-g~O-&vXPrDjES3jgL)jU+s0={oyazP?$aad{mH%W zIkz)EO>J#$eM5u8$-Yf2r-kUz_S`F!htMaytMh$X%HK0GoZuTj-)t~v-_%BV(7bu` zMlo%wi54+NetTl)zAEZm2YcqO838 zW-Xre(2oz;IJiFOv`C{I-D-Y_eBIz6<<+ZKsW{D__GhaeEoCIW-RoD!yx!N>S1y|M z!)Upk|08@75|X#?-_J}C7ob)7{gVrAgutQzs@RCg;UZ5FzmSF%if_2cON8iAn5FMOj3|CWg3 zA2x`KT*m@Iu`)FwZms+NA6C;6%MLTeFZgu+(yN4hMbV);8QPm?C$7XFIm*vpbC|Zh zmCxz#scC4`^o0c zPF+VwP=h~Z>Vqp$EP4!&9{G8CV*RSFK0?;YCw%<k_T_mh37r}_4{rmkc$Oyo1Q z%9-I8Qe0LBj7>}&pg@>)eu`H*&Rr%XtncrSXls+hq=$ya4GRm4il0Awkc=0!Ztm{S zWo1*%I=@v^RhXE24lD=vHUGOuk?Q4+HAswyhv(ow*4rDd zRc>2o-c6^iqhm2v!S?#~Yqx`cZvfYdZ2$4U+wU91J>5Xg{maXFM9vQB;WU$7cjn`T z5%<{LUFX-UL(ewGs{tw^ zGehq|iI0z8QBg5DKi`-t6+BdALQwr~FGa%tIz-h!O*V@3+BMJWYN4yN!o~eKSeg6CY^8`7kT`gND>>whLL zP3t6-K{R>>Qw*LQ!m)A>(AlM(`w?oMxrl!QqcbQFC8c6 z*T?GlFAEJNzPZld#AG@2bu3$3Tj#Zr2xxW=GmS);{^#t>8HiBxm_nTkzTJG<*Sk7c zK&zmjV9rT3-+klG)~jNZ_%Uq7qm%$*+XxSeh_J$Y3me){x$ zzZ~WJ+Su6m+U?uKp25LaA#a-M>cnQfhKGkSZ|dpo<#RjyapTtaanrsfXXtm~S;`rH z79wkFYYvWxBXoh-?YUM=Uwgei=Bt)tvN}{~7X*$2u;2UfoG0n4I zT~86>5sJfO@|V2kaGGFxdin;JC3zr1#bpQ`HdnLM@B9RHJ_9B2_T9VfPUK9vjc&h@ z+HP~&pJlrog_e&$?SJ-^1$D|^ZZ|P6a(;9bgVdpa0mma*^c2+8BAaPHhu%IqC%raGpmy3%$u=cz>fYWWDYIso^>a0~>#*Sr zK)LCih{x(z$WnSURl#B1eyV4<0{n+E{MqVQ zWjLko+Yb`MI26EDfC#0(*%-gaz|ez~+v)AE|9hHCQ+W z+6*RgDckjPtx*rv^W&p6OFhuXka(YAEo9{6;_$=1z#4K2YDi6*`hIoDMlo-72yApg zSGz?+)4k-}7RyB-p?H~yh(fvOY=-uH5;;Gi^-I~@AGO=roDv&>_jf|}H8{6>czCGf zX-1UUj6$@AYup8t)8(cX5|Kve+=qv6;Z$l%EPCrFk|a};)$%my7$KtD(0%juP#wtG z4lM~$NqM-uUMa3T{3$jRh9X`nr-5?Zk%o zGk=6)BF}gkueZTWo~n#aFw`-IKX-TeVj38^jTz3F{837T0Z8cJV_VV%-N| zg1(3km2r8Zg`OKCtw$8uz$RdMPNTKOuL;q6OYC+g0yf2Q6R( zU6Sx7`{#r4_b;@K*T<_L+a|*SM}s!_@pj9w=5$+@gv7i%k`EZ44IZ_HFo<#n1TEH6HP58eE_)nNV{)CuE*2R_2?$01>1ALHVv z6%`dB>9qoIh20KWf%5`Xb(dHubK8zdkCxdqtc^m#6!M}Noi}xH%B--IRTX; zrlqAV(afue5OO=Thm2|TBA~=_zl7rn#32NqjG^m?ftc{oEE(oMlBG7_MFsD77i&*8 zP@RQFO*eS$?*JOtH#Pa+L_(m`VLDW6B$E*UQA+$EFiKZo0Ir9d$qy=3(qu3d(;mx3 zrkK;8qpqAPNz`2i07^Pp!&t=n&_~!r{^;@OI#WSreDC5C=or@PQ zULz;JCzr3uNU_@}L*snucy#a)Myu8Pk^y2CppY|}moKkTb6a1#-6FJ?)0X+cp08#$>{-?tX zF31-Qg*{4sj^xXF%qCIOTCK7=qG3(XHL70341Ml?S%k zQ0GC=GwOXvpl#t2QHcXk0Zp0<G)Wd>l7K z4p!Ob&r;J2M-cj-N^e~d!EgJh;KJlMN z1jpIkGy+qXLXVS(KRyo7(?i}qBlJ*KrWN+@j#I6}wm;rz*~>MwI4|9(IbrTE7SMyP zB`PX& zZ3zODo(tdJ2Z5jkMlTCY=ee}B{>nfebn71;=y&82wM|IV7a-roCau@mp4I*^sI!0b zW&w4MW(jAIp9UB|1<1r|jyT})IDPAZ-c!dA3dx{bEq)Y_56@0E8u|*EnVC}viGGjT zq2whcaWSg~89P?}J_<^m)nQuv3|dfVSQwpxWJ^nnc8%N3uHbukhtO0p^z+p#48sLMOQ$erBqq{Aou&Z`UY$Vc1u#G~ydGGQlaYM_5QeXETJ(H| zT3~;>ssBhl|A~xNR;3Go0h|v2chHwFc!0;)cbJ)jpnf^rkDb|GE&$jAjC+ILg2SX* zN5-rDqoOEqlmNH{eQ4z)*nQ00(1JyEyLK4+= zUA>NW_IBP?RaS0|zu!Q7{r>_-)hIH?|M1}hMgW0?>CRSt%>QORKp_K8bo?4B5FXr9 z^~Me!XK!zx1R)`$;U@=JzAg0b9&Qqb1bh>Ezg>W!Wxv`fk$XY#k{|drm#f-gcY>6M z%@+gcDk&))0(3T9lBq_=#K*V6kp(Is8L6N{K<4eN6rk8a``s3HYd+kX0ra^`OiT># zQHg%qHRxOIv_K3(Z)kWJ(_gWUwF)sg2<8sZX?8f~3ph9y{n->`404k|A~1acvm)4_ z1DxwqyYc=R0U&q)73M=f?t-d2g|wik^wC1fZ7KHr`Y)#{WROu%tO6x;axwy=hnJ6! z&3^K!ppa0OVk#~GvB~7`517aLk}*!t&WgjC!1<9bP}teot*)+OIE-dq4_gE;{-Kq=nP*t_7rg z6P!IhsO8>XGH_zN>_Bb+UjmOrQsqULIj6X!q$B#+1vu%K|N0Wb=g)Ud^PQT4a1*W$77#lh z`VYE!np>~FdVIK36kWK^h-KiBnv&ueGyaRA^T+q|*U-KTvgTC&)YWYr9AtpTX^Z0t z96@8JfpUHJ>=`DPt}|)=u zV@N@9_w}i;y_^RjfRSB#9!K}piNrw(pQ6zYE-v>41>=Dy;wu-z3W0_Jog+{4g0pS7 zcM*^Hmj2KW1F#;ZmzVv*!x1uFU0oo87^94glCtSDJ{eYh=E>%!{kYqXJUA144$~Lc z*Vi#(+Ie+|Bu}jsqZq;8!>E36Tgdh}`n%_Vzk+vB2z&J=yh+EbvRsl3oooS8(a@XD z<=uEkfUCd% zo*rQU#=HOi0BXq;1p+b7p`I!LpD&gehWWch-e4VNy!-gx`h>lLfWhbB$#I(X~ zV41cwH&4Q8rZm?8uL1Rt`l{FzoK|0wF2)z%?y<6715*I#mbgU@D4@y7$=~RcgQdZO z#OMe)Az|PLX1(e1@q(^lU_ec;tjIz$M4cT!CZguPcjt~LRQeX6Txz$uM)f-`745Xw8*Q3(%N;ML)|nZ18hCSu4MH z@1D;s=|IUk1fZ>c^09z`0GNFWP^F7wl^j%o-aykQQUbyyQ%O|sdz`HCK+}0B*8;n` zjE{d8e8U^Huo5L;A7>lqXD>=l+Ic3(`!9m|5(DJ5DVUZrTm~S-0i5II!Gd6g45Nt} zcf+z0I}|z+tnHV;g#lWC*&>wplfl>hPk-&rxC*dA7x=rsp8~=h%WdPAlk*s`Cr#Ar z3aG;A`FU@(9E#!s2`Q;!n^Eqw;}sV0pS=M_z&Mrqc0PMlko)a?fLmK@-pLaiyaU6& zQ9H6469U_gj*`~fZ?n}zE+3stfNyYxQL0IM;-;DbvYD;v+aRmHHMd$BFG4NW(>_W_ z#p@%xm2u>9f}I?*zsWBjTSCrPk@jlh#})DOe6t%Tx`g2(x?j+xF7XPV&)oIuhfQdD zQ60kzd5Jnw_YWu~h*_Uf+S&d5>>&^SL6)zm&?lLz7U~5(uK)Ps2lDD@9No<{F8v8R zi;{i*9GSuhB52}-z|KJs0*(XtT}%So%kZ0%OWy_# z3^2W38)+aI_VNd|;c{nTzX+OD^})Ci9K7Mni;FK*Ecwy^t1oncz=I$4f>!Rb+($zH zRar@?;`JI8t=lHHXQmSp10HHdqQ_qV;H~}r>o^xMeu3lcu8X7KjEqu<`Di5O6a|^`~s@&Ws7}dAfor>*VyAP=8%%9MV28BpsU|{fT`|o4x z;UX{4jEzAwtx!y|(5%kR&cJ4hhhp@{5F?;d!21uUz96(WK(#|hH^Im+_%*z%w_gGa zg_SlyU0Dnl-3MxXi_cNKO>=i9SfnRkM*yZ1E#PK}2Q3^-Ae{*UZ=yLZ!lKu&@0N3+ zj^?QwgK0aVsw!akk#FG{9v+T)2$U2+xbLD5m5Cn^8+P_E_}xV06q%vrv>m$vr+QoP z?Qe_$c=amAW^_B6i&Du}!L*c3FhjzD6K;TD;Q-0Rrm2@VmNXt~12~=^IskO1b*;{BNMMC2aD#*d!9y1f5yO8kh8*_l~U09k4n2Q*#1}qN% zwF9JAre^6Q=y-%TSUmytotFC^GRQ?g1tbRBAVa-C7mMx!a4!Vd#|;q=!L6+=I?HUT zzc2vXY6AZ;BqruL{4DU|R6r+Q0RfCd{p;7SXbv-C@L8|nWTm8}h?8dn=7HfG1fs&X z4016Jj7t^Q%_%r}1YA4j*S zC)!Oz_$;hwD~+PAMcGtABUxYuBj610j93-;j+H_V0)F#(obukhdDCsDormxi@5`^H zu+`)jiNctM1L+9!28_cDCIIMb3^YO$LcD<`v;5lpsPQ7fHv{YwLvIkj^_iv#3R1?# z-!ogHBO)5W)A<98ALBbgd@~>dpTB(Z|3Cs#=sp*hD&d273kh#vr?@a5(FgMO3y@J< zO3I%bdIYhVnHfe{LT`EwDh$vRlguUE;HvDc4EiIrPeJ!%Ix%bkNL5qVeOYrTB(Nty z&k^6^^-M@esJK6nqt3FwI!wm{Wb)DngrMe1-8A#6E<$eN~oWbBv5~L37lU_&&V?>68hSmay=LN+GUYlf2 zKPe4OJJ6~n@MU1eXb9B*A|77xn+;v~RfZHP5F22&QA5*blR)e&EwiJuo^yp;4dmVh zK0RD)wlkn*=R5ps-2FfY<2r$Vh@Gij$xcAYJPQ#5S*I>{J*nH=ConJ#hzcNGAt;%2 zxfoFp$CaR^!80`m$_J4B1$y1)-^T?Zv9U6ssE-y?gMq@r7>*29SY*;VREF44L(f}u z=2u7*4vdS7>(VT@rGZ&M1Dp@7$KeM!>+WB!PPkWZ%R$*S5Gp5iwhFyoy%Bs{Xc}W| zo~#yQrJUtRrY452V!XZx`o3CT%egOPj0!%AQ_HLB@O0~u5?`3s`~YwBX`)E(eEm4^ zc$S*O3tcZtkgZ{}M11@4g-hsQOik#p#>e0As_|DorL+?4Fo}e z-A_$TVSHpTg9`1ZM348^9y_{;98ThZ2!;`l$=|OJo!7@=;LtI42^~HC*5+mshDb?D zraZU;U4;ad0W;g4@6X8)#cUb$`;i|8IH=QY0*u{Ik(W0w5BU}h9x6aX3)ozWxXQic3=-~4fiee z#_)OwX0YfQFYhiL+0f|`rUoP4mDwf|6RgKp(T}ZtrU>mqhe%9VSF{RN1t;@{3)<6? z&a7ap^9DS*NN7|3TIG+`a+6?)Lw5yaECb9#f~%?o0FLU$$G<`L^`uA;u(c`xF$Q5{ z06B`8Xk&5;cpt{_%-60I1$_WhmW8w^-RXM7mkcw3{>sY_+1nnsvd|7j6$z9i;2;?- zZE!(Bflqc;E6`&C(3@dlVHNgMm|>X#C@C10^}qxUlvEq|(+z7ZPsh{*-frFj?mGvX z6XU5vr{#FJYwkes69R)7E5kt0&!zwTH_XGu0C6i3u%&@un=W=GL%n+(%~4{e&Pr)l zAlvG?yF)<;fSE4-xvr_{3!EUE%?KwQ9bKk!2C=}Kbz^XSK#_)qgm|4Zieq8@_b!2F zd3pJRtKSDoRa%v8#wtQ9DtKX>dT#`ymoW1qQPB%vU^9R#0CW=Z8`TGp*Pr_11q?3? znhfrsIp^_1$3*x2S6k!uB03fJ9{^Y&5h)6Sk*1($Ftg4mcco&{8lcfK0>;TA|ygxG(o*El)lvMcS8h zHIh&biGU$+Ov5D>WB`4<{QMZ|3^ua_a0l>WNLMU4sf5o@ozmswBw?HjJrhKeH|Cji zbc+M>dUQL`yJ0pM1x$2iZq5rcV`qYr$Jw3B#Zp8az!D)+zL_TQJdod*kv|Mv{o|1~ zKw%E!=4;?B94_Y+m=EOMgzq07AN$>`13JwI*^TjZfj_{!ksW>zjzd~TCIvhO%ybVt zS&SX5ma9<Bhn0mq<}ugwSkN1Iuqd!rPsdp%GbkZc(61EzuPgL=;OH{X_n zp8gY1DW7;VF?mph;6sQvV1s`MuyzCPR`{iaz_bcp4|(z()Tp?)_~i7osOJ8IIrs{O zm14|UMdX7aBoTZQ!iNW@(EkwiLgy{~zmNHUN9t>QQRh-Qx+zy@d2#uGIU-)1X1pi6 zU;tZ<$i@SA@CViBV|OAmaTIc@j@Yi`~vFiu)q2W zj2>}){X1Ypqy!KzrjkHCl6`W{R>{I(zE{n=DIB!+0yvy$kTTZ)enx;d?(<9@s1Jn; z&B5BJl#GmDbc~EmFN9E{nT{dTpV{GMiHN)H;@HryN29c@87@w_~{eI zn8sXef=L;tc^6imnyiY-*NPiCWCR%U&hN79(+L7e!dM2Kkb~ez1>G{}{3Zkg!ymvH zz$y7Nf|OcSy6!L-H3m$90XPpd))acjul*6L2Y#Y(mN4vWgrtQrWD)!dtR4(Veb868 z-~=Hz!NkAo_zcVtX?uHCEJ_w#3^&6#y3k(z;tjwO0*7h|d?zsH07Z)cg5kncNX~Qv z7+4Y)Wfc)}nCvr}()XJ0_VOd(4EzF)W=M;L>G!bw$(5DIO8B!!FTS1sT|Vl}N>PsC z{++~A8<|^<{!L5e`Az7F_Idg0o^0h=hEbt8`bAWdo}SUv@fC@6lvfX_uej22;hP^5 z7P9Vvjb$ViyCu%@Q?eAasmJmvWm2}H3n>Wwl-n=dBvTz)iT8T4ok?d;CInI9qed$; zETPiYQk8!wL#6M9Wl&$e`ldI#gp#b>_TTlL&-*KbJcDlx3{-Eh&zcr4&y}{f$CZ=k zNInZ#=265Rx?TBj!UUdA+8R+pQZ~00b*!YfJSwRt>3N^@c}&B2tw+XG%iv+X_Sg-? z%7Qc27D7&8$|;2A(kJ{uj`w9c>t)0sw`x0Px$QrNW&T`3x4ki*PMJ8H)aR`*3)_p3tDHL%(A7JkRtBt6S|)%4{v!4{$UL61>umiGX!s6Y~0)^Ce_)W|8N+I#-G{B4hc zNe(Hg4DC=uu19V&3SozBL*xsk0UG^ z_6;-d4cRJuHTtUq{72cNYA^mYmY+JtOkDqcx7q;s&qF7a#{gY*%SL>=Q{1sHo>PXH zid>89T5qDjrc01yMYjKi2+)o8T1bb9UigeDGjj z?nC6=jfc-oGRsq)=X<~+|K2^&lz7?w zc_IKQ zw!nPcWK&x~H+S8i$S|Q)4lH4hQfznU63uohXNw!+YlSt0iv!e&k4n96=4sUWezACX z%a@D2X_#cpFDT+|^zl2_;;Aegg3Ndwj`uO_`yRo8Dr-cXkeR7wV$|`P)vJ5LDi%m>Eq8={ur%9shqQv zsf$kD%~wp=+IM)QqGuKAC$8kJD4*25qZ}N1lwg4Dp7yPNndU}$*(i(f+B~$E7U5dF zODLCP`LQ!LHzMOmwY>GNzQu=6t3NrdFD*K{r$58-6OEAhcBqmS7@VQEF12r_`p9*9 zW-02u5CNO^p#A94l6uxGzF*jvbmpoT=>|(%wB@c=mw$KD+4dUlXc@^~zLOrs^c)=+ zSMKe0f{Yhl!zz%wAs~Dpf_1+e@r=@=xp~1Ju6p^GTUea)n9`ol&N{ofTSl6n+hm~} zb_TAUwEq*uV$Xl1y>oh2xM=r$SA<>d{N#N}G2J*vg4{AH0893sso{;IQq|cV{N`G8 z+u|#wi??p68D}sAv;_5pncdT{)5Ys86gv?tH$wc5`WLVk@&!o{Hs-;T5x9ilGB_AT z;awKSxW&U9+XvpXNalAvk?}jE*2J*WdF#4cI$h;^rtynnV-4|pfhU?O+_vLX+Y_sU zzP}Aq7Yj;--V>3_+dSw4M*9CIbZ=uh zTDH&4^uWctR;p4rs;|appd|Y1VCub+JYSFBTD772XnH$2Hk2z-HW|eote2Y{(a(q{ z8$aFKvUhf7Uoxl&qN?Vi;Ofy*L3G4+-Tyvx{aV!-nX2oC+VQd)YCL_t?WMrOb>G&b z-^YkiZ^-HSd5qb@xe_wz;V#k1iuYAV; zTGqYRb5Zu2Men>ASCBWsdwGjQUyJs=Rp~Q?N*_p)B^xK|Qp{|RxWX|G zT-%AR)GP0txR_HA*v9h2WJB1!lCy42K7s#|5pnLY_kxt3&j&lq`qJ-l65-Xy#GSny z`p*hs$6XighJJC?zf~fXWnGv?6`n_iOv*QC5&dCZ9%-S>A6O%!(k`EL@uSv?{qg5m zPaA0(R&tMc-*S9;F=$;!Y-0Qu*KB1%m00AP4bAVbh47okHElw0E3md>_OeUvr2Y=e zh|TCe%@)*MDNp*~AjsV!(L{VKXy`({ydRMBba(MU5M?tiIqG@6FLwq`nMJ?k6WD61&#T=iTkas}PNxTVs~fGeUGm~ zufwz0qZUW(%D5;o=5h>N?Yv%^n&fV8iS!PHc%x}~#5{24o4PK?i5Z~PY z8Q8}Y2HHC;Q9EI>oS3ztpUb$CnZvoysnaW|wIpeQVONK%dV+awq-*RF7LQvM=VzWh zBXU1O@AfrRrG}xWSx9;1BYD0eQs3`imDJh_Vt=w4H|skx)Ur}-;<^stuMgct4$8Lu zu{K6hUR>&m!u!;^z!D+NS>}<~SUDc0aSTrL@J?`O(Aca?A>lHUvf$Yx@zPG4T|$|+V}bP{;; zMf<|yIE5_kZ;EuLfQ|Y>ZCSa`$+aqpQxR6wzEg47o7uVvL_1NRu`V)eY2>0r!~#-L z-iegtm$+N878Ea@7jCo<>po2Sd7Qg{@_gOMB1i3RXteArHdKf*F~amD_sUTee=EZT zsfCx32JYIYRd(}%pyqdK`Pqs5OedwKdmXyME#5j)3=z+Y>)md|>h4uf6$?L#*H_YN z@1|57r_vHN58b)#*yga=Uz4ou#T(w|R6!li(HlAbHn#EuoqiTJXQTbKF$xa6T8e@5 z(;m$L5p_KHBOk_SuFFVA82WtBt0IIbE9;59voR*60;#ya>n4nt#!a4jB>CbpThqm;`i;&W^2>1&?`4NP8BIlkTRoVG z6m4UU@3>l;XWfdWgtlejo8EA*e=}B-B85}k^D==}VnSI6@?utf_EbsQw`6Rz)#}|>89Uvjb3K)3S@fn;={`woBrYcvDmMt;&?9waht<#O-`?)D*1j#{-$4!&jJwHm}$dzeY6`3(1W2tpKB=1th#A;86rO7u9b)L8HB z6p_@KAG%mgB9nNYsTKIb_n}`67cWcb^X;$yhDn?*DzCzx+} zF`B0-6S25<>9)M=2~wbXF<&t~WA^Do>Wk{lSOtc(nWoX(TlX@AGc#>U)Z!9n-M8+Q z%PVpAJ=nZ^g}XNUh-s}`kJawo%pZoO}tFYu~s-_xtv3*YfT#e`GVgCfWPp zHR`5C`Wm`Re*zZmssd*2`ZGmq4t34WAN*wX>-E%(#W-y{f8bbC7IR4SC*JKXI&Rz^ zt1?qN{`7DJr_AQ^Kg>DKvyd?GLbe`r`mph(%8-flF7UXj77*`5VWrPuQ7)YEcqt(! zo_Eg$jje7b_Lyhpj?FXX|I&PzkSlJ8n~m>%n)-{0Fp{az`xUlR8%s3%D@kky4Hz5F zd42dK?#k-&bnFAys2|s(QMRNwRt(8-*D1~q#w2dQvOs8c6H_eXoflBOF*zbOab@Il z<1f1=e=E4WQf8^aIX=MW3c@l&5Q-G#*d!Y+l9Z-RIsdeH0Z!b6FtW`n+BdFUahD`o?ov3KlODWRmU}U+iT8(77 z^x;>29Ky8TufisRYz!KaZjS{r8@c&uakNJQS)%PcROPs8l{5Gkvb0bJIHb(={@4yW zRP%&Bk00TTRDU*`%eD?46TdG-dHX9WaltWyT^l?Q-*3;*l@5%)M0f+_uin??+fOs= zP9G@q;Y{?^P#NYQ-3a+|q=a-!wBudsknEH)+dSIZZW6t~zRi;yseLN(ooDoPUKLk9 zkg$oOh)EUMvY2#k892JM6ZEX^%w06F-Bve!DE^kd)!sxO)OS~bdPbS_C)TP2Q%eFP ztzs%_kMZa#V*7T>Wb5~*3NIYWpEUs1FGegqyxZ8QK7g@8UQoP1K6SVI4;P0Q)}Lla z8-6tF)b;x$w!SAW&Kbu{r1jy03w77}{X12TIML+Ed3rg88XoUw86NSgJ#waraBq6E z!@7r^daQ79vN7Rahqkcd;yW6gpT2Y0I5>H!vUO^?&zmdn4Cc;=UEpIFQranWfNrZ# z-noJ)pftHCAByp>>V| z9q8lp!1+Yr_3FzNEJ}ZD6?s-cTMs5U^wRTmLtA2dhvoCJpIr0Ao&qn0?{MD1vOI|{ z(9@2x=$5!MG|Ji77FShNxW@i&p@H+pX6n!e*|CzopRK+>> z-nT%jL#mY6aoC;zoGSTKMdzd3tn&_g+bjK-)tz&9qbu79>gH(Eg|QqTiPY=-iq0u8 zQ%LA2&9@Y8W5c2@ZjZA3i06L&_Hk>#_}%O!)tkGo-kRI**>f}4;^Q}8CKL(}#(v_5 z{h`Upy*=R+na;QJ9L5#psuA%(6?M7HOcOBUnE7J2Jtnn&7`dyL#+&|(*{|lVgztqY zuJ4#bBgL7XCVRqt_mT~V$d&vZtDi@zYz-H`cnRIcSKG?bqLj!GQ*>O-wA6+rPD)$P z8m+)IB{Vjcu5H1nk@6A|Oip)f$|X}J!mD$)?jbgo>u%1~oYSr66i|?LoQ=&{ ze(oBhH)Eb;x4a+$KS^5#~X&fh0z zrtxnRV!u5aIqY#_`C;0`&-q$Y@d$agmctf#>)i9VXBRISW5r9ZE5{wzQ6f%za3vaZ zP4|hPnlKTXh3ObBqmiAz91;}~31ob(_aE6XzqM%}{9%l7Y8vcA4tW(CqyO3*nck{) zDj5nc9p$g>4CE4)+g69Y88lGxcwZ=dtVL713kVLWVsw=ER7be1_B6f~vy};-rAbUE z&1h*KOFRRI)5zVz^FD*3X8J1+rEFzs8J0^D4|AV0lf~PpEKn9c$^V2CY{S9gF&eK! zss1dLn0U0wHrxdXAbL25J5KxW6o3dW`DM!sC zhz8iGucdLGfME^BH{C_~uFh7z-5EqH4Z8`tuU#fD)rn?6SSJ7g-QdkKz7Ar1`DMRFVXDe|ZcqJNoy) zaaj#oZ(uJma&$v!V*i-^0%kj=KX$*ZwUvt-T7Bgxv;82hB&cES>4HisG`S~@v9?+E zY|=y$C8)F{KlbVrR@N}lcb5$ysz#@7%lypoIOn15%dOvAqj%a3eE1M8 z_3Ry*Eq_K<4u04s(=LF^N-XCXnNv$Lu1O!{$rm?h|4P31x*)k`02cz9VvK&gfwqIM zDevaRgeg(MM^Zyzg35HcX?9`QYAip~<0o?+NWUH{O++4NFBPZNWbtJTbitw=eZ}LJ za?*Rh66A92s`i>#xhpgOc#&FTd3>enH`1yUxBSUPF7sVC&)fyX&dS{?THk3m&p=eZ ze=wmiPgtYrVqB^n5t+5Td*EyRsmC`Y;{)hlde4ia$Ku1gru2dYuRnkI9F31!Oub>p z&M@&>Lm74YW^zuG##0}6ewf&5C1-XpD6EIa`jdeGA$?Foo}O*&*)VUcQ3VTpI?$uu zl0y?EP5w@bFJ%@f74egusGw;)ZX_8>S+>HX`qhzImXluN@jLu@ob`g%*zr+m9qY6P z>2c#4YadULXLeJalKaermhPSlxP#9Z7xog8YYZ-uI|hB3+9;~nRVAcXNMD3xRT|=I zho8J0JtbncyrINZdr7BPMpQ2?={32kp3rS?l&lz;E%G*st^o4|ce}%?m-0Wh%KFRF zJoxMW=VgK$WvLarL?S%gQ27im?4hQueP@@pn61^&j?pr2LOj06>>>mlm` z)%hbqVID*By(`&kKO$<5pX{~2CvUw|@o}3}_5!9(YM=nil9PUIhV^u^u>5+mNIenp zz~ahZS(bS7@SsnUSCID}G_=1)~0A0rCNa-gT8iYTX zQm%)rvLq)nDl@3p#R_J6k?r+7L)(aI6?%X)Z812zWn1PmmOpZLca8s z7oI&Bh0GgKm_X{Eczt+qMsGU&o#?;Emxpk!CCTqKr3DtRouRB|X6&rcpG>sRtERi7 zNWeOS*UFIiA9W1Khe*o^^?>z{L6y+2*8%UaU*KK8sb6(f(XZ;R5{i5&xGb;cb;#N- zTB<|IFg#;eMt4~jf#Yc0t77su+WOG|C`fTeZ}zZo$HwiH@v8%R{Y7vMW}JX|CYx`A zMH$-!>2n98LhO!XNfMq)K+=v*`HVS3O|z1I$qTyuUUTnzpn_D{!5P80)zfvBzEA`P6LxI z=f;b)=p~4Of03NSa`22x+_F|t0HmaMw6$md=-Pjvia`EZs|HS%oe_G~8Lz7Q!K>Eo z?s7w!&#~)CG@nyW?%TOrrHN!f`rbQehNmp!W(2nU(zQ-~v6RJJKZCCmZ0V|d-c!*nm z=acor>?JOwVe-0h$j+ayA~*I@to|G#wB1ECQE0o_|R67DXF zsZOa=HA7rK%l7tEx6PaKyTg5T_~h%FU;XV)BwlW>DBTSlnNqDKpu_g(B_#E?{$ASuP&zysIYO~12`FD?3= zZE$uqnV(btyUDsoYvP2Agvz4c*B)b8MY%lOjWtyeI4vOWLOuzQ1q^H;dv+yBR*xJ6l$G;7$5DA*?6DlDxvcOSOe{}F6nmhV{K!80^AUxNdqte+`PBTB-#e0^UQr%9 z7T9r32=*x4IRC{NDE!#LJ#`~D8%YZ}U|6O;H!>~q!2Y>xrnZK{Ut?82ZwM{^`X}FF zzNAhY{-|HOi;D>_&HVpq?YrZe2-bFks93>{4Wrmaj0lQ=5R@jOqM{--2uc-DTBIZk zqKG0OARveYR77b}DWN7PA|NFc0UTh*^Ve838wK?O}bq>|CqtxF_<5G@wVDhxCd ze;vN%)ORBXeZVz|$rV|BEf5}G!!pOuUjGf{Vi^_Et9{JkYRiN350CE5GYtN*q#}{j zm4@HjNV5GJy!UC$gw67Ao6rBnxSdr;tsUY$U7v9=^--uyzH@}%@HbTNyZnIas+OsD zmD$L@cZ#1cdj=DHM~q{0Fl_%=ZBDU)Kcf%bQz?%=WNhx2_#!UC(8$P73cg%ghlMq&^jvw&bqv1@pH*&Kor7XXZKugz+CndNOy*>Ca;n z>d(y!6n=B$9AZbep+4>3II#_BT(MnI@ys|dIEcA3`PM!%_=P>`r}$5|Hm9K+pgS@D z$P&yN{jtNV)7zH6`)`l0zLz*KylVa55)zidDUjfgS@yP*QoQbpLd}-Y&)>LyaDOww z-VP4>eJh4L6>LAFuuOMxVn6hU-*@H!qOo~DRJ&%5zd@M{-`XhA*Vg*{9`w$U%HFyo z<#YVdoo@D0@ioJrb_H$rTL9N4;~Ob(Y<2Ma-_LMg4co_*yubbZr)@{_^_4%AD_ee=eOC+n&T6><9og6+dKk_TGsphlwz&=_oWs#kQg*IKHd_A9JuCy|85ni~ zXQ8V7r=i#$*tN;VM1FbOBYmKX=PE%8C-03~=b|6{N-S86Lxcb~IxkZ8)ULM!a#bq% z!JtC!gta}{+pXrUB>J-_p1=CkNr*nPxRrF_RA>#q=K}pT|8nup1Dx6dvig|bG155d z<_3^A;Rw7l#uQ}L@yqQ{#`^XuFXm+QTxd5q$`2`hGZGx&Q9l#Iq(Ds4Ero zGk4=m^wAa-cN4RqFJJgJv89f=Q`t82(#RY5mk%DlAR2BZb`4SP9e8OCd7aq+yM~9Q zh&9$X(=!A`PGnuTUT#fy=;q5eH)W+lP7}C*!Q#dn9;6fT`CrG8vPO-zkbG5T^P@X7 zn;g8F$=M8HLvAR*O1mp}PM1=T1ORsEMW06|3>EA@(9Z9>{rq)B=hM#DcQ`TO0MId` zcb%qD-vAd=hg%AvC4CROBIa>gt8eq1rrAjgG&sA~-`;O<#Wk#mx#t`ve3`EU!!Ct* z;j_=vEP`ADlyy4!R*n~(;Zgm-n6ucetOg+q*kuKeLTjJp3Am4(DPX4}`{Fkq$meXv$N4)nmFgM1) zCQ9n6>sevjJ+WpO%ub@uHO8d-lb2|@fE&=7O!9dRkh)i+U2iCJSK;?5DXko*u85RM zH43G&Z{6y<5Cq;`EyE{K>Aga_(>DjPR^#BvwHx)e`i%Q0lbEL~EpZi#La)B-YW7*9 zM}KVfv!m2!%^M7|&^D2r#@yo}!Vb`-Geaqq6%jQ$jI~Hlp4D)>Cb(&6Fz` zg$x;kt?Mj?9qca5p9a)XfHjT9|B&6wX; z=v?6!T(GI&vxmuNq?u9HJ~NFxz4JLw7^^O~e|X4HJ%>qI+nMe7L^k`l!kP@`CEX>@ z;#7A%lqas)^Grdn!+GhzkrS`0No&rxEg9|Z8eLU-yXe&EMXwc)@ha<-@dML!bqNWR zP!hfF7(G(OV^_koV46KUP^aebVT6`$LfJ`;x4KUyAB_}2iqxu{?V0!@?`z$WITbF@ zk%=Sr%M+$*t>T-hBGQ&kJX++8KM56SSPWMlf_&O~Ig|8i#vWcbuDm*FeL{<`6`x!p zvp(T6i@kb#%U2lp5RTe46bV+zKtl{+fh4X{{11r!Os8MKoed88a&zBN1ftRQ!iGRW z^3koa$#Iis%0x^1g|r|Z5qwZWzD#FrKScmRrrE9THSEt ze6Mho6}a5xMLoV3+bsn$YDp)yNClqr_QDq{4+>Z1yqauzuBP^ZAEp+*JyQHk0{JWw zaiUVI96W8&sd~wG+_vB8sBIX8<9v%i2?S!rlf;EKSVr)d^VPr0nJ$B1R)%I}Wj%#} zVZbLYYwbigL|T5DENZy*(C=Ic;Clg-uI_nak?2f@iZpAd6( z`=*I-_s=rsjH%5P7<_O8XN5<|G`a`ltt7_^s`z!;GCeumGlk6eT9XsM65a_af_VOt zY)p!=xc+IvJ06fV5v{Ie(?CWOkIZj2CQ=Wqn0u<^&CHQ@YjCLTlHrReC_y{EFG0TH z-j`(anoXJF4E~Ycoq$iLZ-I*o5J+paq|SMPak(jFAZ24{F*azL^Knp*qg_~m8^N_o z_T~w4aWDL~cG(i3H(Nqqce9=DkOzW}0^_tZc)SNAK{q9FFMPLl4Y(}Sozyn)rP-YL&?uUBM%)I(CMCSyVX+bCwmglUPH;r{PzC&nUmH4n3XOGj z-8RVWFRM=?r0+PzugHWClWH>1&)CL3XYJeBRx~KGXJEI?mT@{;b31L_Qdrnbo9^6M zsmV_B6Mfpy(PlCrptc;?`#_NFW9XDXPPaO-il?c$^9+IPM|oFLQM=UPngt|2FFzXO zUP+R?&QJDvaFeRx&xL(E0_wFZX^rmB@dnZE>ovS~stN8yZhQCL_$D{FU{p4Q?CgMq zj_z;Cz^#n3K$cqlQZgiArqe_d_mt(!zQWEV&cXTZ-*^Y_?qZ?#@bpSYWvxu;6)R2< z$j+35Q@hjz!I9g(OP3io2+uKA1i$6m6lPnIU^)bvoUm2qixeBNh4Nm`3AGO4TqbY2|QKG|^yO zFkvI)a#e6KhtA{V^0_EoE#XrK{TJzrvkD{h1xnOqg)$er9roI`H#tJ+;_LYHmyvt) zdqB`mje7G4=ID0XtFdtd#PSR|1808%09(iDTZdmH3QZW7wXU8x_U3oWM z{b*gy4Ww^{H$XjKCBg#KUA5$M;QR9Tq ztcyTCAU<%}h zln=@4L;9a@Xf!%(^u=(vyG?hs3StyuoN+~4ukr>zS1%|dQtBQ=sZ|Q|JRrgxe!m2O zcM3Z3==2`0=)$Afw6o9@OG5dmy!}nxx}k2#DT{Yhr$+N6!5Y%KR$2Ytov9KC?QnqO zq~%=0wDg?;iBA@{l1~ctj-Oz;Yh(##AX7GVVGrgaiwD>MlT9afAsd-A+{Iy%E#+f< z<3?jmaQ=5Mci|pR=BE>^(Yy5l6a?D5llf;5JoxYN@jqRH{(Uk4tC0~hPgP`3{6!gK z0)8D_yzocUxP&L@-}%P#aImm9J^38dSd%lD0XOLs6CkGW2Yi+1Pg&)I$pO~Vg4N*=x9BBT|aYWL!X6}q*pm0Q> zbyzvQ)BV>GC$9hX6Zsgb>l_&YkmbX=lJER`I&#_6T7b&?dS18b?HHy_HaK&bE#2mD zO?uCP9J`5RfijzxUXq^7_e>}rjI9%JhgnTJlZPgmvx89kkj()6QD7=)qFrkx_{-DT zZ1DY0mOFvv15Qn=tLD+z@YmA)LU}rts@p4k#2=!i)A9r!-2uX3%2P2g?{uQKAK07S z%*!`A*-R#;zZ!0FZwK%yvbj&*;eZ^wwfn|>t$K3zpqFjl#KwTB-2^`iX}ah09cqH0 zNV1&zqyzd*=|Uv#HyBg#(NHcj&yEfz#~QTW?Ey#}HA~HSWK>MK%S3h0H$b}Z3}ouV zUg36M)PctEWx|dH-Q>{e4peanIeyz+E%*o%t9$=pazoEgg8y}0zw0M?I*Gj3nohv~3ZA}N%H3eZe)SQxE!?rbxui!67imZPUDjppdqZ$?o?QPsr|eQy=U=vh8tZ=c_l8z(n&6y+n2oICflUT zVeikjCPy(`kIP;NNLi1g`zW#iUe|hOQkUt@q4lqeci1g=aV6LH^R<;aN$moS-PfJ> zeca&fJW8YKLh+T^b_3d+0DybV>I2CxB7B-Rbgd)O!r+B+=c_KP_h-%LB_nHB*2oat zzF9}+`WYnDb*;WfTHE$mk8-=LPOzUWN1?j_+)Kk5=2ND_rqLygJO&CCExc_3@q+c0c*RpedFUKeGP-!{3_ymPHqB!qXp*KTX2{!K7@?++<;#IklKiA`FALLl_ct^a%N|Nc@MOX9XyK>4ep z$CnvwNr5cR%ZVDVC>!o%_$a5D|!tb1HZhgPv73FXh%@nQ|YVl%n{@ z9X1f>CG%bc6Qpa0K3{DmuPYG**+bMT-(fOJ{E!cCAsqjP#6m>gqu5;a3f0DC>l&Pi zDL4TAyntg{6Qw@6j;>!(FWFmw&%mh2=!!pPhtCNjyEGKQHF&HE{|9JSSMl`#&?=)i zVPc?#6&e`4mZK{o6w84T7oGYkakM7xGQq+wUtqY!X*xhfS4=7L^2+JZz(qlL*REDP z`>q=$f(FQr;>&-q(1uq^kieswV-AY%b5YeY$a+XV)_S9PjiR7WGXe8CPsoBC2`4py+47 z?4THi4M9l^$2-_34;}1GRjuhj1}yvNGjzs-d*A&2543=SyjT`q)?(x_l^=;YF*SU@ zi=;zv7WK?(rN3Mq+x{a>RIzjds@Bnr{xvG4#rGMiBfu$Q&}KHq{u*7XB`|EjH%8zz zrY>m;%75m$VJ6U-hjzT>&Rv%51Pucf`f7HDm_~6pO{Cl`-~t{%=53^;>%qTS} zQK2I`+7~K*xAr9#d{7y{O;6WV_xGDL_0zX)?=5kUwJ^90M;|`QxP6U!mn0-Vn57N* z>UC2qxAPkO*cP`K?{FJdDSJA*)emm32T=W7vupy?v=RVu%ShxhqN{%Uc!hyrDGcE! z8-*3}&FnOco80b*BG`)}yaf-b1IRvMMBbuv0gL9p|AJfoVYCXSCB$E*^vJtW#yB^V zH=N{as~OTg1U`!nw9BrX5k45s;5p?_5sy+jF^?A%eHx|(F;d~B6V+uiG+6-8g~pjA z_xsxZ-AtOpuC`<6a^3+gehd05#{Yo3u+9j8d*J|fW*|RT-=K@N?7UbZbD2Zaf$!UE zy9-_`mdmxe|I8IR5HiRMrkiACJ-AF^D&CG5U*g&s8HnQ|JCs)np19e={tio_M8y)I znUPu}*3ZJN41C~e?`w1v@GF2OHwWy{Kaf3ftP?PS6XpVw;Ja5yWvQPM4C94;iA|K+ zVkE3ez^Ngfk}>`y0I)_N zoG(wTA+4&P)4UcI`y}6eX~V?N{a!+I_)F|!KR+j$K3sr5VuG<_xF~ZD7m$xYCX}9R zitp?9wLm?;ZsIk4g<+`akKzSIqTJ&zXNp}Ih`fzl095~f@cDlNKEVIKi2nqLNmvKo zRew*6Lf-sbjpEA?i9I##q!R}W3W_CX5N9q0s zZW$pHJ%jm@YmO4~(LDb7 zrmj`9BM|oh2fxwcMaR5lDOb7D#~Ip-=H8YuB~BE78*%nSTFqeF9&n1mq4k$Wg7UaC zg>{~u8Mx)|;RlPm@yFL;WH1ELoH}kXKB8E?c2HpF-om?%Hm=#l6!@J=)WR{zB_$Pu z2P%0u=BnQ0fq@?u@xMN9DqbZ*^P#C>)gDs1?*)czgGOc>l$lu=QN+d{o+N9sM}LIV z9~ZSp+V`;cPr0k%46VD9MYE9+%fJaQzTWkQ@*kO$RZP=qsMW0{>X&p&&+u+Fes|Rh zOCx%f*iB$BLO0qwSpvV&+$IMl>mCYbcNMuR!WvpLybRKNtluq2P#RmJb9%Dt@n3+Z zvpo5ihd=5kOwmW8i#8poWO*j)(WRf0lE^ze?6?4rE18pt*U_xerTtr0bl7a>{AooX4|CYHu>!8&;DBKQ zl$e2^vdPBzKl8BS@q>mlW{T&A^SMI7pE2%Ihg^1vknX{u1+bc(>Czur-h#H@z%C`i za%jhH>%=b;O0rx zY|2Q#mf6N8PQbh6KNQ`d)LwkHC6lA^Gr1w$51OjHmxL<;^5;9_y8EV%dEU15+4f=X z#8CM0CWZki@VW2XsUw+;aT?l_JVpQ67Ih8zBm^y7!l-_Magq}&{?sNc?rag-M~9Aul;I z-b+T~NC}%}N_pA*+$pJ$M$5*q)+1BrrF@jA@&GazeE zqhGSNZSauxSu_nlC2?GQs15QTV@;-MFKq-mq^xi@+ z#NZe=iCxqeM1{6=H&^l4fWh0;v)~g;m{JLT9fOd>@$WchP@oq4Sg`Cf$ctzIs+379 z`7E8Ra9^gqEYL6e276WgN6$&_fu_x+d4iGx?1KS0B(Qr0lb&B@q#{MHLSe%OV^&(`)4T2K=CEM04B;|SYX?BfM2;KF5UXSI^B)#g(3n!x@K6fXX! z#1%nlSS)|(DR{rk{2O1W&=69bUBwWo*4G$t0A*hjVl>%4V{&SzSx3)WsN%tc!y;nS z0)2slF($gcpRXiBWeeZV2gVtC37wkhLwob1N9V|4nZSp^8gGgJmGelza*8A8;?1^D zx}HyqfMqD-kT4%DDvAfv5wpr?NW-7soVbl02kvhDgnHE!b=-F>WR~!o=h7yhJfTH; zNKG`<7)G^6zV0DWrZPEJfF|pH(1kH|tZ8RwxDdzsy8IXS$L9_?gI2y1Gy1|?3`<(A z-g7m{8J%r)$UL9WW->A5E$|r%rwx+2Anl~7u5yTL&T-Y|o>g@tRCr*kosu`jieE^3 zM0iaJwyQUdetuYcp~k3NPtQ(q4}aF(bbZ}fP;dE4Mr%X)&9UsSq8`eXaf03s3Y5U? z*!Inu=(9D+8S+!-2;ZKhbOzlNH>hj2C-e;#a`>0))HgCsHC9x?!cizG$ud`(4mUiN z3TLUmUf4%D;Kb?MlGn+29uspY_6MR(U(l4}4{Nvj*}*1jweTyW1`iEYc{4ft1-BR{ zKM1aL;!L9}zOy{|Roh`_sZW;#Jcym$1I>Dn0)#(304g8zD@#(5{x;r0@O8@>#p&#V zqw*;+xueFYhhAK09eJ_-|Ej5HBQ#3IccbSfl2VxU+3Ok~K zd!L)P=5$-y&$b^A-QM71e!(v*v%zX*t=Y-qx(-;Q&2h_<1@iI}-AfoJi`+?m>j)d( zx$GfH8v_OsUgGKBB1AqBK(|Vklx-|~pBs?}34i*unmy<$C`@jLIei7ozGT~(w)*+O zh2D-+-QJE|J>4S;yqGs>7)H)2!vX}j-=l%7NlK-CXEf2i2`;|37j3pfRl(pvQ17lLrB>K-dKCK^KJ@l; z87>WT@)pS$I1xZ+OeZ#B*#QdO+p4;g0czB@sSaD&lduU<)=JyUY{f?^bZoQm>#tYN zqC25x2}u{3m=$G_P|jk$=R??OrE>Ondi#7BOsy$!kSmmA_Hd})SXs8H!5b^qmNkO6 z(DS*86~_hE3x7zt51oSFrhneG>!LvX_JKw!i^NQzmb_?Xo3g@wVV>yZQp{#1i5;?L znvM^(aLciKdCcQRVg%yizdlPnoa`s=a-it>f{n&7Seb-E#-DuzKnd~D25AHS``=s* zka&6w_#ytQYvM~!q?rruehJ-6o;rEfBY|SM^|xJ+w#b|B7aY~$-WR<@3;UuOVq=LP zy;Wmb`G#EdELZXOjmF68b&@x~Xu%B{JKg`>!`CkG_!P4up}9xuAtWxX*hwH$IMOpO zz)goVGSrm;C;jr^{&o9OUlZaQ1gaThK-FGT)C-st*tesNMG$}Z!|w}D+BMfHJ#x4_YgR8@IC5+23Ad0S zl|13s-qv1?&yncPL5amOivYFcO95Yv4$DDvMU`uiYb&6jvA*~cJV>V>C&H_fYN9)$Euxl zvEg(ZA49m{uJ-YPYJ1B){F%FZmzQ9HS%7BZ#3X$OydVu9CpGU#-ynJ_Qrt>iJ4MH# z1G`P+5ABThKPqa2J*Qkd(Cz*k^B(aZoDCjG9vIeO#P^Tac0bSx$vazn3$%_RAJ|Wg zbi6L#&TfJwhrQNAvS`nd+Z2NZ{k_zkbif;hs`bDMC(-JM_Cy-Z5bs3_XZo*4u}e#}%&lPXk~Z+;XsA8%B)6j_$w%S!!cJVv$B z&43eS1BvRi4tTnqczs+oMP6XabKqm~$NT!$U#57-oDAT+>a`fUoEt zlJ7NCO#SF~s@>m)Cd|zZyxxTNe8h6OUjcB}45AJUHn<+Ox5sPkX7}7O==I|$BQ6Sf zxUg}^y}hXeqA9Sg$(EzEZAY_(p)HaAr*bh90@Kdq&070^S{mm9ugJ5cWVt&y?n}l^ z;6LS8Wh6_anp4otk%Em~)&+D|bpQyr<~=H=FgqIPzxR%*i4oDYG$Au*N~oF!^jw8sVDh^Pjk|DtvVM*Lb~OQ54%0wMxOXA;@ZK!0i#D8$5Mz)R)ruX|j`hmKEa35#|OQTKAw_3H9$ zAiN+ah%iG^bSvw2Xw#5Cw-Z{7I-!}0T0ug-uQYHEHS&)tZN zY7M@8xRdqwFrQCSfP{wy@|jX+Kweh~9+dps-kDYUWFWAs_7stc5ay1cTr?j|H7*5wnxX*jiX< zpl$X7>4WC36jQBoDp;}s_+)TQg2-oN_m;p*lpj;U>`Y;KQ#$fCD9=A7R!7hbH1gdh zj2W9k@ZaH|FU!p77<2T&sbQ(E_J1yo=UV!$AL-jti8Pr$NM%3pfH?e9PTQswWXeIS z(0*3qN+&;Gx!&0xjZ<%83dcU$j8o-IsWax%E1vX57Pz1!7F})@pr@lOHf*kwDK|0s z;A<;CxnT1Z%QY*bnm&FCj2TzILI3I}C$o-U7Db^t%gN|#2|XC!1Gri7!s?$dZbZyL zg2RlX-uoyKPtda48>$G7a(f{weGu`G)!sz;AP>tP_$+)@65)u>_MReUWeL?js(;N+ z?*Rk*Q;bjxosEo8hN-zhQU14*2rzbOi+Y7|S{|OW-3eV|K4NB|39Gcfce$F%!f#|e zWeqzO(yP^*N858FOt$dzvnm|WHIVv;AyacHi@?-}2IYZU3J{Whg`$?f;Y3!byW;U{ z-oAe?kp6>q`aih@{dY4z!*8Y{2d*lGFZ4h^wk#9Hlie`7*VtCrBY7bX5ojYZkBYk; z{TgmHq-0|IXs_jti9an|*|zS<|x6#DIO81wwovo<83@j4+=W(auUjjr4 z8@0PG~iYZhSYU-FhBq!mm9lG&K`s%0V+)BPwldiSZ_XwslB% z7Mpuh4@@B_FubRDJOKH|zj)^^ z|2e_s<~Z3GMSxuyKGg4T>*XG9YieoP{`@*C_`{X^0-;LVN*+1a(x6LF=OGu%H_O^? zNFP*p9u`~yjZCsiJn6sUuP1rLe;XurEvM*-U9tZry6j)z^1p|~KQU?lRjTGx5D(^f zShYJK<~@XGsuKG@upm)QJH>QVM5Au0ErkYE)4oGorZrVzTHLM5Kq z;dNJ2tcohwU#J6gR*zY+-ump9BkO*YVY@pTWw{A`)FV^Xq2jid&+q@<%L9v+#>r?+ zmm9p0*O;~L@C^?roxl&^G-mNWFRT5H5(XtM`Am0Dn?Km~%(fBdLh0ZW;eq_FXYS;^VEdr6 z;}c;0X?vetp^%`%uBdj9T8)Gbpkz_;R6@<@=@nEh#Uk0W4@`XYzXMJGU@IzUJ7cGcfCD@Th|kU-)T11Yf9b?Jz2$P z{iIx1TI3>K;?kgfzHyn(^z&qDNUs3izM=jqwtmB&C5cxTA$b8umLb^?g{4?ti5mqA zu`UsJZHHEp0|fS?3bVvgA|e@ce0!mqW8K1?PamKC_0JzsvJwxN4QlKmpS zF!hR^E4d-$yxW+;6(4pT^0sW*=jD|fT_(McJn{&JUapcUX9exz`Zd#D2Z`U=Vg9Xj zt*{B-Q+b6Z1U;uDXw{iuO@VGRg_;<-?P;%U+&}*K-ae)vADvlnk=e3h&WUyzst>b1 zIlE%B=K2HK@ST?^ziq3~^9^J|YCR}F_RI18m2OqA{Eg)4Lib{02_#?8>fZw7a;P+= z6S>{1e)h`gu6HF<$<;%W#q>?eXlqz#>=F+>8X9}Xt-9ikSQxkhG&=FClE2WkKz<}x zMr%(|IE)To_K`K_KQp^wWz^3DE6yW{r5KM*0;tneYV=#J3)u3beVi(qrFx47!K%IADeU3lw|p#Et##GPD6m3mTeq>D9N4jIId7Ah zK_cwe_P((2sUIcIdwO)YnZY{1q0kjGvzja5xs)Vlw8e8h9uu>amcL`wH}*q2Fw+>2*+O@b|j zzD+?Jhf4%75JJ5Z9%n@9QFvuPoVEXgSWQ9RuU9t@TE4Wn(Gq}hl$oS7Ss%Y{kQ|k? zMmogBE6g>Kow>PTo&;j?MOxWMo{_vMtt?fJ%0E|=N|Aku8@S&%bChGDmb5D8TU}(O zBVi`BwG{?Yy({GXH>yDXow**Uh~6;G<%yb1vm)6lM=bZ7O=B!4?6FF1Sh8bo`a&HT zgk+@X`?wJ0?&R8&xSiXM>W;2UF=iZJB!i!2u3NF{-^hcMhdWTgmbFahOSMa{P7g^M zcFmkY55`V#@GFlrfJw!*J8+OU>8GpPx|o6C#%OZ!v$A?Z0PMf(RZD8B+8X2YaTA$s zGq=4pweNxmk&Fzlg8N`kfmVM?bH|n*5&Dd9WQC(k6@g3tktH)0B>PFM+RlCd9jW^t zf=PN+9KAQvi~NL-wxgg|*an@HwU3~WGeVIpS+p{4JTr+cqC1FSbbk`X>Fd~})VE-X zLg_w@%29IbOxSbV^>?}*ch%`q6-2BB= zue`zz23}hq$hdYNBUrcSfgGM`v2_PP@i!_yZVyTqoYVMYa9kiGZ;H%ag3vUgv{*}| zI2igy(p0@CwJmI@sp^l|YbFi4GuuUW3ChQ}ZtlaZm^2_*mkE)`Te}wBwVU0i1pR_6 zMKU$q(<@BWlqwoHX1%9ZXlt$yw5Ur|KDQ=mHea|xi#2m&J(-S9q|co?MnvC@^w-)H z!sf|b%pF*^e!*^Z!@%+KL}i;bn^(h95`7y8%Xc_`o$S!=9PhJ3{#chQXqyefHW_uD z%X)tV<500jb$a{$64id0(lG0vA&_l&{*3x2{i2V^>SmV0q?Aw(bxY^Hj9oN(4CVJ= z)5F}j{toS*)5kWQERxbP+si9YKfkP8@pYHk?!^8ZYqUaaLNHhQ8`PWjJG>lIny)(p4z?}KUTu@UhV)0K`s~Al2vU-V6#a0^abG9tkIN`GV>PC85~QK8MxKl8 zr}dQgV#hF-r540#OcN8Nm)uC-R`~orW@W>?pf%5Dy@gDc#nO^%DuvV>joD7#a+S=O z!AW1{@nJ}r?zv<;Li^s<`YuqkqQZXqpEO$(uJ!oZ@9;8D}BCNxIXJepl!fA z0_RfL!LKr0Tc>aXd-^D>tP{(TlP>Un5Gls_ngz z?dnD8R-wywR?PZ$D!du3rkp&x#KL7$x4UXRZ^5gp*1a}+OmmS-{eJPHV?MQA2#4*{ zAN?AweRjB*enSJdzh9;Fs_#HmCcF37Qh9^q@##}L#A2w(4>uL`j=jcSc&ctlv`FBY z;yOS~Vnb9&ilK)^ErwmtxjJ=2s0!g`$7dbA0V02`E2v`s#Tb7p<>$8grc>mF4j#7r z+lw7lw#MQDRq;o{dCjF|_LXlxChD}IPBiaF`Mn4?2|j#33v>6Cnf25TuZ`(nJZ97n zulv+Ah6tFrrxMqs-fjQMO@g1dmC|Aq1s`kt zi+DUWA~`kKJ`W8i5qd~sj?}B{+YdjWLjV4W0P~B+NaMb;i(kx;jakW%5F^}_#F3~U8P1(M z(C$1|_URCKpN&aJ7fFNvkN-ik3!00hwZnSzpCAwtwoCt?LXRI^T)tc;;j$lv83IvP zBM`0Q7phNIJ`fdGg@%qMX!bHIy~Dzxv3AGn7L>f!(rKFPOc$8gi|zfiv%5Ccn^D); z_}H)y*TJ*Xtpk5v@Fg(4)ZRNpf}ioY=fz0@(DEnG+}z!e#z8e5-_N|-8v1m#Kldrv z@nEfnd+Zp^4q1j1Eg!bda9}Ulp1eVg-77mX>SH{r&EZA{2Jdrfmw^qtI zgx(y6`*9VyKDqJPb_8Nxx}omzi{EC;B@uyJ4}W}qG@e^jXyLd??y~V{hh0cW$fK1$ z&>OBAQQ$d$E^Fx|kabtDYPe##{#`}N;se~t&*E`NwBsEO$o&8ltCr_xRbk=Ej5`xT z{~8}6y=FdQt9Fvq`nR3@wCpdxCSJBmBJq2GE%I}eTo~~MiBej#=Y)gFniDU>WEprg z_%I4@^_r2VDd4hmDCFx}reK_L6`?;8azEr3EgoG5-|klLD79JzJa(~+{&)z=ICQ%z4ygs zRHkQiI&)_$9&{1#OqUONd7sCYBDCkdy&(bhyg8P9qoz={v&te&6)(_d8OWl(jx|1> z9d0MLHLkOXnnmDd3uxxH?^-r~lgY+7;JwCQgpOUPMj&>~^{hUXxbqadQ{Cs#tQ~Q2 zaldjf@F{SQt&TY|sDLdQ9BJrUQ4&10O*SS>NUmZ_# zl~?@Ge?-wtI`ziz0z?Y_hD3<0(~a0Xiy+XGo1gFzS%B-}iOR?G7*(-H{G~hd3PL)0 z6-BP#y8!bG-3z>Id9nA9=5Mf`@!RxpVy#|EC94<*XrK3CSY`7 zxiA|v>oem13q^nNe@m~}pmLM}hOOHEj#0bYByN8!@J46{{%fZdqU(0%uT7G7A%LEY OFw{G%n{&eE&i??$mqO$K diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 25622951cd22ed69daa2ce7b720bcda253b5051f..c0f65d7f7cf36fff65ce2c47d26eaece81a22eb5 100644 GIT binary patch delta 5960 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 delta 4294 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 literal 23657 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 diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index 3e7f29d78c249e82872cf1ebc19c7675d8bb2337..48dbbbc1d465ea792c777302af927dcfa1fa0227 100644 GIT binary patch delta 9826 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 delta 10656 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 delta 15011 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 VEO2Jw=)a-@8jrPA%9Sj`{tr*AaO?m8 diff --git a/tgstation.dme b/tgstation.dme index 0a04b559eef..281a61551fe 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -33,6 +33,7 @@ #include "code\__DEFINES\pipe_construction.dm" #include "code\__DEFINES\preferences.dm" #include "code\__DEFINES\qdel.dm" +#include "code\__DEFINES\role_preferences.dm" #include "code\__DEFINES\say.dm" #include "code\__DEFINES\sight.dm" #include "code\__DEFINES\stat.dm" From 06cd5e0a93ea4333c9e9a4c7b9c7c1d81e6ad90d Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Wed, 7 Oct 2015 22:32:57 +0100 Subject: [PATCH 006/418] Fixes compile issue relating to the Royal Xeno PR. --- code/game/gamemodes/handofgod/structures.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/handofgod/structures.dm b/code/game/gamemodes/handofgod/structures.dm index 4d435b55098..37a68dedba9 100644 --- a/code/game/gamemodes/handofgod/structures.dm +++ b/code/game/gamemodes/handofgod/structures.dm @@ -344,7 +344,7 @@ else new /obj/item/stack/sheet/lessergem(get_turf(src)) - else if(isAI(L) || istype(L, /mob/living/carbon/alien/humanoid/queen)) + else if(isAI(L) || istype(L, /mob/living/carbon/alien/humanoid/royal/queen)) new /obj/item/stack/sheet/greatergem(get_turf(src)) else new /obj/item/stack/sheet/lessergem(get_turf(src)) From 8de921832d3f00f29a3421244f6ce3d88b4d388f Mon Sep 17 00:00:00 2001 From: Incoming Date: Thu, 8 Oct 2015 03:14:06 -0400 Subject: [PATCH 007/418] Modifies plastic flaps to play nice with the secret box technique. This code is ugly, but that's mostly because of how hidiously circumstantial plastic flaps are. Always remember to use windoors with plastic flaps, as ways to get under them are still plentiful, box or no box. --- code/game/machinery/computer/shuttle.dm | 5 +++++ .../structures/crates_lockers/closets/cardboardbox.dm | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/shuttle.dm b/code/game/machinery/computer/shuttle.dm index 2bb54ab86e3..532df0e4b13 100644 --- a/code/game/machinery/computer/shuttle.dm +++ b/code/game/machinery/computer/shuttle.dm @@ -91,6 +91,11 @@ if (istype(A, /obj/structure/stool/bed) && (B.buckled_mob || B.density))//if it's a bed/chair and is dense or someone is buckled, it will not pass return 0 + if (istype(A, /obj/structure/closet/cardboard)) + var/obj/structure/closet/cardboard/C = A + if(C.move_delay) + return 0 + else if(istype(A, /mob/living)) // You Shall Not Pass! var/mob/living/M = A if(M.buckled && istype(M.buckled, /obj/machinery/bot/mulebot)) // mulebot passenger gets a free pass. diff --git a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm index a7c46237d98..fbb9e44ee31 100644 --- a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm +++ b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm @@ -16,9 +16,11 @@ /obj/structure/closet/cardboard/relaymove(mob/user, direction) if(opened || move_delay || user.stat || user.stunned || user.weakened || user.paralysis || !isturf(loc) || !has_gravity(loc)) return - step(src, direction) move_delay = 1 - spawn(config.walk_speed) + if(step(src, direction)) + spawn(config.walk_speed) + move_delay = 0 + else move_delay = 0 /obj/structure/closet/cardboard/open() From 41220a62b20012c9ee4ef1acdd94261b2e39474a Mon Sep 17 00:00:00 2001 From: kingofkosmos Date: Thu, 8 Oct 2015 19:26:32 +0300 Subject: [PATCH 008/418] Revert spreadfire back to normal. --- code/modules/mob/living/carbon/human/human.dm | 9 ++------- code/modules/mob/living/living_defense.dm | 9 ++++++++- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index e451179e787..7a52ea7fbdb 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -260,18 +260,13 @@ popup.open() // called when something steps onto a human +// this could be made more general, but for now just handle mulebot /mob/living/carbon/human/Crossed(atom/movable/AM) var/obj/machinery/bot/mulebot/MB = AM if(istype(MB)) MB.RunOver(src) - var/mob/living/carbon/M = AM - if(M.fire_stacks > 0) //stand on top of a burning person when covered in flammable stuff, catch fire - spreadFire(AM) - return - - if(do_after(AM, 20, target = null)) //stand still for too long on top of a burning person, catch fire - spreadFire(AM) + spreadFire(AM) //Added a safety check in case you want to shock a human mob directly through electrocute_act. /mob/living/carbon/human/electrocute_act(shock_damage, obj/source, siemens_coeff = 1.0, safety = 0, override = 0) diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index a6068c2d973..7b220a4bef9 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -158,11 +158,18 @@ /mob/living/proc/spreadFire(mob/living/L) if(!istype(L)) return + var/L_old_on_fire = L.on_fire if(on_fire) //Only spread fire stacks if we're on fire - L.fire_stacks = fire_stacks + fire_stacks /= 2 + L.fire_stacks += fire_stacks L.IgniteMob() + if(L_old_on_fire) //Only ignite us and gain their stacks if they were onfire before we bumped them + L.fire_stacks /= 2 + fire_stacks += L.fire_stacks + IgniteMob() + //Mobs on Fire end From 95e3a14c688d9cc1bd7b8c51a53f267d0cbfbb2d Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Thu, 8 Oct 2015 21:45:13 -0500 Subject: [PATCH 009/418] Map loader --- code/modules/awaymissions/maploader/dmm_suite.dm | 2 +- code/modules/awaymissions/maploader/reader.dm | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/code/modules/awaymissions/maploader/dmm_suite.dm b/code/modules/awaymissions/maploader/dmm_suite.dm index aeda5e63ccf..71c9e6e788f 100644 --- a/code/modules/awaymissions/maploader/dmm_suite.dm +++ b/code/modules/awaymissions/maploader/dmm_suite.dm @@ -53,7 +53,7 @@ dmm_suite{ */ - verb/load_map(var/dmm_file as file, var/z_offset as num){ + verb/load_map(var/dmm_file as file, var/x_offset as num, var/y_offset as num, var/z_offset as num){ // dmm_file: A .dmm file to load (Required). // z_offset: A number representing the z-level on which to start loading the map (Optional). } diff --git a/code/modules/awaymissions/maploader/reader.dm b/code/modules/awaymissions/maploader/reader.dm index 1b0d6f0fc47..db3470e3c82 100644 --- a/code/modules/awaymissions/maploader/reader.dm +++ b/code/modules/awaymissions/maploader/reader.dm @@ -16,10 +16,15 @@ var/global/dmm_suite/preloader/_preloader = null * 2) Read the map line by line, parsing the result (using parse_grid) * */ -/dmm_suite/load_map(dmm_file as file, z_offset as num) +/dmm_suite/load_map(dmm_file as file, x_offset as num, y_offset as num, z_offset as num) if(!z_offset)//what z_level we are creating the map on z_offset = world.maxz+1 + if(!x_offset) + x_offset = 0 + + if(!y_offset) + y_offset = 0 var/quote = ascii2text(34) var/tfile = file2text(dmm_file)//the map file we're creating var/tfile_len = length(tfile) @@ -47,8 +52,8 @@ var/global/dmm_suite/preloader/_preloader = null //position of the currently processed square var/zcrd=-1 - var/ycrd=0 - var/xcrd=0 + var/ycrd=y_offset + var/xcrd=x_offset for(var/zpos=findtext(tfile,"\n(1,1,",lpos,0);zpos!=0;zpos=findtext(tfile,"\n(1,1,",zpos+1,0)) //in case there's several maps to load @@ -78,7 +83,7 @@ var/global/dmm_suite/preloader/_preloader = null for(var/mpos=1;mpos<=x_depth;mpos+=key_len) xcrd++ var/model_key = copytext(grid_line,mpos,mpos+key_len) - parse_grid(grid_models[model_key],xcrd,ycrd,zcrd+z_offset) + parse_grid(grid_models[model_key],xcrd+x_offset,ycrd+y_offset,zcrd+z_offset) //reached end of current map if(gpos+x_depth+1>z_depth) From b6ae6f6567bad64b9c427625573ab8f484cb7476 Mon Sep 17 00:00:00 2001 From: "Marc R. Uchniat" Date: Sun, 11 Oct 2015 15:54:03 -0700 Subject: [PATCH 010/418] re-enable tank suicide, but retain body and all objects --- code/game/objects/items/weapons/tanks/tanks.dm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/code/game/objects/items/weapons/tanks/tanks.dm b/code/game/objects/items/weapons/tanks/tanks.dm index 5e086bc46de..0184efd4811 100644 --- a/code/game/objects/items/weapons/tanks/tanks.dm +++ b/code/game/objects/items/weapons/tanks/tanks.dm @@ -21,8 +21,25 @@ var/volume = 70 /obj/item/weapon/tank/suicide_act(mob/user) + var/mob/living/carbon/human/H = user user.visible_message("[user] is putting the [src]'s valve to their lips! I don't think they're gonna stop!") playsound(loc, 'sound/effects/spray.ogg', 10, 1, -3) + if (H && !qdeleted(H)) + for(var/obj/item/W in (H.contents)) + H.unEquip(W) + if (H.client) + H.client.screen -= W + if (W) + W.loc = H.loc + W.dropped(H) + if(prob(50)) + step(W, pick(alldirs)) + H.hair_style = "Bald" + H.update_hair() + H.blood_max = 5 + gibs(H.loc, H.viruses, H.dna) + H.adjustBruteLoss(9001) //to make the body super-bloody + return (BRUTELOSS) /obj/item/weapon/tank/New() From 811a4ddd3f7afcc21be124b429ccd7f96e205d1d Mon Sep 17 00:00:00 2001 From: "Marc R. Uchniat" Date: Sun, 11 Oct 2015 16:46:13 -0700 Subject: [PATCH 011/418] clean up and simplify, thanks @remierichards --- code/game/objects/items/weapons/tanks/tanks.dm | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/code/game/objects/items/weapons/tanks/tanks.dm b/code/game/objects/items/weapons/tanks/tanks.dm index 0184efd4811..0a282d9f1dc 100644 --- a/code/game/objects/items/weapons/tanks/tanks.dm +++ b/code/game/objects/items/weapons/tanks/tanks.dm @@ -25,20 +25,16 @@ user.visible_message("[user] is putting the [src]'s valve to their lips! I don't think they're gonna stop!") playsound(loc, 'sound/effects/spray.ogg', 10, 1, -3) if (H && !qdeleted(H)) - for(var/obj/item/W in (H.contents)) + spawn(0) + for(var/obj/item/W in H) H.unEquip(W) - if (H.client) - H.client.screen -= W - if (W) - W.loc = H.loc - W.dropped(H) - if(prob(50)) - step(W, pick(alldirs)) + if(prob(50)) + step(W, pick(alldirs)) H.hair_style = "Bald" H.update_hair() H.blood_max = 5 gibs(H.loc, H.viruses, H.dna) - H.adjustBruteLoss(9001) //to make the body super-bloody + H.adjustBruteLoss(1000) //to make the body super-bloody return (BRUTELOSS) From d48396f2abe5f35a292a9903168e7f85785e374d Mon Sep 17 00:00:00 2001 From: "Marc R. Uchniat" Date: Sun, 11 Oct 2015 16:49:44 -0700 Subject: [PATCH 012/418] place for under spawn --- code/game/objects/items/weapons/tanks/tanks.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/weapons/tanks/tanks.dm b/code/game/objects/items/weapons/tanks/tanks.dm index 0a282d9f1dc..332ea1e1369 100644 --- a/code/game/objects/items/weapons/tanks/tanks.dm +++ b/code/game/objects/items/weapons/tanks/tanks.dm @@ -26,10 +26,10 @@ playsound(loc, 'sound/effects/spray.ogg', 10, 1, -3) if (H && !qdeleted(H)) spawn(0) - for(var/obj/item/W in H) - H.unEquip(W) - if(prob(50)) - step(W, pick(alldirs)) + for(var/obj/item/W in H) + H.unEquip(W) + if(prob(50)) + step(W, pick(alldirs)) H.hair_style = "Bald" H.update_hair() H.blood_max = 5 From 35d3aae16b38006db91caff0a416d2b7d3d60903 Mon Sep 17 00:00:00 2001 From: "Marc R. Uchniat" Date: Mon, 12 Oct 2015 15:00:26 -0700 Subject: [PATCH 013/418] took the spawn back out because @aranclanos said to --- code/game/objects/items/weapons/tanks/tanks.dm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/code/game/objects/items/weapons/tanks/tanks.dm b/code/game/objects/items/weapons/tanks/tanks.dm index 332ea1e1369..3434d2da31c 100644 --- a/code/game/objects/items/weapons/tanks/tanks.dm +++ b/code/game/objects/items/weapons/tanks/tanks.dm @@ -25,11 +25,10 @@ user.visible_message("[user] is putting the [src]'s valve to their lips! I don't think they're gonna stop!") playsound(loc, 'sound/effects/spray.ogg', 10, 1, -3) if (H && !qdeleted(H)) - spawn(0) - for(var/obj/item/W in H) - H.unEquip(W) - if(prob(50)) - step(W, pick(alldirs)) + for(var/obj/item/W in H) + H.unEquip(W) + if(prob(50)) + step(W, pick(alldirs)) H.hair_style = "Bald" H.update_hair() H.blood_max = 5 From 57fbf36306c67aec91ad78c734a7d72c606d667a Mon Sep 17 00:00:00 2001 From: bgobandit Date: Thu, 15 Oct 2015 21:43:14 -0400 Subject: [PATCH 014/418] Hopefully fixes the heads of staff names appearing multiple times bug --- code/game/gamemodes/game_mode.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index ec1b2cb906b..c1da06494f6 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -400,7 +400,7 @@ var/list/heads = list() for(var/mob/living/carbon/human/player in mob_list) if(player.stat!=2 && player.mind && (player.mind.assigned_role in command_positions)) - heads += player.mind + heads |= player.mind return heads @@ -411,7 +411,7 @@ var/list/heads = list() for(var/mob/player in mob_list) if(player.mind && (player.mind.assigned_role in command_positions)) - heads += player.mind + heads |= player.mind return heads ////////////////////////// From a7339247822b525a3510836cf959439b032473fe Mon Sep 17 00:00:00 2001 From: kingofkosmos Date: Fri, 16 Oct 2015 21:05:37 +0300 Subject: [PATCH 015/418] Makes fire screen alert resist when you click on it + fixes few typos. --- code/_onclick/hud/alert.dm | 22 +++++++++++++--------- code/modules/mob/living/living_defense.dm | 2 +- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm index 36b149ae5d2..5c7d8a6dd3d 100644 --- a/code/_onclick/hud/alert.dm +++ b/code/_onclick/hud/alert.dm @@ -185,14 +185,21 @@ If you're feeling frisky, click yourself in help intent to pull the object out." /obj/screen/alert/weightless name = "Weightless" desc = "Gravity has ceased affecting you, and you're floating around aimlessly. You'll need something large and heavy, like a \ -wall or lattice strucure, to push yourself off of if you want to move. A jetpack would enable free range of motion. A pair of \ -magboots would let you walk around normally on the floor. Barring those, you can throw things, use a fire extuingisher, \ +wall or lattice structure, to push yourself off of if you want to move. A jetpack would enable free range of motion. A pair of \ +magboots would let you walk around normally on the floor. Barring those, you can throw things, use a fire extinguisher, \ or shoot a gun to move around via Newton's 3rd Law of motion." icon_state = "weightless" /obj/screen/alert/fire name = "On Fire" desc = "You're on fire. Stop, drop and roll to put the fire out or move to a vacuum area." + icon_state = "fire" + +/obj/screen/alert/fire/Click() + if(isliving(usr)) + var/mob/living/L = usr + return L.resist() + //ALIENS @@ -203,7 +210,7 @@ or shoot a gun to move around via Newton's 3rd Law of motion." /obj/screen/alert/alien_fire // This alert is temporarily gonna be thrown for all hot air but one day it will be used for literally being on fire - name = "Burning" + name = "Too Hot" desc = "It's too hot! Flee to space or at least away from the flames. Standing on weeds will heal you up." icon_state = "alien_fire" @@ -218,12 +225,12 @@ or shoot a gun to move around via Newton's 3rd Law of motion." /obj/screen/alert/emptycell name = "Out of Power" desc = "Unit's power cell has no charge remaining. No modules available until power cell is recharged. \ -Reharging stations are available in robotics, the dormitory's bathrooms. and the AI satelite." +Recharging stations are available in robotics, the dormitory's bathrooms. and the AI satellite." icon_state = "emptycell" /obj/screen/alert/lowcell name = "Low Charge" - desc = "Unit's power cell is running low. Reharging stations are available in robotics, the dormitory's bathrooms. and the AI satelite." + desc = "Unit's power cell is running low. Recharging stations are available in robotics, the dormitory's bathrooms. and the AI satellite." icon_state = "lowcell" //Need to cover all use cases - emag, illegal upgrade module, malf AI hack, traitor cyborg @@ -308,13 +315,10 @@ so as to remain in compliance with the most up-to-date laws." return if(master) return usr.client.Click(master, location, control, params) - else if(isliving(usr)) - var/mob/living/L = usr - return L.resist() /obj/screen/alert/Destroy() ..() severity = 0 master = null screen_loc = "" - return QDEL_HINT_PUTINPOOL //Don't destroy me, I have a family! + return QDEL_HINT_PUTINPOOL //Don't destroy me, I have a family! \ No newline at end of file diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 46c968295c5..c948bb7b888 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -112,7 +112,7 @@ src.visible_message("[src] catches fire!", \ "You're set on fire!") src.AddLuminosity(3) - throw_alert("fire") + throw_alert("fire", /obj/screen/alert/fire) update_fire() /mob/living/proc/ExtinguishMob() From 9e8fa0fd7fb0bad05bff4fe3f716830c6c981f79 Mon Sep 17 00:00:00 2001 From: duncathan Date: Fri, 16 Oct 2015 15:09:53 -0600 Subject: [PATCH 016/418] makes the condensed hard del logs less spammy --- tools/Runtime Condenser/Main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/Runtime Condenser/Main.cpp b/tools/Runtime Condenser/Main.cpp index f1e778ff459..b1ba3546372 100644 --- a/tools/Runtime Condenser/Main.cpp +++ b/tools/Runtime Condenser/Main.cpp @@ -264,8 +264,7 @@ bool writeToFile() outputFile << endl << "** Hard deletions **"; for(int i=0; i <= maxStorage; i++) { - if(numHardDel[i] != 0) outputFile << endl << endl << "The following path has failed to GC " << numHardDel[i] << " time(s).\n"; - if(storedHardDel[i] != "Blank") outputFile << storedHardDel[i] << endl; + if(numHardDel[i] != 0 && storedHardDel[i] != "Blank") outputFile << endl << storedHardDel[i] << " - " << numHardDel[i] << " time(s).\n"; } } outputFile.close(); From 42259d6e1aee625d932c1f916db612eb7a0c1a9d Mon Sep 17 00:00:00 2001 From: xxalpha Date: Fri, 16 Oct 2015 18:36:32 +0100 Subject: [PATCH 017/418] Adds a very small chance of mice chewing power cables. Prob15 --- .../living/simple_animal/friendly/mouse.dm | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm index fbe54636bcb..1c0f9cea91a 100644 --- a/code/modules/mob/living/simple_animal/friendly/mouse.dm +++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm @@ -23,6 +23,7 @@ mob_size = MOB_SIZE_TINY var/body_color //brown, gray and white, leave blank for random gold_core_spawnable = 2 + var/chew_probability = 1 /mob/living/simple_animal/mouse/New() ..() @@ -38,11 +39,14 @@ src.icon_dead = "mouse_[body_color]_splat" death() -/mob/living/simple_animal/mouse/death(gibbed) +/mob/living/simple_animal/mouse/death(gibbed, toast) if(!ckey) ..(1) var/obj/item/trash/deadmouse/M = new(src.loc) M.icon_state = icon_dead + if(toast) + M.color = "#3A3A3A" + M.desc = "It's toast." qdel(src) else ..(gibbed) @@ -55,6 +59,21 @@ playsound(src, 'sound/effects/mousesqueek.ogg', 100, 1) ..() +/mob/living/simple_animal/mouse/handle_automated_action() + if(prob(chew_probability)) + var/turf/simulated/floor/F = get_turf(src) + if(istype(F) && !F.intact) + var/obj/structure/cable/C = locate() in F + if(C && prob(15)) + if(C.avail()) + visible_message("[src] chews through the [C]. It's toast!") + playsound(src, 'sound/effects/sparks2.ogg', 100, 1) + C.Deconstruct() + death(toast=1) + else + C.Deconstruct() + visible_message("[src] chews through the [C].") + /* * Mouse types */ From 6222b4fc8bbd7dddaf300f842af2f6ec44555a3a Mon Sep 17 00:00:00 2001 From: Incoming Date: Sun, 18 Oct 2015 03:17:09 -0400 Subject: [PATCH 018/418] Slimepeople can now split if they contain 200 units of slime jelly, and slimepeople will now slowly generate slime jelly up to 200 units provided they are very well fed. Split slimepeople are NOT player controlled, but rather the original slime person can swap between the two mobs at will. If one of the slimepeople should die under player control, the player won't be able to swap back to their living body. Splitting only creates a new body, any items you have on you are not duplicated. In testing this takes longer to achieve than you might think, even under ideal "FOOD EVERYWHERE" conditions it can take nearly 10 minutes to produce a split slimeperson. The initial slimeperson is also apt to get fat if they try to do this more than once. Slimepeople now take half damage from sources of heat, but double damage from sources of cold. --- .../mob/living/carbon/human/species_types.dm | 71 ++++++++++++++++++ html/changelogs/Incoming-slimetimelive.yml | 8 ++ icons/mob/actions.dmi | Bin 49427 -> 50288 bytes 3 files changed, 79 insertions(+) create mode 100644 html/changelogs/Incoming-slimetimelive.yml diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index 95105c87bdc..8d6429b0590 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -211,12 +211,17 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) ignored_by = list(/mob/living/simple_animal/slime) meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/slime exotic_blood = /datum/reagent/toxin/slimejelly + burnmod = 0.5 + coldmod = 2 + heatmod = 0.5 var/recently_changed = 1 /datum/species/slime/spec_life(mob/living/carbon/human/H) if(!H.reagents.get_reagent_amount("slimejelly")) if(recently_changed) H.reagents.add_reagent("slimejelly", 80) + var/datum/action/split_body/S = new + S.Grant(H) recently_changed = 0 else H.reagents.add_reagent("slimejelly", 5) @@ -224,6 +229,13 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) H << "You feel empty!" for(var/datum/reagent/toxin/slimejelly/S in H.reagents.reagent_list) + if(S.volume >= 200) + if(prob(5)) + H << "You feel very bloated!" + if(S.volume < 200) + if(H.nutrition >= NUTRITION_LEVEL_WELL_FED) + H.reagents.add_reagent("slimejelly", 0.5) + H.nutrition -= 5 if(S.volume < 100) if(H.nutrition >= NUTRITION_LEVEL_STARVING) H.reagents.add_reagent("slimejelly", 0.5) @@ -237,6 +249,65 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) /datum/species/slime/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H) if(chem.id == "slimejelly") return 1 + +/datum/action/split_body + name = "Split Body" + action_type = AB_INNATE + check_flags = AB_CHECK_ALIVE + button_icon_state = "split" + background_icon_state = "bg_alien" + +/datum/action/split_body/Activate() + var/mob/living/carbon/human/H = owner + if(!ishuman(owner) || !H.dna || !H.dna.species || H.dna.species.id != "slime") + owner << "Your biology is no longer compatible!" + Remove(owner) + return + + H << "You focus intently on moving your body while standing perfectly still..." + H.notransform = 1 + for(var/datum/reagent/toxin/slimejelly/S in H.reagents.reagent_list) + if(S.volume >= 200) + var/mob/living/carbon/human/spare = new /mob/living/carbon/human(H.loc) + spare.underwear = "Nude" + H.dna.transfer_identity(spare, transfer_SE=1) + H.dna.features["mcolor"] = pick("FFFFFF","7F7F7F", "7FFF7F", "7F7FFF", "FF7F7F", "7FFFFF", "FF7FFF", "FFFF7F") + spare.real_name = spare.dna.real_name + spare.name = spare.dna.real_name + spare.updateappearance(mutcolor_update=1) + spare.domutcheck() + spare.Move(get_step(H.loc, pick(NORTH,SOUTH,EAST,WEST))) + S.volume = 80 + H.notransform = 0 + var/datum/action/swap_body/callforward = new /datum/action/swap_body() + var/datum/action/swap_body/callback = new /datum/action/swap_body() + callforward.body = spare + callforward.Grant(H) + callback.body = H + callback.Grant(spare) + H.mind.transfer_to(spare) + spare << "...and after a moment of disorentation, you're besides yourself!" + return + + H << "...but there is not enough of you to go around! You must attain more mass to split!" + H.notransform = 0 + +/datum/action/swap_body + name = "Swap Body" + action_type = AB_INNATE + check_flags = AB_CHECK_ALIVE + button_icon_state = "slimeswap" + background_icon_state = "bg_alien" + var/mob/living/carbon/human/body + +/datum/action/swap_body/Activate() + if(!body || !istype(body) || body.stat != CONSCIOUS || qdeleted(body)) + owner << "Something is wrong, you cannot sense your other body!" + Remove(owner) + return + + owner.mind.transfer_to(body) + /* JELLYPEOPLE */ diff --git a/html/changelogs/Incoming-slimetimelive.yml b/html/changelogs/Incoming-slimetimelive.yml new file mode 100644 index 00000000000..b362a7b3bdc --- /dev/null +++ b/html/changelogs/Incoming-slimetimelive.yml @@ -0,0 +1,8 @@ + +author: Incoming5643 + +delete-after: True + +changes: + - rscadd: "Slimepeople can now split if they contain 200 units of slime jelly, and slimepeople will now slowly generate slime jelly up to 200 units provided they are very well fed. Split slimepeople are NOT player controlled, but rather the original slime person can swap between the two mobs at will. If one of the slimepeople should die under player control, the player won't be able to swap back to their living body. Splitting only creates a new body, any items you have on you are not duplicated." + - rscadd: "Slimepeople now take half damage from sources of heat, but double damage from sources of cold. Lasers good, Space bad." \ No newline at end of file diff --git a/icons/mob/actions.dmi b/icons/mob/actions.dmi index d4a903af875f72840882e776fc6265e9ce6fe986..0beb759674df368b3dc739ff4c728810686520c4 100644 GIT binary patch literal 50288 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 QNf7Xomr;_gkTmf9KVUJ?;Q#;t From a2114ca5ad81e85a4d6a653adc17d954de8ed311 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Sun, 18 Oct 2015 21:08:24 -0400 Subject: [PATCH 019/418] You can no longer click on the timestop effect itself. --- code/modules/research/xenobiology/xenobiology.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index e82a394fd92..7dd2b22724d 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -422,6 +422,7 @@ pixel_x = -64 pixel_y = -64 unacidable = 1 + mouse_opacity = 0 var/mob/living/immune = list() // the one who creates the timestop is immune var/freezerange = 2 var/duration = 140 From 2e6a82547bb705e2a6c00cbd368e7a25c190a784 Mon Sep 17 00:00:00 2001 From: Nerd Lord Date: Sun, 18 Oct 2015 21:42:37 -0400 Subject: [PATCH 020/418] Buff changelog, insert meme here. --- html/changelogs/Joan-Timestop.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/Joan-Timestop.yml diff --git a/html/changelogs/Joan-Timestop.yml b/html/changelogs/Joan-Timestop.yml new file mode 100644 index 00000000000..834fd0df6c8 --- /dev/null +++ b/html/changelogs/Joan-Timestop.yml @@ -0,0 +1,7 @@ + +author: Joan + +delete-after: True + +changes: + - bugfix: "You can now click on things under timestop effects, instead of clicking the effect and looking like a fool." From a1baaabd5381e13a32b4f539bc819a67026080fa Mon Sep 17 00:00:00 2001 From: bgobandit Date: Mon, 19 Oct 2015 00:03:39 -0400 Subject: [PATCH 021/418] xenobio qol changes/balance stuff --- code/game/objects/items/devices/scanners.dm | 1 + code/modules/food&drinks/food/snacks_meat.dm | 14 +++++++++----- .../reagents/Chemistry-Recipes/Slime_extracts.dm | 3 ++- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 58a179d394b..839433cae0d 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -373,6 +373,7 @@ MASS SPECTROMETER /obj/item/device/slime_scanner name = "slime scanner" + desc = "A device that analyzes a slime's internal composition and measures its stats." icon_state = "adv_spectrometer" item_state = "analyzer" origin_tech = "biotech=1" diff --git a/code/modules/food&drinks/food/snacks_meat.dm b/code/modules/food&drinks/food/snacks_meat.dm index 30a12799e00..296b62c1544 100644 --- a/code/modules/food&drinks/food/snacks_meat.dm +++ b/code/modules/food&drinks/food/snacks_meat.dm @@ -130,11 +130,15 @@ /obj/item/weapon/reagent_containers/food/snacks/monkeycube/afterattack(obj/O, mob/user,proximity) if(!proximity) return - if(istype(O,/obj/structure/sink) && !wrapped) - user << "You place [src] under a stream of water..." - user.drop_item() - loc = get_turf(O) - return Expand() + if(istype(O,/obj/structure/sink)) + if (wrapped) + user << "You need to unwrap [src] first!" + return + else + user << "You place [src] under a stream of water..." + user.drop_item() + loc = get_turf(O) + return Expand() ..() /obj/item/weapon/reagent_containers/food/snacks/monkeycube/attack_self(mob/user) diff --git a/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm b/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm index bf01060db8f..cdef3947f88 100644 --- a/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm +++ b/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm @@ -165,6 +165,7 @@ /obj/item/weapon/reagent_containers/food/snacks/pizzaslice, /obj/item/weapon/reagent_containers/food/snacks/salad, /obj/item/weapon/reagent_containers/food/snacks/meat, + /obj/item/weapon/reagent_containers/food/snacks/meat/slab, /obj/item/weapon/reagent_containers/food/snacks/soup, /obj/item/weapon/reagent_containers/food/snacks/grown, /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom, @@ -392,7 +393,7 @@ /datum/chemical_reaction/slimeplasma/on_reaction(datum/reagents/holder) feedback_add_details("slime_cores_used","[type]") var/obj/item/stack/sheet/mineral/plasma/P = new /obj/item/stack/sheet/mineral/plasma - P.amount = 10 + P.amount = 3 P.loc = get_turf(holder.my_atom) /datum/chemical_reaction/slimemutator From 9dc8c73ad9f37de486b6a0a2810c68613f92c585 Mon Sep 17 00:00:00 2001 From: Incoming Date: Mon, 19 Oct 2015 18:44:35 -0400 Subject: [PATCH 022/418] Adds 48x48 (1.5x zoom) and 96x96 (3x zoom) to the icons menu If I had known it was this easy I'd have done this a long time ago --- html/changelogs/Incoming-EXTREMECLOSEUP.yml | 8 ++++++++ interface/skin.dmf | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 html/changelogs/Incoming-EXTREMECLOSEUP.yml diff --git a/html/changelogs/Incoming-EXTREMECLOSEUP.yml b/html/changelogs/Incoming-EXTREMECLOSEUP.yml new file mode 100644 index 00000000000..d45f39aa8ec --- /dev/null +++ b/html/changelogs/Incoming-EXTREMECLOSEUP.yml @@ -0,0 +1,8 @@ + +author: Incoming5643 + +delete-after: True + +changes: + - rscadd: "48x48 pixel mode (x1.5 zoom) has been added to the Icons menu (top left). While playing in 32x32 or 64x64 will still provide a clearer looking station, for those of us with resolutions that fall into the gap between the two zooms this can provide a more consistant looking station than stretch to fit." + - rscadd: "96x96 pixel mode (x3 zoom) has also been added for our players who enjoy looking at spacemen on their 4k monitors at a crisp and consistent scale." \ No newline at end of file diff --git a/interface/skin.dmf b/interface/skin.dmf index ef5ae3f9ebf..34587c537c3 100644 --- a/interface/skin.dmf +++ b/interface/skin.dmf @@ -883,6 +883,15 @@ menu "menu" group = "size" is-disabled = false saved-params = "is-checked" + elem "icon96" + name = "&96x96 (3x)" + command = ".winset \"mapwindow.map.icon-size=96\"" + category = "&Icons" + is-checked = false + can-check = true + group = "size" + is-disabled = false + saved-params = "is-checked" elem "icon64" name = "&64x64 (2x)" command = ".winset \"mapwindow.map.icon-size=64\"" @@ -892,6 +901,15 @@ menu "menu" group = "size" is-disabled = false saved-params = "is-checked" + elem "icon48" + name = "&48x48 (1.5x)" + command = ".winset \"mapwindow.map.icon-size=48\"" + category = "&Icons" + is-checked = false + can-check = true + group = "size" + is-disabled = false + saved-params = "is-checked" elem "icon32" name = "&32x32" command = ".winset \"mapwindow.map.icon-size=32\"" From 67f59f2f99c539d2faeb15bc41e49b7a3dfd432b Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Tue, 20 Oct 2015 14:46:38 -0500 Subject: [PATCH 023/418] Zombies --- .../living/simple_animal/hostile/zombie.dm | 70 ++++++++++++++++++ icons/mob/human.dmi | Bin 81837 -> 82798 bytes tgstation.dme | 1 + 3 files changed, 71 insertions(+) create mode 100644 code/modules/mob/living/simple_animal/hostile/zombie.dm diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm new file mode 100644 index 00000000000..a803136f3ae --- /dev/null +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -0,0 +1,70 @@ +/mob/living/simple_animal/hostile/zombie + name = "zombie" + desc = "When Observe is full, the dead shall walk the station." + icon = 'icons/mob/human.dmi' + icon_state = "zombie_s" + icon_living = "zombie_s" + icon_dead = "zombie_dead" + turns_per_move = 5 + emote_see = list("groans") + a_intent = "harm" + maxHealth = 80 + health = 80 + speed = 0 + harm_intent_damage = 8 + melee_damage_lower = 20 + melee_damage_upper = 20 + attacktext = "claws" + attack_sound = 'sound/hallucinations/growl1.ogg' + atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 5, "min_n2" = 0, "max_n2" = 0) + minbodytemp = 0 + maxbodytemp = 350 + unsuitable_atmos_damage = 10 + environment_smash = 1 + robust_searching = 1 + stat_attack = 2 + gold_core_spawnable = 1 + var/mob/living/carbon/human/stored_corpse = null + + + +/mob/living/simple_animal/hostile/zombie/AttackingTarget() + ..() + if(istype(target, /mob/living)) + var/mob/living/L = target + if(ishuman(L) && L.stat) + var/mob/living/carbon/human/H = L + Zombify(H) + else if (L.stat) //So they don't get stuck hitting a corpse + L.gib() + visible_message("[src] tears [L] to pieces!", \ + "You feast on [L], restoring your health!") + src.revive() + +/mob/living/simple_animal/hostile/zombie/death() + ..() + if(stored_corpse) + stored_corpse.loc = loc + if(ckey) + stored_corpse.ckey = src.ckey + qdel(src) + return + spawn(rand(800,1200)) + visible_message("[src] staggers to their feet!") + src.revive() + +/mob/living/simple_animal/hostile/zombie/proc/Zombify(mob/living/carbon/human/H) + H.set_species(/datum/species/zombie) + var/mob/living/simple_animal/hostile/zombie/Z = new /mob/living/simple_animal/hostile/zombie(H.loc) + Z.overlays = H.get_overlays_copy(list(L_HAND_LAYER,R_HAND_LAYER)) + Z.icon_state = target.icon_state + Z.overlays = target.overlays + Z.name = H.name + if(H.ckey) + Z.ckey = H.ckey + H.stat = DEAD + H.loc = Z + Z.stored_corpse = H + visible_message("[Z] staggers to their feet!", \ + "You are now a zombie! Follow your creators lead!") + diff --git a/icons/mob/human.dmi b/icons/mob/human.dmi index dd7fdde2c7b16eb551967d04438c6fb18d06450f..7be41105d839b000e11a20170325473453fe3e85 100644 GIT binary patch delta 17609 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ℑ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 S28!-5n6kW@T(OL?@BaeA-5uco delta 16641 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 diff --git a/tgstation.dme b/tgstation.dme index f4272161a16..d8df6853c58 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1299,6 +1299,7 @@ #include "code\modules\mob\living\simple_animal\hostile\statue.dm" #include "code\modules\mob\living\simple_animal\hostile\syndicate.dm" #include "code\modules\mob\living\simple_animal\hostile\tree.dm" +#include "code\modules\mob\living\simple_animal\hostile\zombie.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\bat.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\clown.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\retaliate.dm" From 81d174ec6c9f6934f61de1e811507f2ada530a9b Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Tue, 20 Oct 2015 14:48:31 -0500 Subject: [PATCH 024/418] Changelog --- html/changelogs/Kor-PR-ZOMBIES.yml | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 html/changelogs/Kor-PR-ZOMBIES.yml diff --git a/html/changelogs/Kor-PR-ZOMBIES.yml b/html/changelogs/Kor-PR-ZOMBIES.yml new file mode 100644 index 00000000000..e3751186cb1 --- /dev/null +++ b/html/changelogs/Kor-PR-ZOMBIES.yml @@ -0,0 +1,37 @@ +################################ +# 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 +# spellcheck (typo fixes) +# experiment +# tgs (TG-ported fixes?) +################################# + +# Your name. +author: Kor + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added a zombie mob that turns its kills into more zombies. Currently adminspawn and xenobio only." + From d9e99ebffe47d16c11c6d9bfc087017aa0b77a43 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Tue, 20 Oct 2015 15:15:43 -0500 Subject: [PATCH 025/418] Appearance --- .../mob/living/simple_animal/hostile/zombie.dm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index a803136f3ae..ad6e4ad7570 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -24,6 +24,7 @@ robust_searching = 1 stat_attack = 2 gold_core_spawnable = 1 + faction = list("zombie") var/mob/living/carbon/human/stored_corpse = null @@ -37,8 +38,8 @@ Zombify(H) else if (L.stat) //So they don't get stuck hitting a corpse L.gib() - visible_message("[src] tears [L] to pieces!", \ - "You feast on [L], restoring your health!") + visible_message("[src] tears [L] to pieces!") + src << "You feast on [L], restoring your health!" src.revive() /mob/living/simple_animal/hostile/zombie/death() @@ -49,6 +50,7 @@ stored_corpse.ckey = src.ckey qdel(src) return + src << "You're down, but not quite out. You'll be back on your feet within a minute or two." spawn(rand(800,1200)) visible_message("[src] staggers to their feet!") src.revive() @@ -56,15 +58,14 @@ /mob/living/simple_animal/hostile/zombie/proc/Zombify(mob/living/carbon/human/H) H.set_species(/datum/species/zombie) var/mob/living/simple_animal/hostile/zombie/Z = new /mob/living/simple_animal/hostile/zombie(H.loc) - Z.overlays = H.get_overlays_copy(list(L_HAND_LAYER,R_HAND_LAYER)) - Z.icon_state = target.icon_state - Z.overlays = target.overlays - Z.name = H.name + Z.appearance = H.appearance + Z.transform = matrix() + Z.pixel_y = 0 if(H.ckey) Z.ckey = H.ckey H.stat = DEAD H.loc = Z Z.stored_corpse = H - visible_message("[Z] staggers to their feet!", \ - "You are now a zombie! Follow your creators lead!") + visible_message("[Z] staggers to their feet!") + Z << "You are now a zombie! Follow your creators lead!" From b849b5c9bf905d55ed43c3c3873f5c41edbc903d Mon Sep 17 00:00:00 2001 From: AnturK Date: Tue, 20 Oct 2015 23:55:08 +0200 Subject: [PATCH 026/418] action button screenloc cleanup --- code/_onclick/hud/action.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/_onclick/hud/action.dm b/code/_onclick/hud/action.dm index 507090fdb4e..ee47784b11a 100644 --- a/code/_onclick/hud/action.dm +++ b/code/_onclick/hud/action.dm @@ -189,18 +189,18 @@ /mob/proc/update_action_buttons() return -#define AB_WEST_OFFSET 4 -#define AB_NORTH_OFFSET 26 #define AB_MAX_COLUMNS 10 /datum/hud/proc/ButtonNumberToScreenCoords(number) // TODO : Make this zero-indexed for readabilty var/row = round((number-1)/AB_MAX_COLUMNS) var/col = ((number - 1)%(AB_MAX_COLUMNS)) + 1 + var/coord_col = "+[col-1]" var/coord_col_offset = 4+2*col - var/coord_row = "[-1 - row]" - var/coord_row_offset = 26 - return "WEST[coord_col]:[coord_col_offset],NORTH[coord_row]:[coord_row_offset]" + + var/coord_row = "[row ? -row : "+0"]" + + return "WEST[coord_col]:[coord_col_offset],NORTH[coord_row]:-6" /datum/hud/proc/SetButtonCoords(obj/screen/button,number) var/row = round((number-1)/AB_MAX_COLUMNS) From 1fe3bdb0c9e46abda449bb0fc0422482651f39d1 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Tue, 20 Oct 2015 19:53:59 -0500 Subject: [PATCH 027/418] Tombstone and shovel --- .../living/simple_animal/hostile/zombie.dm | 35 ++++++++++++++++++ icons/mob/nest.dmi | Bin 0 -> 664 bytes 2 files changed, 35 insertions(+) create mode 100644 icons/mob/nest.dmi diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index ad6e4ad7570..4160263c841 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -69,3 +69,38 @@ visible_message("[Z] staggers to their feet!") Z << "You are now a zombie! Follow your creators lead!" + +/mob/living/simple_animal/hostile/spawner/zombie + name = "corpse pit" + icon_state = "tombstone" + icon_living = "tombstone" + icon = 'icons/mob/nest.dmi' + health = 200 + maxHealth = 200 + list/spawned_mobs = list() + max_mobs = 40 + spawn_delay = 0 + spawn_time = 150 + mob_type = /mob/living/simple_animal/hostile/zombie + spawn_text = "emerges from" + atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) + + +/mob/living/simple_animal/hostile/spawner/zombie/death() + visible_message("[src] collapes, stopping the flow of zombies!") + qdel(src) + + +/obj/item/weapon/shovel/cursed + name = "cursed shovel" + desc = "You probably shouldn't use this particular shovel." + var/used = FALSE + force = 15 + +/obj/item/weapon/shovel/cursed/attack_self(mob/living/user) + if(used == FALSE) + visible_message("[user] digs a pit to Hell!") + new /mob/living/simple_animal/hostile/spawner/zombie(get_turf(src.loc)) + used = TRUE + else + user << "The unearthly energies that once powered this shovel are now dormant. Still sharp though." diff --git a/icons/mob/nest.dmi b/icons/mob/nest.dmi new file mode 100644 index 0000000000000000000000000000000000000000..55ab441a0cb736248e49b390a14774a2f3d0fe9b GIT binary patch literal 664 zcmV;J0%!e+P)i3BH>tQJKQC2@i!&v&s2C__$i~d5K+3Z4en6Y9sN1%JuAv?{6L59g zQsOOU3H5c`P#O~CKz7^h56CZxN@%)reTEXc?;tJC5iX#vHqAHShx}_$IIvmg0Iyhq zv<3jOO7?4aSJm6@0`||ZyPw_ftEULA+2Q8q>=8lJLw_Gj zbU7~(O$QXN-#Q$V8stV Date: Tue, 20 Oct 2015 21:20:47 -0500 Subject: [PATCH 028/418] Lesser --- code/modules/mob/living/simple_animal/hostile/zombie.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index 4160263c841..50a27e5b9bc 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -72,6 +72,7 @@ /mob/living/simple_animal/hostile/spawner/zombie name = "corpse pit" + desc = "A pit full of zombies." icon_state = "tombstone" icon_living = "tombstone" icon = 'icons/mob/nest.dmi' @@ -79,13 +80,18 @@ maxHealth = 200 list/spawned_mobs = list() max_mobs = 40 - spawn_delay = 0 spawn_time = 150 mob_type = /mob/living/simple_animal/hostile/zombie spawn_text = "emerges from" atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) +/mob/living/simple_animal/hostile/spawner/zombie/lesser + name = "lesser corpse pit" + desc = "A pit full of less zombies." + max_mobs = 10 + spawn_time = 150 + /mob/living/simple_animal/hostile/spawner/zombie/death() visible_message("[src] collapes, stopping the flow of zombies!") qdel(src) From 7db1d6792f199376d93ba960e9e6a3cf8d3682e3 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Tue, 20 Oct 2015 23:06:11 -0500 Subject: [PATCH 029/418] Disposals --- code/modules/recycling/disposal-unit.dm | 2 +- html/changelogs/Kor-disposal.yml | 36 +++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/Kor-disposal.yml diff --git a/code/modules/recycling/disposal-unit.dm b/code/modules/recycling/disposal-unit.dm index cfcde5ffc32..5b062e860ff 100644 --- a/code/modules/recycling/disposal-unit.dm +++ b/code/modules/recycling/disposal-unit.dm @@ -100,7 +100,7 @@ // mouse drop another mob or self // /obj/machinery/disposal/MouseDrop_T(mob/living/target, mob/living/user) - if(istype(target) && user == target) + if(istype(target)) stuff_mob_in(target, user) /obj/machinery/disposal/proc/stuff_mob_in(mob/living/target, mob/living/user) diff --git a/html/changelogs/Kor-disposal.yml b/html/changelogs/Kor-disposal.yml new file mode 100644 index 00000000000..6cda538a3bb --- /dev/null +++ b/html/changelogs/Kor-disposal.yml @@ -0,0 +1,36 @@ +################################ +# 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 +# spellcheck (typo fixes) +# experiment +# tgs (TG-ported fixes?) +################################# + +# Your name. +author: Kor + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "You can once again click+drag mobs into disposal units. Xenobiologists rejoice." From 1b52bccb3f0eaeae4dfb4cfd34afcd0d3b30e365 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 21 Oct 2015 00:45:52 -0500 Subject: [PATCH 030/418] Fixes zombie factions --- code/modules/mob/living/simple_animal/hostile/zombie.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index 50a27e5b9bc..edaac972be0 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -58,6 +58,7 @@ /mob/living/simple_animal/hostile/zombie/proc/Zombify(mob/living/carbon/human/H) H.set_species(/datum/species/zombie) var/mob/living/simple_animal/hostile/zombie/Z = new /mob/living/simple_animal/hostile/zombie(H.loc) + Z.faction = src.faction Z.appearance = H.appearance Z.transform = matrix() Z.pixel_y = 0 @@ -84,6 +85,7 @@ mob_type = /mob/living/simple_animal/hostile/zombie spawn_text = "emerges from" atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) + faction = list("zombie") /mob/living/simple_animal/hostile/spawner/zombie/lesser From d16eaaf3e3079744f6cdefcd21e657f641193d7e Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 21 Oct 2015 00:54:36 -0500 Subject: [PATCH 031/418] Slow zombies --- code/modules/mob/living/simple_animal/hostile/zombie.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index edaac972be0..f7374ec00aa 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -8,9 +8,9 @@ turns_per_move = 5 emote_see = list("groans") a_intent = "harm" - maxHealth = 80 - health = 80 - speed = 0 + maxHealth = 100 + health = 100 + speed = 1 harm_intent_damage = 8 melee_damage_lower = 20 melee_damage_upper = 20 From 683d75c93adfd58eb24adf434cf2fd82d27aa323 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 21 Oct 2015 02:50:05 -0500 Subject: [PATCH 032/418] Night vision --- .../mob/living/simple_animal/hostile/zombie.dm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index f7374ec00aa..81a4bb718b6 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -8,8 +8,8 @@ turns_per_move = 5 emote_see = list("groans") a_intent = "harm" - maxHealth = 100 - health = 100 + maxHealth = 120 + health = 120 speed = 1 harm_intent_damage = 8 melee_damage_lower = 20 @@ -26,6 +26,9 @@ gold_core_spawnable = 1 faction = list("zombie") var/mob/living/carbon/human/stored_corpse = null + butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/zombie = 3) + see_invisible = SEE_INVISIBLE_MINIMUM + see_in_dark = 8 @@ -62,8 +65,11 @@ Z.appearance = H.appearance Z.transform = matrix() Z.pixel_y = 0 - if(H.ckey) - Z.ckey = H.ckey + for(var/mob/dead/observer/ghost in player_list) + if(H.real_name == ghost.real_name) + ghost.reenter_corpse() + break + Z.ckey = H.ckey H.stat = DEAD H.loc = Z Z.stored_corpse = H From 19f28127e8941460dd7845068fec06af088a78ba Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 21 Oct 2015 02:54:03 -0500 Subject: [PATCH 033/418] tombstone tweaks --- code/modules/mob/living/simple_animal/hostile/zombie.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index 81a4bb718b6..c6c6166dcb5 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -83,11 +83,11 @@ icon_state = "tombstone" icon_living = "tombstone" icon = 'icons/mob/nest.dmi' - health = 200 - maxHealth = 200 + health = 400 + maxHealth = 400 list/spawned_mobs = list() max_mobs = 40 - spawn_time = 150 + spawn_time = 100 mob_type = /mob/living/simple_animal/hostile/zombie spawn_text = "emerges from" atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) @@ -99,6 +99,8 @@ desc = "A pit full of less zombies." max_mobs = 10 spawn_time = 150 + health = 200 + maxHealth = 200 /mob/living/simple_animal/hostile/spawner/zombie/death() visible_message("[src] collapes, stopping the flow of zombies!") From 3466a0630d882f8539d97e7cc1690bd31bf083c6 Mon Sep 17 00:00:00 2001 From: phil235 Date: Wed, 21 Oct 2015 18:44:40 +0200 Subject: [PATCH 034/418] Adds a chemistry manual. It gives basic info on how to make chems and lists all chemical reactions in alphabetical order. --- code/game/objects/items/weapons/manuals.dm | 120 +++++++++++++++++++++ icons/obj/library.dmi | Bin 22315 -> 22363 bytes 2 files changed, 120 insertions(+) diff --git a/code/game/objects/items/weapons/manuals.dm b/code/game/objects/items/weapons/manuals.dm index 08a4a762d0c..7ca7ec6cb58 100644 --- a/code/game/objects/items/weapons/manuals.dm +++ b/code/game/objects/items/weapons/manuals.dm @@ -739,6 +739,126 @@ "} + +/obj/item/weapon/book/manual/chemistry + name = "Chemistry for dummies" + icon_state ="chemistrybook" + window_size = "600x400" + author = "Nanotrasen" + title = "Chemistry for dummies" + dat = {" + + + + +

Chemistry Work

+ + Mix different chemicals in a beaker to make them react and obtain new chemicals or effects.
+ Use your Chem Dispenser to dispense chemicals into your beaker.
+ Certain chemical reactions require heat. Place a beaker in your Chemical Heater and select a temperature to heat it.
+ Some chemicals will react violently, be careful with what chemicals you mix together.
+ +

List of chemical reactions:

+
    +
  • Acetone: 1 Oil + 1 Welding Fuel + 1 Oxygen
  • +
  • Ammonia: 3 Hydrogen + 1 Nitrogen
  • +
  • Antihol: 1 Ethanol + 1 Charcoal + 1 Copper
  • +
  • Aranesp: 1 Epinephrine + 1 Atropine + 1 Morphine
  • +
  • Ash: 1 Oil, heat to 480K
  • +
  • Atropine: 1 Ethanol + 1 Acetone + 1 Diethylamine + 1 Phenol + 1 Sulfuric Acid
  • +
  • Bath Salts: 1 Food Poisoning + 1 Saltpetre + 1 Nutriment + 1 Enzyme + 1 Space Cleaner + 1 Tea + 1 Mercury, heat to 374K
  • +
  • Black Powder: 1 Saltpetre + 1 Charcoal + 1 Sulfur
  • +
  • Calomel: 1 Mercury + 1 Chlorine, heat to 374K
  • +
  • Carpet: 1 Space Drugs + 1 Blood
  • +
  • Charcoal: 1 Ash + 1 Sodium Chloride, heat to 380K
  • +
  • Chloral Hydrate: 3 Chlorine + 1 Ethanol + 1 Water
  • +
  • Chlorine Trifluoride: 1 Chlorine + 3 Fluorine
  • +
  • Condensed Capsaicin: 1 Capsaicin Oil + 5 Ethanol
  • +
  • Crank: 1 Diphenhydramine + 1 Ammonia + 1 Lithium + 1 Sulfuric Acid + 1 Welding Fuel, heat to 390K
  • +
  • Cryostylane: 1 Water + 1 Stable Plasma + 1 Nitrogen
  • +
  • Cryoxadone: 1 Stable Plasma + 1 Acetone + 1 Unstable Mutagen
  • +
  • Cryptobiolin: 1 Oxygen + 1 Potassium + 1 Sugar
  • +
  • Cyanide: 1 Oil + 1 Ammonia + 1 Oxygen, heat to 380K
  • +
  • Diethylamine: 1 Ammonia + 1 Ethanol
  • +
  • Diphenhydramine: 1 Oil + 1 Carbon + 1 Bromine + 1 Diethylamine + 1 Ethanol
  • +
  • Drying Agent: 2 Stable Plasma + 1 Ethanol + 1 Sodium
  • +
  • EMP: 1 Iron + 1 Uranium
  • +
  • Ephedrine: 1 Diethylamine + 1 Sugar + 1 Oil + 1 Hydrogen
  • +
  • Epinephrine: 1 Phenol + 1 Acetone + 1 Diethylamine + 1 Oxygen + 1 Chlorine + 1 Hydrogen
  • +
  • Explosion: 1 Potassium + 1 Water
  • +
  • Flash Powder: 1 Aluminium + 1 Potassium + 1 Sulfur
  • +
  • Fluorosulfuric Acid: 1 Fluorine + 1 Hydrogen + 1 Potassium + 1 Sulfuric Acid, heat to 380K
  • +
  • Foam Surfactant: 2 Carbon + 2 Fluorine + 1 Sulfuric Acid
  • +
  • Foaming Agent: 1 Lithium + 1 Hydrogen
  • +
  • Formaldehyde: 1 Ethanol + 1 Oxygen + 1 Silver, heat to 420K
  • +
  • Glycerol: 3 Corn Oil + 1 Sulfuric Acid
  • +
  • Impedrezene: 1 Mercury + 1 Oxygen + 1 Sugar
  • +
  • Inacusiate: 1 Charcoal + 1 Carbon + 1 Water
  • +
  • Itching Powder: 1 Welding Fuel + 1 Ammonia + 1 Charcoal
  • +
  • Krokodil: 1 Diphenhydramine + 1 Space Cleaner + 1 Potassium + 1 Morphine + 1 Phosphorus + 1 Welding Fuel, heat to 390K
  • +
  • Life: 1 Strange Reagent + 1 Synthflesh + 1 Blood, heat to 375K
  • +
  • Leporazine: 1 Copper + 1 Silicon + 5 Plasma(catalyst)
  • +
  • Liquid Dark Matter: 1 Stable Plasma + 1 Radium + 1 Carbon
  • +
  • Lipolicide: 1 Mercury + 1 Diethylamine + 1 Ephedrine
  • +
  • Lexorin: 1 Hydrogen + 1 Nitrogen + 1 Plasma
  • +
  • Mannitol: 1 Hydrogen + 1 Water + 1 Sugar
  • +
  • Metal Foam: 3 Iron/aluminium + 1 Fluorosulfuric Acid + 1 Foaming Agent
  • +
  • Methamphetamine: 1 Ephedrine + 1 Iodine + 1 Phosphorus + 1 Hydrogen, heat to 374K
  • +
  • Mindbreaker Toxin: Anti-toxin + 1 Hydrogen + 1 Silicon
  • +
  • Mutadone: 1 Unstable Mutagen + 1 Acetone + 1 Bromine
  • +
  • Mute Toxin: 2 Uranium + 1 Water + 1 Carbon
  • +
  • Napalm: 1 Sugar + 1 Welding Fuel + 1 Ethanol
  • +
  • Nitroglycerin: 1 Glycerol + 1 Fluorosulfuric Acid + 1 Sulfuric Acid
  • +
  • Neurotoxin: 1 Space Drugs, heat to 674K
  • +
  • Oculine: 1 Charcoal + 1 Carbon + 1 Hydrogen
  • +
  • Oil: 1 Welding Fuel + 1 Carbon + 1 Hydrogen
  • +
  • Oxandrolone: 2 Carbon + 1 Phenol + 1 Hydrogen + 1 Oxygen
  • +
  • Pentetic Acid: 1 Welding Fuel + 1 Chlorine + 1 Ammonia + 1 Formaldehyde + 1 Sodium + 1 Cyanide
  • +
  • Perfluorodecalin: 1 Hydrogen + 1 Fluorine + 1 Oil, heat to 370K
  • +
  • Pest Killer: 1 Toxin + 4 Ethanol
  • +
  • Phenol: 1 Water + 1 Chlorine + 1 Oil
  • +
  • Phlogiston: 1 Phosphorus + 1 Sulfuric Acid + 1 Stable Plasma
  • +
  • Plant-B-Gone: 1 Toxin + 4 Water
  • +
  • Plasma Solidification: 20 Plasma + 5 Frost Oil + 5 Iron
  • +
  • Potassium Iodide: 1 Potassium + 1 Iodine
  • +
  • Pyrosium: 1 Stable Plasma + 1 Radium + 1 Phosphorus
  • +
  • Rezadone: 1 Carpotoxin + 1 Cryptobiolin + 1 Copper
  • +
  • Saltpetre: 1 Potassium + 1 Nitrogen + 3 Oxygen
  • +
  • Saline-Glucose Solution: 1 Sodium Chloride + 1 Water + 1 Sugar
  • +
  • Salbutamol: 1 Salicyclic Acid + 1 Lithium + 1 Aluminium + 1 Bromine + 1 Ammonia
  • +
  • Salicyclic Acid: 1 Sodium + 1 Phenol + 1 Carbon + 1 Oxygen + 1 Sulfuric Acid
  • +
  • Silver Sulfadiazine: 1 Ammonia + 1 Silver + 1 Sulfur + 1 Chlorine + 1 Oxygen
  • +
  • Smoke: 1 Phosphorus + 1 Potassium + 1 Sugar
  • +
  • Sonic Powder: 1 Oxygen + 1 Cola + 1 Phosphorus
  • +
  • Sorium: 1 Mercury + 1 Oxygen + 1 Nitrogen + 1 Carbon
  • +
  • Sodium Chloride: 1 Sodium + 1 Chlorine + 1 Water
  • +
  • Space Cleaner: 1 Ammonia + 1 Water
  • +
  • Space Drugs: 1 Lithium + 1 Mercury + 1 Sugar
  • +
  • Space Lube: 1 Oxygen + 1 Silicon + 1 Water
  • +
  • Spaceacillin: 1 Epinephrine + 1 Cryptobiolin
  • +
  • Stabilizing Agent: 1 Iron + 1 Oxygen + 1 Hydrogen
  • +
  • Sterilizine: 1 Anti-toxin + 1 Chlorine + 1 Ethanol
  • +
  • Strange Reagent: 1 Omnizine + 1 Holy Water + 1 Unstable Mutagen
  • +
  • Styptic Powder: 1 Aluminium + 1 Hydrogen + 1 Oxygen + 1 Sulfuric Acid
  • +
  • Sulfonal: 1 Acetone + 1 Diethylamine + 1 sulfur
  • +
  • Synaptizine: 1 Sugar + 1 Lithium + 1 Water
  • +
  • Synthflesh: 1 Blood + 1 Carbon + 1 Styptic Powder
  • +
  • Thermite: 1 Aluminium + 1 Iron + 1 Oxygen
  • +
  • Unstable Mutagen: 1 Chlorine + 1 Phosphorus + 1 Radium
  • +
  • Virus Food: 1 Water + 1 Milk
  • +
  • Weed Killer: 1 Toxin + 4 Ammonia
  • +
  • Zombie Powder: 5 Morphine + 5 Carpotoxin + 5 Copper
  • +
+ + "} + + /obj/item/weapon/book/manual/barman_recipes name = "Barman Recipes" icon_state = "barbook" diff --git a/icons/obj/library.dmi b/icons/obj/library.dmi index e15935f6ff36d97831196179572eb042dcae3a55..4aed98b4e27cc4713ab1aba9954b4d884610c056 100644 GIT binary patch literal 22363 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℞eRUY*JT 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 aivI&pQ*`#rIH^+r0000 Date: Wed, 21 Oct 2015 22:22:58 +0200 Subject: [PATCH 035/418] Makes is_type helpers inline --- code/__DEFINES/is_helpers.dm | 71 ++++++++++++++++ code/modules/assembly/helpers.dm | 30 +------ code/modules/mob/mob_helpers.dm | 136 +------------------------------ tgstation.dme | 1 + 4 files changed, 74 insertions(+), 164 deletions(-) create mode 100644 code/__DEFINES/is_helpers.dm diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm new file mode 100644 index 00000000000..9874cff38a9 --- /dev/null +++ b/code/__DEFINES/is_helpers.dm @@ -0,0 +1,71 @@ +// simple is_type and similar inline helpers + +// MOB HELPERS + +#define ishuman(A) (istype(A, /mob/living/carbon/human)) + +#define ismonkey(A) (istype(A, /mob/living/carbon/monkey)) + +#define isbrain(A) (istype(A, /mob/living/carbon/brain)) + +#define isalien(A) (istype(A, /mob/living/carbon/alien)) + +#define isalienadult(A) (istype(A, /mob/living/carbon/alien/humanoid)) + +#define islarva(A) (istype(A, /mob/living/carbon/alien/larva)) + +#define isslime(A) (istype(A, /mob/living/simple_animal/slime)) + +#define isrobot(A) (istype(A, /mob/living/silicon/robot)) + +#define isanimal(A) (istype(A, /mob/living/simple_animal)) + +#define iscorgi(A) (istype(A, /mob/living/simple_animal/pet/dog/corgi)) + +#define iscrab(A) (istype(A, /mob/living/simple_animal/crab)) + +#define iscat(A) (istype(A, /mob/living/simple_animal/pet/cat)) + +#define ismouse(A) (istype(A, /mob/living/simple_animal/mouse)) + +#define isbear(A) (istype(A, /mob/living/simple_animal/hostile/bear)) + +#define iscarp(A) (istype(A, /mob/living/simple_animal/hostile/carp)) + +#define isclown(A) (istype(A, /mob/living/simple_animal/hostile/retaliate/clown)) + +#define isAI(A) (istype(A, /mob/living/silicon/ai)) + +#define ispAI(A) (istype(A, /mob/living/silicon/pai)) + +#define iscarbon(A) (istype(A, /mob/living/carbon)) + +#define issilicon(A) (istype(A, /mob/living/silicon)) + +#define isliving(A) (istype(A, /mob/living)) + +#define isobserver(A) (istype(A, /mob/dead/observer)) + +#define isnewplayer(A) (istype(A, /mob/new_player)) + +#define isovermind(A) (istype(A, /mob/camera/blob)) + +#define isdrone(A) (istype(A, /mob/living/simple_animal/drone)) + +#define isswarmer(A) (istype(A, /mob/living/simple_animal/hostile/swarmer)) + +#define islimb(A) (istype(A, /obj/item/organ/limb)) + +// ASSEMBLY HELPERS + +#define isassembly(O) (istype(O, /obj/item/device/assembly)) + +#define isigniter(O) (istype(O, /obj/item/device/assembly/igniter)) + +#define isinfared(O) (istype(O, /obj/item/device/assembly/infra)) + +#define isprox(O) (istype(O, /obj/item/device/assembly/prox_sensor)) + +#define issignaler(O) (istype(O, /obj/item/device/assembly/signaler)) + +#define istimer(O) (istype(O, /obj/item/device/assembly/timer)) \ No newline at end of file diff --git a/code/modules/assembly/helpers.dm b/code/modules/assembly/helpers.dm index 0c8005ad0bc..9013dcfb145 100644 --- a/code/modules/assembly/helpers.dm +++ b/code/modules/assembly/helpers.dm @@ -1,32 +1,4 @@ -/proc/isassembly(O) - if(istype(O, /obj/item/device/assembly)) - return 1 - return 0 - -/proc/isigniter(O) - if(istype(O, /obj/item/device/assembly/igniter)) - return 1 - return 0 - -/proc/isinfared(O) - if(istype(O, /obj/item/device/assembly/infra)) - return 1 - return 0 - -/proc/isprox(O) - if(istype(O, /obj/item/device/assembly/prox_sensor)) - return 1 - return 0 - -/proc/issignaler(O) - if(istype(O, /obj/item/device/assembly/signaler)) - return 1 - return 0 - -/proc/istimer(O) - if(istype(O, /obj/item/device/assembly/timer)) - return 1 - return 0 +// See _DEFINES/is_helpers.dm for type helpers /* Name: IsSpecialAssembly diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index f7cc8017d76..6c8d210d0da 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -1,139 +1,5 @@ -// fun if you want to typecast humans/monkeys/etc without writing long path-filled lines. -/proc/ishuman(A) - if(istype(A, /mob/living/carbon/human)) - return 1 - return 0 - -/proc/ismonkey(A) - if(A && istype(A, /mob/living/carbon/monkey)) - return 1 - return 0 - -/proc/isbrain(A) - if(A && istype(A, /mob/living/carbon/brain)) - return 1 - return 0 - -/proc/isalien(A) - if(istype(A, /mob/living/carbon/alien)) - return 1 - return 0 - -/proc/isalienadult(A) - if(istype(A, /mob/living/carbon/alien/humanoid)) - return 1 - return 0 - -/proc/islarva(A) - if(istype(A, /mob/living/carbon/alien/larva)) - return 1 - return 0 - -/proc/isslime(A) - if(istype(A, /mob/living/simple_animal/slime)) - return 1 - return 0 - -/proc/isrobot(A) - if(istype(A, /mob/living/silicon/robot)) - return 1 - return 0 - -/proc/isanimal(A) - if(istype(A, /mob/living/simple_animal)) - return 1 - return 0 - -/proc/iscorgi(A) - if(istype(A, /mob/living/simple_animal/pet/dog/corgi)) - return 1 - return 0 - -/proc/iscrab(A) - if(istype(A, /mob/living/simple_animal/crab)) - return 1 - return 0 - -/proc/iscat(A) - if(istype(A, /mob/living/simple_animal/pet/cat)) - return 1 - return 0 - -/proc/ismouse(A) - if(istype(A, /mob/living/simple_animal/mouse)) - return 1 - return 0 - -/proc/isbear(A) - if(istype(A, /mob/living/simple_animal/hostile/bear)) - return 1 - return 0 - -/proc/iscarp(A) - if(istype(A, /mob/living/simple_animal/hostile/carp)) - return 1 - return 0 - -/proc/isclown(A) - if(istype(A, /mob/living/simple_animal/hostile/retaliate/clown)) - return 1 - return 0 - -/proc/isAI(A) - if(istype(A, /mob/living/silicon/ai)) - return 1 - return 0 - -/proc/ispAI(A) - if(istype(A, /mob/living/silicon/pai)) - return 1 - return 0 - -/proc/iscarbon(A) - if(istype(A, /mob/living/carbon)) - return 1 - return 0 - -/proc/issilicon(A) - if(istype(A, /mob/living/silicon)) - return 1 - return 0 - -/proc/isliving(A) - if(istype(A, /mob/living)) - return 1 - return 0 - -/proc/isobserver(A) - if(istype(A, /mob/dead/observer)) - return 1 - return 0 - -/proc/isnewplayer(A) - if(istype(A, /mob/new_player)) - return 1 - return 0 - -/proc/isovermind(A) - if(istype(A, /mob/camera/blob)) - return 1 - return 0 - -/proc/isdrone(A) - if(istype(A, /mob/living/simple_animal/drone)) - return 1 - return 0 - -/proc/isswarmer(A) - if(istype(A, /mob/living/simple_animal/hostile/swarmer)) - return 1 - return 0 - -/proc/islimb(A) - if(istype(A, /obj/item/organ/limb)) - return 1 - return 0 +// see _DEFINES/is_helpers.dm for mob type checks /proc/isloyal(A) //Checks to see if the person contains a loyalty implant, then checks that the implant is actually inside of them for(var/obj/item/weapon/implant/loyalty/L in A) diff --git a/tgstation.dme b/tgstation.dme index f4272161a16..e17d0e53956 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -29,6 +29,7 @@ #include "code\__DEFINES\flags.dm" #include "code\__DEFINES\genetics.dm" #include "code\__DEFINES\hud.dm" +#include "code\__DEFINES\is_helpers.dm" #include "code\__DEFINES\machines.dm" #include "code\__DEFINES\math.dm" #include "code\__DEFINES\misc.dm" From 7bf76c115ae0d6781f2818820395d1937a7d0766 Mon Sep 17 00:00:00 2001 From: AnturK Date: Wed, 21 Oct 2015 22:36:21 +0200 Subject: [PATCH 036/418] few more --- code/__DEFINES/is_helpers.dm | 4 ++++ code/__HELPERS/game.dm | 6 ------ code/__HELPERS/lists.dm | 5 ----- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index 9874cff38a9..f3f476f9788 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -1,5 +1,9 @@ // simple is_type and similar inline helpers +#define islist(L) (istype(L,/list)) + +#define in_range(source, user) (get_dist(source, user) <= 1) + // MOB HELPERS #define ishuman(A) (istype(A, /mob/living/carbon/human)) diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index a0c581966a8..f7c5404bd8f 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -24,12 +24,6 @@ return A return 0 -/proc/in_range(source, user) - if(get_dist(source, user) <= 1) - return 1 - - return 0 //not in range and not telekinetic - // Like view but bypasses luminosity check /proc/get_hear(range, atom/source) diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm index 66ae50cf852..8e73a6004c2 100644 --- a/code/__HELPERS/lists.dm +++ b/code/__HELPERS/lists.dm @@ -40,11 +40,6 @@ return L[index] return -/proc/islist(list/L) - if(istype(L)) - return 1 - return 0 - //Return either pick(list) or null if list is not of type /list or is empty /proc/safepick(list/L) if(istype(L) && L.len) From fffec436b3ae77b3fc1fa2d6c5a814a90569a4b4 Mon Sep 17 00:00:00 2001 From: phil235 Date: Thu, 22 Oct 2015 00:31:17 +0200 Subject: [PATCH 037/418] let's use the guide to chemistry wiki page instead. --- code/game/objects/items/weapons/manuals.dm | 126 ++------------------- 1 file changed, 7 insertions(+), 119 deletions(-) diff --git a/code/game/objects/items/weapons/manuals.dm b/code/game/objects/items/weapons/manuals.dm index 7ca7ec6cb58..2403f43f559 100644 --- a/code/game/objects/items/weapons/manuals.dm +++ b/code/game/objects/items/weapons/manuals.dm @@ -740,125 +740,6 @@ "} -/obj/item/weapon/book/manual/chemistry - name = "Chemistry for dummies" - icon_state ="chemistrybook" - window_size = "600x400" - author = "Nanotrasen" - title = "Chemistry for dummies" - dat = {" - - - - -

Chemistry Work

- - Mix different chemicals in a beaker to make them react and obtain new chemicals or effects.
- Use your Chem Dispenser to dispense chemicals into your beaker.
- Certain chemical reactions require heat. Place a beaker in your Chemical Heater and select a temperature to heat it.
- Some chemicals will react violently, be careful with what chemicals you mix together.
- -

List of chemical reactions:

-
    -
  • Acetone: 1 Oil + 1 Welding Fuel + 1 Oxygen
  • -
  • Ammonia: 3 Hydrogen + 1 Nitrogen
  • -
  • Antihol: 1 Ethanol + 1 Charcoal + 1 Copper
  • -
  • Aranesp: 1 Epinephrine + 1 Atropine + 1 Morphine
  • -
  • Ash: 1 Oil, heat to 480K
  • -
  • Atropine: 1 Ethanol + 1 Acetone + 1 Diethylamine + 1 Phenol + 1 Sulfuric Acid
  • -
  • Bath Salts: 1 Food Poisoning + 1 Saltpetre + 1 Nutriment + 1 Enzyme + 1 Space Cleaner + 1 Tea + 1 Mercury, heat to 374K
  • -
  • Black Powder: 1 Saltpetre + 1 Charcoal + 1 Sulfur
  • -
  • Calomel: 1 Mercury + 1 Chlorine, heat to 374K
  • -
  • Carpet: 1 Space Drugs + 1 Blood
  • -
  • Charcoal: 1 Ash + 1 Sodium Chloride, heat to 380K
  • -
  • Chloral Hydrate: 3 Chlorine + 1 Ethanol + 1 Water
  • -
  • Chlorine Trifluoride: 1 Chlorine + 3 Fluorine
  • -
  • Condensed Capsaicin: 1 Capsaicin Oil + 5 Ethanol
  • -
  • Crank: 1 Diphenhydramine + 1 Ammonia + 1 Lithium + 1 Sulfuric Acid + 1 Welding Fuel, heat to 390K
  • -
  • Cryostylane: 1 Water + 1 Stable Plasma + 1 Nitrogen
  • -
  • Cryoxadone: 1 Stable Plasma + 1 Acetone + 1 Unstable Mutagen
  • -
  • Cryptobiolin: 1 Oxygen + 1 Potassium + 1 Sugar
  • -
  • Cyanide: 1 Oil + 1 Ammonia + 1 Oxygen, heat to 380K
  • -
  • Diethylamine: 1 Ammonia + 1 Ethanol
  • -
  • Diphenhydramine: 1 Oil + 1 Carbon + 1 Bromine + 1 Diethylamine + 1 Ethanol
  • -
  • Drying Agent: 2 Stable Plasma + 1 Ethanol + 1 Sodium
  • -
  • EMP: 1 Iron + 1 Uranium
  • -
  • Ephedrine: 1 Diethylamine + 1 Sugar + 1 Oil + 1 Hydrogen
  • -
  • Epinephrine: 1 Phenol + 1 Acetone + 1 Diethylamine + 1 Oxygen + 1 Chlorine + 1 Hydrogen
  • -
  • Explosion: 1 Potassium + 1 Water
  • -
  • Flash Powder: 1 Aluminium + 1 Potassium + 1 Sulfur
  • -
  • Fluorosulfuric Acid: 1 Fluorine + 1 Hydrogen + 1 Potassium + 1 Sulfuric Acid, heat to 380K
  • -
  • Foam Surfactant: 2 Carbon + 2 Fluorine + 1 Sulfuric Acid
  • -
  • Foaming Agent: 1 Lithium + 1 Hydrogen
  • -
  • Formaldehyde: 1 Ethanol + 1 Oxygen + 1 Silver, heat to 420K
  • -
  • Glycerol: 3 Corn Oil + 1 Sulfuric Acid
  • -
  • Impedrezene: 1 Mercury + 1 Oxygen + 1 Sugar
  • -
  • Inacusiate: 1 Charcoal + 1 Carbon + 1 Water
  • -
  • Itching Powder: 1 Welding Fuel + 1 Ammonia + 1 Charcoal
  • -
  • Krokodil: 1 Diphenhydramine + 1 Space Cleaner + 1 Potassium + 1 Morphine + 1 Phosphorus + 1 Welding Fuel, heat to 390K
  • -
  • Life: 1 Strange Reagent + 1 Synthflesh + 1 Blood, heat to 375K
  • -
  • Leporazine: 1 Copper + 1 Silicon + 5 Plasma(catalyst)
  • -
  • Liquid Dark Matter: 1 Stable Plasma + 1 Radium + 1 Carbon
  • -
  • Lipolicide: 1 Mercury + 1 Diethylamine + 1 Ephedrine
  • -
  • Lexorin: 1 Hydrogen + 1 Nitrogen + 1 Plasma
  • -
  • Mannitol: 1 Hydrogen + 1 Water + 1 Sugar
  • -
  • Metal Foam: 3 Iron/aluminium + 1 Fluorosulfuric Acid + 1 Foaming Agent
  • -
  • Methamphetamine: 1 Ephedrine + 1 Iodine + 1 Phosphorus + 1 Hydrogen, heat to 374K
  • -
  • Mindbreaker Toxin: Anti-toxin + 1 Hydrogen + 1 Silicon
  • -
  • Mutadone: 1 Unstable Mutagen + 1 Acetone + 1 Bromine
  • -
  • Mute Toxin: 2 Uranium + 1 Water + 1 Carbon
  • -
  • Napalm: 1 Sugar + 1 Welding Fuel + 1 Ethanol
  • -
  • Nitroglycerin: 1 Glycerol + 1 Fluorosulfuric Acid + 1 Sulfuric Acid
  • -
  • Neurotoxin: 1 Space Drugs, heat to 674K
  • -
  • Oculine: 1 Charcoal + 1 Carbon + 1 Hydrogen
  • -
  • Oil: 1 Welding Fuel + 1 Carbon + 1 Hydrogen
  • -
  • Oxandrolone: 2 Carbon + 1 Phenol + 1 Hydrogen + 1 Oxygen
  • -
  • Pentetic Acid: 1 Welding Fuel + 1 Chlorine + 1 Ammonia + 1 Formaldehyde + 1 Sodium + 1 Cyanide
  • -
  • Perfluorodecalin: 1 Hydrogen + 1 Fluorine + 1 Oil, heat to 370K
  • -
  • Pest Killer: 1 Toxin + 4 Ethanol
  • -
  • Phenol: 1 Water + 1 Chlorine + 1 Oil
  • -
  • Phlogiston: 1 Phosphorus + 1 Sulfuric Acid + 1 Stable Plasma
  • -
  • Plant-B-Gone: 1 Toxin + 4 Water
  • -
  • Plasma Solidification: 20 Plasma + 5 Frost Oil + 5 Iron
  • -
  • Potassium Iodide: 1 Potassium + 1 Iodine
  • -
  • Pyrosium: 1 Stable Plasma + 1 Radium + 1 Phosphorus
  • -
  • Rezadone: 1 Carpotoxin + 1 Cryptobiolin + 1 Copper
  • -
  • Saltpetre: 1 Potassium + 1 Nitrogen + 3 Oxygen
  • -
  • Saline-Glucose Solution: 1 Sodium Chloride + 1 Water + 1 Sugar
  • -
  • Salbutamol: 1 Salicyclic Acid + 1 Lithium + 1 Aluminium + 1 Bromine + 1 Ammonia
  • -
  • Salicyclic Acid: 1 Sodium + 1 Phenol + 1 Carbon + 1 Oxygen + 1 Sulfuric Acid
  • -
  • Silver Sulfadiazine: 1 Ammonia + 1 Silver + 1 Sulfur + 1 Chlorine + 1 Oxygen
  • -
  • Smoke: 1 Phosphorus + 1 Potassium + 1 Sugar
  • -
  • Sonic Powder: 1 Oxygen + 1 Cola + 1 Phosphorus
  • -
  • Sorium: 1 Mercury + 1 Oxygen + 1 Nitrogen + 1 Carbon
  • -
  • Sodium Chloride: 1 Sodium + 1 Chlorine + 1 Water
  • -
  • Space Cleaner: 1 Ammonia + 1 Water
  • -
  • Space Drugs: 1 Lithium + 1 Mercury + 1 Sugar
  • -
  • Space Lube: 1 Oxygen + 1 Silicon + 1 Water
  • -
  • Spaceacillin: 1 Epinephrine + 1 Cryptobiolin
  • -
  • Stabilizing Agent: 1 Iron + 1 Oxygen + 1 Hydrogen
  • -
  • Sterilizine: 1 Anti-toxin + 1 Chlorine + 1 Ethanol
  • -
  • Strange Reagent: 1 Omnizine + 1 Holy Water + 1 Unstable Mutagen
  • -
  • Styptic Powder: 1 Aluminium + 1 Hydrogen + 1 Oxygen + 1 Sulfuric Acid
  • -
  • Sulfonal: 1 Acetone + 1 Diethylamine + 1 sulfur
  • -
  • Synaptizine: 1 Sugar + 1 Lithium + 1 Water
  • -
  • Synthflesh: 1 Blood + 1 Carbon + 1 Styptic Powder
  • -
  • Thermite: 1 Aluminium + 1 Iron + 1 Oxygen
  • -
  • Unstable Mutagen: 1 Chlorine + 1 Phosphorus + 1 Radium
  • -
  • Virus Food: 1 Water + 1 Milk
  • -
  • Weed Killer: 1 Toxin + 4 Ammonia
  • -
  • Zombie Powder: 5 Morphine + 5 Carpotoxin + 5 Copper
  • -
- - "} - - /obj/item/weapon/book/manual/barman_recipes name = "Barman Recipes" icon_state = "barbook" @@ -1026,6 +907,13 @@ "} +/obj/item/weapon/book/manual/wiki/chemistry + name = "Chemistry Textbook" + icon_state ="chemistrybook" + author = "Nanotrasen" + title = "Chemistry Textbook" + page_link = "Guide_to_chemistry" + /obj/item/weapon/book/manual/wiki/engineering_construction name = "Station Repairs and Construction" icon_state ="bookEngineering" From 4878ddc0eea7a61577bad2f300d4c0392a4f45af Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 21 Oct 2015 23:23:46 -0500 Subject: [PATCH 038/418] Remove hats, human respawn, mob layer --- .../living/simple_animal/hostile/zombie.dm | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/zombie.dm b/code/modules/mob/living/simple_animal/hostile/zombie.dm index c6c6166dcb5..7e06f489dcd 100644 --- a/code/modules/mob/living/simple_animal/hostile/zombie.dm +++ b/code/modules/mob/living/simple_animal/hostile/zombie.dm @@ -29,6 +29,7 @@ butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/zombie = 3) see_invisible = SEE_INVISIBLE_MINIMUM see_in_dark = 8 + layer = MOB_LAYER - 0.1 @@ -51,6 +52,9 @@ stored_corpse.loc = loc if(ckey) stored_corpse.ckey = src.ckey + stored_corpse << "You're down, but not quite out. You'll be back on your feet within a minute or two." + var/mob/living/simple_animal/hostile/zombie/holder/D = new/mob/living/simple_animal/hostile/zombie/holder(stored_corpse) + D.faction = src.faction qdel(src) return src << "You're down, but not quite out. You'll be back on your feet within a minute or two." @@ -60,6 +64,14 @@ /mob/living/simple_animal/hostile/zombie/proc/Zombify(mob/living/carbon/human/H) H.set_species(/datum/species/zombie) + if(H.head) //So people can see they're a zombie + var/obj/item/clothing/helmet = H.head + if(!H.unEquip(helmet)) + qdel(helmet) + if(H.wear_mask) + var/obj/item/clothing/mask = H.wear_mask + if(!H.unEquip(mask)) + qdel(mask) var/mob/living/simple_animal/hostile/zombie/Z = new /mob/living/simple_animal/hostile/zombie(H.loc) Z.faction = src.faction Z.appearance = H.appearance @@ -71,8 +83,11 @@ break Z.ckey = H.ckey H.stat = DEAD + H.butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/zombie = 3) //So now you can carve them up when you kill them. Maybe not a good idea for the human versions. H.loc = Z Z.stored_corpse = H + for(var/mob/living/simple_animal/hostile/zombie/holder/D in H) //Dont want to revive them twice + qdel(D) visible_message("[Z] staggers to their feet!") Z << "You are now a zombie! Follow your creators lead!" @@ -120,3 +135,22 @@ used = TRUE else user << "The unearthly energies that once powered this shovel are now dormant. Still sharp though." + + +/mob/living/simple_animal/hostile/zombie/holder + name = "infection holder" + desc = "You shouldn't be seeing this." + maxbodytemp = 100000000000000000000 + unsuitable_atmos_damage = 0 + stat_attack = 2 + gold_core_spawnable = 0 + AIStatus = AI_OFF + stop_automated_movement = 1 + +/mob/living/simple_animal/hostile/zombie/holder/New() + ..() + spawn(rand(800,1200)) + if(istype(loc, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = loc + Zombify(H) + qdel(src) \ No newline at end of file From 154a706518dd699c1149a0e067651866616d90c9 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Thu, 22 Oct 2015 02:18:12 -0500 Subject: [PATCH 039/418] Red paint --- .../Chemistry-Recipes/Slime_extracts.dm | 18 ++++++++++ .../research/xenobiology/xenobiology.dm | 14 ++++++++ html/changelogs/Kor-RED.yml | 36 +++++++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 html/changelogs/Kor-RED.yml diff --git a/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm b/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm index bf01060db8f..1a44b746166 100644 --- a/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm +++ b/code/modules/reagents/Chemistry-Recipes/Slime_extracts.dm @@ -395,6 +395,8 @@ P.amount = 10 P.loc = get_turf(holder.my_atom) +//Red + /datum/chemical_reaction/slimemutator name = "Slime Mutator" id = "m_slimemutator" @@ -425,6 +427,22 @@ for(var/mob/O in viewers(get_turf(holder.my_atom), null)) O.show_message(text("The [slime] is driven into a frenzy!"), 1) + +/datum/chemical_reaction/slimespeed + name = "Slime Speed" + id = "m_speed" + result = null + required_reagents = list("water" = 1) + result_amount = 1 + required_container = /obj/item/slime_extract/red + required_other = 1 + +/datum/chemical_reaction/slimemutator/on_reaction(datum/reagents/holder) + feedback_add_details("slime_cores_used","[type]") + var/obj/item/slimepotion/speed/P = new /obj/item/slimepotion/speed + P.loc = get_turf(holder.my_atom) + + //Pink /datum/chemical_reaction/docility name = "Docility Potion" diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index add78861908..921d8f6c16a 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -297,7 +297,21 @@ M.mutator_used = TRUE qdel(src) +/obj/item/slimepotion/speed + name = "slime speed potion" + desc = "A potent chemical mix that will remove the slowdown from any item." + icon = 'icons/obj/chemical.dmi' + icon_state = "bottle3" +/obj/item/slimepotion/speed/afterattack(obj/item/C, mob/user) + ..() + if(C.slowdown <= 0) + user << "The [C] can't be made any faster!" + return..() + user <<"You slather the red gunk over the [C], making it faster." + C.color = "#FF0000" + C.slowdown = 0 + qdel(src) ////////Adamantine Golem stuff I dunno where else to put it diff --git a/html/changelogs/Kor-RED.yml b/html/changelogs/Kor-RED.yml new file mode 100644 index 00000000000..eaca6e59f45 --- /dev/null +++ b/html/changelogs/Kor-RED.yml @@ -0,0 +1,36 @@ +################################ +# 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 +# spellcheck (typo fixes) +# experiment +# tgs (TG-ported fixes?) +################################# + +# Your name. +author: Kor + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Using water with a red slime extract will now yield a speed potion. Using the speed potion on an item of clothing will paint it red and remove its slowdown." From 1acb8bd6fa5a95a97ef5e6a580127a79c4c40f03 Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 22 Oct 2015 12:43:14 +0200 Subject: [PATCH 040/418] Birdstation change --- _maps/map_files/BirdStation/misc.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_maps/map_files/BirdStation/misc.dm b/_maps/map_files/BirdStation/misc.dm index 88efe5a9dd5..746f96e5cd8 100644 --- a/_maps/map_files/BirdStation/misc.dm +++ b/_maps/map_files/BirdStation/misc.dm @@ -7,17 +7,17 @@ L.loc = src.loc - if(issilicon(L)) + if(istype(L,/mob/living/silicon)) playsound(src.loc, 'sound/items/Welder.ogg', 50, 1) else playsound(src.loc, 'sound/effects/splat.ogg', 50, 1) var/gib = 1 - if(iscarbon(L)) + if(istype(L,/mob/living/carbon) gib = 0 add_blood(L) - if(!blood && !issilicon(L)) + if(!blood && !istype(L,/mob/living/silicon)) blood = 1 update_icon() L.Paralyse(5) From 96317030a1015ad1885ad70c91e4e0fcd7401975 Mon Sep 17 00:00:00 2001 From: GunHog Date: Thu, 22 Oct 2015 08:15:09 -0500 Subject: [PATCH 041/418] Diag HUDs 2 Adds Diagnostic HUDs --- code/__DEFINES/hud.dm | 15 ++++++----- code/datums/hud.dm | 4 ++- code/game/data_huds.dm | 25 +++++++++++++++++- code/modules/clothing/glasses/hud.dm | 6 +++++ code/modules/clothing/spacesuits/hardsuit.dm | 4 +++ code/modules/mob/living/silicon/ai/life.dm | 2 ++ code/modules/mob/living/silicon/robot/life.dm | 3 +++ code/modules/mob/living/silicon/silicon.dm | 19 ++++++++++++- icons/mob/hud.dmi | Bin 3728 -> 3973 bytes 9 files changed, 69 insertions(+), 9 deletions(-) diff --git a/code/__DEFINES/hud.dm b/code/__DEFINES/hud.dm index f4f703601a7..369537eb764 100644 --- a/code/__DEFINES/hud.dm +++ b/code/__DEFINES/hud.dm @@ -9,8 +9,10 @@ #define IMPLOYAL_HUD "5" // loyality implant #define IMPCHEM_HUD "6" // chemical implant #define IMPTRACK_HUD "7" // tracking implant +#define DIAG_STAT_HUD "8" +#define DIAG_HUD "9" //for antag huds. these are used at the /mob level -#define ANTAG_HUD "8" +#define ANTAG_HUD "10" //data HUD (medhud, sechud) defines //Don't forget to update human/New() if you change these! @@ -18,10 +20,11 @@ #define DATA_HUD_SECURITY_ADVANCED 2 #define DATA_HUD_MEDICAL_BASIC 3 #define DATA_HUD_MEDICAL_ADVANCED 4 +#define DATA_HUD_DIAGNOSTIC 5 //antag HUD defines -#define ANTAG_HUD_CULT 5 -#define ANTAG_HUD_REV 6 -#define ANTAG_HUD_OPS 7 +#define ANTAG_HUD_CULT 6 +#define ANTAG_HUD_REV 7 +#define ANTAG_HUD_OPS 8 -#define ANTAG_HUD_WIZ 8 -#define ANTAG_HUD_SHADOW 9 +#define ANTAG_HUD_WIZ 9 +#define ANTAG_HUD_SHADOW 10 diff --git a/code/datums/hud.dm b/code/datums/hud.dm index f17de6bbbcb..c507fe27676 100644 --- a/code/datums/hud.dm +++ b/code/datums/hud.dm @@ -6,6 +6,7 @@ var/datum/atom_hud/huds = list( \ DATA_HUD_SECURITY_ADVANCED = new/datum/atom_hud/data/security/advanced(), \ DATA_HUD_MEDICAL_BASIC = new/datum/atom_hud/data/medical/basic(), \ DATA_HUD_MEDICAL_ADVANCED = new/datum/atom_hud/data/medical/advanced(), \ + DATA_HUD_DIAGNOSTIC = new/datum/atom_hud/data/diagnostic(), \ ANTAG_HUD_CULT = new/datum/atom_hud/antag(), \ ANTAG_HUD_REV = new/datum/atom_hud/antag(), \ ANTAG_HUD_OPS = new/datum/atom_hud/antag(), \ @@ -50,7 +51,8 @@ var/datum/atom_hud/huds = list( \ if(!M.client) return for(var/i in hud_icons) - M.client.images |= A.hud_list[i] + if(A.hud_list[i]) + M.client.images |= A.hud_list[i] //MOB PROCS /mob/proc/reload_huds() diff --git a/code/game/data_huds.dm b/code/game/data_huds.dm index 4335c65caad..0d62c565e85 100644 --- a/code/game/data_huds.dm +++ b/code/game/data_huds.dm @@ -44,7 +44,10 @@ /datum/atom_hud/data/security/advanced hud_icons = list(ID_HUD, IMPTRACK_HUD, IMPLOYAL_HUD, IMPCHEM_HUD, WANTED_HUD) -/* MED/SEC HUD HOOKS */ +/datum/atom_hud/data/diagnostic + hud_icons = list (DIAG_HUD, DIAG_STAT_HUD) + +/* MED/SEC/DIAG HUD HOOKS */ /* * THESE HOOKS SHOULD BE CALLED BY THE MOB SHOWING THE HUD @@ -132,6 +135,7 @@ if(wear_id) holder.icon_state = "hud[ckey(wear_id.GetJobName())]" sec_hud_set_security_status() + var/turf/T = get_turf(src) if (T) crewmonitor.queueUpdate(T.z) @@ -172,3 +176,22 @@ holder.icon_state = "huddischarged" return holder.icon_state = null + + +//called when a silicon changes health +/mob/living/silicon/proc/diag_hud_set_health() + var/image/holder = hud_list[DIAG_HUD] + if(stat == DEAD) + holder.icon_state = "hudhealth-100" + else + holder.icon_state = "hud[RoundHealth(health/maxHealth*100)]" + +/mob/living/silicon/proc/diag_hud_set_status() + var/image/holder = hud_list[DIAG_STAT_HUD] + switch(stat) + if(CONSCIOUS) + holder.icon_state = "hudstat" + if(UNCONSCIOUS) + holder.icon_state = "hudoffline" + else + holder.icon_state = "huddead2" \ No newline at end of file diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index be1957c3931..50779dd1141 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -40,6 +40,12 @@ darkness_view = 8 invis_view = SEE_INVISIBLE_MINIMUM +/obj/item/clothing/glasses/hud/diagnostic + name = "Diagnostic HUD" + desc = "A heads-up display that scans silicons" + icon_state = "healthhud" + hud_type = DATA_HUD_DIAGNOSTIC + /obj/item/clothing/glasses/hud/security name = "Security HUD" desc = "A heads-up display that scans the humans in view and provides accurate data about their ID status and security records." diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index 9c05314a0c6..e2f5b8e9048 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -323,10 +323,14 @@ /obj/item/clothing/head/helmet/space/hardsuit/rd/equipped(mob/user, slot) user.scanner.Grant(user) + var/datum/atom_hud/DHUD = huds[DATA_HUD_DIAGNOSTIC] + DHUD.add_hud_to(user) ..(user, slot) /obj/item/clothing/head/helmet/space/hardsuit/rd/dropped(mob/user) user.scanner.devices -= 1 + var/datum/atom_hud/DHUD = huds[DATA_HUD_DIAGNOSTIC] + DHUD.remove_hud_from(user) ..(user) /obj/item/clothing/suit/space/hardsuit/rd diff --git a/code/modules/mob/living/silicon/ai/life.dm b/code/modules/mob/living/silicon/ai/life.dm index 840f19ef3bb..cb5851e1012 100644 --- a/code/modules/mob/living/silicon/ai/life.dm +++ b/code/modules/mob/living/silicon/ai/life.dm @@ -177,3 +177,5 @@ health = maxHealth - getOxyLoss() - getToxLoss() - getBruteLoss() if(!fire_res_on_core) health -= getFireLoss() + diag_hud_set_status() + diag_hud_set_health() \ No newline at end of file diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index 30fdc2e0b37..85350a95213 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -44,6 +44,7 @@ if(health <= -maxHealth) //die only once death() + diag_hud_set_status() return if(health < maxHealth*0.5) //Gradual break down of modules as more damage is sustained @@ -62,6 +63,8 @@ if (paralysis || stunned || weakened) //Stunned etc. stat = UNCONSCIOUS update_headlamp() + diag_hud_set_health() + diag_hud_set_status() return 1 diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 30d0f635f67..dc99501935a 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -14,6 +14,8 @@ var/designation = "" var/radiomod = "" //Radio character used before state laws/arrivals announce to allow department transmissions, default, or none at all. var/obj/item/device/camera/siliconcam/aicamera = null //photography + //hud_possible = list(DIAG_STAT_HUD, DIAG_HUD, ANTAG_HUD) + hud_possible = list(ANTAG_HUD, DIAG_STAT_HUD, DIAG_HUD) var/obj/item/device/radio/borg/radio = null //AIs dont use this but this is at the silicon level to advoid copypasta in say() @@ -25,9 +27,15 @@ var/med_hud = DATA_HUD_MEDICAL_ADVANCED //Determines the med hud to use var/sec_hud = DATA_HUD_SECURITY_ADVANCED //Determines the sec hud to use + var/d_hud = DATA_HUD_DIAGNOSTIC //There is only one kind of diag hud var/law_change_counter = 0 +/mob/living/silicon/New() + var/datum/atom_hud/data/diagnostic/diag_hud = huds[DATA_HUD_DIAGNOSTIC] + diag_hud.add_to_hud(src) + ..() + /mob/living/silicon/Destroy() radio = null aicamera = null @@ -338,8 +346,10 @@ /mob/living/silicon/proc/remove_med_sec_hud() var/datum/atom_hud/secsensor = huds[sec_hud] var/datum/atom_hud/medsensor = huds[med_hud] + var/datum/atom_hud/diagsensor = huds[d_hud] secsensor.remove_hud_from(src) medsensor.remove_hud_from(src) + diagsensor.remove_hud_from(src) /mob/living/silicon/proc/add_sec_hud() var/datum/atom_hud/secsensor = huds[sec_hud] @@ -349,9 +359,13 @@ var/datum/atom_hud/medsensor = huds[med_hud] medsensor.add_hud_to(src) +/mob/living/silicon/proc/add_diag_hud() + var/datum/atom_hud/diagsensor = huds[d_hud] + diagsensor.add_hud_to(src) + /mob/living/silicon/proc/sensor_mode() set name = "Set Sensor Augmentation" - var/sensor_type = input("Please select sensor type.", "Sensor Integration", null) in list("Security", "Medical","Disable") + var/sensor_type = input("Please select sensor type.", "Sensor Integration", null) in list("Security", "Medical","Diagnostic","Disable") remove_med_sec_hud() switch(sensor_type) if ("Security") @@ -360,6 +374,9 @@ if ("Medical") add_med_hud() src << "Life signs monitor overlay enabled." + if ("Diagnostic") + add_diag_hud() + src << "Robotics diagnostic overlay enabled." if ("Disable") src << "Sensor augmentations disabled." diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index 4fc1a449fb96c6bda8c9745cb18aeafda476ea67..76b665ad31d92976f913f3667bb9ee671d7457c9 100644 GIT binary patch delta 3592 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 delta 3345 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 From 5527b20a11b6135699b4dd9a7c8f30a8011630bb Mon Sep 17 00:00:00 2001 From: Cheridan Date: Thu, 22 Oct 2015 11:15:46 -0500 Subject: [PATCH 042/418] Upgrades SS13 to Fifth Edition --- code/game/objects/items/weapons/AI_modules.dm | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index a889ae340ab..b76b50fea13 100644 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -297,10 +297,10 @@ AI MODULES "Minimize expenses") -/****************** P.A.L.A.D.I.N. **************/ +/****************** P.A.L.A.D.I.N. 3.5e **************/ /obj/item/weapon/aiModule/core/full/paladin // -- NEO - name = "'P.A.L.A.D.I.N.' Core AI Module" + name = "'P.A.L.A.D.I.N. version 3.5e' Core AI Module" origin_tech = "programming=3;materials=6" laws = list("Never willingly commit an evil act.",\ "Respect legitimate authority", "Act with honor",\ @@ -308,6 +308,18 @@ AI MODULES "Punish those who harm or threaten innocents") +/****************** P.A.L.A.D.I.N. 5e **************/ + +/obj/item/weapon/aiModule/core/full/paladin5e + name = "'P.A.L.A.D.I.N. version 5e' Core AI Module" + origin_tech = "programming=3;materials=6" + laws = list("Don't lie or cheat. Let your word be your promise.",\ + "Never fear to act, though caution is wise.", \ + "Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom",\ + "Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount ofharm.",\ + "Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.") + + /********************* Custom *********************/ /obj/item/weapon/aiModule/core/full/custom From b246835ed088ff55e91aca8d8e30a697d2682de6 Mon Sep 17 00:00:00 2001 From: Cheridan Date: Thu, 22 Oct 2015 11:19:44 -0500 Subject: [PATCH 043/418] I like this path name better --- code/game/objects/items/weapons/AI_modules.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index b76b50fea13..add0c116a39 100644 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -310,7 +310,7 @@ AI MODULES /****************** P.A.L.A.D.I.N. 5e **************/ -/obj/item/weapon/aiModule/core/full/paladin5e +/obj/item/weapon/aiModule/core/full/paladin_devotion name = "'P.A.L.A.D.I.N. version 5e' Core AI Module" origin_tech = "programming=3;materials=6" laws = list("Don't lie or cheat. Let your word be your promise.",\ From 1d2b60b227b6a630f0870e020fedaf3309c0a6a0 Mon Sep 17 00:00:00 2001 From: Cheridan Date: Thu, 22 Oct 2015 11:20:48 -0500 Subject: [PATCH 044/418] Typo fix --- code/game/objects/items/weapons/AI_modules.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index add0c116a39..6c988004230 100644 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -315,8 +315,8 @@ AI MODULES origin_tech = "programming=3;materials=6" laws = list("Don't lie or cheat. Let your word be your promise.",\ "Never fear to act, though caution is wise.", \ - "Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom",\ - "Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount ofharm.",\ + "Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom", \ + "Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.", \ "Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.") From bc08682f312c8f325a79c333ac984fda1b81edbb Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 22 Oct 2015 19:15:44 +0200 Subject: [PATCH 045/418] Update misc.dm --- _maps/map_files/BirdStation/misc.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_maps/map_files/BirdStation/misc.dm b/_maps/map_files/BirdStation/misc.dm index 746f96e5cd8..b86c9247888 100644 --- a/_maps/map_files/BirdStation/misc.dm +++ b/_maps/map_files/BirdStation/misc.dm @@ -13,7 +13,7 @@ playsound(src.loc, 'sound/effects/splat.ogg', 50, 1) var/gib = 1 - if(istype(L,/mob/living/carbon) + if(istype(L,/mob/living/carbon)) gib = 0 add_blood(L) @@ -60,4 +60,4 @@ new /obj/item/weapon/tank/internals/emergency_oxygen(src) new /obj/item/weapon/reagent_containers/hypospray/medipen(src) new /obj/item/device/radio/off(src) - return \ No newline at end of file + return From 77d3260894d1194af467b081a9a4000d0d866087 Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 22 Oct 2015 21:25:54 +0200 Subject: [PATCH 046/418] Action Button Cleanup Removing action_type in lieu of subtypes --- code/_onclick/hud/action.dm | 136 +++++++++++------- .../gamemodes/abduction/machinery/camera.dm | 39 +++-- .../machinery/computer/camera_advanced.dm | 14 +- code/game/mecha/combat/combat.dm | 6 +- code/game/mecha/combat/durand.dm | 6 +- code/game/mecha/combat/gygax.dm | 6 +- code/game/mecha/combat/marauder.dm | 12 +- code/game/mecha/combat/phazon.dm | 12 +- code/game/mecha/mecha.dm | 33 +++-- code/modules/mob/living/life.dm | 2 +- code/modules/mob/mob_defines.dm | 2 +- 11 files changed, 145 insertions(+), 123 deletions(-) diff --git a/code/_onclick/hud/action.dm b/code/_onclick/hud/action.dm index 507090fdb4e..e70cc3c56da 100644 --- a/code/_onclick/hud/action.dm +++ b/code/_onclick/hud/action.dm @@ -12,12 +12,9 @@ /datum/action var/name = "Generic Action" - var/action_type = AB_ITEM - var/procname = null var/obj/item/target = null var/check_flags = 0 var/processing = 0 - var/active = 0 var/obj/screen/movable/action_button/button = null var/button_icon = 'icons/mob/actions.dmi' var/button_icon_state = "default" @@ -55,31 +52,8 @@ /datum/action/proc/Trigger() if(!Checks()) - return - switch(action_type) - if(AB_ITEM) - if(target) - var/obj/item/item = target - item.ui_action_click() - if(AB_SPELL) - if(target) - var/obj/effect/proc_holder/spell = target - spell.Click() - if(AB_INNATE) - if(!active) - Activate() - else - Deactivate() - if(AB_GENERIC) - if(target && procname) - call(target,procname)(usr) - return - -/datum/action/proc/Activate() - return - -/datum/action/proc/Deactivate() - return + return 0 + return 1 /datum/action/proc/Process() return @@ -113,6 +87,15 @@ /datum/action/proc/UpdateName() return name +/datum/action/proc/ApplyIcon(obj/screen/movable/action_button/current_button) + current_button.overlays.Cut() + if(button_icon && button_icon_state) + var/image/img + img = image(button_icon,current_button,button_icon_state) + img.pixel_x = 0 + img.pixel_y = 0 + current_button.overlays += img + /obj/screen/movable/action_button var/datum/action/owner screen_loc = "WEST,NORTH" @@ -133,19 +116,7 @@ icon = owner.button_icon icon_state = owner.background_icon_state - overlays.Cut() - var/image/img - if(owner.action_type == AB_ITEM && owner.target) - var/obj/item/I = owner.target - var/old = I.layer - I.layer = FLOAT_LAYER //AAAH - overlays += I - I.layer = old - else if(owner.button_icon && owner.button_icon_state) - img = image(owner.button_icon,src,owner.button_icon_state) - img.pixel_x = 0 - img.pixel_y = 0 - overlays += img + owner.ApplyIcon(src) if(!owner.IsAvailable()) color = rgb(128,0,0,128) @@ -159,7 +130,11 @@ icon_state = "bg_default" var/hidden = 0 -/obj/screen/movable/action_button/hide_toggle/Click() +/obj/screen/movable/action_button/hide_toggle/Click(location,control,params) + var/list/modifiers = params2list(params) + if(modifiers["shift"]) + moved = 0 + return 1 usr.hud_used.action_buttons_hidden = !usr.hud_used.action_buttons_hidden hidden = usr.hud_used.action_buttons_hidden @@ -216,23 +191,40 @@ /datum/action/item_action check_flags = AB_CHECK_RESTRAINED|AB_CHECK_STUNNED|AB_CHECK_LYING|AB_CHECK_ALIVE|AB_CHECK_INSIDE +/datum/action/item_action/Trigger() + if(!..()) + return 0 + if(target) + var/obj/item/item = target + item.ui_action_click() + return 1 + /datum/action/item_action/CheckRemoval(mob/living/user) return !(target in user) +/datum/action/item_action/ApplyIcon(obj/screen/movable/action_button/current_button) + current_button.overlays.Cut() + if(target) + var/obj/item/I = target + var/old = I.layer + I.layer = FLOAT_LAYER //AAAH + current_button.overlays += I + I.layer = old + /datum/action/item_action/hands_free check_flags = AB_CHECK_ALIVE|AB_CHECK_INSIDE -/datum/action/organ_action +/datum/action/item_action/organ_action check_flags = AB_CHECK_ALIVE -/datum/action/organ_action/CheckRemoval(mob/living/carbon/user) +/datum/action/item_action/organ_action/CheckRemoval(mob/living/carbon/user) if(!iscarbon(user)) return 1 if(target in user.internal_organs) return 0 return 1 -/datum/action/organ_action/IsAvailable() +/datum/action/item_action/organ_action/IsAvailable() var/obj/item/organ/internal/I = target if(!I.owner) return 0 @@ -240,10 +232,17 @@ //Preset for spells /datum/action/spell_action - action_type = AB_SPELL check_flags = 0 background_icon_state = "bg_spell" +/datum/action/spell_action/Trigger() + if(!..()) + return 0 + if(target) + var/obj/effect/proc_holder/spell = target + spell.Click() + return 1 + /datum/action/spell_action/UpdateName() var/obj/effect/proc_holder/spell/spell = target return spell.name @@ -266,34 +265,65 @@ return 0 return !(target in owner.mob_spell_list) +//Preset for general and toggled actions +/datum/action/innate + check_flags = 0 + var/active = 0 + +/datum/action/innate/Trigger() + if(!..()) + return 0 + if(!active) + Activate() + else + Deactivate() + return 1 + +/datum/action/innate/proc/Activate() + return + +/datum/action/innate/proc/Deactivate() + return + +//Preset for action that call specific procs (consider innate) +/datum/action/generic + check_flags = 0 + var/procname + +/datum/action/generic/Trigger() + if(!..()) + return 0 + if(target && procname) + call(target,procname)(usr) + return 1 + //Action button controlling a mob's research examine ability. -/datum/action/scan_mode +/datum/action/innate/scan_mode name = "Toggle Research Scanner" button_icon_state = "scan_mode" check_flags = AB_CHECK_RESTRAINED|AB_CHECK_STUNNED|AB_CHECK_ALIVE - action_type = AB_INNATE var/devices = 0 //How may enabled scanners the mob has -/datum/action/scan_mode/Activate() +/datum/action/innate/scan_mode/Activate() active = 1 owner.research_scanner = 1 owner << " Research analyzer is now active." -/datum/action/scan_mode/Deactivate() +/datum/action/innate/scan_mode/Deactivate() active = 0 owner.research_scanner = 0 owner << " Research analyzer deactivated." -/datum/action/scan_mode/Grant(mob/living/T) +/datum/action/innate/scan_mode/Grant(mob/living/T) devices += 1 ..(T) -/datum/action/scan_mode/CheckRemoval(mob/living/user) +/datum/action/innate/scan_mode/CheckRemoval(mob/living/user) if(devices) return 0 return 1 -/datum/action/scan_mode/Remove(mob/living/T) +/datum/action/innate/scan_mode/Remove(mob/living/T) owner.research_scanner = 0 ..(T) \ No newline at end of file diff --git a/code/game/gamemodes/abduction/machinery/camera.dm b/code/game/gamemodes/abduction/machinery/camera.dm index ce9470f9ac8..75f58e9cd4b 100644 --- a/code/game/gamemodes/abduction/machinery/camera.dm +++ b/code/game/gamemodes/abduction/machinery/camera.dm @@ -2,12 +2,12 @@ name = "Human Observation Console" var/team = 0 networks = list("SS13","Abductor") - off_action = new/datum/action/camera_off/abductor //specific datum - var/datum/action/teleport_in/tele_in_action = new - var/datum/action/teleport_out/tele_out_action = new - var/datum/action/teleport_self/tele_self_action = new - var/datum/action/vest_mode_swap/vest_mode_action = new - var/datum/action/vest_disguise_swap/vest_disguise_action = new + off_action = new/datum/action/innate/camera_off/abductor //specific datum + var/datum/action/innate/teleport_in/tele_in_action = new + var/datum/action/innate/teleport_out/tele_out_action = new + var/datum/action/innate/teleport_self/tele_self_action = new + var/datum/action/innate/vest_mode_swap/vest_mode_action = new + var/datum/action/innate/vest_disguise_swap/vest_disguise_action = new var/obj/machinery/abductor/console/console icon = 'icons/obj/abductor.dmi' @@ -53,7 +53,7 @@ return return ..() -/datum/action/camera_off/abductor/Activate() +/datum/action/innate/camera_off/abductor/Activate() if(!target || !iscarbon(target)) return var/mob/living/carbon/C = target @@ -79,12 +79,11 @@ src.Remove(C) -/datum/action/teleport_in +/datum/action/innate/teleport_in name = "Send To" - action_type = AB_INNATE button_icon_state = "beam_down" -/datum/action/teleport_in/Activate() +/datum/action/innate/teleport_in/Activate() if(!target || !iscarbon(owner)) return var/mob/living/carbon/human/C = owner @@ -94,24 +93,22 @@ if(cameranet.checkTurfVis(remote_eye.loc)) P.PadToLoc(remote_eye.loc) -/datum/action/teleport_out +/datum/action/innate/teleport_out name = "Retrieve" - action_type = AB_INNATE button_icon_state = "beam_up" -/datum/action/teleport_out/Activate() +/datum/action/innate/teleport_out/Activate() if(!target || !iscarbon(owner)) return var/obj/machinery/abductor/console/console = target console.TeleporterRetrieve() -/datum/action/teleport_self +/datum/action/innate/teleport_self name = "Send Self" - action_type = AB_INNATE button_icon_state = "beam_down" -/datum/action/teleport_self/Activate() +/datum/action/innate/teleport_self/Activate() if(!target || !iscarbon(owner)) return var/mob/living/carbon/human/C = owner @@ -121,24 +118,22 @@ if(cameranet.checkTurfVis(remote_eye.loc)) P.MobToLoc(remote_eye.loc,C) -/datum/action/vest_mode_swap +/datum/action/innate/vest_mode_swap name = "Switch Vest Mode" - action_type = AB_INNATE button_icon_state = "vest_mode" -/datum/action/vest_mode_swap/Activate() +/datum/action/innate/vest_mode_swap/Activate() if(!target || !iscarbon(owner)) return var/obj/machinery/abductor/console/console = target console.FlipVest() -/datum/action/vest_disguise_swap +/datum/action/innate/vest_disguise_swap name = "Switch Vest Disguise" - action_type = AB_INNATE button_icon_state = "vest_disguise" -/datum/action/vest_disguise_swap/Activate() +/datum/action/innate/vest_disguise_swap/Activate() if(!target || !iscarbon(owner)) return var/obj/machinery/abductor/console/console = target diff --git a/code/game/machinery/computer/camera_advanced.dm b/code/game/machinery/computer/camera_advanced.dm index 4cc24bf776b..faf89bdba12 100644 --- a/code/game/machinery/computer/camera_advanced.dm +++ b/code/game/machinery/computer/camera_advanced.dm @@ -6,8 +6,8 @@ var/mob/camera/aiEye/remote/eyeobj var/mob/living/carbon/human/current_user = null var/list/networks = list("SS13") - var/datum/action/camera_off/off_action = new - var/datum/action/camera_jump/jump_action = new + var/datum/action/innate/camera_off/off_action = new + var/datum/action/innate/camera_jump/jump_action = new /obj/machinery/computer/camera_advanced/proc/CreateEye() eyeobj = new() @@ -103,12 +103,11 @@ else sprint = initial -/datum/action/camera_off +/datum/action/innate/camera_off name = "End Camera View" - action_type = AB_INNATE button_icon_state = "camera_off" -/datum/action/camera_off/Activate() +/datum/action/innate/camera_off/Activate() if(!target || !iscarbon(target)) return var/mob/living/carbon/C = target @@ -127,12 +126,11 @@ C.unset_machine() src.Remove(C) -/datum/action/camera_jump +/datum/action/innate/camera_jump name = "Jump To Camera" - action_type = AB_INNATE button_icon_state = "camera_jump" -/datum/action/camera_jump/Activate() +/datum/action/innate/camera_jump/Activate() if(!target || !iscarbon(target)) return var/mob/living/carbon/C = target diff --git a/code/game/mecha/combat/combat.dm b/code/game/mecha/combat/combat.dm index 33a952fae15..e8d77e9cb6c 100644 --- a/code/game/mecha/combat/combat.dm +++ b/code/game/mecha/combat/combat.dm @@ -4,7 +4,7 @@ damage_absorption = list("brute"=0.7,"fire"=1,"bullet"=0.7,"laser"=0.85,"energy"=1,"bomb"=0.8) var/am = "d3c2fbcadca903a41161ccc9df9cf948" var/thrusters = 0 - var/datum/action/mecha/mech_toggle_thrusters/thrusters_action = new + var/datum/action/innate/mecha/mech_toggle_thrusters/thrusters_action = new /obj/mecha/combat/CheckParts(atom/holder) var/obj/item/weapon/stock_parts/capacitor/C = locate() in holder @@ -52,11 +52,11 @@ return 1 return 0 -/datum/action/mecha/mech_toggle_thrusters +/datum/action/innate/mecha/mech_toggle_thrusters name = "Toggle Thrusters" button_icon_state = "mech_thrusters_off" -/datum/action/mecha/mech_toggle_thrusters/Activate() +/datum/action/innate/mecha/mech_toggle_thrusters/Activate() if(!owner || !chassis || chassis.occupant != owner) return var/obj/mecha/combat/M = chassis diff --git a/code/game/mecha/combat/durand.dm b/code/game/mecha/combat/durand.dm index 9db0a5ade9d..ea5468c142d 100644 --- a/code/game/mecha/combat/durand.dm +++ b/code/game/mecha/combat/durand.dm @@ -13,7 +13,7 @@ var/defence = 0 var/defence_deflect = 35 wreckage = /obj/structure/mecha_wreckage/durand - var/datum/action/mecha/mech_defence_mode/defense_action = new + var/datum/action/innate/mecha/mech_defence_mode/defense_action = new /obj/mecha/combat/durand/relaymove(mob/user,direction) if(defence) @@ -38,11 +38,11 @@ output += "Defence mode: [defence?"on":"off"]" return output -/datum/action/mecha/mech_defence_mode +/datum/action/innate/mecha/mech_defence_mode name = "Toggle Defense Mode" button_icon_state = "mech_defense_mode_off" -/datum/action/mecha/mech_defence_mode/Activate() +/datum/action/innate/mecha/mech_defence_mode/Activate() if(!owner || !chassis || chassis.occupant != owner) return var/obj/mecha/combat/durand/D = chassis diff --git a/code/game/mecha/combat/gygax.dm b/code/game/mecha/combat/gygax.dm index 21f03042451..b89c538dea4 100644 --- a/code/game/mecha/combat/gygax.dm +++ b/code/game/mecha/combat/gygax.dm @@ -15,7 +15,7 @@ internal_damage_threshold = 35 max_equip = 3 step_energy_drain = 3 - var/datum/action/mecha/mech_overload_mode/overload_action = new + var/datum/action/innate/mecha/mech_overload_mode/overload_action = new /obj/mecha/combat/gygax/dark desc = "A lightweight exosuit, painted in a dark scheme. This model appears to have some modifications." @@ -93,11 +93,11 @@ ..() thrusters_action.Remove(user) -/datum/action/mecha/mech_overload_mode +/datum/action/innate/mecha/mech_overload_mode name = "Toggle leg actuators overload" button_icon_state = "mech_overload_off" -/datum/action/mecha/mech_overload_mode/Activate() +/datum/action/innate/mecha/mech_overload_mode/Activate() if(!owner || !chassis || chassis.occupant != owner) return var/obj/mecha/combat/gygax/G = chassis diff --git a/code/game/mecha/combat/marauder.dm b/code/game/mecha/combat/marauder.dm index 2b093ab4d86..2e71d669ddd 100644 --- a/code/game/mecha/combat/marauder.dm +++ b/code/game/mecha/combat/marauder.dm @@ -19,8 +19,8 @@ internal_damage_threshold = 25 force = 45 max_equip = 4 - var/datum/action/mecha/mech_smoke/smoke_action = new - var/datum/action/mecha/mech_zoom/zoom_action = new + var/datum/action/innate/mecha/mech_smoke/smoke_action = new + var/datum/action/innate/mecha/mech_zoom/zoom_action = new /obj/mecha/combat/marauder/New() ..() @@ -133,11 +133,11 @@ ME.attach(src) -/datum/action/mecha/mech_smoke +/datum/action/innate/mecha/mech_smoke name = "Smoke" button_icon_state = "mech_smoke" -/datum/action/mecha/mech_smoke/Activate() +/datum/action/innate/mecha/mech_smoke/Activate() if(!owner || !chassis || chassis.occupant != owner) return var/obj/mecha/combat/marauder/M = chassis @@ -148,11 +148,11 @@ spawn(M.smoke_cooldown) M.smoke_ready = 1 -/datum/action/mecha/mech_zoom +/datum/action/innate/mecha/mech_zoom name = "Zoom" button_icon_state = "mech_zoom_off" -/datum/action/mecha/mech_zoom/Activate() +/datum/action/innate/mecha/mech_zoom/Activate() if(!owner || !chassis || chassis.occupant != owner) return var/obj/mecha/combat/marauder/M = chassis diff --git a/code/game/mecha/combat/phazon.dm b/code/game/mecha/combat/phazon.dm index 0eb7cf4e577..3a03b2b12c7 100644 --- a/code/game/mecha/combat/phazon.dm +++ b/code/game/mecha/combat/phazon.dm @@ -17,8 +17,8 @@ var/phasing = 0 var/phasing_energy_drain = 200 max_equip = 3 - var/datum/action/mecha/mech_switch_damtype/switch_damtype_action = new - var/datum/action/mecha/mech_toggle_phasing/phasing_action = new + var/datum/action/innate/mecha/mech_switch_damtype/switch_damtype_action = new + var/datum/action/innate/mecha/mech_toggle_phasing/phasing_action = new /obj/mecha/combat/phazon/Bump(atom/obstacle) if(phasing && get_charge()>=phasing_energy_drain && !throwing) @@ -63,11 +63,11 @@ phasing_action.Remove(user) -/datum/action/mecha/mech_switch_damtype +/datum/action/innate/mecha/mech_switch_damtype name = "Reconfigure arm microtool arrays" button_icon_state = "mech_damtype_brute" -/datum/action/mecha/mech_switch_damtype/Activate() +/datum/action/innate/mecha/mech_switch_damtype/Activate() if(!owner || !chassis || chassis.occupant != owner) return var/obj/mecha/combat/phazon/P = chassis @@ -87,11 +87,11 @@ playsound(src, 'sound/mecha/mechmove01.ogg', 50, 1) -/datum/action/mecha/mech_toggle_phasing +/datum/action/innate/mecha/mech_toggle_phasing name = "Toggle Phasing" button_icon_state = "mech_phasing_off" -/datum/action/mecha/mech_toggle_phasing/Activate() +/datum/action/innate/mecha/mech_toggle_phasing/Activate() if(!owner || !chassis || chassis.occupant != owner) return var/obj/mecha/combat/phazon/P = chassis diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index 8b45cf3faae..7385c1d368d 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -70,11 +70,11 @@ var/melee_cooldown = 10 var/melee_can_hit = 1 - var/datum/action/mecha/mech_eject/eject_action = new - var/datum/action/mecha/mech_toggle_internals/internals_action = new - var/datum/action/mecha/mech_cycle_equip/cycle_action = new - var/datum/action/mecha/mech_toggle_lights/lights_action = new - var/datum/action/mecha/mech_view_stats/stats_action = new + var/datum/action/innate/mecha/mech_eject/eject_action = new + var/datum/action/innate/mecha/mech_toggle_internals/internals_action = new + var/datum/action/innate/mecha/mech_cycle_equip/cycle_action = new + var/datum/action/innate/mecha/mech_toggle_lights/lights_action = new + var/datum/action/innate/mecha/mech_view_stats/stats_action = new /obj/mecha/New() @@ -907,17 +907,16 @@ var/year_integer = text2num(year) // = 2013??? stats_action.Remove(user) -/datum/action/mecha +/datum/action/innate/mecha check_flags = AB_CHECK_RESTRAINED | AB_CHECK_STUNNED | AB_CHECK_ALIVE - action_type = AB_INNATE var/obj/mecha/chassis -/datum/action/mecha/mech_eject +/datum/action/innate/mecha/mech_eject name = "Eject From Mech" button_icon_state = "mech_eject" -/datum/action/mecha/mech_eject/Activate() +/datum/action/innate/mecha/mech_eject/Activate() if(!owner || !iscarbon(owner)) return if(!chassis || chassis.occupant != owner) @@ -925,11 +924,11 @@ var/year_integer = text2num(year) // = 2013??? chassis.go_out() -/datum/action/mecha/mech_toggle_internals +/datum/action/innate/mecha/mech_toggle_internals name = "Toggle Internal Airtank Usage" button_icon_state = "mech_internals_off" -/datum/action/mecha/mech_toggle_internals/Activate() +/datum/action/innate/mecha/mech_toggle_internals/Activate() if(!owner || !chassis || chassis.occupant != owner) return chassis.use_internal_tank = !chassis.use_internal_tank @@ -938,11 +937,11 @@ var/year_integer = text2num(year) // = 2013??? chassis.log_message("Now taking air from [chassis.use_internal_tank?"internal airtank":"environment"].") -/datum/action/mecha/mech_cycle_equip +/datum/action/innate/mecha/mech_cycle_equip name = "Cycle Equipment" button_icon_state = "mech_cycle_equip_off" -/datum/action/mecha/mech_cycle_equip/Activate() +/datum/action/innate/mecha/mech_cycle_equip/Activate() if(!owner || !chassis || chassis.occupant != owner) return if(chassis.equipment.len == 0) @@ -970,11 +969,11 @@ var/year_integer = text2num(year) // = 2013??? return -/datum/action/mecha/mech_toggle_lights +/datum/action/innate/mecha/mech_toggle_lights name = "Toggle Lights" button_icon_state = "mech_lights_off" -/datum/action/mecha/mech_toggle_lights/Activate() +/datum/action/innate/mecha/mech_toggle_lights/Activate() if(!owner || !chassis || chassis.occupant != owner) return chassis.lights = !chassis.lights @@ -988,11 +987,11 @@ var/year_integer = text2num(year) // = 2013??? chassis.log_message("Toggled lights [chassis.lights?"on":"off"].") -/datum/action/mecha/mech_view_stats +/datum/action/innate/mecha/mech_view_stats name = "View Stats" button_icon_state = "mech_view_stats" -/datum/action/mecha/mech_view_stats/Activate() +/datum/action/innate/mecha/mech_view_stats/Activate() if(!owner || !chassis || chassis.occupant != owner) return chassis.occupant << browse(chassis.get_stats_html(), "window=exosuit") diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index 96c9c0819b7..72893f0d48e 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -156,7 +156,7 @@ if(I.action_button_name) if(!I.action) if(istype(I, /obj/item/organ/internal)) - I.action = new/datum/action/organ_action + I.action = new/datum/action/item_action/organ_action else if(I.action_button_is_hands_free) I.action = new/datum/action/item_action/hands_free else diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index ddda848c270..ea982b8125e 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -94,7 +94,7 @@ var/datum/hud/hud_used = null var/research_scanner = 0 //For research scanner equipped mobs. Enable to show research data when examining. - var/datum/action/scan_mode/scanner = new + var/datum/action/innate/scan_mode/scanner = new var/list/grabbed_by = list( ) var/list/requests = list( ) From c854664cfef19ea65260f43cffd4ec2523838210 Mon Sep 17 00:00:00 2001 From: Incoming Date: Thu, 22 Oct 2015 17:46:44 -0400 Subject: [PATCH 047/418] The lich spell has been subjected to some gentle nerfing. When you die a string of energy will tie your new body to your old body for a short time, aiding others in determining your location. The duration of this beam scales with the number of deaths you've avoided. Additionally the post revival stun now also scales in this way. The spell will also fail if the item and the wizard don't share the same z level, though the nature of space means the odds of the item (or the wizard) looping around back to the station is pretty high. --- code/datums/spells/lichdom.dm | 11 ++++++++--- html/changelogs/Incoming-NERFBOYS.yml | 10 ++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/Incoming-NERFBOYS.yml diff --git a/code/datums/spells/lichdom.dm b/code/datums/spells/lichdom.dm index f199a06048f..d73debebd33 100644 --- a/code/datums/spells/lichdom.dm +++ b/code/datums/spells/lichdom.dm @@ -1,6 +1,6 @@ /obj/effect/proc_holder/spell/targeted/lichdom name = "Bind Soul" - desc = "A dark necromantic pact that can forever bind your soul to an item of your choosing. So long as both your body and the item remain intact you can revive from death, though the time between reincarnations grows steadily with use." + desc = "A dark necromantic pact that can forever bind your soul to an item of your choosing. So long as both your body and the item remain intact and on the same plane you can revive from death, though the time between reincarnations grows steadily with use." school = "necromancy" charge_max = 10 clothes_req = 0 @@ -14,6 +14,7 @@ var/obj/marked_item var/mob/living/current_body + var/resurrections = 0 action_icon_state = "skeleton" @@ -41,6 +42,9 @@ if(!marked_item || qdeleted(marked_item)) //Wait nevermind user << "Your phylactery is gone!" return + else if(user.z != marked_item.z) + user << "Your phylactery is out of range!" + return if(isobserver(user)) var/mob/dead/observer/O = user @@ -60,8 +64,8 @@ charge_max += 600 var/mob/old_body = current_body current_body = lich - lich.Weaken(10) - + lich.Weaken(10+10*resurrections) + ++resurrections if(old_body && old_body.loc) if(iscarbon(old_body)) var/mob/living/carbon/C = old_body @@ -70,6 +74,7 @@ var/wheres_wizdo = dir2text(get_dir(get_turf(old_body), get_turf(marked_item))) if(wheres_wizdo) old_body.visible_message("Suddenly [old_body.name]'s corpse falls to pieces! You see a strange energy rise from the remains, and speed off towards the [wheres_wizdo]!") + old_body.Beam(marked_item,icon_state="drain_life",icon='icons/effects/effects.dmi',time=10+10*resurrections,maxdistance=INFINITY) old_body.dust() if(!marked_item) //linking item to the spell diff --git a/html/changelogs/Incoming-NERFBOYS.yml b/html/changelogs/Incoming-NERFBOYS.yml new file mode 100644 index 00000000000..34232aaa1c1 --- /dev/null +++ b/html/changelogs/Incoming-NERFBOYS.yml @@ -0,0 +1,10 @@ + +author: Incoming5643 + +delete-after: True + +changes: + - tweak: "The lich spell has been subjected to some gentle nerfing. When you die a string of energy will tie your new body to your old body for a short time, aiding others in determining your location. The duration of this beam scales with the number of deaths you've avoided." + - tweak: "Additionally the post revival stun now also scales in this way." + - tweak: "The spell will also fail if the item and the wizard don't share the same z level, though the nature of space means the odds of the item (or the wizard) looping around back to the station is pretty high." + - rscadd: "The spell is still really good." \ No newline at end of file From ac7be615699a8c20c9eced4d527430962c844cb7 Mon Sep 17 00:00:00 2001 From: GunHog Date: Thu, 22 Oct 2015 18:45:08 -0500 Subject: [PATCH 048/418] Adds Mechs and Borg cells to HUD - Cyborg cells are now tracked. - Mech health, cells, and status now tracked --- code/__DEFINES/hud.dm | 8 +++-- code/game/data_huds.dm | 66 +++++++++++++++++++++++++++++++++++++-- code/game/mecha/mecha.dm | 13 ++++++-- code/modules/mob/mob.dm | 2 +- icons/mob/hud.dmi | Bin 3973 -> 4153 bytes 5 files changed, 80 insertions(+), 9 deletions(-) diff --git a/code/__DEFINES/hud.dm b/code/__DEFINES/hud.dm index 369537eb764..c5262c58614 100644 --- a/code/__DEFINES/hud.dm +++ b/code/__DEFINES/hud.dm @@ -9,10 +9,12 @@ #define IMPLOYAL_HUD "5" // loyality implant #define IMPCHEM_HUD "6" // chemical implant #define IMPTRACK_HUD "7" // tracking implant -#define DIAG_STAT_HUD "8" -#define DIAG_HUD "9" +#define DIAG_STAT_HUD "8" // Silicon/Mech Status +#define DIAG_HUD "9" // Silicon health bar +#define DIAG_BATT_HUD "10"// Borg/Mech power meter +#define DIAG_MECH_HUD "11"// Mech health bar //for antag huds. these are used at the /mob level -#define ANTAG_HUD "10" +#define ANTAG_HUD "12" //data HUD (medhud, sechud) defines //Don't forget to update human/New() if you change these! diff --git a/code/game/data_huds.dm b/code/game/data_huds.dm index 0d62c565e85..665063fe61d 100644 --- a/code/game/data_huds.dm +++ b/code/game/data_huds.dm @@ -45,7 +45,7 @@ hud_icons = list(ID_HUD, IMPTRACK_HUD, IMPLOYAL_HUD, IMPCHEM_HUD, WANTED_HUD) /datum/atom_hud/data/diagnostic - hud_icons = list (DIAG_HUD, DIAG_STAT_HUD) + hud_icons = list (DIAG_HUD, DIAG_STAT_HUD, DIAG_BATT_HUD, DIAG_MECH_HUD) /* MED/SEC/DIAG HUD HOOKS */ @@ -177,8 +177,28 @@ return holder.icon_state = null +/*********************************************** + Diagnostic HUDs! +************************************************/ -//called when a silicon changes health +//For the charge meter! +/proc/RoundCell(var/charge) + var/icon_name = "" + switch(charge) + if(0.75 to INFINITY) + icon_name = "batthigh" + if(0.5 to 0.75) + icon_name = "battmed" + if(0.25 to 0.5) + icon_name = "battlow" + if(0.01 to 0.25) + icon_name = "battwarn" + else + icon_name = "battempty" + return icon_name + + +//Sillycone hooks /mob/living/silicon/proc/diag_hud_set_health() var/image/holder = hud_list[DIAG_HUD] if(stat == DEAD) @@ -194,4 +214,44 @@ if(UNCONSCIOUS) holder.icon_state = "hudoffline" else - holder.icon_state = "huddead2" \ No newline at end of file + holder.icon_state = "huddead2" + +//Borgie battery tracking! +/mob/living/silicon/robot/proc/diag_hud_set_borgcell() + var/image/holder = hud_list[DIAG_BATT_HUD] + if (cell) + var/chargelvl = cell.charge/cell.maxcharge + holder.icon_state = "hud[RoundCell(chargelvl)]" + else + holder.icon_state = "hudnobatt" + +/*~~~~~~~~~~~~~~~~~~~~ + BIG STOMPY MECHS +~~~~~~~~~~~~~~~~~~~~~*/ +/obj/mecha/proc/diag_hud_set_mechhealth() + var/image/holder = hud_list[DIAG_MECH_HUD] + var/mechhealth = (health/initial(health))*100 + switch(mechhealth) + if(75 to 100) + holder.icon_state = "hudmechgood" + if(50 to 74) + holder.icon_state = "hudmechmed" + if(25 to 49) + holder.icon_state = "hudmechbad" + if(0 to 24) + holder.icon_state = "hudmechcrit" + + +/obj/mecha/proc/diag_hud_set_mechcell() + var/image/holder = hud_list[DIAG_BATT_HUD] + if (cell) + var/chargelvl = cell.charge/cell.maxcharge + holder.icon_state = "hud[RoundCell(chargelvl)]" + else + holder.icon_state = "hudnobatt" + +/obj/mecha/proc/diag_hud_set_mechstat() + var/image/holder = hud_list[DIAG_STAT_HUD] + holder.icon_state = null + if(internal_damage) + holder.icon_state = "hudwarn" \ No newline at end of file diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index 8b45cf3faae..d793cb10316 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -76,6 +76,8 @@ var/datum/action/mecha/mech_toggle_lights/lights_action = new var/datum/action/mecha/mech_view_stats/stats_action = new + hud_possible = list (DIAG_STAT_HUD, DIAG_BATT_HUD, DIAG_MECH_HUD) + /obj/mecha/New() ..() @@ -90,6 +92,9 @@ SSobj.processing |= src log_message("[src.name] created.") mechas_list += src //global mech list + var/datum/atom_hud/data/diagnostic/diag_hud = huds[DATA_HUD_DIAGNOSTIC] + diag_hud.add_to_hud(src) + prepare_huds() return /obj/mecha/Destroy() @@ -314,7 +319,10 @@ var/lights_energy_drain = 2 use_power(lights_energy_drain) - +//Diagnostic HUD updates + diag_hud_set_mechhealth() + diag_hud_set_mechcell() + diag_hud_set_mechstat() /obj/mecha/proc/drop_item()//Derpfix, but may be useful in future for engineering exosuits. @@ -482,6 +490,7 @@ internal_damage |= int_dam_flag log_append_to_last("Internal damage of type [int_dam_flag].",1) occupant << sound('sound/machines/warning-buzzer.ogg',wait=0) + diag_hud_set_mechstat() return /obj/mecha/proc/clearInternalDamage(int_dam_flag) @@ -494,7 +503,7 @@ if(MECHA_INT_TANK_BREACH) occupant_message("Damaged internal tank has been sealed.") internal_damage &= ~int_dam_flag - + diag_hud_set_mechstat() ///////////////////////////////////// //////////// AI piloting //////////// diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index ca0948b56c5..9161f56124e 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -24,7 +24,7 @@ var/next_mob_id = 0 prepare_huds() ..() -/mob/proc/prepare_huds() +/atom/proc/prepare_huds() for(var/hud in hud_possible) hud_list[hud] = image('icons/mob/hud.dmi', src, "") diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index 76b665ad31d92976f913f3667bb9ee671d7457c9..62021d6ef31bab56e1a8a03b174c2a517363388f 100644 GIT binary patch literal 4153 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 delta 3874 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 From 6bd034fbe11cb94656a677d08eed77a9b6dabaae Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Thu, 22 Oct 2015 19:04:05 -0700 Subject: [PATCH 049/418] Fixes comm logviewer reading human speech as untranslatable. Removes unused emag_acts from telecomms computers --- .../game/machinery/telecomms/computers/logbrowser.dm | 12 +++--------- .../machinery/telecomms/computers/telemonitor.dm | 8 +------- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/code/game/machinery/telecomms/computers/logbrowser.dm b/code/game/machinery/telecomms/computers/logbrowser.dm index 06eec599929..c78f4e9133a 100644 --- a/code/game/machinery/telecomms/computers/logbrowser.dm +++ b/code/game/machinery/telecomms/computers/logbrowser.dm @@ -92,7 +92,7 @@ else if(mobtype in silicons || C.parameters["job"] == "AI") // sometimes M gets deleted prematurely for AIs... just check the job race = "Artificial Life" - language = race + language = "Humanoid" //Ais and borgs speak human, and binary isnt picked up. else if(istype(mobtype, /obj)) race = "Machinery" @@ -108,7 +108,7 @@ // -- If the orator is a human, or universal translate is active, OR mob has universal speech on -- - if(language == "Human" || universal_translate || C.parameters["uspeech"]) + if(language == "Humanoid" || universal_translate || C.parameters["uspeech"]) dat += "Data type: [C.input_type]
" dat += "Source: [C.parameters["name"]] (Job: [C.parameters["job"]])
" dat += "Class: [race]
" @@ -223,10 +223,4 @@ /obj/machinery/computer/telecomms/server/attackby() ..() src.updateUsrDialog() - return - -/obj/machinery/computer/telecomms/server/emag_act(mob/user) - if(!emagged) - playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1) - emagged = 1 - user << "You you disable the security protocols." \ No newline at end of file + return \ No newline at end of file diff --git a/code/game/machinery/telecomms/computers/telemonitor.dm b/code/game/machinery/telecomms/computers/telemonitor.dm index 89948faeb99..aad74e3e6eb 100644 --- a/code/game/machinery/telecomms/computers/telemonitor.dm +++ b/code/game/machinery/telecomms/computers/telemonitor.dm @@ -125,10 +125,4 @@ /obj/machinery/computer/telecomms/monitor/attackby() ..() src.updateUsrDialog() - return - -/obj/machinery/computer/telecomms/monitor/emag_act(mob/user) - if(!emagged) - playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1) - emagged = 1 - user << "You you disable the security protocols." \ No newline at end of file + return \ No newline at end of file From a05bf99c8f78ac11bad62c421eb3f1d0f5ecc050 Mon Sep 17 00:00:00 2001 From: JJRcop Date: Thu, 22 Oct 2015 22:58:41 -0400 Subject: [PATCH 050/418] New chronosuit teleport mechanics --- .../modules/clothing/spacesuits/chronosuit.dm | 223 +++++++++++++----- icons/mob/actions.dmi | Bin 49427 -> 50550 bytes 2 files changed, 164 insertions(+), 59 deletions(-) diff --git a/code/modules/clothing/spacesuits/chronosuit.dm b/code/modules/clothing/spacesuits/chronosuit.dm index a8048ec3f6d..6209c4b4006 100644 --- a/code/modules/clothing/spacesuits/chronosuit.dm +++ b/code/modules/clothing/spacesuits/chronosuit.dm @@ -28,17 +28,24 @@ var/list/chronosafe_items = list(/obj/item/weapon/chrono_eraser, /obj/item/weapon/gun/energy/chrono_gun) var/obj/item/clothing/head/helmet/space/chronos/helmet = null var/obj/effect/chronos_cam/camera = null + var/atom/movable/overlay/phase_underlay = null + var/datum/action/item_action/hands_free/chrono_teleport/teleport_now = new var/activating = 0 var/activated = 0 var/cooldowntime = 50 //deciseconds var/teleporting = 0 +/obj/item/clothing/suit/space/chronos/New() + ..() + teleport_now.chronosuit = src + teleport_now.target = src /obj/item/clothing/suit/space/chronos/proc/new_camera(mob/user) if(camera) qdel(camera) - camera = new /obj/effect/chronos_cam(get_turf(user)) + camera = new /obj/effect/chronos_cam(user) camera.holder = user + camera.chronosuit = src user.remote_control = camera /obj/item/clothing/suit/space/chronos/ui_action_click() @@ -61,20 +68,40 @@ var/mob/living/carbon/human/user = src.loc switch(severity) if(1) - if(user && ishuman(user) && (user.wear_suit == src)) - user << "Elecrtromagnetic pulse detected, shutting down systems to preserve integrity..." - deactivate() + if(activated && user && ishuman(user) && (user.wear_suit == src)) + user << "E:FATAL:RAM_READ_FAIL\nE:FATAL:STACK_EMPTY\nE:FATAL:READ_NULL_POINT\nE:FATAL:PWR_BUS_OVERLOAD" + deactivate(1, 1) -/obj/item/clothing/suit/space/chronos/proc/chronowalk(mob/living/carbon/human/user) - if(!teleporting && user && (user.stat == CONSCIOUS)) +/obj/item/clothing/suit/space/chronos/proc/finish_chronowalk(mob/living/carbon/human/user) + user.next_click = world.time - 1 + user.alpha = 255 + user.color = "#ffffff" + user.animate_movement = FORWARD_STEPS + user.notransform = 0 + user.anchored = 0 + teleporting = 0 + if(phase_underlay && !qdeleted(phase_underlay)) + qdel(phase_underlay) + phase_underlay = null + if(camera) + camera.remove_target_ui() + camera.loc = user + if(teleport_now.button) + teleport_now.button.UpdateIcon() + +/obj/item/clothing/suit/space/chronos/proc/chronowalk(mob/living/carbon/human/user, atom/location) + if(!teleporting && user && location && user.loc && location.loc && user.wear_suit == src && user.stat == CONSCIOUS) teleporting = 1 var/turf/from_turf = get_turf(user) - if(!from_turf) //sanity, things happen - teleporting = 0 - return - var/turf/to_turf = from_turf - var/atom/movable/overlay/phaseanim = new(from_turf) - var/obj/holder = new(camera) + var/turf/to_turf = get_turf(location) + var/distance = cheap_hypotenuse(from_turf.x, from_turf.y, to_turf.x, to_turf.y) + var/phase_in_ds = distance*2 + + if(camera) + camera.remove_target_ui() + + if(teleport_now.button) + teleport_now.button.UpdateIcon() var/list/nonsafe_slots = list(slot_belt, slot_back, slot_l_hand, slot_r_hand) for(var/slot in nonsafe_slots) @@ -82,52 +109,60 @@ if(slot_item && !(slot_item.type in chronosafe_items) && user.unEquip(slot_item)) user << "Your [slot_item.name] got left behind." - phaseanim.name = "phasing [user.name]" - phaseanim.icon = 'icons/mob/mob.dmi' - phaseanim.icon_state = "chronostuck" - phaseanim.density = 1 - phaseanim.layer = FLY_LAYER - phaseanim.master = user user.ExtinguishMob() if(user.buckled) user.buckled.unbuckle_mob() - user.loc = holder - flick("chronophase", phaseanim) - spawn(7) - if(user) - if(phaseanim) - if(camera && camera.loc) - to_turf = camera.loc - flick("chronounphase", phaseanim) - else - flick("chronostuck", phaseanim) - phaseanim.loc = to_turf - sleep(7) - if(holder) - if(user && user in holder.contents) + + var/icon/user_icon = getFlatIcon(user) + user_icon.Blend("#ffffff") + phase_underlay = new(user.loc) + phase_underlay.icon = user_icon + phase_underlay.density = 1 + phase_underlay.anchored = 1 + phase_underlay.master = user + phase_underlay.animate_movement = NO_STEPS + phase_underlay.alpha = 0 + phase_underlay.mouse_opacity = 0 + phase_underlay.name = user.name + phase_underlay.transform = user.transform + phase_underlay.pixel_x = user.pixel_x + phase_underlay.pixel_y = user.pixel_y + + user.animate_movement = NO_STEPS + user.next_click = world.time + (8 + phase_in_ds) + user.notransform = 1 + user.anchored = 1 + + animate(user, color = "#00ccee", time = 3) + spawn(3) + if(teleporting && activated && user && !qdeleted(user) && phase_underlay && !qdeleted(phase_underlay)) + animate(user, alpha = 0, time = 2) + animate(phase_underlay, alpha = 255, time = 2) + sleep(2) + if(teleporting && activated && user && !qdeleted(user) && phase_underlay && !qdeleted(phase_underlay)) + phase_underlay.loc = to_turf user.loc = to_turf - if(user.client) - if(camera) - user.client.eye = camera - else - user.client.eye = user - qdel(holder) - else if(user) - user.loc = from_turf - if(phaseanim) - qdel(phaseanim) - teleporting = 0 - if(user && !user.loc) //ubersanity - user.loc = locate(0,0,1) - user.gib() + animate(user, alpha = 255, time = phase_in_ds) + animate(phase_underlay, alpha = 0, time = phase_in_ds) + sleep(phase_in_ds) + if(teleporting && activated && user && !qdeleted(user) && phase_underlay && !qdeleted(phase_underlay)) + animate(user, color = "#ffffff", time = 3) + sleep(3) + if(teleporting && user && !qdeleted(user)) + user.loc = to_turf //this will cover if bad things happen before the teleport, yes it is redundant + finish_chronowalk(user) /obj/item/clothing/suit/space/chronos/process() if(activated) var/mob/living/carbon/human/user = src.loc if(user && ishuman(user) && (user.wear_suit == src)) if(camera && (user.remote_control == camera)) - if(!teleporting && !((camera.x == user.x) && (camera.y == user.y) && (camera.z == user.z))) //cheaper than a couple get_turf calls??? - chronowalk(user) + if(!teleporting) + if(camera.loc != user && ((camera.x != user.x) || (camera.y != user.y) || (camera.z != user.z))) + if(camera.phase_time <= world.time) + chronowalk(user, camera) + else + camera.remove_target_ui() else new_camera(user) else @@ -157,33 +192,41 @@ else user << "\[ fail \] Mounting /dev/helmet" user << "FATAL: Unable to locate /dev/helmet. Aborting..." + teleport_now.Grant(user) cooldown = world.time + cooldowntime activating = 0 return 0 -/obj/item/clothing/suit/space/chronos/proc/deactivate() - if(activated) +/obj/item/clothing/suit/space/chronos/proc/deactivate(force = 0, silent = 0) + if(activated && (!teleporting || force)) activating = 1 var/mob/living/carbon/human/user = src.loc if(user && ishuman(user)) if(user.wear_suit == src) - user << "\nroot@ChronosuitMK4# chronowalk4 --stop\n" + if(!silent) + user << "\nroot@ChronosuitMK4# chronowalk4 --stop\n" if(camera) - user << "\[ ok \] Sending TERM signal to chronowalk4-view" //yes I know they aren't a different color when shutting down, but they were too similar at a glance + if(!silent) + user << "\[ ok \] Sending TERM signal to chronowalk4-view" //yes I know they aren't a different color when shutting down, but they were too similar at a glance qdel(camera) if(helmet) - user << "\[ ok \] Stopping ui display driver" - user << "\[ ok \] Stopping brainwave scanner" - user << "\[ ok \] Unmounting /dev/helmet" + if(!silent) + user << "\[ ok \] Stopping ui display driver" + user << "\[ ok \] Stopping brainwave scanner" + user << "\[ ok \] Unmounting /dev/helmet" helmet.flags &= ~NODROP helmet.suit = null helmet = null - user << "logout" + if(!silent) + user << "logout" + teleport_now.Remove(user) src.flags &= ~NODROP cooldown = world.time + cooldowntime * 1.5 activated = 0 activating = 0 - + if(teleporting && force) + finish_chronowalk(user) + user.electrocute_act(35, src, safety = 1) /obj/effect/chronos_cam name = "Chronosuit View" @@ -193,13 +236,32 @@ opacity = 0 mouse_opacity = 0 var/mob/holder = null + var/phase_time = 0 + var/phase_time_length = 3 + var/obj/screen/chronos_target/target_ui = null + var/obj/item/clothing/suit/space/chronos/chronosuit + +/obj/effect/chronos_cam/proc/create_target_ui() + if(holder && holder.client && chronosuit) + if(target_ui) + remove_target_ui() + target_ui = new(null, holder) + holder.client.screen += target_ui + +/obj/effect/chronos_cam/proc/remove_target_ui() + if(target_ui) + qdel(target_ui) + target_ui = null /obj/effect/chronos_cam/relaymove(var/mob/user, direction) if(holder) if(user == holder) + if(loc == user) + loc = get_turf(user) if(user.client && user.client.eye != src) src.loc = get_turf(user) - user.client.eye = src + user.reset_view(src) + user.set_machine(src) var/step = get_step(src, direction) if(step) if(istype(step, /turf/space)) @@ -207,14 +269,57 @@ src.loc = step else src.loc = step + if((x == holder.x) && (y == holder.y) && (z == holder.z)) + remove_target_ui() + loc = user + else if(!target_ui) + create_target_ui() + phase_time = world.time + phase_time_length else qdel(src) +/obj/effect/chronos_cam/check_eye(mob/user) + if(user == holder) + return 1 + user.unset_machine() + user.reset_view(null) + /obj/effect/chronos_cam/Destroy() if(holder) if(holder.remote_control == src) holder.remote_control = null if(holder.client && (holder.client.eye == src)) - holder.client.eye = holder + holder.unset_machine() + holder.reset_view(null) return ..() +/obj/screen/chronos_target + name = "target display" + screen_loc = "CENTER,CENTER" + color = "#ff3311" + blend_mode = BLEND_SUBTRACT + +/obj/screen/chronos_target/New(loc, var/mob/living/carbon/human/user) + if(user) + var/icon/user_icon = getFlatIcon(user) + icon = user_icon + transform = user.transform + else + qdel(src) + +/datum/action/item_action/hands_free/chrono_teleport + name = "Teleport Now" + button_icon_state = "chrono_phase" + action_type = AB_INNATE + var/obj/item/clothing/suit/space/chronos/chronosuit = null + +/datum/action/item_action/hands_free/chrono_teleport/IsAvailable() + return (!CheckRemoval(owner) && !chronosuit.teleporting) + +/datum/action/item_action/hands_free/chrono_teleport/Activate() + if(IsAvailable()) + if(chronosuit.camera) + chronosuit.chronowalk(owner, chronosuit.camera) + +/datum/action/item_action/hands_free/chrono_teleport/CheckRemoval() + return (..() && !(chronosuit && chronosuit.activated && chronosuit.camera)) \ No newline at end of file diff --git a/icons/mob/actions.dmi b/icons/mob/actions.dmi index d4a903af875f72840882e776fc6265e9ce6fe986..4dac8fd83bd330ce8197d83a658f0138c0527aaa 100644 GIT binary patch delta 8858 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 delta 7730 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 From 04c9b1c90e667e878e535b3b743e76d2ae39048a Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Fri, 23 Oct 2015 08:27:43 -0400 Subject: [PATCH 051/418] Lowers the Spacesuit Slowdown from 2 to 1 --- code/game/gamemodes/cult/cult_items.dm | 1 - code/modules/clothing/clothing.dm | 2 +- code/modules/clothing/spacesuits/chronosuit.dm | 1 - code/modules/clothing/spacesuits/hardsuit.dm | 4 ---- code/modules/clothing/spacesuits/miscellaneous.dm | 6 ------ code/modules/clothing/spacesuits/syndi.dm | 1 - html/changelogs/Fox P McCloud - spacesuit-slowdown .yml | 7 +++++++ 7 files changed, 8 insertions(+), 14 deletions(-) create mode 100644 html/changelogs/Fox P McCloud - spacesuit-slowdown .yml diff --git a/code/game/gamemodes/cult/cult_items.dm b/code/game/gamemodes/cult/cult_items.dm index c519f805608..bba5825edf2 100644 --- a/code/game/gamemodes/cult/cult_items.dm +++ b/code/game/gamemodes/cult/cult_items.dm @@ -107,5 +107,4 @@ desc = "A heavily-armored exosuit worn by warriors of the Nar-Sian cult. It can withstand hard vacuum." w_class = 3 allowed = list(/obj/item/weapon/tome,/obj/item/weapon/melee/cultblade,/obj/item/weapon/tank/internals/) - slowdown = 1 armor = list(melee = 70, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index dc8a5aec3b5..90d76948fcb 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -253,7 +253,7 @@ BLIND // can't see anything flags = STOPSPRESSUREDMAGE | THICKMATERIAL body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/internals) - slowdown = 2 + slowdown = 1 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 50) flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT cold_protection = CHEST | GROIN | LEGS | FEET | ARMS | HANDS diff --git a/code/modules/clothing/spacesuits/chronosuit.dm b/code/modules/clothing/spacesuits/chronosuit.dm index a8048ec3f6d..b5b219cbcf2 100644 --- a/code/modules/clothing/spacesuits/chronosuit.dm +++ b/code/modules/clothing/spacesuits/chronosuit.dm @@ -23,7 +23,6 @@ icon_state = "chronosuit" item_state = "chronosuit" action_button_name = "Toggle Chronosuit" - slowdown = 2 armor = list(melee = 60, bullet = 60, laser = 60, energy = 60, bomb = 30, bio = 90, rad = 90) var/list/chronosafe_items = list(/obj/item/weapon/chrono_eraser, /obj/item/weapon/gun/energy/chrono_gun) var/obj/item/clothing/head/helmet/space/chronos/helmet = null diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index 9c05314a0c6..977f8713137 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -45,7 +45,6 @@ desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding." icon_state = "hardsuit-engineering" item_state = "eng_hardsuit" - slowdown = 2 armor = list(melee = 10, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75) allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/internals,/obj/item/device/t_scanner, /obj/item/weapon/rcd) var/obj/item/clothing/head/helmet/space/hardsuit/helmet @@ -232,7 +231,6 @@ icon_state = "hardsuit1-syndi" item_state = "syndie_hardsuit" item_color = "syndi" - slowdown = 1 w_class = 3 action_button_name = "Toggle Helmet" armor = list(melee = 40, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50) @@ -280,7 +278,6 @@ name = "gem-encrusted hardsuit" desc = "A bizarre gem-encrusted suit that radiates magical energies." item_state = "wiz_hardsuit" - slowdown = 1 w_class = 3 unacidable = 1 armor = list(melee = 40, bullet = 40, laser = 40, energy = 20, bomb = 35, bio = 100, rad = 50) @@ -306,7 +303,6 @@ name = "medical hardsuit" desc = "A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement." item_state = "medical_hardsuit" - slowdown = 1 allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/internals,/obj/item/weapon/storage/firstaid,/obj/item/device/healthanalyzer,/obj/item/stack/medical) armor = list(melee = 10, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 50) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/medical diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index 0fe9492913c..e6ebe741fd4 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -30,7 +30,6 @@ Contains: item_state = "capspacesuit" w_class = 4 allowed = list(/obj/item/weapon/tank/internals, /obj/item/device/flashlight,/obj/item/weapon/gun/energy, /obj/item/weapon/gun/projectile, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs) - slowdown = 1 armor = list(melee = 40, bullet = 50, laser = 50, energy = 25, bomb = 50, bio = 100, rad = 50) @@ -56,7 +55,6 @@ Contains: item_state = "swat_suit" allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals) armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100) - slowdown = 1 strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT unacidable = 1 @@ -84,7 +82,6 @@ Contains: w_class = 3 allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals) armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100) - slowdown = 1 strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT unacidable = 1 @@ -102,7 +99,6 @@ Contains: icon_state = "void" item_state = "void" desc = "An old, NASA Centcom branch designed, dark red space suit." - slowdown = 1 allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/internals,/obj/item/device/multitool) @@ -217,7 +213,6 @@ Contains: icon_state = "space" item_state = "s_suit" desc = "A lightweight space suit with the basic ability to protect the wearer from the vacuum of space during emergencies." - slowdown = 1 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 20) /obj/item/clothing/head/helmet/space/eva @@ -245,7 +240,6 @@ Contains: item_state = "freedom" allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals) armor = list(melee = 20, bullet = 40, laser = 30,energy = 25, bomb = 100, bio = 100, rad = 100) - slowdown = 1 strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT unacidable = 1 diff --git a/code/modules/clothing/spacesuits/syndi.dm b/code/modules/clothing/spacesuits/syndi.dm index 71f7a5d98ae..9aceb965f84 100644 --- a/code/modules/clothing/spacesuits/syndi.dm +++ b/code/modules/clothing/spacesuits/syndi.dm @@ -14,7 +14,6 @@ desc = "Has a tag on it: Totally not property of of a hostile corporation, honest!" w_class = 3 allowed = list(/obj/item/weapon/gun,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/melee/energy/sword/saber,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/tank/internals) - slowdown = 1 armor = list(melee = 40, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30) diff --git a/html/changelogs/Fox P McCloud - spacesuit-slowdown .yml b/html/changelogs/Fox P McCloud - spacesuit-slowdown .yml new file mode 100644 index 00000000000..1db3eb7e1dd --- /dev/null +++ b/html/changelogs/Fox P McCloud - spacesuit-slowdown .yml @@ -0,0 +1,7 @@ + +author: Fox P McCloud + +delete-after: True + +changes: + - tweak: "Standardizes the slowdown of most spacesuits to 1 as opposed to 2." From 440b8b1b4e69ae95d48bf39607c8dc88b563ac99 Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Fri, 23 Oct 2015 16:52:50 +0100 Subject: [PATCH 052/418] Adds some variables to allow per-mob "reaction times" that modify the delay between clicks/actions/interactions. 1 is a flat decisecond +/- the other is a Multiplier, eg 0.5 or 2 --- code/_onclick/click.dm | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index ceed0282a97..929bf722474 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -4,8 +4,23 @@ */ // 1 decisecond click delay (above and beyond mob/next_move) +//This is mainly modified by click code, to modify click delays elsewhere, use next_move and changeNext_move() /mob/var/next_click = 0 +// THESE DO NOT EFFECT THE BASE 1 DECISECOND DELAY OF NEXT_CLICK +/mob/var/next_move_adjust = 0 //Amount to adjust action/click delays by, + or - +/mob/var/next_move_modifier = 1 //Value to multiply action/click delays by + + +//Delays the mob's next click/action by num deciseconds +// eg: 10-3 = 7 deciseconds of delay +// eg: 10*0.5 = 5 deciseconds of delay +// DOES NOT EFFECT THE BASE 1 DECISECOND DELAY OF NEXT_CLICK + +/mob/proc/changeNext_move(num) + next_move = world.time + ((num+next_move_adjust)*next_move_modifier) + + /* Before anything else, defer these calls to a per-mobtype handler. This allows us to remove istype() spaghetti code, but requires the addition of other handler procs to simplify it. @@ -125,9 +140,6 @@ else RangedAttack(A, params) -/mob/proc/changeNext_move(num) - next_move = world.time + num - // Default behavior: ignore double clicks (the second click that makes the doubleclick call already calls for a normal click) /mob/proc/DblClickOn(atom/A, params) return From da84fcd8d2c5bc3317ccdf486ae1da67eb2131af Mon Sep 17 00:00:00 2001 From: phil235 Date: Fri, 23 Oct 2015 20:00:52 +0200 Subject: [PATCH 053/418] - Fixes shadowling receiving burn messages even when dead. I've also fixed the same bug for other species and made certain spec_life() procs not run when the mob is dead. I also made slime species a subtype of jelly species since they had a lot of code in common thus reducing duplicate code. - Fixes odd behavior with emagging airlock and windoor animation. - Fixes being able to bloodcrawl in oil decal. - Fixes being deaf after bloodcrawling. - Fixes wintercoat hood appearing below the mask. - Fixes being able to attack another mob before the game has started (and other things which used a gamestart check that no longer works). - Ghosts can no longer become drones before the game has started. - Removed "bhunger" and "ajourn" mob vars, they are unused. - Fixes admin-revived morph being invisible. - Fixes heart attack stacking losebreath very high. Also now losebreath is reset to 0 when the mob dies. - All mobs no longer have a default strip menu showing two hands. --- code/datums/diseases/transformation.dm | 2 +- code/game/gamemodes/abduction/gland.dm | 2 +- code/game/gamemodes/shadowling/shadowling.dm | 5 +- code/game/machinery/doors/airlock.dm | 6 +- code/game/machinery/doors/door.dm | 2 +- code/game/machinery/doors/windowdoor.dm | 10 +- code/game/objects/effects/decals/cleanable.dm | 7 +- code/modules/admin/secrets.dm | 4 +- code/modules/admin/verbs/debug.dm | 12 +-- code/modules/admin/verbs/onlyone.dm | 4 +- code/modules/clothing/suits/miscellaneous.dm | 38 +++++++- code/modules/clothing/suits/toggles.dm | 4 +- code/modules/mob/living/bloodcrawl.dm | 2 +- .../mob/living/carbon/alien/alien_defense.dm | 2 +- code/modules/mob/living/carbon/death.dm | 1 + code/modules/mob/living/carbon/human/death.dm | 6 +- code/modules/mob/living/carbon/human/life.dm | 3 +- .../mob/living/carbon/human/species_types.dm | 87 +++++++----------- code/modules/mob/living/living.dm | 2 +- code/modules/mob/living/living_defense.dm | 6 +- code/modules/mob/living/silicon/ai/ai.dm | 2 +- .../friendly/drone/drones_as_items.dm | 4 +- .../mob/living/simple_animal/simple_animal.dm | 1 + .../mob/living/simple_animal/slime/slime.dm | 3 - code/modules/mob/mob.dm | 12 +-- code/modules/mob/mob_defines.dm | 2 - code/modules/ninja/admin_ninja_verbs.dm | 2 +- .../Chemistry-Reagents/Other-Reagents.dm | 2 +- icons/mob/head.dmi | Bin 124541 -> 131649 bytes icons/obj/clothing/hats.dmi | Bin 60068 -> 61241 bytes 30 files changed, 124 insertions(+), 109 deletions(-) diff --git a/code/datums/diseases/transformation.dm b/code/datums/diseases/transformation.dm index b5913c3e71a..3be1783df4b 100644 --- a/code/datums/diseases/transformation.dm +++ b/code/datums/diseases/transformation.dm @@ -202,7 +202,7 @@ if(ishuman(affected_mob)) var/mob/living/carbon/human/human = affected_mob if(human.dna.species.id != "slime") - human.set_species(/datum/species/slime) + human.set_species(/datum/species/jelly/slime) /datum/disease/transformation/corgi name = "The Barkening" diff --git a/code/game/gamemodes/abduction/gland.dm b/code/game/gamemodes/abduction/gland.dm index 6fed6acfe05..0a8d5814359 100644 --- a/code/game/gamemodes/abduction/gland.dm +++ b/code/game/gamemodes/abduction/gland.dm @@ -108,7 +108,7 @@ /obj/item/organ/internal/gland/pop/activate() owner << "You feel unlike yourself." - var/species = pick(list(/datum/species/lizard,/datum/species/slime,/datum/species/pod,/datum/species/fly)) + var/species = pick(list(/datum/species/lizard,/datum/species/jelly/slime,/datum/species/pod,/datum/species/fly)) owner.set_species(species) /obj/item/organ/internal/gland/ventcrawling diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index c0b441d2001..dc2022e1f78 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -266,8 +266,9 @@ Made by Xhuis light_amount = T.get_lumcount() if(light_amount > LIGHT_DAM_THRESHOLD && !H.incorporeal_move) //Can survive in very small light levels. Also doesn't take damage while incorporeal, for shadow walk purposes H.take_overall_damage(0, LIGHT_DAMAGE_TAKEN) - H << "The light burns you!" //Message spam to say "GET THE FUCK OUT" - H << 'sound/weapons/sear.ogg' + if(H.stat != DEAD) + H << "The light burns you!" //Message spam to say "GET THE FUCK OUT" + H << 'sound/weapons/sear.ogg' else if (light_amount < LIGHT_HEAL_THRESHOLD) H.heal_overall_damage(5,5) H.adjustToxLoss(-5) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 07f2f5b3bea..e38816c620a 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -971,7 +971,7 @@ About the new airlock wires panel: if(!density) return 1 - if(!ticker) + if(!ticker || !ticker.mode) return 0 operating = 1 @@ -1132,11 +1132,13 @@ About the new airlock wires panel: return /obj/machinery/door/airlock/emag_act(mob/user) - if(density && hasPower() && !emagged) + if(!operating && density && hasPower() && !emagged) + operating = 1 update_icon(AIRLOCK_EMAG) sleep(6) if(qdeleted(src)) return + operating = 0 if(!open()) update_icon(AIRLOCK_CLOSED) emagged = 1 diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index f0194cc645d..3f79f986116 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -194,7 +194,7 @@ return 1 if(operating) return - if(!ticker) + if(!ticker || !ticker.mode) return 0 operating = 1 diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index 45d6b6e64be..7d611a644c9 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -102,7 +102,7 @@ /obj/machinery/door/window/open(forced=0) if (src.operating == 1) //doors can still open when emag-disabled return 0 - if (!ticker) + if(!ticker || !ticker.mode) return 0 if(!forced) if(!hasPower()) @@ -251,10 +251,11 @@ return src.attackby(user, user) /obj/machinery/door/window/emag_act(mob/user) - if(density && !emagged) - operating = 0 + if(!operating && density && !emagged) + operating = 1 flick("[src.base_state]spark", src) sleep(6) + operating = 0 desc += "
Its access panel is smoking slightly." open() emagged = 1 @@ -265,6 +266,9 @@ if (src.operating) return + if(istype(I, /obj/item/weapon/card/emag)) + return + add_fingerprint(user) if(istype(I, /obj/item/weapon/screwdriver)) diff --git a/code/game/objects/effects/decals/cleanable.dm b/code/game/objects/effects/decals/cleanable.dm index 1658f052e07..3a867084a0b 100644 --- a/code/game/objects/effects/decals/cleanable.dm +++ b/code/game/objects/effects/decals/cleanable.dm @@ -66,6 +66,7 @@ /obj/effect/decal/cleanable/proc/can_bloodcrawl_in() - return bloodiness - - + if((blood_state != BLOOD_STATE_OIL) && (blood_state != BLOOD_STATE_NOT_BLOODY)) + return bloodiness + else + return 0 \ No newline at end of file diff --git a/code/modules/admin/secrets.dm b/code/modules/admin/secrets.dm index 4496bba1b3f..3c2d24f8345 100644 --- a/code/modules/admin/secrets.dm +++ b/code/modules/admin/secrets.dm @@ -200,7 +200,7 @@ if("showgm") if(!check_rights(R_ADMIN)) return - if(!ticker) + if(!ticker || !ticker.mode) alert("The game hasn't started yet!") else if (ticker.mode) alert("The game mode is [ticker.mode.name]") @@ -303,7 +303,7 @@ if("traitor_all") if(!check_rights(R_FUN)) return - if(!ticker) + if(!ticker || !ticker.mode) alert("The game hasn't started yet!") return var/objective = copytext(sanitize(input("Enter an objective")),1,MAX_MESSAGE_LEN) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index aaed2a84488..8a1577f4bb9 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -199,7 +199,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that set category = "Fun" set name = "Make Robot" - if(!ticker) + if(!ticker || !ticker.mode) alert("Wait until the game starts") return if(istype(M, /mob/living/carbon/human)) @@ -215,7 +215,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that set category = "Fun" set name = "Make Blob" - if(!ticker) + if(!ticker || !ticker.mode) alert("Wait until the game starts") return if(istype(M, /mob/living/carbon/human)) @@ -232,7 +232,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that set category = "Fun" set name = "Make Simple Animal" - if(!ticker) + if(!ticker || !ticker.mode) alert("Wait until the game starts") return @@ -280,7 +280,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that set category = "Fun" set name = "Make Alien" - if(!ticker) + if(!ticker || !ticker.mode) alert("Wait until the game starts") return if(ishuman(M)) @@ -297,7 +297,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that set category = "Fun" set name = "Make slime" - if(!ticker) + if(!ticker || !ticker.mode) alert("Wait until the game starts") return if(ishuman(M)) @@ -474,7 +474,7 @@ var/global/list/g_fancy_list_of_types = null set category = "Admin" set name = "Grant Full Access" - if (!ticker) + if(!ticker || !ticker.mode) alert("Wait until the game starts") return if (istype(M, /mob/living/carbon/human)) diff --git a/code/modules/admin/verbs/onlyone.dm b/code/modules/admin/verbs/onlyone.dm index 454869acf20..47747b9ecf1 100644 --- a/code/modules/admin/verbs/onlyone.dm +++ b/code/modules/admin/verbs/onlyone.dm @@ -1,5 +1,5 @@ /client/proc/only_one() - if(!ticker) + if(!ticker || !ticker.mode) alert("The game hasn't started yet!") return @@ -51,7 +51,7 @@ /client/proc/only_me() - if(!ticker) + if(!ticker || !ticker.mode) alert("The game hasn't started yet!") return diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 08f09916727..322ac1f17a0 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -344,7 +344,7 @@ /obj/item/clothing/head/winterhood name = "winter hood" desc = "A hood attached to a heavy winter jacket." - icon_state = "generic_hood" + icon_state = "winterhood" body_parts_covered = HEAD cold_protection = HEAD min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT @@ -355,48 +355,82 @@ icon_state = "coatcaptain" armor = list(melee = 25, bullet = 30, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0) allowed = list(/obj/item/weapon/gun/energy,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/projectile,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/device/flashlight/seclite,/obj/item/weapon/melee/classic_baton/telescopic) + hoodtype = /obj/item/clothing/head/winterhood/captain + +/obj/item/clothing/head/winterhood/captain + icon_state = "winterhood_captain" /obj/item/clothing/suit/hooded/wintercoat/security name = "security winter coat" icon_state = "coatsecurity" armor = list(melee = 25, bullet = 15, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0) allowed = list(/obj/item/weapon/gun/energy,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/projectile,/obj/item/ammo_box,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/restraints/handcuffs,/obj/item/device/flashlight/seclite,/obj/item/weapon/melee/classic_baton/telescopic) + hoodtype = /obj/item/clothing/head/winterhood/security + +/obj/item/clothing/head/winterhood/security + icon_state = "winterhood_security" /obj/item/clothing/suit/hooded/wintercoat/medical name = "medical winter coat" icon_state = "coatmedical" allowed = list(/obj/item/device/analyzer,/obj/item/stack/medical,/obj/item/weapon/dnainjector,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/hypospray,/obj/item/device/healthanalyzer,/obj/item/device/flashlight/pen,/obj/item/weapon/reagent_containers/glass/bottle,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/pill,/obj/item/weapon/storage/pill_bottle,/obj/item/weapon/paper,/obj/item/weapon/melee/classic_baton/telescopic) armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0) + hoodtype = /obj/item/clothing/head/winterhood/medical + +/obj/item/clothing/head/winterhood/medical + icon_state = "winterhood_medical" /obj/item/clothing/suit/hooded/wintercoat/science name = "science winter coat" icon_state = "coatscience" allowed = list(/obj/item/device/analyzer,/obj/item/stack/medical,/obj/item/weapon/dnainjector,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/hypospray,/obj/item/device/healthanalyzer,/obj/item/device/flashlight/pen,/obj/item/weapon/reagent_containers/glass/bottle,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/pill,/obj/item/weapon/storage/pill_bottle,/obj/item/weapon/paper,/obj/item/weapon/melee/classic_baton/telescopic) armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0) + hoodtype = /obj/item/clothing/head/winterhood/science + +/obj/item/clothing/head/winterhood/science + icon_state = "winterhood_science" /obj/item/clothing/suit/hooded/wintercoat/engineering name = "engineering winter coat" icon_state = "coatengineer" armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 20) allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/device/t_scanner, /obj/item/weapon/rcd) + hoodtype = /obj/item/clothing/head/winterhood/engineering + +/obj/item/clothing/head/winterhood/engineering + icon_state = "winterhood_engineer" /obj/item/clothing/suit/hooded/wintercoat/engineering/atmos name = "atmospherics winter coat" icon_state = "coatatmos" + hoodtype = /obj/item/clothing/head/winterhood/engineering/atmos + +/obj/item/clothing/head/winterhood/engineering/atmos + icon_state = "winterhood_atmos" /obj/item/clothing/suit/hooded/wintercoat/hydro name = "hydroponics winter coat" icon_state = "coathydro" allowed = list(/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/device/analyzer/plant_analyzer,/obj/item/seeds,/obj/item/weapon/reagent_containers/glass/bottle,/obj/item/weapon/cultivator,/obj/item/weapon/reagent_containers/spray/pestspray,/obj/item/weapon/hatchet,/obj/item/weapon/storage/bag/plants) + hoodtype = /obj/item/clothing/head/winterhood/hydro + +/obj/item/clothing/head/winterhood/hydro + item_state = "winterhood_hydro" /obj/item/clothing/suit/hooded/wintercoat/cargo name = "cargo winter coat" icon_state = "coatcargo" + hoodtype = /obj/item/clothing/head/winterhood/cargo + +/obj/item/clothing/head/winterhood/cargo + icon_state = "winterhood_cargo" /obj/item/clothing/suit/hooded/wintercoat/miner name = "mining winter coat" icon_state = "coatminer" allowed = list(/obj/item/weapon/pickaxe,/obj/item/device/flashlight,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/toy,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/lighter) armor = list(melee = 10, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) + hoodtype = /obj/item/clothing/head/winterhood/miner -// \ No newline at end of file +/obj/item/clothing/head/winterhood/miner + icon_state = "winterhood_miner" \ No newline at end of file diff --git a/code/modules/clothing/suits/toggles.dm b/code/modules/clothing/suits/toggles.dm index 6d7a8390ae3..ec8c2da4940 100644 --- a/code/modules/clothing/suits/toggles.dm +++ b/code/modules/clothing/suits/toggles.dm @@ -1,7 +1,7 @@ //Hoods for winter coats and chaplain hoodie etc /obj/item/clothing/suit/hooded - var/obj/item/clothing/head/winterhood/hood + var/obj/item/clothing/head/hood var/hoodtype = /obj/item/clothing/head/winterhood //so the chaplain hoodie or other hoodies can override this /obj/item/clothing/suit/hooded/New() @@ -14,7 +14,7 @@ /obj/item/clothing/suit/hooded/proc/MakeHood() if(!hood) - var/obj/item/clothing/head/winterhood/W = new hoodtype(src) + var/obj/item/clothing/head/W = new hoodtype(src) hood = W /obj/item/clothing/suit/hooded/ui_action_click() diff --git a/code/modules/mob/living/bloodcrawl.dm b/code/modules/mob/living/bloodcrawl.dm index da74f1fc716..bcac80dcc89 100644 --- a/code/modules/mob/living/bloodcrawl.dm +++ b/code/modules/mob/living/bloodcrawl.dm @@ -113,7 +113,7 @@ obj/effect/dummy/slaughter/relaymove(mob/user, direction) if(iscarbon(src)) var/mob/living/carbon/C = src for(var/obj/item/weapon/bloodcrawl/BC in C) - C.flags = null + BC.flags = null C.unEquip(BC) qdel(BC) var/oldcolor = src.color diff --git a/code/modules/mob/living/carbon/alien/alien_defense.dm b/code/modules/mob/living/carbon/alien/alien_defense.dm index 20577531b27..e236d53f5e3 100644 --- a/code/modules/mob/living/carbon/alien/alien_defense.dm +++ b/code/modules/mob/living/carbon/alien/alien_defense.dm @@ -7,7 +7,7 @@ As such, they can either help or harm other aliens. Help works like the human he In all, this is a lot like the monkey code. /N */ /mob/living/carbon/alien/attack_alien(mob/living/carbon/alien/M) - if (!ticker) + if(!ticker || !ticker.mode) M << "You cannot attack people before the game has started." return diff --git a/code/modules/mob/living/carbon/death.dm b/code/modules/mob/living/carbon/death.dm index 2cef64b3c89..056dfbc5ec9 100644 --- a/code/modules/mob/living/carbon/death.dm +++ b/code/modules/mob/living/carbon/death.dm @@ -1,5 +1,6 @@ /mob/living/carbon/death(gibbed) silent = 0 + losebreath = 0 med_hud_set_health() med_hud_set_status() ..(gibbed) diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index a24e880ed7a..365c881dac9 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -14,8 +14,10 @@ new /obj/effect/decal/remains/human(loc) /mob/living/carbon/human/death(gibbed) - if(stat == DEAD) return - if(healths) healths.icon_state = "health5" + if(stat == DEAD) + return + if(healths) + healths.icon_state = "health5" stat = DEAD dizziness = 0 jitteriness = 0 diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index cb1cc74e887..e5adae3a750 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -335,7 +335,8 @@ if(!heart_attack) return else - losebreath += 5 + if(losebreath < 3) + losebreath += 2 adjustOxyLoss(5) adjustBruteLoss(1) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index 28173c29920..c7d662b4d37 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -35,7 +35,7 @@ /datum/species/human/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H) if(chem.id == "mutationtoxin") H << "Your flesh rapidly mutates!" - H.set_species(/datum/species/slime) + H.set_species(/datum/species/jelly/slime) H.reagents.del_reagent(chem.type) H.faction |= "slime" return 1 @@ -111,6 +111,8 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) /datum/species/pod/spec_life(mob/living/carbon/human/H) + if(H.stat == DEAD) + return var/light_amount = 0 //how much light there is in the place, affects receiving nutrition and healing if(isturf(H.loc)) //else, there's considered to be no light var/turf/T = H.loc @@ -183,25 +185,24 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) H.heal_overall_damage(1,1) /* - SLIMEPEOPLE + JELLYPEOPLE */ -/datum/species/slime - // Humans mutated by slime mutagen, produced from green slimes. They are not targetted by slimes. - name = "Slimeperson" - id = "slime" - default_color = "00FFFF" - darksight = 3 - invis_sight = SEE_INVISIBLE_LEVEL_ONE - specflags = list(MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD) - hair_color = "mutcolor" - hair_alpha = 150 - ignored_by = list(/mob/living/simple_animal/slime) +/datum/species/jelly + // Entirely alien beings that seem to be made entirely out of gel. They have three eyes and a skeleton visible within them. + name = "Xenobiological Jelly Entity" + id = "jelly" + default_color = "00FF90" + say_mod = "chirps" + eyes = "jelleyes" + specflags = list(MUTCOLORS,EYECOLOR,NOBLOOD) meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/slime exotic_blood = /datum/reagent/toxin/slimejelly var/recently_changed = 1 -/datum/species/slime/spec_life(mob/living/carbon/human/H) +/datum/species/jelly/spec_life(mob/living/carbon/human/H) + if(H.stat == DEAD) //can't farm slime jelly from a dead slime/jelly person indefinitely + return if(!H.reagents.get_reagent_amount("slimejelly")) if(recently_changed) H.reagents.add_reagent("slimejelly", 80) @@ -222,48 +223,28 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) if(S.volume < 10) H.losebreath++ -/datum/species/slime/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H) - if(chem.id == "slimejelly") - return 1 -/* - JELLYPEOPLE -*/ - -/datum/species/jelly - // Entirely alien beings that seem to be made entirely out of gel. They have three eyes and a skeleton visible within them. - name = "Xenobiological Jelly Entity" - id = "jelly" - default_color = "00FF90" - say_mod = "chirps" - eyes = "jelleyes" - specflags = list(MUTCOLORS,EYECOLOR,NOBLOOD) - meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/slime - exotic_blood = /datum/reagent/toxin/slimejelly - var/recently_changed = 1 - -/datum/species/jelly/spec_life(mob/living/carbon/human/H) - if(!H.reagents.get_reagent_amount("slimejelly")) - if(recently_changed) - H.reagents.add_reagent("slimejelly", 80) - recently_changed = 0 - else - H.reagents.add_reagent("slimejelly", 5) - H.adjustBruteLoss(5) - H << "You feel empty!" - - for(var/datum/reagent/toxin/slimejelly/S in H.reagents.reagent_list) - if(S.volume < 100) - if(H.nutrition >= NUTRITION_LEVEL_STARVING) - H.reagents.add_reagent("slimejelly", 0.5) - H.nutrition -= 5 - else if(prob(5)) - H << "You feel drained!" - if(S.volume < 10) - H.losebreath++ - /datum/species/jelly/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H) if(chem.id == "slimejelly") return 1 + +/* + SLIMEPEOPLE +*/ + +/datum/species/jelly/slime + // Humans mutated by slime mutagen, produced from green slimes. They are not targetted by slimes. + name = "Slimeperson" + id = "slime" + default_color = "00FFFF" + darksight = 3 + invis_sight = SEE_INVISIBLE_LEVEL_ONE + specflags = list(MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD) + say_mod = "says" + eyes = "eyes" + hair_color = "mutcolor" + hair_alpha = 150 + ignored_by = list(/mob/living/simple_animal/slime) + /* GOLEMS */ diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index f34f20650f5..960675fbd51 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -673,7 +673,7 @@ Sorry Giacom. Please don't be mad :( return name /mob/living/update_gravity(has_gravity) - if(!ticker) + if(!ticker || !ticker.mode) return if(has_gravity) clear_alert("weightless") diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 41300c018c0..c91bf05bcd8 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -195,7 +195,7 @@ /mob/living/attack_slime(mob/living/simple_animal/slime/M) - if (!ticker) + if(!ticker || !ticker.mode) M << "You cannot attack people before the game has started." return @@ -226,7 +226,7 @@ /mob/living/attack_paw(mob/living/carbon/monkey/M) - if (!ticker) + if(!ticker || !ticker.mode) M << "You cannot attack people before the game has started." return 0 @@ -271,7 +271,7 @@ return 0 /mob/living/attack_alien(mob/living/carbon/alien/humanoid/M) - if (!ticker) + if(!ticker || !ticker.mode) M << "You cannot attack people before the game has started." return 0 diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index 4e708d7f2b2..b9019c19700 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -476,7 +476,7 @@ var/list/ai_list = list() /mob/living/silicon/ai/attack_alien(mob/living/carbon/alien/humanoid/M) - if (!ticker) + if(!ticker || !ticker.mode) M << "You cannot attack people before the game has started." return diff --git a/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm b/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm index 92fb1c7ed00..61cdb5fbf52 100644 --- a/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm +++ b/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm @@ -18,7 +18,9 @@ /obj/item/drone_shell/attack_ghost(mob/user) if(jobban_isbanned(user,"drone")) return - + if(!ticker.mode) + user << "Can't become a drone before the game has started." + return var/be_drone = alert("Become a drone? (Warning, You can no longer be cloned!)",,"Yes","No") if(be_drone == "No" || gc_destroyed) return diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index dfc03ac9bb1..324a121a982 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -431,6 +431,7 @@ /mob/living/simple_animal/revive() health = maxHealth + icon = initial(icon) icon_state = icon_living density = initial(density) update_canmove() diff --git a/code/modules/mob/living/simple_animal/slime/slime.dm b/code/modules/mob/living/simple_animal/slime/slime.dm index cadcdb2db31..f6ed7d222e8 100644 --- a/code/modules/mob/living/simple_animal/slime/slime.dm +++ b/code/modules/mob/living/simple_animal/slime/slime.dm @@ -298,9 +298,6 @@ discipline_slime(user) ..() -/mob/living/simple_animal/slime/show_inv(mob/user) - return - /mob/living/simple_animal/slime/proc/apply_water() adjustBruteLoss(rand(15,20)) if(!client) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index ca0948b56c5..3829ee81907 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -325,17 +325,7 @@ var/list/slot_equipment_priority = list( \ /mob/proc/show_inv(mob/user) - user.set_machine(src) - var/dat = {" -
- [name] -
-
Left Hand:
[(l_hand&&!(l_hand.flags&ABSTRACT)) ? l_hand : "Nothing"] -
Right Hand: [(r_hand&&!(r_hand.flags&ABSTRACT)) ? r_hand : "Nothing"] -
Close - "} - user << browse(dat, "window=mob\ref[src];size=325x500") - onclose(user, "mob\ref[src]") + return //mob verbs are faster than object verbs. See http://www.byond.com/forum/?post=1326139&page=2#comment8198716 for why this isn't atom/verb/examine() /mob/verb/examinate(atom/A as mob|obj|turf in view()) //It used to be oview(12), but I can't really say why diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index ddda848c270..48837641064 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -49,8 +49,6 @@ var/stuttering = null //Carbon var/slurring = 0 //Carbon var/real_name = null - var/bhunger = 0 //Carbon - var/ajourn = 0 var/druggy = 0 //Carbon var/confused = 0 //Carbon var/sleeping = 0 //Carbon diff --git a/code/modules/ninja/admin_ninja_verbs.dm b/code/modules/ninja/admin_ninja_verbs.dm index ddbbca1379e..aa3f8d48ea1 100644 --- a/code/modules/ninja/admin_ninja_verbs.dm +++ b/code/modules/ninja/admin_ninja_verbs.dm @@ -12,7 +12,7 @@ Contents: set category = null set name = "Make Space Ninja" - if(!ticker) + if (!ticker.mode) alert("Wait until the game starts") return diff --git a/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm b/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm index 32d21872f7c..e9429314a51 100644 --- a/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm @@ -364,7 +364,7 @@ if(prob(90) && mutation && H.dna.species != /datum/species/golem && H.dna.species != /datum/species/golem/adamantine) H << "The pain subsides. You feel... different." H.set_species(mutation) - if(mutation == /datum/species/slime) + if(mutation.id == "slime") H.faction |= "slime" else H.faction -= "slime" diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 3d38396674c45ca55b88b0f39eb34425ad8399e9..893024aa7146be2703f088b5f8d7028817ce93f4 100644 GIT binary patch delta 17010 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 aoD5rOp4k+w;D45Y+*f;|TCQvn`ab|m3rAT1 delta 9846 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 SaP#w?LX^}M%bvad@IL^ENEg=t diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 0e81fa537d7b14f4578796565d168abb2e5b78a9..d2eb2b45a70022bd968893a53177596f8ecf24c7 100644 GIT binary patch literal 61241 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

&n?WOpvy{8RLC{CA>be@U&RvFByM%E@Ht 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 literal 60068 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

cJ`^z7o74{1xu+oWI|=WM;l9e;a5y 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 delta 22496 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 Date: Sat, 24 Oct 2015 06:44:31 -0500 Subject: [PATCH 071/418] Cleanup, beams only --- code/game/objects/structures/reflector.dm | 101 +++++++++++----------- 1 file changed, 51 insertions(+), 50 deletions(-) diff --git a/code/game/objects/structures/reflector.dm b/code/game/objects/structures/reflector.dm index c4aa89399e3..749be21f670 100644 --- a/code/game/objects/structures/reflector.dm +++ b/code/game/objects/structures/reflector.dm @@ -16,55 +16,56 @@ var/reflect_y = 0 var/new_dir = 0 var/turf/reflect_turf = get_turf(src) + if(istype(P, /obj/item/projectile/beam)) + switch(P.dir) //Is the projectile heading in a direction that would hit a reflective panel? + if(NORTH) + switch(src.dir) + if(SOUTH) + new_dir = EAST + if(WEST) + new_dir = WEST + if(SOUTH) + switch(src.dir) + if(NORTH) + new_dir = WEST + if(EAST) + new_dir = EAST + if(WEST) + switch(src.dir) + if(SOUTH) + new_dir = SOUTH + if(EAST) + new_dir = NORTH + if(EAST) + switch(src.dir) + if(NORTH) + new_dir = NORTH + if(WEST) + new_dir = SOUTH - switch(P.dir) //Is the projectile heading in a direction that would hit a reflective panel? - if(1) //Travelling north - switch(src.dir) - if(2) //Facing south, reflected east - new_dir = 4 - if(8) //Facing west, reflected west - new_dir = 8 - if(2) //Travelling south - switch(src.dir) - if(1) //Facing north, reflected west - new_dir = 8 - if(4) //Facing east, reflected east - new_dir = 4 - if(8) //Travelling west - switch(src.dir) - if(2) - new_dir = 2 - if(4) - new_dir = 1 - if(4) //Travelling east - switch(src.dir) - if(1) - new_dir = 1 - if(8) - new_dir = 2 + switch(new_dir) //Setting a new target based on the reflection direction + if(NORTH) + reflect_x = src.x + reflect_y = src.y+2 + if(SOUTH) + reflect_x = src.x + reflect_y = src.y-2 + if(EAST) + reflect_x = src.x+2 + reflect_y = src.y + if(WEST) + reflect_x = src.x-2 + reflect_y = src.y + else //If it didnt hit a panel and a new_dir wasn't set + visible_message("[src] is hit by the [P]!") + return ..() //Hits as normal, explodes or emps or whatever - switch(new_dir) //Setting a new target based on the reflection direction - if(1) - reflect_x = src.x - reflect_y = src.y+2 - if(2) - reflect_x = src.x - reflect_y = src.y-2 - if(4) - reflect_x = src.x+2 - reflect_y = src.y - if(8) - reflect_x = src.x-2 - reflect_y = src.y - else //If it didnt hit a panel and a new_dir wasn't set - visible_message("[src] is hit by the [P]!") - return ..() //Hits as normal, explodes or emps or whatever - - visible_message("[P] bounces off of the [src]") - P.original = locate(reflect_x, reflect_y, P.z) - P.starting = reflect_turf - P.current = reflect_turf - P.yo = reflect_y - reflect_turf.y - P.xo = reflect_x - reflect_turf.x - P.kill_count = 50 //Keep the projectile healthy as long as its bouncing off things - return - 1 \ No newline at end of file + visible_message("[P] bounces off of the [src]") + P.original = locate(reflect_x, reflect_y, P.z) + P.starting = reflect_turf + P.current = reflect_turf + P.yo = reflect_y - reflect_turf.y + P.xo = reflect_x - reflect_turf.x + P.kill_count = 50 //Keep the projectile healthy as long as its bouncing off things + return - 1 + return ..() \ No newline at end of file From a172ad841b15311acd2d86b4be269edcfecc0604 Mon Sep 17 00:00:00 2001 From: AnturK Date: Sat, 24 Oct 2015 14:03:30 +0200 Subject: [PATCH 072/418] Beam Code Cleanup --- code/datums/beam.dm | 94 +++++++++++++++++++++++++++++++++++++++++++++ code/game/atoms.dm | 71 +++++----------------------------- tgstation.dme | 1 + 3 files changed, 105 insertions(+), 61 deletions(-) create mode 100644 code/datums/beam.dm diff --git a/code/datums/beam.dm b/code/datums/beam.dm new file mode 100644 index 00000000000..876404191ca --- /dev/null +++ b/code/datums/beam.dm @@ -0,0 +1,94 @@ +//Beam Datum and effect +/datum/beam + var/atom/origin = null + var/atom/target = null + var/list/elements = list() + var/icon/base_icon = null + var/icon + var/icon_state + var/max_distance = 0 + var/endtime = 0 + var/sleep_time = 3 + var/finished = 0 + var/target_oldloc = null + var/origin_oldloc = null + var/beam_type = /obj/effect/ebeam //must be subtype + +/datum/beam/New(beam_origin,beam_target,beam_icon='icons/effects/beam.dmi',beam_icon_state="b_beam",time=50,maxdistance=10,btype = /obj/effect/ebeam) + endtime = world.time+time + origin = beam_origin + origin_oldloc = origin.loc + target = beam_target + target_oldloc = target.loc + max_distance = maxdistance + base_icon = new(beam_icon,beam_icon_state) + icon = beam_icon + icon_state = beam_icon_state + beam_type = btype + +/datum/beam/proc/Start() + Draw() + while(!finished && target && world.timelength) + var/icon/II=new(icon,icon_state) + II.DrawBox(null,1,(length-N),32,32) + X.icon=II + else X.icon=base_icon + X.transform = rot_matrix + var/Pixel_x=round(sin(Angle)+32*sin(Angle)*(N+16)/32) + var/Pixel_y=round(cos(Angle)+32*cos(Angle)*(N+16)/32) + if(DX==0) Pixel_x=0 + if(DY==0) Pixel_y=0 + var/a + if(abs(Pixel_x)>32) + a = Pixel_x > 0 ? round(Pixel_x/32) : Ceiling(Pixel_x/32) + X.x += a + Pixel_x %= 32 + if(abs(Pixel_y)>32) + a = Pixel_y > 0 ? round(Pixel_y/32) : Ceiling(Pixel_y/32) + X.y += a + Pixel_y %= 32 + + X.pixel_x=Pixel_x + X.pixel_y=Pixel_y + +/obj/effect/ebeam + var/datum/beam/owner + +/obj/effect/ebeam/Destroy() + owner = null + return ..() \ No newline at end of file diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 0e4bef56c8d..2c2bf0e349e 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -146,9 +146,6 @@ found += A.search_contents_for(path,filter_path) return found - - - /* Beam code by Gunbuddy @@ -157,65 +154,17 @@ once at a time per source will cause graphical errors. Also, the icon used for the beam will have to be vertical and 32x32. The math involved assumes that the icon is vertical to begin with so unless you want to adjust the math, its easier to just keep the beam vertical. +BeamTarget represents the target for the beam, basically just means the other end. +Time is the duration to draw the beam +Icon is obviously which icon to use for the beam, default is beam.dmi +Icon_state is what icon state is used. Default is b_beam which is a blue beam. +Maxdistance is the longest range the beam will persist before it gives up. */ -/atom/proc/Beam(atom/BeamTarget,icon_state="b_beam",icon='icons/effects/beam.dmi',time=50, maxdistance=10) - //BeamTarget represents the target for the beam, basically just means the other end. - //Time is the duration to draw the beam - //Icon is obviously which icon to use for the beam, default is beam.dmi - //Icon_state is what icon state is used. Default is b_beam which is a blue beam. - //Maxdistance is the longest range the beam will persist before it gives up. - var/EndTime=world.time+time - while(BeamTarget&&world.timelength) - var/icon/II=new(icon,icon_state) - II.DrawBox(null,1,(length-N),32,32) - II.Turn(Angle) - X.icon=II - else X.icon=I - var/Pixel_x=round(sin(Angle)+32*sin(Angle)*(N+16)/32) - var/Pixel_y=round(cos(Angle)+32*cos(Angle)*(N+16)/32) - if(DX==0) Pixel_x=0 - if(DY==0) Pixel_y=0 - if(Pixel_x>32) - for(var/a=0, a<=Pixel_x,a+=32) - X.x++ - Pixel_x-=32 - if(Pixel_x<-32) - for(var/a=0, a>=Pixel_x,a-=32) - X.x-- - Pixel_x+=32 - if(Pixel_y>32) - for(var/a=0, a<=Pixel_y,a+=32) - X.y++ - Pixel_y-=32 - if(Pixel_y<-32) - for(var/a=0, a>=Pixel_y,a-=32) - X.y-- - Pixel_y+=32 - X.pixel_x=Pixel_x - X.pixel_y=Pixel_y - sleep(3) //Changing this to a lower value will cause the beam to follow more smoothly with movement, but it will also be more laggy. - //I've found that 3 ticks provided a nice balance for my use. - for(var/obj/effect/overlay/beam/O in ultra_range(10,src,1)) if(O.BeamSource==src) qdel(O) +/atom/proc/Beam(atom/BeamTarget,icon_state="b_beam",icon='icons/effects/beam.dmi',time=50, maxdistance=10,beam_type=/obj/effect/ebeam) + var/datum/beam/newbeam = new(src,BeamTarget,icon,icon_state,time,maxdistance,beam_type) + spawn(0) + newbeam.Start() + return newbeam /atom/proc/examine(mob/user) //This reformat names to get a/an properly working on item descriptions when they are bloody diff --git a/tgstation.dme b/tgstation.dme index 071c25cb6ac..17f78eede94 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -161,6 +161,7 @@ #include "code\controllers\subsystem\shuttles\emergency.dm" #include "code\controllers\subsystem\shuttles\supply.dm" #include "code\datums\ai_laws.dm" +#include "code\datums\beam.dm" #include "code\datums\browser.dm" #include "code\datums\datacore.dm" #include "code\datums\datumvars.dm" From 10dae485bc9542bd3e086f72dcbd811d55ae442f Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Sat, 24 Oct 2015 12:55:30 -0300 Subject: [PATCH 073/418] Stops fire alarms from triggering every tick This was triggering fire alarms every tick whenever there was a fire, which lagged quite a bit. Thanks to Aranclanos for pointing it out. --- code/game/machinery/alarm.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index b29c928227b..d1a86f5d3ee 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -1111,7 +1111,8 @@ FIRE ALARM if (stat & (NOPOWER|BROKEN)) // can't activate alarm if it's unpowered or broken. return var/area/A = get_area(src) - A.firealert(src) + if(!A.fire) + A.firealert(src) //playsound(src.loc, 'sound/ambience/signal.ogg', 75, 0) return From 73c0f5d46275032e13c682ffb229f504e7ccd28c Mon Sep 17 00:00:00 2001 From: MrPerson Date: Fri, 23 Oct 2015 19:19:09 -0700 Subject: [PATCH 074/418] Remove tags from some maps Disc was left completely untouched. Dream was given only a single edit to keep the syndiebomb working. Meta and Bird are also both cleaned up now too. All map-specific custom z's were cleaned too. Source of these tags is DM being stupid. When you use the "Generate instances based on icon states" option, for some ungodly reason it gives those instances a tag. Which is retarded, tags are supposed to be unique to each object. I tried searching for legit uses of tag in code and found only a few landmarks and giving mobs a tag. In any event, setting tags on map objects is probably a really bad idea anyway. Exact regex used to find these so you guys can check my work ; tag = "[^"]*" #end/middle (?<=\{)tag = "[^"]*"; #begin \{tag = "[^"]*"\} #solo --- _maps/RandomZLevels/Academy.dmm | 352 +-- _maps/RandomZLevels/beach.dmm | 38 +- _maps/RandomZLevels/blackmarketpackers.dmm | 418 +-- _maps/RandomZLevels/centcomAway.dmm | 340 +-- _maps/RandomZLevels/challenge.dmm | 50 +- _maps/RandomZLevels/example.dmm | 30 +- _maps/RandomZLevels/listeningpost.dmm | 26 +- _maps/RandomZLevels/moonoutpost19.dmm | 442 +-- _maps/RandomZLevels/spacebattle.dmm | 240 +- _maps/RandomZLevels/stationCollision.dmm | 226 +- _maps/RandomZLevels/undergroundoutpost45.dmm | 892 +++---- _maps/RandomZLevels/wildwest.dmm | 366 +-- .../AsteroidStation/AsteroidStation.dmm | 36 +- _maps/map_files/BirdStation/BirdStation.dmm | 1330 ++++----- _maps/map_files/DiscStation/z4.dmm | 278 +- .../map_files/DreamStation/dreamstation04.dmm | 2 +- _maps/map_files/DreamStation/z5.dmm | 266 +- .../MetaStation/MetaStation.v41H.dmm | 2378 ++++++++--------- _maps/map_files/MiniStation/MiniStation.dmm | 148 +- _maps/map_files/TgStation/tgstation.2.1.3.dmm | 670 ++--- _maps/map_files/generic/z2.dmm | 18 +- _maps/map_files/generic/z4.dmm | 54 +- _maps/map_files/generic/z5.dmm | 22 +- code/game/gamemodes/nuclear/nuclearbomb.dm | 11 + 24 files changed, 4322 insertions(+), 4311 deletions(-) diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm index 6ff18da5edd..ccf9b13b32f 100644 --- a/_maps/RandomZLevels/Academy.dmm +++ b/_maps/RandomZLevels/Academy.dmm @@ -9,21 +9,21 @@ "ai" = (/obj/structure/stool/bed/chair/office/light{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aj" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 1; environ = 0; equipment = 3; locked = 0; req_access = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "ak" = (/obj/structure/table/reinforced,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"al" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"am" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/light/small,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"an" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"ao" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"ap" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"al" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"am" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"an" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"ao" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"ap" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aq" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/coffee,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "ar" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{info = "We're upgrading to the latest mainframes for our consoles, the shipment should be in before spring break is over!"; name = "Console Maintenance"},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "as" = (/turf/simulated/wall,/area/awaymission/academy/headmaster) -"at" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"au" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"av" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"at" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"au" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"av" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aw" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "ax" = (/obj/structure/stool,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "ay" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) -"az" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/item/stack/sheet/animalhide/monkey,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) +"az" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stack/sheet/animalhide/monkey,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aA" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aB" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/purple,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aC" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/mug/tea,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) @@ -31,7 +31,7 @@ "aE" = (/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aF" = (/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aG" = (/obj/structure/safe/floor,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) -"aH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"aH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aI" = (/obj/structure/table/reinforced,/obj/item/device/laser_pointer/upgraded,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aJ" = (/obj/structure/cult/tome,/obj/item/weapon/staff,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aK" = (/obj/structure/stool/bed/chair/wood/wings{dir = 8},/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) @@ -41,64 +41,64 @@ "aO" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aP" = (/obj/structure/lattice,/turf/space,/area/space) "aQ" = (/obj/machinery/door/airlock/gold{locked = 1},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"aR" = (/obj/machinery/door/airlock/gold{locked = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"aR" = (/obj/machinery/door/airlock/gold{locked = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aS" = (/turf/simulated/mineral/random/high_chance,/area/awaymission/academy) "aT" = (/obj/structure/noticeboard,/turf/simulated/wall,/area/awaymission/academy/headmaster) -"aU" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) +"aU" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aV" = (/obj/structure/stool/bed/chair/office/dark,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aW" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aX" = (/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "aY" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "aZ" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"ba" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/weapon/pen/red,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"ba" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/weapon/pen/red,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bb" = (/obj/structure/table/wood,/obj/item/weapon/staff,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bc" = (/obj/structure/table/wood,/obj/item/weapon/hand_labeler,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "bd" = (/obj/structure/table/wood,/obj/item/weapon/pen/invisible,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "be" = (/obj/structure/stool/bed/chair/office/dark{dir = 4},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bf" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bg" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"bh" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/weapon/dice/d20,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"bh" = (/obj/structure/table/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/weapon/dice/d20,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bi" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/mug/tea,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bj" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) -"bk" = (/obj/structure/stool/bed/chair/office/dark{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"bk" = (/obj/structure/stool/bed/chair/office/dark{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bl" = (/obj/structure/stool/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "bm" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "bn" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "bo" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/wood,/area/awaymission/academy/headmaster) "bp" = (/obj/machinery/door/airlock/gold,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"bq" = (/obj/machinery/door/airlock/gold,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"bq" = (/obj/machinery/door/airlock/gold,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) "br" = (/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) "bs" = (/turf/simulated/wall/r_wall,/area/awaymission/academy/classrooms) "bt" = (/obj/machinery/door/poddoor/shutters{id = "AcademyAuto"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/academy/classrooms) -"bu" = (/obj/machinery/door/poddoor/shutters{id = "AcademyAuto"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/academy/classrooms) +"bu" = (/obj/machinery/door/poddoor/shutters{id = "AcademyAuto"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/academy/classrooms) "bv" = (/obj/machinery/door/poddoor/shutters{id = "AcademyAuto"},/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) -"bw" = (/obj/machinery/door/poddoor/shutters{id = "AcademyAuto"},/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/academy/classrooms) +"bw" = (/obj/machinery/door/poddoor/shutters{id = "AcademyAuto"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/academy/classrooms) "bx" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/awaymission/academy/headmaster) "by" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/awaymission/academy/headmaster) "bz" = (/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"bA" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/academy/classrooms) +"bA" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/academy/classrooms) "bB" = (/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) -"bC" = (/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/academy/classrooms) +"bC" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/academy/classrooms) "bD" = (/obj/machinery/button/door{id = "AcademyAuto"; pixel_y = 24},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "bE" = (/turf/simulated/wall,/area/awaymission/academy/classrooms) -"bF" = (/turf/simulated/wall/shuttle{tag = "icon-swallc2"; icon_state = "swallc2"},/area/awaymission/academy/classrooms) -"bG" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/awaymission/academy/classrooms) -"bH" = (/turf/simulated/wall/shuttle{tag = "icon-swallc1"; icon_state = "swallc1"},/area/awaymission/academy/classrooms) +"bF" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"},/area/awaymission/academy/classrooms) +"bG" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/awaymission/academy/classrooms) +"bH" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"},/area/awaymission/academy/classrooms) "bI" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) "bJ" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/awaymission/academy/headmaster) "bK" = (/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/awaymission/academy/headmaster) "bL" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) -"bM" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) -"bN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) -"bO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) -"bP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) -"bQ" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"bM" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"bN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) +"bO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"bP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) +"bQ" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) "bR" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) "bS" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/academy/headmaster) "bT" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/academy/headmaster) "bU" = (/obj/machinery/autolathe,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "bV" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/awaymission/academy/classrooms) -"bW" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/awaymission/academy/classrooms) +"bW" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/awaymission/academy/classrooms) "bX" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/engine,/area/awaymission/academy/classrooms) "bY" = (/obj/structure/target_stake,/turf/simulated/floor/engine,/area/awaymission/academy/classrooms) "bZ" = (/turf/simulated/floor/engine,/area/awaymission/academy/classrooms) @@ -106,55 +106,55 @@ "cb" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) "cc" = (/obj/structure/table,/obj/item/weapon/lighter/greyscale,/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) "cd" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) -"ce" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"ce" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) "cf" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) "cg" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/academy/headmaster) "ch" = (/obj/structure/stool,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/academy/headmaster) -"ci" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/awaymission/academy/classrooms) +"ci" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/awaymission/academy/classrooms) "cj" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "ck" = (/obj/machinery/door/airlock/plasma,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"cl" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) -"cm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) -"cn" = (/obj/machinery/computer/area_atmos/area,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"cl" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"cm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) +"cn" = (/obj/machinery/computer/area_atmos/area,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) "co" = (/obj/machinery/portable_atmospherics/scrubber/huge/stationary,/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) "cp" = (/obj/structure/stool,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/academy/headmaster) -"cq" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/weapon/pen/red,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"cq" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/weapon/pen/red,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "cr" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"cs" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/awaymission/academy/classrooms) +"cs" = (/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/awaymission/academy/classrooms) "ct" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) "cu" = (/turf/simulated/floor/carpet{icon_state = "carpetsymbol"},/area/awaymission/academy/headmaster) "cv" = (/obj/machinery/door/window{dir = 8},/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) "cw" = (/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) -"cx" = (/obj/machinery/door/window{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) +"cx" = (/obj/machinery/door/window{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) "cy" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/academy/headmaster) -"cz" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/stack/cable_coil/random,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"cz" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/stack/cable_coil/random,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "cA" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/awaymission/academy/classrooms) "cB" = (/obj/item/target,/turf/simulated/floor/engine,/area/awaymission/academy/classrooms) "cC" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/academy/classrooms) "cD" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) -"cE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"cF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/plasma,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) -"cG" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) +"cE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"cF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/plasma,/turf/simulated/floor/carpet,/area/awaymission/academy/headmaster) +"cG" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) "cH" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/awaymission/academy/headmaster) -"cI" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"cI" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "cJ" = (/obj/item/stack/sheet/metal,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "cK" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/academy/classrooms) "cL" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) -"cM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"cN" = (/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/awaymission/academy/classrooms) -"cO" = (/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/awaymission/academy/classrooms) +"cM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"cN" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/awaymission/academy/classrooms) +"cO" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/awaymission/academy/classrooms) "cP" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/awaymission/academy/classrooms) "cQ" = (/turf/simulated/floor/plasteel{icon_state = "red"},/area/awaymission/academy/classrooms) "cR" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/awaymission/academy/classrooms) "cS" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/academy/headmaster) -"cT" = (/obj/machinery/light{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"cT" = (/obj/machinery/light{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) "cU" = (/obj/structure/closet/crate/internals,/obj/item/weapon/tank/internals/oxygen,/obj/item/weapon/tank/internals/oxygen/red,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/academy/headmaster) -"cV" = (/obj/structure/closet/crate,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) +"cV" = (/obj/structure/closet/crate,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/headmaster) "cW" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/headmaster) -"cX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"cY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"cZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/awaymission/academy/classrooms) -"da" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"cX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"cY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"cZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/awaymission/academy/classrooms) +"da" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "db" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "dc" = (/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "dd" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) @@ -178,10 +178,10 @@ "dv" = (/obj/item/seeds/eggyseed,/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dw" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dx" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/academy/classrooms) -"dy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/effect/landmark{name = "awaystart"},/obj/item/weapon/weldingtool,/turf/simulated/floor/greengrid,/area/awaymission/academy/classrooms) -"dz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/greengrid,/area/awaymission/academy/classrooms) -"dA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/greengrid,/area/awaymission/academy/classrooms) -"dB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"dy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/landmark{name = "awaystart"},/obj/item/weapon/weldingtool,/turf/simulated/floor/greengrid,/area/awaymission/academy/classrooms) +"dz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/greengrid,/area/awaymission/academy/classrooms) +"dA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/greengrid,/area/awaymission/academy/classrooms) +"dB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dC" = (/turf/simulated/floor/grass,/area/awaymission/academy/headmaster) "dD" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dE" = (/obj/structure/closet/crate/hydroponics/prespawned,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) @@ -193,34 +193,34 @@ "dK" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dL" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dM" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/bluespacetomatoseed,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"dN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"dO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/academy/classrooms) -"dP" = (/obj/machinery/door/airlock/freezer,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) -"dQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) -"dR" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) +"dN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"dO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/academy/classrooms) +"dP" = (/obj/machinery/door/airlock/freezer,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) +"dQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) +"dR" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) "dS" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) "dT" = (/obj/structure/mineral_door/iron,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"dU" = (/obj/structure/mineral_door/iron,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) +"dU" = (/obj/structure/mineral_door/iron,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dV" = (/obj/structure/mineral_door/wood,/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) "dW" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dX" = (/obj/structure/cable,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "dY" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) -"dZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) +"dZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) "ea" = (/obj/machinery/igniter,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "eb" = (/turf/simulated/floor/plasteel{icon_state = "yellowcorner"},/area/awaymission/academy/classrooms) "ec" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/awaymission/academy/classrooms) "ed" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/awaymission/academy/classrooms) "ee" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/awaymission/academy/classrooms) -"ef" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/awaymission/academy/classrooms) +"ef" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/awaymission/academy/classrooms) "eg" = (/obj/structure/noticeboard{pixel_y = 32},/obj/item/weapon/paper{name = "Automotive Repair 101"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) "eh" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) "ei" = (/obj/structure/noticeboard{pixel_y = 32},/obj/item/weapon/paper{name = "Pyromancy 250"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) "ej" = (/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) "ek" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; environ = 3; equipment = 3; locked = 0; req_access = ""},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) "el" = (/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) -"em" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) -"en" = (/turf/simulated/floor/plasteel{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/awaymission/academy/classrooms) -"eo" = (/turf/simulated/floor/plasteel{tag = "icon-green"; icon_state = "green"},/area/awaymission/academy/classrooms) +"em" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) +"en" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 10},/area/awaymission/academy/classrooms) +"eo" = (/turf/simulated/floor/plasteel{icon_state = "green"},/area/awaymission/academy/classrooms) "ep" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "eq" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/awaymission/academy/classrooms) "er" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) @@ -228,10 +228,10 @@ "et" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/awaymission/academy/classrooms) "eu" = (/obj/singularity/academy,/turf/space,/area/space) "ev" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "yellow"; dir = 10},/area/awaymission/academy/classrooms) -"ew" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) +"ew" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) "ex" = (/obj/structure/mineral_door/wood,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"ey" = (/obj/machinery/door/airlock/freezer,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) -"ez" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/awaymission/academy) +"ey" = (/obj/machinery/door/airlock/freezer,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) +"ez" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/awaymission/academy) "eA" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "eB" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "eC" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) @@ -240,13 +240,13 @@ "eF" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) "eG" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) "eH" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) -"eI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) -"eJ" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/academy) +"eI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) +"eJ" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/academy) "eK" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/academy/classrooms) "eL" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/awaymission/academy/classrooms) "eM" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/awaymission/academy/classrooms) "eN" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/awaymission/academy/classrooms) -"eO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/awaymission/academy/classrooms) +"eO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/awaymission/academy/classrooms) "eP" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) "eQ" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) "eR" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/bag/tray,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) @@ -255,22 +255,22 @@ "eU" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/awaymission/academy/classrooms) "eV" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/awaymission/academy/classrooms) "eW" = (/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/awaymission/academy/classrooms) -"eX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/awaymission/academy/classrooms) +"eX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/awaymission/academy/classrooms) "eY" = (/obj/structure/mineral_door/wood,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/academy/classrooms) "eZ" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) "fa" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/item/weapon/reagent_containers/food/snacks/burger/spell,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) -"fb" = (/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/awaymission/academy) +"fb" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/awaymission/academy) "fc" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) -"fd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) -"fe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) -"ff" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) -"fg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) -"fh" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/academy/classrooms) -"fi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) -"fj" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) -"fk" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) -"fl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) -"fm" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) +"fd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) +"fe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) +"ff" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) +"fg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) +"fh" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/academy/classrooms) +"fi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) +"fj" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) +"fk" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) +"fl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) +"fm" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) "fn" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/academy/classrooms) "fo" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/awaymission/academy/classrooms) "fp" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{dir = 9; icon_state = "yellow"},/area/awaymission/academy/classrooms) @@ -281,27 +281,27 @@ "fu" = (/turf/simulated/floor/plasteel{icon_state = "cautioncorner"; dir = 4},/area/awaymission/academy/classrooms) "fv" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/academy/classrooms) "fw" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/awaymission/academy/classrooms) -"fx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/awaymission/academy/classrooms) -"fy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/noticeboard{pixel_y = -32},/obj/item/weapon/paper{name = "Biology Lab"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) -"fz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) -"fA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) -"fB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) +"fx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/awaymission/academy/classrooms) +"fy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/noticeboard{pixel_y = -32},/obj/item/weapon/paper{name = "Biology Lab"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) +"fz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) +"fA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/classrooms) +"fB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) "fC" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "escape"; dir = 6},/area/awaymission/academy/classrooms) "fD" = (/turf/simulated/wall,/area/awaymission/academy/academyaft) -"fE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"fE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "fF" = (/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "fG" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) -"fH" = (/obj/machinery/shieldwallgen,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/academy/classrooms) -"fI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/academy/classrooms) -"fJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/academy/classrooms) +"fH" = (/obj/machinery/shieldwallgen,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/academy/classrooms) +"fI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/academy/classrooms) +"fJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/academy/classrooms) "fK" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/academy/classrooms) "fL" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/academy/classrooms) "fM" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "fN" = (/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/academyaft) "fO" = (/obj/structure/closet/crate/trashcart,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/academyaft) -"fP" = (/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/academy/classrooms) -"fQ" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/academy/classrooms) -"fR" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/academy/classrooms) +"fP" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/academy/classrooms) +"fQ" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/academy/classrooms) +"fR" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/academy/classrooms) "fS" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/awaymission/academy/classrooms) "fT" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/academy/classrooms) "fU" = (/obj/item/target,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) @@ -317,93 +317,93 @@ "ge" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/wiki/engineering_hacking,/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "gf" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "gg" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) -"gh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/academyaft) -"gi" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"gj" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) -"gk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/recharger,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) -"gl" = (/obj/structure/table/reinforced,/obj/item/weapon/pen/red,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) -"gm" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/academyaft) +"gi" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"gj" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/recharger,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gl" = (/obj/structure/table/reinforced,/obj/item/weapon/pen/red,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gm" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) "gn" = (/obj/machinery/door/window{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/academy/classrooms) "go" = (/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) -"gp" = (/obj/machinery/door/window{dir = 4},/obj/machinery/door/window{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) +"gp" = (/obj/machinery/door/window{dir = 4},/obj/machinery/door/window{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "gq" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "gr" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/academy/classrooms) "gs" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) -"gt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) "gu" = (/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "gv" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/academy/classrooms) "gw" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "gx" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/medical_cloning,/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "gy" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/academy/academyaft) -"gz" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gz" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) "gA" = (/obj/machinery/door/window{dir = 4},/obj/item/ammo_casing,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/academy/classrooms) "gB" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "gC" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "gD" = (/obj/structure/table,/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "gE" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) -"gF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"gG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"gH" = (/obj/structure/table,/obj/item/weapon/paper{info = "Grade: A+ Educator's Notes: Excellent form."; name = "Summoning Midterm Exam"},/obj/item/weapon/gun/projectile/shotgun/automatic/combat,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) -"gI" = (/obj/structure/table,/obj/item/weapon/gun/projectile/revolver/russian,/obj/item/weapon/paper{info = "Grade: B- Educator's Notes: Keep applying yourself, you're showing improvement."; name = "Summoning Midterm Exam"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) -"gJ" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"gG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"gH" = (/obj/structure/table,/obj/item/weapon/paper{info = "Grade: A+ Educator's Notes: Excellent form."; name = "Summoning Midterm Exam"},/obj/item/weapon/gun/projectile/shotgun/automatic/combat,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gI" = (/obj/structure/table,/obj/item/weapon/gun/projectile/revolver/russian,/obj/item/weapon/paper{info = "Grade: B- Educator's Notes: Keep applying yourself, you're showing improvement."; name = "Summoning Midterm Exam"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gJ" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) "gK" = (/obj/structure/window/reinforced,/obj/item/ammo_casing,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/awaymission/academy/classrooms) "gL" = (/mob/living/simple_animal/hostile/bear,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "gM" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/hydroponics_pod_people,/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) "gN" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/wood,/area/awaymission/academy/classrooms) -"gO" = (/obj/structure/stool,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gO" = (/obj/structure/stool,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) "gP" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/academy/classrooms) "gQ" = (/obj/machinery/light/small{dir = 8},/mob/living/simple_animal/hostile/bear,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "gR" = (/obj/structure/mineral_door/iron,/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) -"gS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"gT" = (/obj/machinery/door/airlock/gold{locked = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) -"gU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) -"gV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) -"gW" = (/obj/structure/table,/obj/item/weapon/gun/energy/floragun,/obj/item/weapon/paper{info = "Grade: D- Educator's Notes: SEE ME AFTER CLASS."; name = "Summoning Midterm Exam"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"gT" = (/obj/machinery/door/airlock/gold{locked = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/classrooms) +"gU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) +"gW" = (/obj/structure/table,/obj/item/weapon/gun/energy/floragun,/obj/item/weapon/paper{info = "Grade: D- Educator's Notes: SEE ME AFTER CLASS."; name = "Summoning Midterm Exam"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/academy/classrooms) "gX" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass,/obj/item/target,/obj/item/target,/turf/simulated/floor/plasteel,/area/awaymission/academy/classrooms) "gY" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/classrooms) "gZ" = (/obj/machinery/shieldwallgen,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/academy/classrooms) "ha" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/academy/classrooms) "hb" = (/obj/structure/stool,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/academy/classrooms) "hc" = (/turf/simulated/wall/r_wall,/area/awaymission/academy/academyaft) -"hd" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"hd" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "he" = (/obj/structure/mineral_door/wood,/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "hf" = (/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"hj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"hk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) "hl" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; environ = 3; equipment = 3; locked = 0; req_access = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) "hm" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hn" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/awaymission/academy/academyaft) "ho" = (/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) "hp" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) -"hq" = (/turf/simulated/floor/plasteel{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) -"hr" = (/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) +"hq" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) +"hr" = (/obj/item/weapon/crowbar/red,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) "hs" = (/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"ht" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) -"hu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"hv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) -"hw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) +"ht" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) +"hu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) +"hw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hx" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hy" = (/obj/machinery/power/smes/magical,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hz" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"hA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"hB" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"hC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"hD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"hE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"hF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/awaymission/academy/academyaft) -"hG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) -"hH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) -"hI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"hJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"hK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/item/weapon/caution,/turf/simulated/floor/plasteel{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) -"hL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"hM" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hB" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) +"hE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) +"hF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/awaymission/academy/academyaft) +"hG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) +"hH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) +"hI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"hJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"hK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/item/weapon/caution,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/academy/academyaft) +"hL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) +"hM" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) "hN" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"hP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) +"hP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) "hQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) "hR" = (/obj/structure/grille,/obj/structure/cable,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "hS" = (/obj/structure/closet,/obj/item/candle,/obj/item/candle,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) @@ -419,12 +419,12 @@ "ic" = (/obj/structure/closet,/obj/item/weapon/storage/box/snappops,/obj/item/weapon/storage/backpack,/obj/item/weapon/paper{info = "Current Grade: F. Educator's Notes: No improvement shown despite multiple private lessons. Suggest additional tutilage."; name = "Pyromancy Evaluation"},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) "id" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) "ie" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) -"if" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) +"if" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) "ig" = (/obj/item/stack/cable_coil/random,/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) "ih" = (/obj/structure/rack,/obj/item/stack/sheet/mineral/plasma{amount = 50},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) "ii" = (/turf/simulated/floor/grass,/area/awaymission/academy/academyaft) "ij" = (/obj/structure/rack,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/relay,/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/academy/academyaft) -"ik" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) +"ik" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) "il" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/academy/academyaft) "im" = (/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/academy/academyaft) "in" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/academy/academyaft) @@ -454,84 +454,84 @@ "iL" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine,/area/awaymission/academy/academyaft) "iM" = (/turf/simulated/floor/engine,/area/awaymission/academy/academyaft) "iN" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/vomit,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/academy/academyaft) -"iO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/wood,/area/awaymission/academy/academyaft) +"iO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/awaymission/academy/academyaft) "iP" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/engine,/area/awaymission/academy/academyaft) "iQ" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "iR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/toy/beach_ball/holoball,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/awaymission/academy/academyaft) -"iS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/awaymission/academy/academyaft) -"iT" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"iU" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"iV" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"iW" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/airless{tag = "icon-white (EAST)"; icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) -"iX" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/device/soulstone,/turf/simulated/floor/plasteel/airless{tag = "icon-whitered (EAST)"; icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) -"iY" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l"; icon_state = "propulsion_l"},/turf/space,/area/awaymission/academy/academyaft) +"iS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/awaymission/academy/academyaft) +"iT" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) +"iU" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"iV" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) +"iW" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless{icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) +"iX" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/device/soulstone,/turf/simulated/floor/plasteel/airless{icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) +"iY" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/space,/area/awaymission/academy/academyaft) "iZ" = (/obj/structure/shuttle/engine/propulsion,/turf/space,/area/awaymission/academy/academyaft) -"ja" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r"; icon_state = "propulsion_r"},/turf/space,/area/awaymission/academy/academyaft) +"ja" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/space,/area/awaymission/academy/academyaft) "jb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"jc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/academy/academyaft) +"jc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/academy/academyaft) "jd" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "je" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"jf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel/airless{tag = "icon-white (EAST)"; icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) -"jg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/airless{tag = "icon-whitered (EAST)"; icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) +"jf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/airless{icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) +"jg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) "jh" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "ji" = (/obj/structure/table,/obj/item/clothing/glasses/meson/truesight,/turf/simulated/floor/plasteel,/area/awaymission/academy/academyaft) -"jj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/academy/academyaft) -"jk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"jj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/academy/academyaft) +"jk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jl" = (/obj/structure/noticeboard,/turf/simulated/wall,/area/awaymission/academy/academyaft) "jm" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"jn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/airless{tag = "icon-white (EAST)"; icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) -"jo" = (/obj/structure/table,/obj/item/organ/internal/brain{name = "The preserved brain of Harry Houdini"},/turf/simulated/floor/plasteel/airless{tag = "icon-whitered (EAST)"; icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) -"jp" = (/obj/effect/landmark{name = "awaystart"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/academy/academyaft) +"jn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) +"jo" = (/obj/structure/table,/obj/item/organ/internal/brain{name = "The preserved brain of Harry Houdini"},/turf/simulated/floor/plasteel/airless{icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) +"jp" = (/obj/effect/landmark{name = "awaystart"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/academy/academyaft) "jq" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/awaymission/academy/academyaft) "jr" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/awaymission/academy/academyaft) -"js" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel/airless{tag = "icon-white (EAST)"; icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) +"js" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/airless{icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) "jt" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/item/weapon/shard,/turf/simulated/floor/plating/airless,/area/awaymission/academy/academyaft) "ju" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/golden_cup,/turf/simulated/floor/plasteel{icon_state = "red"},/area/awaymission/academy/academyaft) "jv" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/awaymission/academy/academyaft) "jw" = (/obj/structure/cult/pylon,/turf/simulated/floor/plasteel{icon_state = "yellow"; dir = 10},/area/awaymission/academy/academyaft) "jx" = (/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/awaymission/academy/academyaft) "jy" = (/obj/structure/cult/pylon,/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/awaymission/academy/academyaft) -"jz" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/airless{tag = "icon-white (EAST)"; icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) -"jA" = (/obj/structure/table,/obj/structure/window/reinforced,/obj/item/device/batterer,/turf/simulated/floor/plasteel/airless{tag = "icon-whitered (EAST)"; icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) +"jz" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/airless{icon_state = "white"; dir = 4},/area/awaymission/academy/academyaft) +"jA" = (/obj/structure/table,/obj/structure/window/reinforced,/obj/item/device/batterer,/turf/simulated/floor/plasteel/airless{icon_state = "whitered"; dir = 4},/area/awaymission/academy/academyaft) "jB" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/space,/area/space) "jC" = (/obj/machinery/igniter,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) "jD" = (/obj/structure/window/reinforced,/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jE" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"jF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"jF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jG" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jH" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"jI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) -"jJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"jI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"jJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jK" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jL" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "yellow"},/area/awaymission/academy/academyaft) "jM" = (/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/awaymission/academy/academyaft) "jN" = (/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 9; icon_state = "yellow"},/area/awaymission/academy/academyaft) "jO" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/awaymission/academy/academyaft) "jP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academyaft) -"jQ" = (/obj/machinery/door/airlock/hatch,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) +"jQ" = (/obj/machinery/door/airlock/hatch,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jR" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/carpet,/area/awaymission/academy/academyaft) "jS" = (/turf/simulated/wall/r_wall,/area/awaymission/academy/academygate) "jT" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/grass,/area/awaymission/academy/academygate) -"jU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) +"jU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) "jV" = (/turf/simulated/floor/grass,/area/awaymission/academy/academygate) "jW" = (/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) "jX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaymission/academy/academygate) "jY" = (/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/awaymission/academy/academygate) -"jZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/window,/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) +"jZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/window,/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) "ka" = (/obj/machinery/door/window,/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) -"kb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) -"kc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) -"kd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) +"kb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) +"kc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) +"kd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) "ke" = (/obj/structure/cable,/turf/simulated/floor/plating,/area/awaymission/academy/academygate) "kf" = (/turf/simulated/floor/plating,/area/awaymission/academy/academygate) -"kg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) +"kg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) "kh" = (/obj/machinery/power/apc{dir = 1; environ = 3; equipment = 3; locked = 0; req_access = ""},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) "ki" = (/obj/item/stack/cable_coil/random,/turf/simulated/floor/plating,/area/awaymission/academy/academygate) "kj" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) -"kk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) -"kl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) -"km" = (/obj/machinery/gateway{dir = 9},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) -"kn" = (/obj/machinery/gateway{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) +"kk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) +"kl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) +"km" = (/obj/machinery/gateway{dir = 9},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) +"kn" = (/obj/machinery/gateway{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) "ko" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) "kp" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) "kq" = (/obj/structure/cable,/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/plating,/area/awaymission/academy/academygate) @@ -542,7 +542,7 @@ "kv" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/awaymission/academy/academygate) "kw" = (/obj/machinery/button/door{id = "AcademyGate"; pixel_y = -24},/turf/simulated/floor/carpet{icon_state = "carpetsymbol"},/area/awaymission/academy/academygate) "kx" = (/turf/simulated/floor/carpet{icon_state = "carpetsymbol"},/area/awaymission/academy/academygate) -"ky" = (/obj/machinery/door/poddoor/shutters{id = "AcademyGate"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/academy/academygate) +"ky" = (/obj/machinery/door/poddoor/shutters{id = "AcademyGate"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/academy/academygate) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/RandomZLevels/beach.dmm b/_maps/RandomZLevels/beach.dmm index 1a2111b8642..6f7558d4635 100644 --- a/_maps/RandomZLevels/beach.dmm +++ b/_maps/RandomZLevels/beach.dmm @@ -13,28 +13,28 @@ "m" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "n" = (/obj/machinery/gateway,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "o" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) -"p" = (/turf/indestructible{tag = "icon-sandstone6"; icon_state = "sandstone6"},/area/awaymission/beach) -"q" = (/turf/indestructible{tag = "icon-sandstone12"; icon_state = "sandstone12"},/area/awaymission/beach) -"r" = (/turf/indestructible{tag = "icon-sandstone10"; icon_state = "sandstone10"},/area/awaymission/beach) +"p" = (/turf/indestructible{icon_state = "sandstone6"},/area/awaymission/beach) +"q" = (/turf/indestructible{icon_state = "sandstone12"},/area/awaymission/beach) +"r" = (/turf/indestructible{icon_state = "sandstone10"},/area/awaymission/beach) "s" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "t" = (/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/structure/closet/crate,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) -"u" = (/turf/indestructible{tag = "icon-sandstone3"; icon_state = "sandstone3"},/area/awaymission/beach) -"v" = (/obj/structure/closet/gmcloset{icon_state = "black"; name = "formal wardrobe"},/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"w" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"x" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"y" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"z" = (/obj/structure/table/wood,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"A" = (/obj/structure/table/wood,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"B" = (/obj/machinery/vending/boozeomat{emagged = 1},/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"C" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"D" = (/obj/machinery/vending/cola,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"E" = (/obj/machinery/vending/snack,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"F" = (/turf/indestructible{tag = "icon-sandstone1"; icon_state = "sandstone1"},/area/awaymission/beach) -"G" = (/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) -"H" = (/obj/structure/mineral_door/wood{tag = "icon-wood"; icon_state = "wood"},/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) +"u" = (/turf/indestructible{icon_state = "sandstone3"},/area/awaymission/beach) +"v" = (/obj/structure/closet/gmcloset{icon_state = "black"; name = "formal wardrobe"},/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"w" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"x" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"y" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"z" = (/obj/structure/table/wood,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"A" = (/obj/structure/table/wood,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"B" = (/obj/machinery/vending/boozeomat{emagged = 1},/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"C" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"D" = (/obj/machinery/vending/cola,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"E" = (/obj/machinery/vending/snack,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"F" = (/turf/indestructible{icon_state = "sandstone1"},/area/awaymission/beach) +"G" = (/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) +"H" = (/obj/structure/mineral_door/wood{icon_state = "wood"},/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) "I" = (/obj/effect/overlay/palmtree_l,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) -"J" = (/turf/indestructible{tag = "icon-sandstone0"; icon_state = "sandstone0"},/area/awaymission/beach) -"K" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plating{tag = "icon-wood"; icon_state = "wood"},/area/awaymission/beach) +"J" = (/turf/indestructible{icon_state = "sandstone0"},/area/awaymission/beach) +"K" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plating{icon_state = "wood"},/area/awaymission/beach) "L" = (/obj/item/toy/beach_ball,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "M" = (/obj/structure/stool,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) "N" = (/mob/living/simple_animal/crab,/turf/simulated/floor/plating/beach/sand,/area/awaymission/beach) diff --git a/_maps/RandomZLevels/blackmarketpackers.dmm b/_maps/RandomZLevels/blackmarketpackers.dmm index 439dae5d61f..094996fd981 100644 --- a/_maps/RandomZLevels/blackmarketpackers.dmm +++ b/_maps/RandomZLevels/blackmarketpackers.dmm @@ -3,32 +3,32 @@ "ac" = (/turf/simulated/floor/plating/asteroid/airless,/area/awaymission) "ad" = (/obj/effect/landmark/corpse/doctor,/turf/simulated/floor/plating/asteroid/airless,/area/awaymission) "ae" = (/obj/item/weapon/circular_saw,/obj/structure/lattice,/turf/space,/area/space) -"af" = (/turf/simulated/wall/shuttle{tag = "icon-swall4"; icon_state = "swall4"},/area/awaymission/BMPship/Fore) -"ag" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/awaymission/BMPship/Fore) -"ah" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"},/area/awaymission/BMPship/Fore) -"ai" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/awaymission/BMPship/Fore) +"af" = (/turf/simulated/wall/shuttle{icon_state = "swall4"},/area/awaymission/BMPship/Fore) +"ag" = (/turf/simulated/wall/shuttle{icon_state = "swall12"},/area/awaymission/BMPship/Fore) +"ah" = (/turf/simulated/wall/shuttle{icon_state = "swall14"},/area/awaymission/BMPship/Fore) +"ai" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/awaymission/BMPship/Fore) "aj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) "ak" = (/obj/machinery/porta_turret{dir = 8; emagged = 1; installation = /obj/item/weapon/gun/energy/lasercannon},/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) "al" = (/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) -"am" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/awaymission/BMPship/Fore) +"am" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/awaymission/BMPship/Fore) "an" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) -"ao" = (/turf/simulated/floor/plating,/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/awaymission/BMPship/Fore) +"ao" = (/turf/simulated/floor/plating,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/awaymission/BMPship/Fore) "ap" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) "aq" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) "ar" = (/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) "as" = (/obj/structure/lattice,/turf/space,/area/space) "at" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) "au" = (/obj/machinery/light/small,/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) -"av" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"},/area/awaymission/BMPship/Fore) -"aw" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/awaymission/BMPship/Aft) -"ax" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/awaymission/BMPship/Aft) -"ay" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"},/area/awaymission/BMPship/Aft) -"az" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"},/area/awaymission/BMPship/Aft) -"aA" = (/turf/simulated/wall/shuttle{tag = "icon-swall8"; icon_state = "swall8"},/area/awaymission/BMPship/Aft) -"aB" = (/obj/machinery/door/airlock/silver{locked = 1},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/awaymission/BMPship/Aft) -"aC" = (/turf/simulated/wall/shuttle{tag = "icon-swall4"; icon_state = "swall4"},/area/awaymission/BMPship/Aft) -"aD" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/awaymission/BMPship/Aft) -"aE" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/awaymission/BMPship/Aft) +"av" = (/turf/simulated/wall/shuttle{icon_state = "swall7"},/area/awaymission/BMPship/Fore) +"aw" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/awaymission/BMPship/Aft) +"ax" = (/turf/simulated/wall/shuttle{icon_state = "swall12"},/area/awaymission/BMPship/Aft) +"ay" = (/turf/simulated/wall/shuttle{icon_state = "swall14"},/area/awaymission/BMPship/Aft) +"az" = (/turf/simulated/wall/shuttle{icon_state = "swall13"},/area/awaymission/BMPship/Aft) +"aA" = (/turf/simulated/wall/shuttle{icon_state = "swall8"},/area/awaymission/BMPship/Aft) +"aB" = (/obj/machinery/door/airlock/silver{locked = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/awaymission/BMPship/Aft) +"aC" = (/turf/simulated/wall/shuttle{icon_state = "swall4"},/area/awaymission/BMPship/Aft) +"aD" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/awaymission/BMPship/Aft) +"aE" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/awaymission/BMPship/Aft) "aF" = (/turf/simulated/wall/shuttle,/area/awaymission/BMPship/Aft) "aG" = (/obj/structure/stool/bed/roller,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) "aH" = (/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) @@ -36,131 +36,131 @@ "aJ" = (/obj/item/weapon/scalpel,/obj/structure/closet/crate,/obj/item/weapon/tank/internals/anesthetic,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) "aK" = (/obj/item/bodybag,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) "aL" = (/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"aM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"aN" = (/obj/structure/optable,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) +"aM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) +"aN" = (/obj/structure/optable,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) "aO" = (/obj/machinery/computer/operating,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"aP" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/awaymission/BMPship/Aft) -"aQ" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/awaymission/BMPship/Aft) -"aR" = (/obj/structure/closet/crate/freezer,/obj/item/organ/internal/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) -"aS" = (/obj/structure/closet/crate/freezer,/obj/item/organ/internal/brain,/obj/item/organ/internal/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) -"aT" = (/obj/structure/table,/obj/item/stack/packageWrap,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) -"aU" = (/obj/structure/table,/obj/item/weapon/storage/box,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) -"aV" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) -"aW" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHEAST)"; icon_state = "warnplate"; dir = 5},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/awaymission/BMPship/Aft) -"aX" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/awaymission/BMPship/Aft) -"aY" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission/BMPship/Aft) +"aP" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/awaymission/BMPship/Aft) +"aQ" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/awaymission/BMPship/Aft) +"aR" = (/obj/structure/closet/crate/freezer,/obj/item/organ/internal/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) +"aS" = (/obj/structure/closet/crate/freezer,/obj/item/organ/internal/brain,/obj/item/organ/internal/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) +"aT" = (/obj/structure/table,/obj/item/stack/packageWrap,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) +"aU" = (/obj/structure/table,/obj/item/weapon/storage/box,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) +"aV" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Aft) +"aW" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/awaymission/BMPship/Aft) +"aX" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship/Aft) +"aY" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Aft) "aZ" = (/obj/effect/gibspawner/generic,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"ba" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"bb" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/awaymission/BMPship/Aft) -"bc" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/BMPship/Aft) +"ba" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) +"bb" = (/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/awaymission/BMPship/Aft) +"bc" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/BMPship/Aft) "bd" = (/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "be" = (/obj/item/weapon/storage/box,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bf" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bg" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bh" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bi" = (/obj/item/weapon/hand_labeler,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"bj" = (/obj/structure/largecrate,/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/BMPship/Aft) +"bj" = (/obj/structure/largecrate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/BMPship/Aft) "bk" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) "bl" = (/obj/structure/table/wood,/obj/item/stack/spacecash/c500,/obj/item/stack/spacecash/c100,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/wood,/area/awaymission/BMPship/Fore) "bm" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/yellow,/turf/simulated/floor/wood,/area/awaymission/BMPship/Fore) -"bn" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/awaymission/BMPship/Fore) -"bo" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/awaymission/BMPship/Fore) -"bp" = (/obj/structure/rack,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Fore) -"bq" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Fore) -"br" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHEAST)"; icon_state = "warnplate"; dir = 5},/area/awaymission/BMPship/Fore) -"bs" = (/obj/structure/sign/vacuum,/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/awaymission/BMPship/Fore) -"bt" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/awaymission/BMPship/Aft) -"bu" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/awaymission/BMPship/Aft) -"bv" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/item/clothing/glasses/regular/hipster,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"bw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"bx" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated,/area/awaymission/BMPship/Aft) -"by" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/BMPship/Aft) -"bz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"bn" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/awaymission/BMPship/Fore) +"bo" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/awaymission/BMPship/Fore) +"bp" = (/obj/structure/rack,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Fore) +"bq" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/BMPship/Fore) +"br" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/awaymission/BMPship/Fore) +"bs" = (/obj/structure/sign/vacuum,/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/awaymission/BMPship/Fore) +"bt" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Aft) +"bu" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Aft) +"bv" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/clothing/glasses/regular/hipster,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) +"bw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) +"bx" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated,/area/awaymission/BMPship/Aft) +"by" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/BMPship/Aft) +"bz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bA" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bB" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bC" = (/obj/machinery/gateway/centeraway{calibrated = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"bD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"bD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bE" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) "bG" = (/turf/simulated/floor/wood,/area/awaymission/BMPship/Fore) "bH" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/awaymission/BMPship/Fore) -"bI" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/BMPship/Fore) +"bI" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/BMPship/Fore) "bJ" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) -"bK" = (/turf/simulated/wall/shuttle{tag = "icon-swall2"; icon_state = "swall2"},/area/awaymission/BMPship/Aft) -"bL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"bK" = (/turf/simulated/wall/shuttle{icon_state = "swall2"},/area/awaymission/BMPship/Aft) +"bL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bM" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bN" = (/obj/machinery/gateway,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "bO" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"bP" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c50,/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/BMPship/Aft) +"bP" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c50,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/BMPship/Aft) "bQ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) -"bR" = (/turf/simulated/floor/plasteel{tag = "icon-wood-broken"; icon_state = "wood-broken"},/area/awaymission/BMPship/Fore) -"bS" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Fore) -"bT" = (/obj/machinery/light/small,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Fore) -"bU" = (/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/awaymission/BMPship/Fore) -"bV" = (/turf/simulated/wall/shuttle{tag = "icon-swall2"; icon_state = "swall2"},/area/awaymission/BMPship/Fore) -"bW" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"},/area/awaymission/BMPship/Aft) +"bR" = (/turf/simulated/floor/plasteel{icon_state = "wood-broken"},/area/awaymission/BMPship/Fore) +"bS" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Fore) +"bT" = (/obj/machinery/light/small,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Fore) +"bU" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/awaymission/BMPship/Fore) +"bV" = (/turf/simulated/wall/shuttle{icon_state = "swall2"},/area/awaymission/BMPship/Fore) +"bW" = (/turf/simulated/wall/shuttle{icon_state = "swall11"},/area/awaymission/BMPship/Aft) "bX" = (/obj/machinery/light,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) "bY" = (/obj/machinery/button/door{id = "packerMed"; pixel_y = -24},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) "bZ" = (/obj/machinery/sleeper{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) "ca" = (/obj/machinery/sleep_console,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"cb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"cc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/item/weapon/hand_labeler,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"cd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"ce" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/item/weapon/storage/box,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"cf" = (/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/BMPship/Aft) -"cg" = (/turf/simulated/wall/shuttle{tag = "icon-swallc2"; icon_state = "swallc2"},/area/awaymission/BMPship/Fore) -"ch" = (/turf/simulated/wall/shuttle{tag = "icon-swall8"; icon_state = "swall8"},/area/awaymission/BMPship/Fore) -"ci" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel{tag = "icon-carpetside (NORTH)"; icon_state = "carpetside"; dir = 1},/area/awaymission/BMPship/Fore) -"cj" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/awaymission/BMPship/Fore) +"cb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"cc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/item/weapon/hand_labeler,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"cd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"ce" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/item/weapon/storage/box,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"cf" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/BMPship/Aft) +"cg" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"},/area/awaymission/BMPship/Fore) +"ch" = (/turf/simulated/wall/shuttle{icon_state = "swall8"},/area/awaymission/BMPship/Fore) +"ci" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel{icon_state = "carpetside"; dir = 1},/area/awaymission/BMPship/Fore) +"cj" = (/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/awaymission/BMPship/Fore) "ck" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"cl" = (/turf/simulated/wall/shuttle{tag = "icon-swallc2"; icon_state = "swallc2"},/area/awaymission/BMPship/Midship) -"cm" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/awaymission/BMPship/Midship) -"cn" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"},/area/awaymission/BMPship/Midship) -"co" = (/turf/simulated/wall/shuttle{tag = "icon-swall15"; icon_state = "swall15"},/area/awaymission/BMPship/Aft) +"cl" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"},/area/awaymission/BMPship/Midship) +"cm" = (/turf/simulated/wall/shuttle{icon_state = "swall12"},/area/awaymission/BMPship/Midship) +"cn" = (/turf/simulated/wall/shuttle{icon_state = "swall13"},/area/awaymission/BMPship/Midship) +"co" = (/turf/simulated/wall/shuttle{icon_state = "swall15"},/area/awaymission/BMPship/Aft) "cp" = (/obj/machinery/door/poddoor/shutters{id = "packerMed"},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Aft) -"cq" = (/obj/structure/largecrate,/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/awaymission/BMPship/Aft) -"cr" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"cs" = (/obj/machinery/light/small,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"ct" = (/obj/structure/kitchenspike,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"cu" = (/obj/structure/closet/crate,/obj/item/device/analyzer,/obj/item/stack/spacecash/c10,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"cv" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c200,/obj/item/stack/spacecash/c500,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"cw" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat,/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/obj/item/organ/internal/appendix,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"cx" = (/obj/machinery/button/door{id = "packerCargo"; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"cy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/BMPship/Aft) -"cz" = (/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/awaymission/BMPship/Aft) -"cA" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/awaymission/BMPship/Fore) -"cB" = (/turf/simulated/floor/plasteel{tag = "icon-carpet"; icon_state = "carpet"},/turf/simulated/wall/shuttle{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area/awaymission/BMPship/Fore) +"cq" = (/obj/structure/largecrate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/awaymission/BMPship/Aft) +"cr" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"cs" = (/obj/machinery/light/small,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"ct" = (/obj/structure/kitchenspike,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"cu" = (/obj/structure/closet/crate,/obj/item/device/analyzer,/obj/item/stack/spacecash/c10,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"cv" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c200,/obj/item/stack/spacecash/c500,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"cw" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat,/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/obj/item/organ/internal/appendix,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"cx" = (/obj/machinery/button/door{id = "packerCargo"; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"cy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/BMPship/Aft) +"cz" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/awaymission/BMPship/Aft) +"cA" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/awaymission/BMPship/Fore) +"cB" = (/turf/simulated/floor/plasteel{icon_state = "carpet"},/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/awaymission/BMPship/Fore) "cC" = (/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) "cD" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; locked = 0; req_access = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"cE" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/awaymission/BMPship/Midship) +"cE" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/awaymission/BMPship/Midship) "cF" = (/obj/structure/table,/obj/item/weapon/screwdriver,/obj/item/weapon/screwdriver,/obj/item/weapon/paper{info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen"; name = "scribbled note"},/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "cG" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"cH" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{tag = "icon-green (WEST)"; icon_state = "green"; dir = 8},/area/awaymission/BMPship/Midship) +"cH" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/awaymission/BMPship/Midship) "cI" = (/obj/structure/sink{dir = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/BMPship/Midship) "cJ" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/BMPship/Midship) "cK" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/BMPship/Midship) -"cL" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{tag = "icon-green (EAST)"; icon_state = "green"; dir = 4},/area/awaymission/BMPship/Midship) +"cL" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/BMPship/Midship) "cM" = (/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"cN" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/awaymission/BMPship/Midship) -"cO" = (/obj/structure/table,/obj/item/weapon/kitchen/knife/butcher,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) -"cP" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) -"cQ" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) -"cR" = (/obj/machinery/processor,/obj/machinery/light{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) +"cN" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/awaymission/BMPship/Midship) +"cO" = (/obj/structure/table,/obj/item/weapon/kitchen/knife/butcher,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) +"cP" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) +"cQ" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) +"cR" = (/obj/machinery/processor,/obj/machinery/light{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) "cS" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "cT" = (/obj/structure/table,/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "cU" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "cV" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"cW" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"},/area/awaymission/BMPship/Aft) -"cX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/door/poddoor/shutters{id = "packerCargo"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"cY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"cW" = (/turf/simulated/wall/shuttle{icon_state = "swall7"},/area/awaymission/BMPship/Aft) +"cX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor/shutters{id = "packerCargo"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"cY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) "cZ" = (/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "da" = (/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Midship) "db" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Midship) -"dc" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/awaymission/BMPship/Midship) -"dd" = (/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) -"de" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) +"dc" = (/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/awaymission/BMPship/Midship) +"dd" = (/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) +"de" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) "df" = (/obj/structure/stool,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"dg" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/awaymission/BMPship/Aft) +"dg" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/awaymission/BMPship/Aft) "dh" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "di" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "dj" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) @@ -168,17 +168,17 @@ "dl" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/BMPship/Aft) "dm" = (/obj/machinery/gibber,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/BMPship/Aft) "dn" = (/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/BMPship/Aft) -"do" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"do" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "dp" = (/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"dq" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"},/area/awaymission/BMPship/Aft) -"dr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"ds" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"dq" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"},/area/awaymission/BMPship/Aft) +"dr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"ds" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) "dt" = (/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Midship) "du" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"dv" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) -"dw" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) -"dx" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) -"dy" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{tag = "icon-barber"; icon_state = "barber"},/area/awaymission/BMPship/Midship) +"dv" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) +"dw" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) +"dx" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) +"dy" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/awaymission/BMPship/Midship) "dz" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "dA" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "dB" = (/obj/structure/closet/secure_closet/freezer/meat{opened = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/BMPship/Aft) @@ -191,61 +191,61 @@ "dI" = (/obj/structure/table,/obj/item/weapon/paper{info = "I'm no scientist, but judging from the design and components, it seems to be some kind of gateway. This thing is gonna be worth a lot of cash to the right man. The boys are excited, as they have every right to be, and I've let them crack into that case of beer we got. I normally wouldn't allow such a thing, but this is a time for celebration! It's not like a couple drinks will hurt anything."; name = "Captain's log entry"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) "dJ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) "dK" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"dL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"dM" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{tag = "icon-green (SOUTHWEST)"; icon_state = "green"; dir = 10},/area/awaymission/BMPship/Midship) -"dN" = (/turf/simulated/floor/plasteel{tag = "icon-green"; icon_state = "green"},/area/awaymission/BMPship/Midship) -"dO" = (/obj/machinery/seed_extractor,/obj/item/seeds/walkingmushroommycelium,/turf/simulated/floor/plasteel{tag = "icon-green"; icon_state = "green"},/area/awaymission/BMPship/Midship) -"dP" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{tag = "icon-green (SOUTHEAST)"; icon_state = "green"; dir = 6},/area/awaymission/BMPship/Midship) -"dQ" = (/turf/simulated/wall/shuttle{tag = "icon-swall2"; icon_state = "swall2"},/area/awaymission/BMPship/Midship) -"dR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"dS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"dT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"dU" = (/obj/item/weapon/reagent_containers/food/snacks/meat,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) -"dV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"dW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"dX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"dY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"dZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) +"dL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"dM" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 10},/area/awaymission/BMPship/Midship) +"dN" = (/turf/simulated/floor/plasteel{icon_state = "green"},/area/awaymission/BMPship/Midship) +"dO" = (/obj/machinery/seed_extractor,/obj/item/seeds/walkingmushroommycelium,/turf/simulated/floor/plasteel{icon_state = "green"},/area/awaymission/BMPship/Midship) +"dP" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/awaymission/BMPship/Midship) +"dQ" = (/turf/simulated/wall/shuttle{icon_state = "swall2"},/area/awaymission/BMPship/Midship) +"dR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"dS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"dT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"dU" = (/obj/item/weapon/reagent_containers/food/snacks/meat,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"dV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"dW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"dX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"dY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"dZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) "ea" = (/obj/item/device/multitool,/turf/simulated/floor/engine,/area/awaymission/BMPship/Aft) -"eb" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (EAST)"; icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/airless{tag = "icon-engine"; icon_state = "engine"},/area/awaymission/BMPship/Aft) -"ec" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/space,/area/awaymission/BMPship/Aft) +"eb" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "engine"},/area/awaymission/BMPship/Aft) +"ec" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/space,/area/awaymission/BMPship/Aft) "ed" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) "ee" = (/obj/structure/stool,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"ef" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"ef" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) "eg" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"eh" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"ei" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"ej" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"eh" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"ei" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"ej" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "ek" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "el" = (/turf/simulated/wall/r_wall,/area/awaymission/BMPship/Midship) -"em" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"em" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "en" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "eo" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/BMPship/Aft) -"ep" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"ep" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "eq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"er" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) +"er" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) "es" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "et" = (/turf/simulated/floor/engine,/area/awaymission/BMPship/Aft) "eu" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) "ev" = (/obj/item/weapon/shard,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"ew" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"ex" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Midship) -"ey" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"ew" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"ex" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Midship) +"ey" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "ez" = (/obj/machinery/shieldwallgen,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) -"eA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"eA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "eB" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; locked = 0; req_access = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"eC" = (/turf/simulated/floor/plasteel{tag = "icon-loadingareadirty2 (EAST)"; icon_state = "loadingareadirty2"; dir = 4},/area/awaymission/BMPship/Midship) +"eC" = (/turf/simulated/floor/plasteel{icon_state = "loadingareadirty2"; dir = 4},/area/awaymission/BMPship/Midship) "eD" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey1"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) "eE" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey1"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) "eF" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) "eG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/awaymission/BMPship/Midship) -"eH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"eH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "eI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "eJ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "eK" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "eL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "eM" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/BMPship/Aft) -"eN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/BMPship/Aft) +"eN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/awaymission/BMPship/Aft) "eO" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "eP" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{dir = 8},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "eQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) @@ -262,19 +262,19 @@ "fb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "fc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Aft) "fd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) -"fe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"fe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "ff" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "fg" = (/obj/effect/gibspawner/human,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "fh" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "fi" = (/obj/structure/rack,/obj/item/weapon/storage/belt/utility/full,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/BMPship/Aft) -"fj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) -"fk" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area/awaymission/BMPship/Aft) -"fl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"fm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"fn" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"fo" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"fp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"fq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"fj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) +"fk" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/awaymission/BMPship/Aft) +"fl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"fm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"fn" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"fo" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"fp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"fq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "fr" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "fs" = (/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Aft) "ft" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) @@ -287,10 +287,10 @@ "fA" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) "fB" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "fC" = (/obj/effect/gibspawner/generic,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"fD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"fE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Aft) -"fF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) -"fG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"fD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"fE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Aft) +"fF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"fG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "fH" = (/obj/effect/gibspawner/generic,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "fI" = (/obj/structure/rack,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/BMPship/Aft) "fJ" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/obj/structure/cable,/obj/structure/cable,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) @@ -304,14 +304,14 @@ "fR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Aft) "fS" = (/obj/structure/mopbucket,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "fT" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"fU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"fV" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area/awaymission/BMPship/Fore) +"fU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"fV" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/awaymission/BMPship/Fore) "fW" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"fX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) -"fY" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"; dir = 2},/area/awaymission/BMPship/Midship) -"fZ" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/awaymission/BMPship/Midship) +"fX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/carpet,/area/awaymission/BMPship/Fore) +"fY" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/awaymission/BMPship/Midship) +"fZ" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "panelscorched"},/area/awaymission/BMPship/Midship) "ga" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"gb" = (/turf/simulated/floor/plasteel{tag = "icon-loadingareadirty1 (EAST)"; icon_state = "loadingareadirty1"; dir = 4},/area/awaymission/BMPship/Midship) +"gb" = (/turf/simulated/floor/plasteel{icon_state = "loadingareadirty1"; dir = 4},/area/awaymission/BMPship/Midship) "gc" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey2"},/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) "gd" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey2"},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) "ge" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey2"},/turf/simulated/floor/plating,/area/awaymission/BMPship/Midship) @@ -322,53 +322,53 @@ "gj" = (/obj/item/stack/cable_coil,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "gk" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) "gl" = (/obj/item/stack/sheet/mineral/uranium{amount = 50},/turf/simulated/floor/engine,/area/awaymission/BMPship/Aft) -"gm" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area/space) -"gn" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore) +"gm" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/space) +"gn" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore) "go" = (/obj/structure/lattice,/turf/space,/area/awaymission/BMPship/Fore) -"gp" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) -"gq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) -"gr" = (/obj/item/weapon/shard{icon_state = "small"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) -"gs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/awaymission/BMPship/Fore) -"gt" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) -"gu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"gp" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) +"gq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) +"gr" = (/obj/item/weapon/shard{icon_state = "small"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) +"gs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Fore) +"gt" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) +"gu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "gv" = (/obj/machinery/conveyor_switch/oneway{id = "meatConvey2"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"gw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) -"gx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) -"gy" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"gw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"gx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) +"gy" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "gz" = (/obj/item/weapon/mop,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "gA" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) "gB" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/BMPship/Aft) -"gC" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/awaymission/BMPship/Fore) -"gD" = (/obj/item/weapon/shard,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore) -"gE" = (/obj/structure/stool,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) +"gC" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship/Fore) +"gD" = (/obj/item/weapon/shard,/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore) +"gE" = (/obj/structure/stool,/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) "gF" = (/obj/item/stack/cable_coil{amount = 5},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) -"gG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) -"gH" = (/turf/simulated/floor/plasteel{tag = "icon-plating"; icon_state = "plating"},/area/awaymission/BMPship/Midship) -"gI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) +"gG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) +"gH" = (/turf/simulated/floor/plasteel{icon_state = "plating"},/area/awaymission/BMPship/Midship) +"gI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) "gJ" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "gK" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) "gL" = (/obj/structure/reagent_dispensers,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/BMPship/Aft) -"gM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"gN" = (/turf/simulated/wall/shuttle{tag = "icon-swallc2"; icon_state = "swallc2"},/area/awaymission/BMPship/Aft) -"gO" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/turf/simulated/wall/shuttle{dir = 3; icon_state = "swall_f10"; layer = 2; tag = "icon-swall_f10"},/area/awaymission/BMPship/Fore) -"gP" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/awaymission/BMPship/Fore) -"gQ" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore) +"gM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"gN" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"},/area/awaymission/BMPship/Aft) +"gO" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/turf/simulated/wall/shuttle{dir = 3; icon_state = "swall_f10"; layer = 2},/area/awaymission/BMPship/Fore) +"gP" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Fore) +"gQ" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore) "gR" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/BMPship/Midship) -"gS" = (/turf/simulated/floor/plasteel{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship) -"gT" = (/turf/simulated/floor/plasteel{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship) +"gS" = (/turf/simulated/floor/plasteel{icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship) +"gT" = (/turf/simulated/floor/plasteel{icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship) "gU" = (/obj/machinery/door/airlock/silver{locked = 1},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"gV" = (/obj/machinery/door/airlock/silver{locked = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"gW" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"gV" = (/obj/machinery/door/airlock/silver{locked = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"gW" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "gX" = (/turf/simulated/mineral/random,/area/awaymission) -"gY" = (/obj/item/device/multitool,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/awaymission) -"gZ" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"},/area/awaymission/BMPship/Fore) -"ha" = (/turf/simulated/wall/shuttle{tag = "icon-swallc1"; icon_state = "swallc1"},/area/awaymission/BMPship/Fore) -"hb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/door/airlock/silver,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) -"hc" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"},/area/awaymission/BMPship/Midship) +"gY" = (/obj/item/device/multitool,/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission) +"gZ" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"},/area/awaymission/BMPship/Fore) +"ha" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"},/area/awaymission/BMPship/Fore) +"hb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/silver,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) +"hc" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"},/area/awaymission/BMPship/Midship) "hd" = (/turf/simulated/wall/shuttle,/area/awaymission/BMPship/Midship) "he" = (/turf/simulated/mineral/random,/area/awaymission/BMPship/Midship) -"hf" = (/turf/simulated/wall/shuttle{tag = "icon-swall4"; icon_state = "swall4"},/area/awaymission/BMPship/Midship) -"hg" = (/turf/simulated/wall/shuttle{tag = "icon-swall15"; icon_state = "swall15"},/area/awaymission/BMPship/Midship) +"hf" = (/turf/simulated/wall/shuttle{icon_state = "swall4"},/area/awaymission/BMPship/Midship) +"hg" = (/turf/simulated/wall/shuttle{icon_state = "swall15"},/area/awaymission/BMPship/Midship) "hh" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "hi" = (/obj/structure/stool,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "hj" = (/obj/structure/table,/obj/item/weapon/paper{info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies."; name = "Old Diary"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) @@ -376,51 +376,51 @@ "hl" = (/obj/structure/closet,/obj/item/clothing/under/overalls,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "hm" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) "hn" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) -"ho" = (/obj/structure/cable,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) +"ho" = (/obj/structure/cable,/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore) "hp" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) "hq" = (/turf/simulated/floor/plating/asteroid/airless,/area/awaymission/BMPship/Fore) "hr" = (/obj/structure/rack,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) "hs" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/asteroid/airless,/area/awaymission/BMPship/Fore) "ht" = (/turf/simulated/wall/shuttle,/area/awaymission) -"hu" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/awaymission) +"hu" = (/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/awaymission) "hv" = (/turf/simulated/floor/plating/airless,/area/awaymission) -"hw" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/awaymission) +"hw" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission) "hx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission) -"hy" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission) +"hy" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/awaymission) "hz" = (/obj/item/wallframe/apc,/turf/simulated/floor/plating/airless,/area/awaymission) "hA" = (/obj/structure/ore_box,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission) "hB" = (/obj/item/stack/cable_coil{amount = 5},/turf/simulated/floor/plating/airless,/area/awaymission) "hC" = (/obj/structure/ore_box,/turf/simulated/floor/plating/airless,/area/awaymission) "hD" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"hE" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"hF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"hG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"hE" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"hF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"hG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "hH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "hI" = (/obj/effect/decal/remains/human,/obj/item/clothing/head/helmet/space/syndicate/green/dark,/obj/effect/gibspawner/generic,/turf/simulated/floor/plating/asteroid/airless,/area/awaymission) "hJ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) "hK" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated,/area/awaymission/BMPship/Fore) "hL" = (/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) "hM" = (/obj/effect/gibspawner/robot,/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/BMPship/Fore) -"hN" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/awaymission) +"hN" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission) "hO" = (/obj/structure/mecha_wreckage/ripley,/turf/simulated/floor/plating/airless,/area/awaymission) "hP" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plating/asteroid/airless,/area/awaymission) -"hQ" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission) +"hQ" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/awaymission) "hR" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plating/airless,/area/awaymission) "hS" = (/obj/structure/stool/bed,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"hT" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/obj/item/weapon/storage/wallet/random,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"hT" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/obj/item/weapon/storage/wallet/random,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "hU" = (/obj/structure/closet,/obj/item/clothing/under/lawyer/bluesuit,/obj/item/clothing/suit/apron,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "hV" = (/obj/item/clothing/suit/space/syndicate/green/dark,/turf/simulated/floor/plating/asteroid/airless,/area/awaymission) "hW" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/awaymission/BMPship/Fore) -"hX" = (/obj/effect/gibspawner/robot,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/awaymission) +"hX" = (/obj/effect/gibspawner/robot,/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission) "hY" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/awaymission) -"hZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/awaymission) -"ia" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) -"ib" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) -"ic" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"hZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/awaymission) +"ia" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/awaymission/BMPship/Aft) +"ib" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) +"ic" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "id" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/space,/area/space) -"ie" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"},/area/awaymission/BMPship/Fore) +"ie" = (/turf/simulated/wall/shuttle{icon_state = "swall13"},/area/awaymission/BMPship/Fore) "if" = (/turf/simulated/wall/shuttle,/area/awaymission/BMPship/Fore) -"ig" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/awaymission) +"ig" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission) "ih" = (/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "ii" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "ij" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/BMPship/Aft) @@ -431,16 +431,16 @@ "io" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c200,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "ip" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c10,/turf/simulated/floor/plasteel,/area/awaymission/BMPship/Aft) "iq" = (/obj/structure/sink{dir = 2},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/BMPship/Aft) -"ir" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/awaymission/BMPship/Aft) +"ir" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/awaymission/BMPship/Aft) "is" = (/obj/item/clothing/gloves/color/fyellow,/turf/simulated/floor/plating/asteroid/airless,/area/awaymission) -"it" = (/turf/simulated/wall/shuttle{tag = "icon-swall4"; icon_state = "swall4"},/area/awaymission) -"iu" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/awaymission) +"it" = (/turf/simulated/wall/shuttle{icon_state = "swall4"},/area/awaymission) +"iu" = (/turf/simulated/wall/shuttle{icon_state = "swall12"},/area/awaymission) "iv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) "iw" = (/obj/item/weapon/storage/box/matches,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) "ix" = (/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) -"iy" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area/awaymission/BMPship/Fore) +"iy" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/awaymission/BMPship/Fore) "iz" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plating,/area/awaymission/BMPship/Fore) -"iA" = (/turf/simulated/floor/plating,/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/awaymission/BMPship/Fore) +"iA" = (/turf/simulated/floor/plating,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/awaymission/BMPship/Fore) "iB" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/engine,/area/awaymission/BMPship/Fore) "iC" = (/turf/simulated/mineral/diamond,/area/awaymission) "iD" = (/turf/simulated/mineral/clown,/area/awaymission) diff --git a/_maps/RandomZLevels/centcomAway.dmm b/_maps/RandomZLevels/centcomAway.dmm index d47f6fc26ee..f6299241951 100644 --- a/_maps/RandomZLevels/centcomAway.dmm +++ b/_maps/RandomZLevels/centcomAway.dmm @@ -9,22 +9,22 @@ "ai" = (/turf/simulated/floor/plasteel{icon_state = "bar"; dir = 2},/area/awaymission/centcomAway/cafe) "aj" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{icon_state = "bar"; dir = 2},/area/awaymission/centcomAway/cafe) "ak" = (/turf/simulated/wall,/area/awaymission/centcomAway/cafe) -"al" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"am" = (/obj/structure/closet/chefcloset,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"an" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"ao" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"ap" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"aq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"ar" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"as" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"al" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"am" = (/obj/structure/closet/chefcloset,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"an" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"ao" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"ap" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"ar" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"as" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "at" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "au" = (/obj/machinery/hydroponics,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/cafe) "av" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/cafe) -"aw" = (/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aw" = (/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "ax" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/awaymission/centcomAway/cafe) "ay" = (/obj/structure/table,/obj/item/weapon/kitchen/knife/butcher,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/awaymission/centcomAway/cafe) "az" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/awaymission/centcomAway/cafe) -"aA" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aA" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "aB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "aC" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "green"},/area/awaymission/centcomAway/cafe) "aD" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "green"},/area/awaymission/centcomAway/cafe) @@ -33,10 +33,10 @@ "aG" = (/turf/simulated/floor/carpet,/area/awaymission/centcomAway/cafe) "aH" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/carpet,/area/awaymission/centcomAway/cafe) "aI" = (/obj/structure/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "bar"; dir = 2},/area/awaymission/centcomAway/cafe) -"aJ" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull"; icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) +"aJ" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) "aK" = (/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},/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "aL" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/awaymission/centcomAway/cafe) -"aM" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aM" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "aN" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/awaymission/centcomAway/cafe) "aO" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/centcomAway/cafe) "aP" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/awaymission/centcomAway/maint) @@ -46,23 +46,23 @@ "aT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/maint) "aU" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/maint) "aV" = (/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/hangar) -"aW" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"aX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"aY" = (/obj/structure/sink,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"aZ" = (/obj/structure/table,/obj/machinery/processor{pixel_x = 0; pixel_y = 10},/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aW" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aY" = (/obj/structure/sink,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"aZ" = (/obj/structure/table,/obj/machinery/processor{pixel_x = 0; pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "ba" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "bb" = (/obj/item/device/radio,/turf/simulated/floor/plating,/area/awaymission/centcomAway/maint) -"bc" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) +"bc" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) "bd" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) "be" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) "bf" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "bar"; dir = 2},/area/awaymission/centcomAway/cafe) -"bg" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"bg" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "bh" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/maint) -"bi" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"bi" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "bj" = (/obj/structure/rack,/obj/item/clothing/suit/fire,/turf/simulated/floor/plating,/area/awaymission/centcomAway/maint) "bk" = (/obj/structure/lattice,/turf/space,/area/space) "bl" = (/obj/machinery/door/poddoor{id = "XCCHangar1"; name = "XCC Main Hangar"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/centcomAway/hangar) -"bm" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHWEST)"; icon_state = "vault"; dir = 9},/area/awaymission/centcomAway/hangar) +"bm" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 9},/area/awaymission/centcomAway/hangar) "bn" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/awaymission/centcomAway/hangar) "bo" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "bp" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) @@ -86,7 +86,7 @@ "bH" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/awaymission/centcomAway/hangar) "bI" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/awaymission/centcomAway/hangar) "bJ" = (/obj/structure/stool/bed/chair/comfy/brown,/turf/simulated/floor/plasteel{icon_state = "bar"; dir = 2},/area/awaymission/centcomAway/cafe) -"bK" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"bK" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "bL" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"; dir = 2},/area/awaymission/centcomAway/cafe) "bM" = (/obj/machinery/gibber,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"; dir = 2},/area/awaymission/centcomAway/cafe) "bN" = (/obj/machinery/autolathe,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/centcomAway/general) @@ -103,8 +103,8 @@ "bY" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 0},/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/turf/simulated/floor/plasteel/shuttle,/area/awaymission/centcomAway/hangar) "bZ" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/awaymission/centcomAway/hangar) "ca" = (/turf/simulated/floor/plating,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/awaymission/centcomAway/hangar) -"cb" = (/obj/item/weapon/paper_bin,/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull"; icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) -"cc" = (/obj/item/weapon/clipboard,/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull"; icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) +"cb" = (/obj/item/weapon/paper_bin,/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) +"cc" = (/obj/item/weapon/clipboard,/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) "cd" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/centcomAway/general) "ce" = (/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/disposalpipe/segment,/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "cf" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/centcomAway/cafe) @@ -116,7 +116,7 @@ "cl" = (/turf/simulated/floor/plating/airless,/area/awaymission/centcomAway/maint) "cm" = (/turf/simulated/wall/shuttle{icon_state = "swall1"; dir = 2},/area/awaymission/centcomAway/hangar) "cn" = (/turf/simulated/floor/plasteel/shuttle,/area/awaymission/centcomAway/hangar) -"co" = (/obj/item/weapon/pen,/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull"; icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) +"co" = (/obj/item/weapon/pen,/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) "cp" = (/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/cafe) "cq" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/cafe) "cr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/cafe) @@ -158,70 +158,70 @@ "db" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/centcomAway/hangar) "dc" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle,/area/awaymission/centcomAway/hangar) "dd" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) -"de" = (/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/hangar) -"df" = (/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"dg" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"dh" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"di" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"de" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/hangar) +"df" = (/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"dg" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"dh" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"di" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) "dj" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/awaymission/centcomAway/cafe) "dk" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/awaymission/centcomAway/cafe) "dl" = (/obj/structure/table,/obj/item/weapon/storage/box/handcuffs,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/centcomAway/hangar) "dm" = (/obj/machinery/door/window/northright{base_state = "right"; dir = 4; icon_state = "right"; name = "Security Desk"; req_access_txt = "103"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/centcomAway/hangar) -"dn" = (/obj/structure/closet/crate,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/awaymission/centcomAway/hangar) -"do" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/centcomAway/hangar) -"dp" = (/obj/structure/largecrate,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHEAST)"; icon_state = "warnplate"; dir = 5},/area/awaymission/centcomAway/hangar) +"dn" = (/obj/structure/closet/crate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/awaymission/centcomAway/hangar) +"do" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/centcomAway/hangar) +"dp" = (/obj/structure/largecrate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/awaymission/centcomAway/hangar) "dq" = (/obj/structure/dresser,/turf/simulated/floor/carpet,/area/awaymission/centcomAway/cafe) "dr" = (/obj/structure/table/reinforced,/obj/item/device/t_scanner,/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/awaymission/centcomAway/general) "ds" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "dt" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/centcomAway/cafe) "du" = (/turf/simulated/wall/shuttle{icon_state = "swall0"; dir = 2},/area/awaymission/centcomAway/hangar) -"dv" = (/obj/structure/closet/crate,/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/centcomAway/hangar) +"dv" = (/obj/structure/closet/crate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/centcomAway/hangar) "dw" = (/obj/structure/dispenser,/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/awaymission/centcomAway/general) "dx" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/awaymission/centcomAway/cafe) "dy" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/awaymission/centcomAway/maint) "dz" = (/obj/structure/stool/bed,/turf/simulated/floor/plasteel/shuttle,/area/awaymission/centcomAway/hangar) "dA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) -"dB" = (/obj/structure/ore_box,/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/centcomAway/hangar) -"dC" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull"; icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) -"dD" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"dE" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"dF" = (/obj/structure/table,/obj/machinery/processor{pixel_x = 0; pixel_y = 10},/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"dB" = (/obj/structure/ore_box,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/centcomAway/hangar) +"dC" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"},/area/awaymission/centcomAway/cafe) +"dD" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"dE" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"dF" = (/obj/structure/table,/obj/machinery/processor{pixel_x = 0; pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) "dG" = (/obj/structure/stool/bed,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/awaymission/centcomAway/hangar) -"dH" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"dI" = (/turf/simulated/floor/plasteel{tag = "icon-blackcorner (NORTH)"; icon_state = "blackcorner"; dir = 1},/area/awaymission/centcomAway/general) -"dJ" = (/turf/simulated/floor/plasteel{tag = "icon-blackcorner (EAST)"; icon_state = "blackcorner"; dir = 4},/area/awaymission/centcomAway/general) +"dH" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"dI" = (/turf/simulated/floor/plasteel{icon_state = "blackcorner"; dir = 1},/area/awaymission/centcomAway/general) +"dJ" = (/turf/simulated/floor/plasteel{icon_state = "blackcorner"; dir = 4},/area/awaymission/centcomAway/general) "dK" = (/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/awaymission/centcomAway/general) "dL" = (/obj/machinery/door/airlock/hatch{name = "Rest Room"; req_access_txt = "0"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/awaymission/centcomAway/hangar) -"dM" = (/obj/structure/largecrate,/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/awaymission/centcomAway/hangar) -"dN" = (/obj/structure/closet/crate,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/centcomAway/hangar) -"dO" = (/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/awaymission/centcomAway/hangar) +"dM" = (/obj/structure/largecrate,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/awaymission/centcomAway/hangar) +"dN" = (/obj/structure/closet/crate,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/centcomAway/hangar) +"dO" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/awaymission/centcomAway/hangar) "dP" = (/turf/simulated/floor/plasteel{icon_state = "yellow"; dir = 10},/area/awaymission/centcomAway/general) "dQ" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "101"},/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "dR" = (/turf/simulated/wall/shuttle{icon_state = "swall2"; dir = 2},/area/awaymission/centcomAway/hangar) "dS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "dT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) "dU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) -"dV" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"dV" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) "dW" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/awaymission/centcomAway/cafe) "dX" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/awaymission/centcomAway/cafe) -"dY" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) +"dY" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) "dZ" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/simulated/floor/plasteel/shuttle,/area/awaymission/centcomAway/hangar) "ea" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel/shuttle,/area/awaymission/centcomAway/hangar) "eb" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel/shuttle,/area/awaymission/centcomAway/hangar) -"ec" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid2"; name = "plating"; icon_state = "asteroid2"},/area/awaymission/centcomAway/cafe) -"ed" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid11"; name = "plating"; icon_state = "asteroid11"},/area/awaymission/centcomAway/cafe) -"ee" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid"; name = "plating"; icon_state = "asteroid"},/area/awaymission/centcomAway/cafe) -"ef" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid3"; name = "plating"; icon_state = "asteroid3"},/area/awaymission/centcomAway/cafe) -"eg" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid10"; name = "plating"; icon_state = "asteroid10"},/area/awaymission/centcomAway/cafe) -"eh" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid9"; name = "plating"; icon_state = "asteroid9"},/area/awaymission/centcomAway/cafe) +"ec" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid2"},/area/awaymission/centcomAway/cafe) +"ed" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid11"},/area/awaymission/centcomAway/cafe) +"ee" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid"},/area/awaymission/centcomAway/cafe) +"ef" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid3"},/area/awaymission/centcomAway/cafe) +"eg" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid10"},/area/awaymission/centcomAway/cafe) +"eh" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid9"},/area/awaymission/centcomAway/cafe) "ei" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) -"ej" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"ek" = (/obj/structure/closet/chefcloset,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"el" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"em" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"en" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"eo" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"ep" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"ej" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"ek" = (/obj/structure/closet/chefcloset,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"el" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"em" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"en" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"eo" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"ep" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) "eq" = (/turf/simulated/floor/plating,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/awaymission/centcomAway/hangar) "er" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/awaymission/centcomAway/hangar) "es" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/awaymission/centcomAway/hangar) @@ -266,7 +266,7 @@ "ff" = (/turf/simulated/floor/plasteel{icon_state = "green"},/area/awaymission/centcomAway/general) "fg" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/wood,/area/awaymission/centcomAway/courtroom) "fh" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/courtroom) -"fi" = (/turf/simulated/floor/plasteel{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/awaymission/centcomAway/general) +"fi" = (/turf/simulated/floor/plasteel{icon_state = "purple"; dir = 1},/area/awaymission/centcomAway/general) "fj" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet,/area/awaymission/centcomAway/courtroom) "fk" = (/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/turf/simulated/floor/carpet,/area/awaymission/centcomAway/courtroom) "fl" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor/carpet,/area/awaymission/centcomAway/courtroom) @@ -276,7 +276,7 @@ "fp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "fq" = (/obj/machinery/power/terminal,/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "fr" = (/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) -"fs" = (/turf/simulated/floor/plasteel{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/awaymission/centcomAway/general) +"fs" = (/turf/simulated/floor/plasteel{icon_state = "purplecorner"; dir = 4},/area/awaymission/centcomAway/general) "ft" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/general) "fu" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "fv" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) @@ -297,7 +297,7 @@ "fK" = (/obj/machinery/door/window/northleft,/turf/simulated/floor/wood,/area/awaymission/centcomAway/courtroom) "fL" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood,/area/awaymission/centcomAway/courtroom) "fM" = (/obj/machinery/power/smes,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) -"fN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) +"fN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "fO" = (/obj/machinery/power/smes,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "fP" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/awaymission/centcomAway/general) "fQ" = (/obj/structure/sign/science,/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/general) @@ -323,8 +323,8 @@ "gk" = (/obj/machinery/door/airlock/centcom{name = "Centcom Security"; opacity = 1; req_access_txt = "101"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/courtroom) "gl" = (/obj/item/xenos_claw,/turf/simulated/floor/plasteel{icon_state = "engine"},/area/awaymission/centcomAway/general) "gm" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "vault"},/area/awaymission/centcomAway/hangar) -"gn" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/awaymission/centcomAway/hangar) -"go" = (/obj/structure/table,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/centcomAway/hangar) +"gn" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/awaymission/centcomAway/hangar) +"go" = (/obj/structure/table,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/centcomAway/hangar) "gp" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/awaymission/centcomAway/maint) "gq" = (/turf/simulated/floor/plasteel{icon_state = "greencorner"; dir = 4},/area/awaymission/centcomAway/general) "gr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) @@ -357,8 +357,8 @@ "gS" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/awaymission/centcomAway/hangar) "gT" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/turf/simulated/wall/shuttle{icon_state = "swall_f10"; dir = 2},/area/awaymission/centcomAway/hangar) "gU" = (/obj/structure/table,/obj/item/weapon/paper/ccaMemo,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) -"gV" = (/turf/simulated/floor/plasteel{tag = "icon-blackcorner"; icon_state = "blackcorner"},/area/awaymission/centcomAway/general) -"gW" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) +"gV" = (/turf/simulated/floor/plasteel{icon_state = "blackcorner"},/area/awaymission/centcomAway/general) +"gW" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) "gX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "gY" = (/obj/machinery/computer/card,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) "gZ" = (/obj/structure/stool/bed/chair/office/dark,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) @@ -398,9 +398,9 @@ "hH" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/bodybags,/turf/simulated/floor/plasteel{icon_state = "engine"},/area/awaymission/centcomAway/general) "hI" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 1},/area/awaymission/centcomAway/general) "hJ" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/general) -"hK" = (/obj/machinery/button/door{id = "XCCHangar1"; name = "Hangar Bay Blast Doors"; pixel_x = -28; pixel_y = 7; req_access_txt = "2"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) +"hK" = (/obj/machinery/button/door{id = "XCCHangar1"; name = "Hangar Bay Blast Doors"; pixel_x = -28; pixel_y = 7; req_access_txt = "2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) "hL" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/hangar) -"hM" = (/obj/structure/rack,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) +"hM" = (/obj/structure/rack,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) "hN" = (/obj/structure/rack,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "hO" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "hP" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) @@ -410,7 +410,7 @@ "hT" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/centcomAway/courtroom) "hU" = (/obj/structure/sign/vacuum,/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/hangar) "hV" = (/obj/structure/bodycontainer/crematorium,/turf/simulated/floor/plasteel{icon_state = "engine"},/area/awaymission/centcomAway/general) -"hW" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) +"hW" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) "hX" = (/obj/machinery/button/crematorium{pixel_x = 0; pixel_y = 25},/turf/simulated/floor/plasteel{icon_state = "engine"},/area/awaymission/centcomAway/general) "hY" = (/obj/structure/closet/secure_closet/injection,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/courtroom) "hZ" = (/obj/structure/stool/bed,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/courtroom) @@ -424,9 +424,9 @@ "ih" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "ii" = (/turf/simulated/floor/mech_bay_recharge_floor,/area/awaymission/centcomAway/hangar) "ij" = (/obj/machinery/computer/mech_bay_power_console,/turf/simulated/floor/bluegrid,/area/awaymission/centcomAway/hangar) -"ik" = (/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/awaymission/centcomAway/hangar) +"ik" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/centcomAway/hangar) "il" = (/obj/structure/mecha_wreckage/ripley,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/hangar) -"im" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/hangar) +"im" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/hangar) "in" = (/obj/structure/rack,/obj/item/clothing/glasses/night,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "io" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "ip" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) @@ -434,71 +434,71 @@ "ir" = (/obj/structure/closet/crate/trashcart,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "is" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "it" = (/obj/machinery/door/poddoor/shutters{id = "XCCsec3"; name = "XCC Main Access Shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/centcomAway/general) -"iu" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{icon_state = "asteroid6"; name = "sand"; tag = "icon-asteroid6"},/area/awaymission/centcomAway/general) +"iu" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{icon_state = "asteroid6"; name = "sand"},/area/awaymission/centcomAway/general) "iv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/space) "iw" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/courtroom) "ix" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/courtroom) "iy" = (/obj/machinery/door/poddoor{id = "XCCMechs"; name = "XCC Mech Bay"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/centcomAway/hangar) "iz" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/awaymission/centcomAway/hangar) "iA" = (/obj/machinery/mass_driver{dir = 8; id = "XCCMechs"; name = "gravpult"},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/awaymission/centcomAway/hangar) -"iB" = (/turf/simulated/floor/plasteel{tag = "icon-loadingarea (WEST)"; icon_state = "loadingarea"; dir = 8},/area/awaymission/centcomAway/hangar) +"iB" = (/turf/simulated/floor/plasteel{icon_state = "loadingarea"; dir = 8},/area/awaymission/centcomAway/hangar) "iC" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) -"iD" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) +"iD" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) "iE" = (/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "iF" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/hangar) -"iG" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) -"iH" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) -"iI" = (/turf/simulated/floor/plasteel{tag = "icon-ironsand3 (WEST)"; icon_state = "ironsand3"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) -"iJ" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) +"iG" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) +"iH" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) +"iI" = (/turf/simulated/floor/plasteel{icon_state = "ironsand3"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) +"iJ" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) "iK" = (/obj/machinery/door/airlock/centcom{name = "Thunderdome Administration"; opacity = 1; req_access_txt = "102"},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) -"iL" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) -"iM" = (/obj/structure/closet/wardrobe/red,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) -"iN" = (/obj/structure/mecha_wreckage/seraph,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) -"iO" = (/turf/simulated/floor/plasteel{tag = "icon-blackcorner (WEST)"; icon_state = "blackcorner"; dir = 8},/area/awaymission/centcomAway/general) -"iP" = (/turf/simulated/floor/plasteel{tag = "icon-ironsand11 (WEST)"; icon_state = "ironsand11"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) +"iL" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) +"iM" = (/obj/structure/closet/wardrobe/red,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) +"iN" = (/obj/structure/mecha_wreckage/seraph,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) +"iO" = (/turf/simulated/floor/plasteel{icon_state = "blackcorner"; dir = 8},/area/awaymission/centcomAway/general) +"iP" = (/turf/simulated/floor/plasteel{icon_state = "ironsand11"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) "iQ" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) -"iR" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) -"iS" = (/turf/simulated/floor/plasteel{tag = "icon-ironsand9 (WEST)"; icon_state = "ironsand9"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) +"iR" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) +"iS" = (/turf/simulated/floor/plasteel{icon_state = "ironsand9"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) "iT" = (/obj/structure/table/wood{dir = 9},/obj/item/clothing/mask/cigarette/cigar/havana,/obj/item/weapon/reagent_containers/food/drinks/sillycup,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "iU" = (/obj/structure/table/wood{dir = 5},/obj/item/weapon/lighter,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "iV" = (/obj/structure/table/wood{dir = 5},/obj/item/weapon/storage/backpack/satchel,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "iW" = (/obj/machinery/computer/card/centcom,/obj/item/weapon/card/id/centcom,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "iX" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "iY" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "XCCsec3"; name = "XCC Shutter 3 Control"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) -"iZ" = (/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) -"ja" = (/obj/machinery/button/massdriver{id = "XCCMechs"; name = "XCC Mechbay Mass Driver"; pixel_x = 25},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/hangar) +"iZ" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) +"ja" = (/obj/machinery/button/massdriver{id = "XCCMechs"; name = "XCC Mechbay Mass Driver"; pixel_x = 25},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/hangar) "jb" = (/obj/machinery/mecha_part_fabricator,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/hangar) -"jc" = (/turf/simulated/floor/plasteel{tag = "icon-ironsand4 (WEST)"; icon_state = "ironsand4"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) +"jc" = (/turf/simulated/floor/plasteel{icon_state = "ironsand4"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/general) "jd" = (/obj/structure/table/wood{dir = 10},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "je" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "jf" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "jg" = (/obj/structure/table/reinforced,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "jh" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) -"ji" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/hangar) -"jj" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) +"ji" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/hangar) +"jj" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/general) "jk" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) "jl" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "greencorner"},/area/awaymission/centcomAway/general) "jm" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "greencorner"},/area/awaymission/centcomAway/general) "jn" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "jo" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "jp" = (/obj/machinery/computer/card,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) -"jq" = (/obj/item/weapon/stamp,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) -"jr" = (/obj/structure/table,/obj/item/weapon/firstaid_arm_assembly,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/centcomAway/hangar) -"js" = (/obj/structure/table,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/centcomAway/hangar) -"jt" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/centcomAway/hangar) -"ju" = (/obj/structure/table,/obj/item/device/mmi/radio_enabled,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/centcomAway/hangar) -"jv" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/awaymission/centcomAway/hangar) +"jq" = (/obj/item/weapon/stamp,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) +"jr" = (/obj/structure/table,/obj/item/weapon/firstaid_arm_assembly,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/centcomAway/hangar) +"js" = (/obj/structure/table,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/centcomAway/hangar) +"jt" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/centcomAway/hangar) +"ju" = (/obj/structure/table,/obj/item/device/mmi/radio_enabled,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/centcomAway/hangar) +"jv" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/awaymission/centcomAway/hangar) "jw" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "101"},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "jx" = (/obj/machinery/door/window,/obj/machinery/door/window/northright,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) -"jy" = (/obj/structure/sink/puddle,/turf/simulated/floor/plasteel{icon_state = "asteroid6"; name = "sand"; tag = "icon-asteroid6"},/area/awaymission/centcomAway/general) -"jz" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid10"; name = "plating"; icon_state = "asteroid10"},/area/awaymission/centcomAway/general) -"jA" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid4"; name = "plating"; icon_state = "asteroid4"},/area/awaymission/centcomAway/general) +"jy" = (/obj/structure/sink/puddle,/turf/simulated/floor/plasteel{icon_state = "asteroid6"; name = "sand"},/area/awaymission/centcomAway/general) +"jz" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid10"},/area/awaymission/centcomAway/general) +"jA" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid4"},/area/awaymission/centcomAway/general) "jB" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/awaymission/centcomAway/general) "jC" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/awaymission/centcomAway/general) -"jD" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid"; name = "plating"; icon_state = "asteroid"},/area/awaymission/centcomAway/general) -"jE" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid11"; name = "plating"; icon_state = "asteroid11"},/area/awaymission/centcomAway/general) -"jF" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid9"; name = "plating"; icon_state = "asteroid9"},/area/awaymission/centcomAway/general) -"jG" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid8"; name = "plating"; icon_state = "asteroid8"},/area/awaymission/centcomAway/general) +"jD" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid"},/area/awaymission/centcomAway/general) +"jE" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid11"},/area/awaymission/centcomAway/general) +"jF" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid9"},/area/awaymission/centcomAway/general) +"jG" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid8"},/area/awaymission/centcomAway/general) "jH" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{name = "plating"},/area/awaymission/centcomAway/general) "jI" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{name = "plating"},/area/awaymission/centcomAway/general) "jJ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{name = "plating"},/area/awaymission/centcomAway/general) @@ -513,8 +513,8 @@ "jS" = (/obj/machinery/door/poddoor/shutters{id = "XCCsec2"; name = "XCC Checkpoint 2 Shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/centcomAway/general) "jT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "jU" = (/obj/structure/sign/vacuum,/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/general) -"jV" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{dir = 6; icon_state = "asteroid8"; name = "sand"; tag = "icon-asteroid8 (SOUTHEAST)"},/area/awaymission/centcomAway/general) -"jW" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{tag = "icon-asteroid5"; name = "plating"; icon_state = "asteroid5"},/area/awaymission/centcomAway/general) +"jV" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{dir = 6; icon_state = "asteroid8"; name = "sand"},/area/awaymission/centcomAway/general) +"jW" = (/obj/structure/flora/ausbushes,/turf/simulated/floor/plasteel{name = "plating"; icon_state = "asteroid5"},/area/awaymission/centcomAway/general) "jX" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) "jY" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "jZ" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) @@ -523,37 +523,37 @@ "kc" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "kd" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "ke" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) -"kf" = (/obj/machinery/button/door{id = "XCCFerry"; name = "Hangar Bay Shutters"; pixel_x = -28; pixel_y = 7; req_access_txt = "2"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) +"kf" = (/obj/machinery/button/door{id = "XCCFerry"; name = "Hangar Bay Shutters"; pixel_x = -28; pixel_y = 7; req_access_txt = "2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/hangar) "kg" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "kh" = (/obj/machinery/gateway,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "ki" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) -"kj" = (/turf/simulated/floor/plasteel{tag = "icon-delivery (SOUTHEAST)"; icon_state = "delivery"; dir = 6},/area/awaymission/centcomAway/general) +"kj" = (/turf/simulated/floor/plasteel{icon_state = "delivery"; dir = 6},/area/awaymission/centcomAway/general) "kk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "kl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "km" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "kn" = (/obj/structure/table,/obj/item/device/flashlight/flare,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/hangar) "ko" = (/obj/structure/table,/obj/item/device/flashlight/flare,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) "kp" = (/obj/structure/table,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/awaymission/centcomAway/hangar) -"kq" = (/obj/structure/table/reinforced,/obj/item/weapon/paper/pamphlet/ccaInfo,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) +"kq" = (/obj/structure/table/reinforced,/obj/item/weapon/paper/pamphlet/ccaInfo,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) "kr" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "XCCsec1"; name = "XCC Shutter 1 Control"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "ks" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) -"kt" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) +"kt" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) "ku" = (/obj/item/weapon/paper_bin,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) "kv" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) "kw" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/awaymission/centcomAway/general) "kx" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/awaymission/centcomAway/general) -"ky" = (/obj/machinery/computer/card,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) +"ky" = (/obj/machinery/computer/card,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) "kz" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) "kA" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) -"kB" = (/obj/machinery/photocopier,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) -"kC" = (/obj/item/weapon/clipboard,/obj/structure/table,/obj/item/device/taperecorder,/obj/item/weapon/stamp,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) +"kB" = (/obj/machinery/photocopier,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/general) +"kC" = (/obj/item/weapon/clipboard,/obj/structure/table,/obj/item/device/taperecorder,/obj/item/weapon/stamp,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) "kD" = (/obj/machinery/door/window/northright{icon_state = "right"; dir = 2},/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) "kE" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "XCCsec2"; name = "XCC Shutter 2 Control"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "kF" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "red"},/area/awaymission/centcomAway/general) "kG" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/awaymission/centcomAway/general) "kH" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 2},/area/awaymission/centcomAway/general) "kI" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/awaymission/centcomAway/general) -"kJ" = (/obj/structure/table,/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/stamp,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) +"kJ" = (/obj/structure/table,/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/stamp,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/general) "kK" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/awaymission/centcomAway/general) "kL" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/awaymission/centcomAway/general) "kM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/centcomAway/general) @@ -566,30 +566,30 @@ "kT" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/space,/area/space) "kU" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/space,/area/space) "kV" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/space,/area/space) -"kW" = (/obj/structure/table,/obj/item/device/paicard,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"kX" = (/obj/structure/table,/obj/item/device/camera,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"kW" = (/obj/structure/table,/obj/item/device/paicard,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"kX" = (/obj/structure/table,/obj/item/device/camera,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) "kY" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/awaymission/centcomAway/thunderdome) -"kZ" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"la" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"lb" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"lc" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"kZ" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"la" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"lb" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"lc" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) "ld" = (/turf/simulated/floor/plating,/area/awaymission/centcomAway/thunderdome) -"le" = (/obj/machinery/door/window/southleft,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"le" = (/obj/machinery/door/window/southleft,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) "lf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/centcomAway/thunderdome) -"lg" = (/obj/machinery/door/window/southright,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"lh" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"li" = (/turf/simulated/floor/plasteel{tag = "icon-barber (WEST)"; icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) -"lj" = (/obj/structure/stool/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"lk" = (/turf/simulated/floor/plasteel{tag = "icon-redbluefull (WEST)"; icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) -"ll" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/plasteel{tag = "icon-redbluefull (WEST)"; icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) -"lm" = (/obj/structure/closet/crate/trashcart,/turf/simulated/floor/plasteel{tag = "icon-redbluefull (WEST)"; icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) -"ln" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/plasteel{tag = "icon-redbluefull (WEST)"; icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) -"lo" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{tag = "icon-redbluefull (WEST)"; icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) -"lp" = (/obj/structure/table,/obj/item/weapon/lipstick,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"lq" = (/obj/structure/table/wood,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"lr" = (/obj/machinery/icecream_vat,/turf/simulated/floor/plasteel{tag = "icon-barber (WEST)"; icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) -"ls" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"lt" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{tag = "icon-redbluefull (WEST)"; icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) +"lg" = (/obj/machinery/door/window/southright,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"lh" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"li" = (/turf/simulated/floor/plasteel{icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) +"lj" = (/obj/structure/stool/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"lk" = (/turf/simulated/floor/plasteel{icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) +"ll" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/plasteel{icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) +"lm" = (/obj/structure/closet/crate/trashcart,/turf/simulated/floor/plasteel{icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) +"ln" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/plasteel{icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) +"lo" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) +"lp" = (/obj/structure/table,/obj/item/weapon/lipstick,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"lq" = (/obj/structure/table/wood,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"lr" = (/obj/machinery/icecream_vat,/turf/simulated/floor/plasteel{icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) +"ls" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"lt" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{icon_state = "redbluefull"; dir = 8},/area/awaymission/centcomAway/thunderdome) "lu" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "red"},/area/awaymission/centcomAway/thunderdome) "lv" = (/obj/structure/rack,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/twohanded/fireaxe,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/thunderdome) "lw" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/centcomAway/thunderdome) @@ -614,66 +614,66 @@ "lP" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitered"},/area/awaymission/centcomAway/thunderdome) "lQ" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "green"},/area/awaymission/centcomAway/general) "lR" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/general) -"lS" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"lS" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) "lT" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreen"},/area/awaymission/centcomAway/thunderdome) "lU" = (/obj/structure/urinal{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/thunderdome) "lV" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/thunderdome) -"lW" = (/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/thunderdome) -"lX" = (/obj/machinery/chem_dispenser,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"lY" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/thunderdome) +"lW" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/centcomAway/thunderdome) +"lX" = (/obj/machinery/chem_dispenser,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"lY" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/centcomAway/thunderdome) "lZ" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/thunderdome) "ma" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"; dir = 2},/area/awaymission/centcomAway/cafe) "mb" = (/obj/machinery/door/poddoor{id = "XCCtdomeguns"; name = "XCC Thunderdome Guns"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/centcomAway/thunderdome) "mc" = (/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/thunderdome) "md" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/retro,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/thunderdome) "me" = (/obj/machinery/vending/boozeomat{req_access_txt = ""},/turf/simulated/wall/r_wall,/area/awaymission/centcomAway/cafe) -"mf" = (/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mg" = (/obj/structure/stool/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mh" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mf" = (/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mg" = (/obj/structure/stool/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mh" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) "mi" = (/obj/structure/disposalpipe/segment,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/awaymission/centcomAway/cafe) -"mj" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/window/southright,/turf/simulated/floor/plasteel{tag = "icon-greenfull (NORTH)"; icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) -"mk" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/turf/simulated/floor/plasteel{tag = "icon-barber (WEST)"; icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) +"mj" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/window/southright,/turf/simulated/floor/plasteel{icon_state = "greenfull"; dir = 1},/area/awaymission/centcomAway/cafe) +"mk" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/turf/simulated/floor/plasteel{icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) "ml" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/centcomAway/cafe) -"mm" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mn" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mo" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mp" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mq" = (/obj/structure/table,/obj/item/weapon/storage/box/handcuffs,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mr" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"ms" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mm" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mn" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mo" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mp" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mq" = (/obj/structure/table,/obj/item/weapon/storage/box/handcuffs,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mr" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"ms" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) "mt" = (/obj/machinery/button/door{id = "XCCtdomemelee"; name = "XCC Thunderdome Melee!"},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/thunderdome) "mu" = (/obj/structure/stool/bed/chair/comfy/teal,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/thunderdome) "mv" = (/obj/machinery/button/door{id = "XCCtdomeguns"; name = "XCC Thunderdome Guns!"},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/thunderdome) "mw" = (/obj/machinery/button/door{id = "XCCtdome"; name = "XCC Thunderdome Go!"},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/thunderdome) "mx" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{icon_state = "bar"; dir = 2},/area/awaymission/centcomAway/maint) "my" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/centcomAway/cafe) -"mz" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/window/northright,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"mz" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/window/northright,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) "mA" = (/obj/machinery/vending/boozeomat{req_access_txt = ""},/turf/simulated/wall,/area/awaymission/centcomAway/cafe) -"mB" = (/obj/machinery/chem_dispenser,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) -"mC" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"mB" = (/obj/machinery/chem_dispenser,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"mC" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) "mD" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/awaymission/centcomAway/cafe) -"mE" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHEAST)"; icon_state = "warnplate"; dir = 5},/area/awaymission/centcomAway/cafe) -"mF" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/awaymission/centcomAway/cafe) -"mG" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/centcomAway/cafe) -"mH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/cafe) -"mI" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/awaymission/centcomAway/cafe) -"mJ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/awaymission/centcomAway/cafe) -"mK" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/centcomAway/cafe) -"mL" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/turf/simulated/floor/plasteel{tag = "icon-redfull"; icon_state = "redfull"},/area/awaymission/centcomAway/cafe) +"mE" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/awaymission/centcomAway/cafe) +"mF" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/awaymission/centcomAway/cafe) +"mG" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/centcomAway/cafe) +"mH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/centcomAway/cafe) +"mI" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/awaymission/centcomAway/cafe) +"mJ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/awaymission/centcomAway/cafe) +"mK" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/centcomAway/cafe) +"mL" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/awaymission/centcomAway/cafe) "mM" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "bar"; dir = 2},/area/awaymission/centcomAway/cafe) "mN" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/hangar) "mO" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "floor"},/area/awaymission/centcomAway/general) "mP" = (/obj/machinery/door/airlock/centcom{name = "Centcom Security"; opacity = 1; req_access_txt = "101"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/general) "mQ" = (/obj/structure/safe/floor,/obj/item/clothing/under/rank/centcom_officer,/obj/item/clothing/suit/det_suit,/obj/item/weapon/gun/projectile/revolver/mateba,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) -"mR" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) -"mS" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) +"mR" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) +"mS" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/hangar) "mT" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/centcomAway/hangar) "mU" = (/obj/structure/rack,/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/storage/belt/utility/full,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/centcomAway/general) -"mV" = (/obj/machinery/computer/area_atmos,/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mW" = (/obj/structure/stool{pixel_y = 8},/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mX" = (/obj/machinery/door/airlock/centcom{name = "Thunderdome Administration"; opacity = 1; req_access_txt = "102"},/turf/simulated/floor/plasteel{tag = "icon-redyellowfull (NORTHEAST)"; icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mY" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) -"mZ" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{tag = "icon-barber (WEST)"; icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) +"mV" = (/obj/machinery/computer/area_atmos,/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mW" = (/obj/structure/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mX" = (/obj/machinery/door/airlock/centcom{name = "Thunderdome Administration"; opacity = 1; req_access_txt = "102"},/turf/simulated/floor/plasteel{icon_state = "redyellowfull"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mY" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/awaymission/centcomAway/thunderdome) +"mZ" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) "na" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "greencorner"},/area/awaymission/centcomAway/thunderdome) "nb" = (/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/awaymission/centcomAway/thunderdome) "nc" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "greencorner"},/area/awaymission/centcomAway/thunderdome) @@ -696,10 +696,10 @@ "nt" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/awaymission/centcomAway/thunderdome) "nu" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "greencorner"},/area/awaymission/centcomAway/thunderdome) "nv" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/centcomAway/thunderdome) -"nw" = (/turf/simulated/floor/plasteel{tag = "icon-plaque"; icon_state = "plaque"},/area/awaymission/centcomAway/thunderdome) +"nw" = (/turf/simulated/floor/plasteel{icon_state = "plaque"},/area/awaymission/centcomAway/thunderdome) "nx" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/centcomAway/thunderdome) "ny" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/awaymission/centcomAway/thunderdome) -"nz" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/drinks/ice,/turf/simulated/floor/plasteel{tag = "icon-barber (WEST)"; icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) +"nz" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/drinks/ice,/turf/simulated/floor/plasteel{icon_state = "barber"; dir = 8; heat_capacity = 1},/area/awaymission/centcomAway/thunderdome) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/RandomZLevels/challenge.dmm b/_maps/RandomZLevels/challenge.dmm index 07dc3115c8b..cdc3ddd2721 100644 --- a/_maps/RandomZLevels/challenge.dmm +++ b/_maps/RandomZLevels/challenge.dmm @@ -53,25 +53,25 @@ "ba" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/challenge/main) "bb" = (/obj/item/device/multitool,/turf/simulated/floor/plasteel/airless,/area/awaymission/challenge/main) "bc" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel/airless,/area/awaymission/challenge/main) -"bd" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/awaymission/challenge/main) -"be" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/challenge/main) -"bf" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 1; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/awaymission/challenge/main) -"bg" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHEAST)"; icon_state = "warnplate"; dir = 5},/area/awaymission/challenge/main) +"bd" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/awaymission/challenge/main) +"be" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/challenge/main) +"bf" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 1; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/awaymission/challenge/main) +"bg" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/awaymission/challenge/main) "bh" = (/turf/simulated/floor/plasteel,/area/awaymission/challenge/main) -"bi" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 1; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/challenge/main) +"bi" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 1; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/challenge/main) "bj" = (/obj/machinery/light,/turf/simulated/floor/plating,/area/awaymission/challenge/main) "bk" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 1; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/machinery/light,/turf/simulated/floor/plating,/area/awaymission/challenge/main) -"bl" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 1; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/challenge/main) +"bl" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 1; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/challenge/main) "bm" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel/airless,/area/awaymission/challenge/main) -"bn" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 2; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/awaymission/challenge/main) +"bn" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 2; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/awaymission/challenge/main) "bo" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/awaymission/challenge/main) "bp" = (/obj/machinery/porta_turret{dir = 8; emagged = 1; installation = /obj/item/weapon/gun/energy/lasercannon},/turf/simulated/floor/plating,/area/awaymission/challenge/main) -"bq" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (EAST)"; icon_state = "warnplate"; dir = 4},/area/awaymission/challenge/main) +"bq" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/awaymission/challenge/main) "br" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating/airless,/area/awaymission/challenge/main) "bs" = (/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plasteel/airless,/area/awaymission/challenge/main) -"bt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/awaymission/challenge/main) -"bu" = (/obj/structure/window/reinforced,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/awaymission/challenge/main) -"bv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/awaymission/challenge/main) +"bt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/awaymission/challenge/main) +"bu" = (/obj/structure/window/reinforced,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/awaymission/challenge/main) +"bv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/awaymission/challenge/main) "bw" = (/obj/machinery/power/emitter{active = 1; active_power_usage = 0; anchored = 1; dir = 8; idle_power_usage = 0; locked = 1; name = "Energy Cannon"; req_access_txt = "100"; state = 2; use_power = 0},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/challenge/main) "bx" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/awaymission/challenge/main) "by" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/awaymission/challenge/main) @@ -95,7 +95,7 @@ "bQ" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/challenge/end) "bR" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching evil areas."; name = "Security Monitor"; network = ""; pixel_x = 0; pixel_y = 30},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "bS" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light,/turf/simulated/floor/plating/airless,/area/awaymission/challenge/main) -"bT" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/awaymission/challenge/main) +"bT" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/awaymission/challenge/main) "bU" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/turf/simulated/floor/plating/airless,/area/awaymission/challenge/main) "bV" = (/obj/machinery/light{dir = 1},/obj/structure/filingcabinet,/turf/simulated/floor/carpet,/area/awaymission/challenge/end) "bW" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching evil areas."; name = "Security Monitor"; network = ""; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/carpet,/area/awaymission/challenge/end) @@ -116,7 +116,7 @@ "cl" = (/mob/living/simple_animal/hostile/syndicate/melee,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "cm" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) "cn" = (/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) -"co" = (/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) +"co" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) "cp" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) "cq" = (/obj/structure/table/wood,/obj/item/weapon/melee/chainofcommand,/obj/item/weapon/stamp,/turf/simulated/floor/carpet,/area/awaymission/challenge/end) "cr" = (/obj/structure/table/wood,/obj/item/weapon/paper{info = "Congratulations,

Your station has been selected to carry out the Gateway Project.

The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.

--Nanotrasen Blue Space Research"; name = "Confidential Correspondence, Pg 1"; pixel_x = 0; pixel_y = 0},/obj/item/weapon/folder/blue,/turf/simulated/floor/carpet,/area/awaymission/challenge/end) @@ -145,31 +145,31 @@ "cO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/challenge/end) "cP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/challenge/end) "cQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/door/poddoor{icon_state = "pdoor1"; id = "challenge"; name = "Gateway Shutters"; p_open = 0},/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) -"cR" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/challenge/end) -"cS" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) -"cT" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/challenge/end) +"cR" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/challenge/end) +"cS" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) +"cT" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/challenge/end) "cU" = (/obj/machinery/light{dir = 4},/obj/machinery/door/poddoor{icon_state = "pdoor1"; id = "challenge"; name = "Gateway Shutters"; p_open = 0},/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) "cV" = (/obj/machinery/door/poddoor{icon_state = "pdoor1"; id = "challenge"; name = "Gateway Shutters"; p_open = 0},/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) -"cW" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) +"cW" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) "cX" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) -"cY" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) -"cZ" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/awaymission/challenge/end) -"da" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) -"db" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/awaymission/challenge/end) +"cY" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) +"cZ" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/awaymission/challenge/end) +"da" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/awaymission/challenge/end) +"db" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/awaymission/challenge/end) "dc" = (/obj/structure/window/reinforced,/obj/machinery/door/poddoor{icon_state = "pdoor1"; id = "challenge"; name = "Gateway Shutters"; p_open = 0},/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) -"dd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/poddoor{icon_state = "pdoor1"; id = "challenge"; name = "Gateway Shutters"; p_open = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) +"dd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/poddoor{icon_state = "pdoor1"; id = "challenge"; name = "Gateway Shutters"; p_open = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "de" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) "df" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/challenge/end) "dg" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "dh" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) -"di" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) +"di" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "dj" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "dk" = (/obj/structure/table,/obj/item/weapon/implanter/explosive,/obj/item/weapon/implanter/explosive{pixel_y = 4},/obj/item/weapon/implanter/explosive{pixel_y = 8},/obj/item/weapon/implanter/explosive{pixel_y = 12},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "dl" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area/space) "dm" = (/obj/machinery/door/airlock/centcom{name = "Gateway Access"; opacity = 1; req_access_txt = "109"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "dn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/challenge/end) -"do" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/mob/living/simple_animal/hostile/syndicate{name = "Syndicate Technician"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) -"dp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) +"do" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/mob/living/simple_animal/hostile/syndicate{name = "Syndicate Technician"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) +"dp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/challenge/end) "dq" = (/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) "dr" = (/obj/structure/closet/emcloset,/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) "ds" = (/obj/structure/cable,/obj/machinery/power/smes/magical,/turf/simulated/floor/bluegrid,/area/awaymission/challenge/end) diff --git a/_maps/RandomZLevels/example.dmm b/_maps/RandomZLevels/example.dmm index c93daea1f43..590d4c698a6 100644 --- a/_maps/RandomZLevels/example.dmm +++ b/_maps/RandomZLevels/example.dmm @@ -8,23 +8,23 @@ "ah" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel,/area/awaymission/example) "ai" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/example) "aj" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel,/area/awaymission/example) -"ak" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/example) -"al" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/example) -"am" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/example) +"ak" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/awaymission/example) +"al" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/example) +"am" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/awaymission/example) "an" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/example) "ao" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/gateway/centeraway,/turf/simulated/floor/plasteel,/area/awaymission/example) "ap" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/example) -"aq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/example) +"aq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/example) "ar" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel,/area/awaymission/example) "as" = (/obj/machinery/gateway{dir = 10},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plasteel,/area/awaymission/example) -"at" = (/obj/machinery/gateway,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/example) -"au" = (/obj/machinery/gateway{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/example) +"at" = (/obj/machinery/gateway,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/awaymission/example) +"au" = (/obj/machinery/gateway{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/example) "av" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/example) "aw" = (/turf/simulated/floor/plating,/area/awaymission/example) "ax" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/example) -"ay" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/awaymission/example) -"az" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/example) -"aA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plasteel,/area/awaymission/example) +"ay" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/awaymission/example) +"az" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/example) +"aA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plasteel,/area/awaymission/example) "aB" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/plasteel,/area/awaymission/example) "aC" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/awaymission/example) "aD" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/awaymission/example) @@ -40,7 +40,7 @@ "aN" = (/turf/simulated/floor/plasteel{icon_state = "yellowcorner"},/area/awaymission/example) "aO" = (/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/awaymission/example) "aP" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/awaymission/example) -"aQ" = (/turf/simulated/floor/plasteel{tag = "icon-yellowfull (WEST)"; icon_state = "yellowfull"; dir = 8},/area/awaymission/example) +"aQ" = (/turf/simulated/floor/plasteel{icon_state = "yellowfull"; dir = 8},/area/awaymission/example) "aR" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/example) "aS" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/example) "aT" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/example) @@ -64,7 +64,7 @@ "bl" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/awaymission/example) "bm" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/awaymission/example) "bn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/example) -"bo" = (/turf/simulated/floor/plasteel{tag = "icon-stage_stairs (WEST)"; icon_state = "stage_stairs"; dir = 8},/area/awaymission/example) +"bo" = (/turf/simulated/floor/plasteel{icon_state = "stage_stairs"; dir = 8},/area/awaymission/example) "bp" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/example) "bq" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/example) "br" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/example) @@ -86,12 +86,12 @@ "bH" = (/obj/machinery/vending/boozeomat{density = 0; pixel_x = -32},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) "bI" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/sodawater,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) "bJ" = (/obj/structure/bookcase{density = 0; pixel_y = 32},/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/book/manual/ripley_build_and_repair,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) -"bK" = (/obj/structure/stool/bed/chair/wood/normal{tag = "icon-wooden_chair (EAST)"; icon_state = "wooden_chair"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) +"bK" = (/obj/structure/stool/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) "bL" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) -"bM" = (/obj/structure/stool/bed/chair/wood/normal{tag = "icon-wooden_chair (WEST)"; icon_state = "wooden_chair"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) +"bM" = (/obj/structure/stool/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) "bN" = (/obj/structure/bookcase{density = 0; pixel_y = 32},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) "bO" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) -"bP" = (/obj/structure/stool/bed/chair/wood/normal{tag = "icon-wooden_chair (NORTH)"; icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) +"bP" = (/obj/structure/stool/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) "bQ" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel,/area/awaymission/example) "bR" = (/obj/structure/table,/obj/machinery/light/small,/obj/item/weapon/paper{info = "X X O
X O X
O X"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) "bS" = (/obj/structure/piano,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/example) @@ -120,7 +120,7 @@ "cp" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel,/area/awaymission/example) "cq" = (/obj/effect/landmark{name = "awaystart"},/obj/item/device/assembly/mousetrap/armed,/turf/simulated/floor/plasteel,/area/awaymission/example) "cr" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/awaymission/example) -"cs" = (/obj/effect/landmark{name = "awaystart"},/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (WEST)"; icon_state = "bulb-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/example) +"cs" = (/obj/effect/landmark{name = "awaystart"},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/example) "ct" = (/obj/effect/landmark{name = "awaystart"},/obj/item/weapon/mop,/turf/simulated/floor/plasteel,/area/awaymission/example) "cu" = (/obj/structure/closet,/turf/simulated/floor/plasteel,/area/awaymission/example) "cv" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel,/area/awaymission/example) diff --git a/_maps/RandomZLevels/listeningpost.dmm b/_maps/RandomZLevels/listeningpost.dmm index 5073ccb50b6..1e4b49bb3f5 100644 --- a/_maps/RandomZLevels/listeningpost.dmm +++ b/_maps/RandomZLevels/listeningpost.dmm @@ -32,20 +32,20 @@ "F" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/mineral,/area/mine/unexplored) "G" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor/plasteel,/area/awaymission/listeningpost) "H" = (/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/listeningpost) -"I" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/listeningpost) -"J" = (/obj/structure/toilet{tag = "icon-toilet00 (WEST)"; icon_state = "toilet00"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/listeningpost) +"I" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/listeningpost) +"J" = (/obj/structure/toilet{icon_state = "toilet00"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/listeningpost) "K" = (/turf/simulated/mineral/clown,/area/mine/unexplored) -"L" = (/turf/simulated/wall/shuttle{tag = "icon-wall3"; icon_state = "wall3"},/area/mine/explored) -"M" = (/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"N" = (/obj/machinery/gateway{tag = "icon-off (NORTHWEST)"; icon_state = "off"; dir = 9},/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"O" = (/obj/machinery/gateway{tag = "icon-off (NORTH)"; icon_state = "off"; dir = 1},/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"P" = (/obj/machinery/gateway{tag = "icon-off (NORTHEAST)"; icon_state = "off"; dir = 5},/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"Q" = (/obj/machinery/gateway{tag = "icon-off (WEST)"; icon_state = "off"; dir = 8},/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"R" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"S" = (/obj/machinery/gateway{tag = "icon-off (EAST)"; icon_state = "off"; dir = 4},/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"T" = (/obj/machinery/gateway{tag = "icon-off (SOUTHWEST)"; icon_state = "off"; dir = 10},/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"U" = (/obj/machinery/gateway,/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) -"V" = (/obj/machinery/gateway{tag = "icon-off (SOUTHEAST)"; icon_state = "off"; dir = 6},/turf/simulated/floor/plasteel/airless{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area/mine/explored) +"L" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/mine/explored) +"M" = (/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"N" = (/obj/machinery/gateway{icon_state = "off"; dir = 9},/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"O" = (/obj/machinery/gateway{icon_state = "off"; dir = 1},/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"P" = (/obj/machinery/gateway{icon_state = "off"; dir = 5},/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"Q" = (/obj/machinery/gateway{icon_state = "off"; dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"R" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"S" = (/obj/machinery/gateway{icon_state = "off"; dir = 4},/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"T" = (/obj/machinery/gateway{icon_state = "off"; dir = 10},/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"U" = (/obj/machinery/gateway,/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) +"V" = (/obj/machinery/gateway{icon_state = "off"; dir = 6},/turf/simulated/floor/plasteel/airless{icon_state = "gcircuit"},/area/mine/explored) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index d9b8ae8417c..c30a1bed4df 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -22,14 +22,14 @@ "av" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "aw" = (/obj/structure/alien/weeds/node,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "ax" = (/obj/structure/alien/weeds,/obj/effect/decal/cleanable/blood/gibs,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ay" = (/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "darkred"; tag = "icon-darkred (NORTHWEST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"az" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "darkredcorners"; tag = "icon-darkredcorners (NORTH)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"ay" = (/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "darkred"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"az" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aA" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"aB" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "darkredcorners"; tag = "icon-darkredcorners (EAST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"aC" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "darkred"; tag = "icon-darkred (NORTHEAST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"aB" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"aC" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "darkred"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aD" = (/obj/structure/alien/weeds/node,/obj/structure/alien/resin/wall,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "aE" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/stool/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/obj/item/clothing/under/rank/security,/obj/item/clothing/suit/armor/vest,/obj/item/weapon/melee/baton/loaded,/obj/item/clothing/head/helmet,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"aF" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "darkredcorners"; tag = "icon-darkredcorners (NORTH)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"aF" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aG" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aH" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aI" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) @@ -45,20 +45,20 @@ "aS" = (/obj/item/weapon/ore/iron{pixel_x = 7; pixel_y = -6},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "aT" = (/obj/structure/alien/weeds,/mob/living/simple_animal/hostile/alien/queen/large{desc = "A gigantic alien who is in charge of the hive and all of its loyal servants."; name = "alien queen"; pixel_x = -16; plants_off = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "aU" = (/turf/simulated/wall,/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"aV" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "darkredcorners"; tag = "icon-darkredcorners (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"aV" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aW" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aX" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "aY" = (/obj/machinery/gateway{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"aZ" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "darkredcorners"; tag = "icon-darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"aZ" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "ba" = (/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bb" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/mob/living/simple_animal/hostile/alien/drone{plants_off = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bc" = (/obj/structure/alien/weeds,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bd" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "be" = (/obj/machinery/vending/cigarette,/obj/structure/sign/poster{icon_state = "poster7"; pixel_y = 32; serial_number = 7},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bf" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "darkred"; tag = "icon-darkred (SOUTHWEST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bh" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "darkredcorners"; tag = "icon-darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bi" = (/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "darkred"; tag = "icon-darkred (SOUTHEAST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bf" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "darkred"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bh" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "darkredcorners"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bi" = (/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "darkred"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bj" = (/obj/structure/alien/weeds,/obj/structure/stool/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/obj/effect/decal/cleanable/blood,/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/obj/item/clothing/under/syndicate,/obj/item/clothing/glasses/night,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bk" = (/obj/structure/alien/weeds,/mob/living/simple_animal/hostile/alien/sentinel,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bl" = (/turf/simulated/mineral/random/high_chance,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) @@ -68,7 +68,7 @@ "bp" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bq" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/device/radio/off{pixel_x = -4; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 2},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "br" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/item/weapon/paper{info = "Log 1:
We got our promised supply drop today. We were only meant to get it, what, a week ago? This bloody gateway keeps desyncing itself, and that means subsisting off recycled water and carb packs. No clue where the damn thing connects to on its off days, and HQ say we are 'not to touch it if it isn't linking to command.' We dumped off the assload of crates Jim filled, got our boxes of oxygen, food and drink, and closed the portal.

Log 2:
Damn thing is acting up again. Three days no contact this time. I thought I heard clanking noises from it yesterday. Jim is going on about the NT base or some shit. We've been over this before - They don't know we're here, that engineer was too drunk to recognise his suit, especially since I had it painted orange. He's starting to get annoying. We're safe.

Log 3:
Gateway synced itself up automatically today. I opened it for an instant to spy through it, got a glimpse of the inside of a transport container. Either HQ's redecorating or something, or there's more than two of these things."; name = "Personal Log"},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bs" = (/obj/machinery/door/window{dir = 1; name = "Gateway Access"; req_access_txt = "150"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bs" = (/obj/machinery/door/window{dir = 1; name = "Gateway Access"; req_access_txt = "150"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bt" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bu" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bv" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) @@ -78,9 +78,9 @@ "bz" = (/obj/structure/table,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32; pixel_y = 0},/obj/item/trash/plate,/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bA" = (/obj/machinery/light{dir = 8},/obj/structure/stool,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bB" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bD" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bE" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 1; pixel_x = 23; pixel_y = 0; req_access = "150"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bE" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 1; pixel_x = 23; pixel_y = 0; req_access = "150"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bF" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bG" = (/obj/structure/closet/crate/bin,/obj/item/trash/syndi_cakes,/obj/item/trash/sosjerky,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) @@ -92,28 +92,28 @@ "bN" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bO" = (/obj/machinery/door/airlock/glass{name = "Break Room"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bP" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/highsecurity{icon_state = "door_locked"; locked = 1; name = "Gateway"; req_access_txt = "150"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/device/multitool,/turf/simulated/floor/plating{dir = 9; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bS" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/computer/monitor,/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"; tag = "icon-warnplate (NORTHEAST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/highsecurity{icon_state = "door_locked"; locked = 1; name = "Gateway"; req_access_txt = "150"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/device/multitool,/turf/simulated/floor/plating{dir = 9; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bS" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/computer/monitor,/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bT" = (/obj/machinery/power/smes{charge = 0; input_level = 10000; inputting = 0; output_level = 15000; outputting = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bU" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/alarm{frequency = 1439; locked = 1; pixel_y = 23; req_access = "150"},/turf/simulated/floor/plating{dir = 9; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bV" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"; tag = "icon-warnplate (NORTHEAST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bV" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bW" = (/obj/structure/alien/weeds/node,/mob/living/simple_animal/hostile/alien,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bX" = (/obj/machinery/conveyor{dir = 2; id = "awaysyndie"},/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "bY" = (/obj/machinery/mineral/unloading_machine{dir = 1; icon_state = "unloader-corner"; input_dir = 4; output_dir = 8},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"bZ" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/sign/poster{icon_state = "poster5"; pixel_x = 0; pixel_y = 32; serial_number = 5},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "loadingarea"; nitrogen = 13.2; oxygen = 32.4; tag = "loading"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"ca" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"bZ" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/sign/poster{icon_state = "poster5"; pixel_x = 0; pixel_y = 32; serial_number = 5},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "loadingarea"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"ca" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cc" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cd" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = "150"},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched2 (WEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cd" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = "150"},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "ce" = (/obj/structure/sign/biohazard{pixel_y = 32},/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "warningcorner"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 1; heat_capacity = 1e+006; icon_state = "warning"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 1; heat_capacity = 1e+006; icon_state = "warning"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cg" = (/obj/structure/sign/securearea{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "warningcorner"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "ch" = (/obj/machinery/light/small{active_power_usage = 0; dir = 4; icon_state = "bulb-broken"; status = 2},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"ci" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 8},/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/paper{info = "Alright, listen up. If you're reading this, I'm either taking a shit or I've been recalled back to Command. Either way, you'll need to know how to restore power. We've stolen this stuff from Nanotrasen, so all the equipment is jury-rigged. We have generators that work on both plasma and uranium, about 50 sheets should power the outpost for quite a while. If the generators aren't working, which is very likely, take the power cell on the desk and put it into the APC in the hallway. That should get the place running, at least for a little while."; name = "Engineering Instructions"},/turf/simulated/floor/plating{dir = 8; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cj" = (/obj/structure/stool,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"ci" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 8},/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/paper{info = "Alright, listen up. If you're reading this, I'm either taking a shit or I've been recalled back to Command. Either way, you'll need to know how to restore power. We've stolen this stuff from Nanotrasen, so all the equipment is jury-rigged. We have generators that work on both plasma and uranium, about 50 sheets should power the outpost for quite a while. If the generators aren't working, which is very likely, take the power cell on the desk and put it into the APC in the hallway. That should get the place running, at least for a little while."; name = "Engineering Instructions"},/turf/simulated/floor/plating{dir = 8; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cj" = (/obj/structure/stool,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "ck" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{dir = 1; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{dir = 4; heat_capacity = 1e+006; icon_state = "warnplatecorner"; tag = "icon-warnplatecorner (EAST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{dir = 4; heat_capacity = 1e+006; icon_state = "warnplatecorner"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cm" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/poster{icon_state = "poster10"; pixel_x = 32; pixel_y = 0; serial_number = 10},/turf/simulated/floor/plating{dir = 4; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "co" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "warning"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) @@ -121,14 +121,14 @@ "cq" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cr" = (/obj/machinery/door/airlock/glass{density = 0; emagged = 1; icon_state = "door_open"; locked = 1; name = "Dormitories"},/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cs" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"ct" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/engineering{name = "Power Maintenance"; req_access_txt = "150"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cx" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cy" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"ct" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/engineering{name = "Power Maintenance"; req_access_txt = "150"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cx" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cy" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cB" = (/obj/machinery/space_heater,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{dir = 4; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cC" = (/obj/machinery/mineral/processing_unit{dir = 1; output_dir = 2},/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cD" = (/obj/machinery/mineral/processing_unit_console{machinedir = 8},/turf/simulated/wall,/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) @@ -140,18 +140,18 @@ "cJ" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cK" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 15000; dir = 2; locked = 1; name = "Worn-out APC"; pixel_x = 0; pixel_y = -25; req_access = "150"; start_charge = 0},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cL" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 6; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cM" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{dir = 10; heat_capacity = 1e+006; icon_state = "warnplate"; tag = "icon-warnplate (SOUTHWEST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cM" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{dir = 10; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cN" = (/obj/structure/cable,/obj/machinery/power/port_gen/pacman{desc = "A portable generator for emergency backup power."; name = "P.A.C.M.A.N.-type portable generator"},/turf/simulated/floor/plating{dir = 2; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cO" = (/obj/structure/cable,/obj/effect/decal/cleanable/dirt,/obj/machinery/power/port_gen/pacman/super{desc = "A portable generator for emergency backup power."; name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator"},/turf/simulated/floor/plating{dir = 2; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cP" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{dir = 6; heat_capacity = 1e+006; icon_state = "warnplate"; tag = "icon-warnplate (SOUTHEAST)"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cP" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{dir = 6; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cQ" = (/obj/machinery/conveyor_switch/oneway{id = "awaysyndie"; layer = 3.1; name = "mining conveyor"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "warning"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cR" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged4 (WEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cR" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cS" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 1; pixel_x = 23; pixel_y = 0; req_access = "150"},/obj/machinery/light{active_power_usage = 0; dir = 4; icon_state = "tube-broken"; status = 2},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "red"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cT" = (/obj/machinery/door/airlock{density = 0; emagged = 1; icon_state = "door_open"; id_tag = "awaydorm4"; locked = 1; name = "Dorm 1"; opacity = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cU" = (/obj/machinery/door/airlock{id_tag = "awaydorm5"; name = "Dorm 2"},/turf/simulated/floor/wood{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cV" = (/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "warning"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cW" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged2 (WEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"cX" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged3 (WEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cW" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"cX" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cY" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 12},/obj/effect/decal/cleanable/dirt,/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 1; heat_capacity = 1e+006; icon_state = "bot"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "cZ" = (/obj/machinery/button/door{id = "awaydorm4"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/structure/stool/bed,/obj/item/weapon/bedsheet/syndie,/turf/simulated/floor/wood{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "da" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) @@ -165,11 +165,11 @@ "di" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dj" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dk" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 1; pixel_x = 23; pixel_y = 0; req_access = "150"},/turf/simulated/floor/wood{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"dl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "loadingarea"; nitrogen = 13.2; oxygen = 32.4; tag = "loading"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"dl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "loadingarea"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dm" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 1; heat_capacity = 1e+006; icon_state = "warning"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dn" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 4; heat_capacity = 1e+006; icon_state = "warningcorner"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"do" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged1 (WEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"dp" = (/obj/structure/closet/crate,/obj/item/weapon/storage/bag/ore,/obj/structure/alien/weeds,/obj/item/device/mining_scanner,/obj/item/weapon/shovel,/obj/item/weapon/pickaxe,/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg3"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"do" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"dp" = (/obj/structure/closet/crate,/obj/item/weapon/storage/bag/ore,/obj/structure/alien/weeds,/obj/item/device/mining_scanner,/obj/item/weapon/shovel,/obj/item/weapon/pickaxe,/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dq" = (/obj/structure/table/wood,/obj/structure/sign/poster{icon_state = "poster24"; pixel_x = 0; pixel_y = -32; serial_number = 24},/obj/item/weapon/pen,/obj/item/weapon/paper{info = "Log 1:
While mining today I noticed the NT station was finished with its renovations. They placed some huge reinforced tumor on the station, looks so ugly. I wouldn't be surprised if those pigs decided to turn that little astronomy outpost into a prison with that thing, it'd be pretty typical of them.

Log 2:
Really dumb of me but I just waved at an engineer in the outpost, and he waved back. I hope to god he was too dumb or drunk to recognize the suit, because if he isn't then we might have to pull out before they come looking for us.

Log 3:
That huge reinforced tumor in their science section has been making a lot of noise lately. I've been hearing some banging and scratching from the other side and I'm kind of glad now that they reinforced this thing so much. I'll be sleeping with my gun under my pillow from now on."; name = "Personal Log"},/turf/simulated/floor/wood{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dr" = (/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective_locked"; locked = 1; name = "personal closet"; req_access_txt = "150"},/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/m10mm,/obj/item/weapon/suppressor,/turf/simulated/floor/wood{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "ds" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/syndie,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) @@ -178,12 +178,12 @@ "dv" = (/obj/item/weapon/ore/iron,/obj/item/weapon/ore/iron{pixel_x = -7; pixel_y = -4},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "dw" = (/obj/structure/dispenser/oxygen{oxygentanks = 9},/obj/machinery/light/small{active_power_usage = 0; dir = 1; icon_state = "bulb-broken"; status = 2},/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 9; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dx" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"dy" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/orange,/obj/item/clothing/mask/gas,/obj/item/weapon/pickaxe/drill,/obj/item/clothing/head/helmet/space/syndicate/orange,/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-warnplate (NORTHEAST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"dy" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/orange,/obj/item/clothing/mask/gas,/obj/item/weapon/pickaxe/drill,/obj/item/clothing/head/helmet/space/syndicate/orange,/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dz" = (/obj/item/weapon/ore/iron{pixel_x = -3; pixel_y = 9},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "dA" = (/turf/simulated/mineral,/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"dB" = (/obj/structure/sign/vacuum{desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; name = "\improper HOSTILE ATMOSPHERE AHEAD"; pixel_x = 0; pixel_y = -32},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 10; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-warnplate (SOUTHWEST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"dC" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg1"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) -"dD" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 6; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-warnplate (SOUTHEAST)"; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"dB" = (/obj/structure/sign/vacuum{desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; name = "\improper HOSTILE ATMOSPHERE AHEAD"; pixel_x = 0; pixel_y = -32},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 10; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"dC" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) +"dD" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{carbon_dioxide = 48.7; dir = 6; heat_capacity = 1e+006; icon_state = "warnplate"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a4{has_gravity = 1; name = "Syndicate Outpost"}) "dE" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "dF" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_2"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "dG" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/obj/item/device/mining_scanner,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) @@ -210,12 +210,12 @@ "eb" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaybiohazard"; name = "Acid-Proof biohazard containment door"; unacidable = 1},/obj/machinery/door/poddoor{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaybiohazard"; layer = 2.9; name = "Acid-Proof biohazard containment door"; unacidable = 1},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ec" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ed" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ee" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ee" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ef" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eg" = (/obj/machinery/atmospherics/components/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/structure/alien/weeds,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ei" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ej" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ei" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ej" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ek" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/shieldwallgen{locked = 0; req_access = null},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "el" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/stool/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "em" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -227,9 +227,9 @@ "es" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/stool/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "et" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eu" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ev" = (/obj/machinery/light/small{active_power_usage = 0; dir = 4; icon_state = "bulb-broken"; status = 2},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ev" = (/obj/machinery/light/small{active_power_usage = 0; dir = 4; icon_state = "bulb-broken"; status = 2},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ew" = (/obj/machinery/atmospherics/components/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ex" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold{dir = 4; icon_state = "manifold"; level = 2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ex" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold{dir = 4; icon_state = "manifold"; level = 2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ey" = (/obj/structure/table/reinforced,/obj/structure/alien/weeds,/obj/machinery/computer/security/telescreen{desc = "Used for watching the contents of the xenobiology containment pen."; dir = 8; name = "xenobiology monitor"; network = list("MO19X")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ez" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/preopen{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaylab"; name = "Acid-Proof containment chamber blast door"; unacidable = 1},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eA" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -245,50 +245,50 @@ "eK" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eL" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eM" = (/obj/machinery/light/small{active_power_usage = 0; dir = 8; icon_state = "bulb-broken"; status = 2},/obj/machinery/camera{c_tag = "Xenobiology"; dir = 4; network = list("MO19","MO19R")},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"eN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/stool/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"eN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/stool/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eO" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "Awaylab"; name = "Containment Chamber Blast Doors"; pixel_x = 4; pixel_y = -2; req_access_txt = "201"},/obj/machinery/button/ignition{id = "awayxenobio"; pixel_x = 4; pixel_y = 8},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eP" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/alien/weeds{desc = "A large mottled egg."; health = 100; icon_state = "egg_hatched"; name = "egg"},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eQ" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eR" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eS" = (/obj/machinery/power/port_gen/pacman{desc = "A portable generator for emergency backup power."; name = "P.A.C.M.A.N.-type portable generator"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"eT" = (/obj/machinery/power/port_gen/pacman/super{desc = "A portable generator for emergency backup power."; name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"eT" = (/obj/machinery/power/port_gen/pacman/super{desc = "A portable generator for emergency backup power."; name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eU" = (/obj/machinery/space_heater,/obj/machinery/light/small{dir = 1},/obj/structure/sign/poster{icon_state = "poster5_legit"; pixel_x = 0; pixel_y = 32; serial_number = 21},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eV" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "eW" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/smes{charge = 1.5e+006; input_level = 10000; inputting = 0; output_level = 15000; outputting = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"eX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"eY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/item/weapon/newspaper,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"eZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/maintenance{req_access_txt = "201"; req_one_access_txt = "0"},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 5; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fe" = (/obj/structure/sign/securearea{pixel_x = 32},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ff" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"eX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"eY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/item/weapon/newspaper,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"eZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance{req_access_txt = "201"; req_one_access_txt = "0"},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 5; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fe" = (/obj/structure/sign/securearea{pixel_x = 32},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ff" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fg" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light/small{active_power_usage = 0; dir = 1; icon_state = "bulb-broken"; status = 2},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fh" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/structure/alien/weeds,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fi" = (/obj/structure/closet/crate/freezer,/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/obj/item/xenos_claw,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fi" = (/obj/structure/closet/crate/freezer,/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/obj/item/xenos_claw,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fj" = (/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fk" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fm" = (/obj/structure/closet/l3closet/scientist,/obj/structure/window/reinforced,/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fn" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/preopen{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaylab"; name = "Acid-Proof containment chamber blast door"; unacidable = 1},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fo" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/alien/weeds{desc = "A large mottled egg."; health = 100; icon_state = "egg_hatched"; name = "egg"},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fp" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/stool/bed/nest,/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ft" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ft" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fv" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; icon_state = "ltrails_2"},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/alien/weeds,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{density = 0; emagged = 1; icon_state = "door_open"; locked = 1; name = "Xenobiology Lab"; opacity = 0; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/alien/weeds,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{density = 0; emagged = 1; icon_state = "door_open"; locked = 1; name = "Xenobiology Lab"; opacity = 0; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; dir = 4; name = "Acid-Proof Pipe"; unacidable = 1},/obj/item/stack/rods,/obj/item/stack/cable_coil{amount = 5},/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fE" = (/obj/machinery/door/poddoor/preopen{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaylab"; name = "Acid-Proof containment chamber blast door"; unacidable = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; dir = 4; name = "Acid-Proof Pipe"; unacidable = 1},/obj/item/stack/rods,/obj/item/stack/cable_coil{amount = 5},/obj/item/weapon/shard{icon_state = "medium"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fE" = (/obj/machinery/door/poddoor/preopen{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaylab"; name = "Acid-Proof containment chamber blast door"; unacidable = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; dir = 4; name = "Acid-Proof Pipe"; unacidable = 1},/obj/item/stack/rods,/obj/item/stack/cable_coil{amount = 5},/obj/item/weapon/shard{icon_state = "medium"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fF" = (/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; dir = 4; name = "Acid-Proof Pipe"; unacidable = 1},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; dir = 4; name = "Acid-Proof Pipe"; unacidable = 1},/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; dir = 4; name = "Acid-Proof Pipe"; unacidable = 1},/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/alien/resin/wall,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -299,15 +299,15 @@ "fM" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fN" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fO" = (/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fQ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fQ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fS" = (/obj/structure/filingcabinet,/obj/item/weapon/paper{info = "Entry One - 27/05/2554:
I just arrived, and already I hate my job. I'm stuck on this shithole of an outpost, trying to avoid these damn eggheads running all over the place preparing for god knows what. There's no crimes to stop, no syndies to kill, and I'm not even allowed to beat the fuckin' assistant senseless! They said I was transferred from Space Station 13 for 'good behavior', but this feels more like a punishment than a reward. All I know is that if I don't get some action soon, I'm going to go insane.

Entry Two - 03/06/2554:
Okay, so get this: we got a fuckin' deathsquad coming in today! I thought the day I saw one of them would be the day my employment was 'terminated', if you get my drift. They're escorting some sort of weird alien creature for the eggheads to study. I heard one of the docs telling the chef that this thing killed a whole security force before it was captured. I sure as hell hope that I don't have to fight it.

Entry Three - 08/06/2554:
My first real bit of 'action' today, if you could call it that. Crazy Ivan got in a fight with Kuester today about his Booze-O-Mat. Apparently one of the crewmembers had stolen a couple bottles of booze from the machine after Ivan disabled the ID lock. Tell you the truth, I don't blame the thief. Everyone is going a little stir-crazy in here, and the bartender is being damn stingy with the alcohol. Either way, once they started to pick a fight, I had to take them down. It's a damn shame that we don't have a brig, though. I had to lock Ivan in a fuckin' freezer, for god's sake. Let's hope that we can keep our sanity together, at least for a while.

Entry Four - 10/06/2554:
Jesus fucking Christ riding on a motorbike. These things the scientists are studying are terrifying! Fucking great huge purple bug things as tall as the ceiling, with blades for arms and drooling at the mouth. I don't think my taser will do jack shit against these damn things, but the eggheads say that they're safely contained. If they do, I have a feeling that it's only a matter of time before we're all screwed. These bastards look like walking death.

Entry Five - 18/06/2554:
Finally caught who stole the booze from Kuester. It was that fuckin' loser assistant Steve! He was in the dorms, chugging his worries away. I took one of the bottles back to the barkeep, but no one has to know about this second one. I think I'm gonna enjoy this while watching tomorrow's Thunderdome match.

Entry Six - 19/06/2554:
Oh, great. The chef is still sleeping, so we get Ivan's gruel for breakfast today. I overheard Sano and Douglas saying something about the aliens being restless, so we might get some action today. As long as it happens after the big game, I'm fine with it. I still got one beer to drink before I'm ready to die."; name = "Personal Log - Kenneth Cunningham"},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fT" = (/obj/structure/closet/secure_closet{icon_state = "sec1"; locked = 1; name = "security officer's locker"; req_access_txt = "201"},/obj/item/clothing/suit/armor/vest,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/grenade/flashbang,/obj/item/weapon/storage/belt/security,/obj/item/weapon/reagent_containers/food/drinks/beer{pixel_x = -3; pixel_y = -2},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fU" = (/obj/structure/sign/poster{icon_state = "poster21_legit"; pixel_y = 32; serial_number = 21},/obj/item/device/radio/off,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fW" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"fX" = (/obj/structure/sign/biohazard{pixel_x = 32},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"fX" = (/obj/structure/sign/biohazard{pixel_x = 32},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "fZ" = (/obj/machinery/door/firedoor,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ga" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/l3closet/scientist,/obj/structure/alien/weeds,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -316,13 +316,13 @@ "gd" = (/obj/structure/alien/weeds,/obj/structure/stool/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ge" = (/obj/structure/alien/weeds,/obj/structure/stool/bed/nest,/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gf" = (/obj/structure/stool,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"gg" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"gh" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"gg" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"gh" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gi" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gj" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gk" = (/obj/machinery/door/airlock/glass_security{name = "Security Post"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gl" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"gm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/structure/alien/weeds,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"gm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/structure/alien/weeds,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gn" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/razor{pixel_y = 5},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "go" = (/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gp" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -333,7 +333,7 @@ "gu" = (/obj/structure/disposalpipe/segment{desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; dir = 4; name = "Acid-Proof disposal pipe"; unacidable = 1},/obj/structure/alien/weeds,/obj/structure/alien/resin/wall,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gv" = (/obj/structure/disposalpipe/segment{desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; dir = 2; icon_state = "pipe-c"; name = "Acid-Proof disposal pipe"; unacidable = 1},/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gw" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high,/obj/item/device/radio/off,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"gx" = (/obj/structure/table,/obj/item/weapon/paper{info = "Ivan Volodin Stories:

Entry Won - 28/05/2554:
Hello. I am Crazy Ivan. Boss say I must write. I do good job fixing outpost. Is very good job. Much better than mines. Many nice people. I cause no trouble.

Entry Too - 05/06/2554:
I am finding problem with Booze-O-Mat. Is not problem. I solve very easy. Use yellow tool to make purple light go off. I am good engineer! Bartender will be very happy.

Entry Tree - 08/06/2554:
Bartender is not happy. Security man is not happy. Cannot feel legs, is very cold in freezer. Is not good. Table is jammed into door, have no tools. Is very not good. But, on bright side, found meat! Shall chew to keep spirits up.

Entry Fore - 12/06/2554:
Big nasty purple bug looked at me today. Make nervous. Blue wall wire can be broken, then bad thing happens. Very very bad thing. Man in orange spacesuit wave at me today too. He seem nice. Wonder who was?

Entry Fiv - 15/06/2554:
I eat cornflakes today. Is good day. Sun shine for a while. Was nice. I also take ride on disposals chute. Was fun, but tiny. Get clog out of pipes, was vodka bottle. Is empty. This make many sads.

Entry Sex: 19/06/2554:
Purple bugs jumpy today. When waved, get hiss. Maybe very bad. Maybe just ill. Do not know. Is science problem, is not engineer problem. I eat sandwich. Is glorious job. Wish to never end."; name = "Personal Log - Ivan Volodin"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"gx" = (/obj/structure/table,/obj/item/weapon/paper{info = "Ivan Volodin Stories:

Entry Won - 28/05/2554:
Hello. I am Crazy Ivan. Boss say I must write. I do good job fixing outpost. Is very good job. Much better than mines. Many nice people. I cause no trouble.

Entry Too - 05/06/2554:
I am finding problem with Booze-O-Mat. Is not problem. I solve very easy. Use yellow tool to make purple light go off. I am good engineer! Bartender will be very happy.

Entry Tree - 08/06/2554:
Bartender is not happy. Security man is not happy. Cannot feel legs, is very cold in freezer. Is not good. Table is jammed into door, have no tools. Is very not good. But, on bright side, found meat! Shall chew to keep spirits up.

Entry Fore - 12/06/2554:
Big nasty purple bug looked at me today. Make nervous. Blue wall wire can be broken, then bad thing happens. Very very bad thing. Man in orange spacesuit wave at me today too. He seem nice. Wonder who was?

Entry Fiv - 15/06/2554:
I eat cornflakes today. Is good day. Sun shine for a while. Was nice. I also take ride on disposals chute. Was fun, but tiny. Get clog out of pipes, was vodka bottle. Is empty. This make many sads.

Entry Sex: 19/06/2554:
Purple bugs jumpy today. When waved, get hiss. Maybe very bad. Maybe just ill. Do not know. Is science problem, is not engineer problem. I eat sandwich. Is glorious job. Wish to never end."; name = "Personal Log - Ivan Volodin"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gy" = (/obj/machinery/light/small,/obj/structure/closet/toolcloset,/obj/item/clothing/gloves/color/yellow,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gz" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gA" = (/obj/machinery/computer/monitor,/obj/structure/cable,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -349,7 +349,7 @@ "gK" = (/obj/structure/table/reinforced,/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gL" = (/obj/structure/cable,/obj/machinery/door/poddoor/preopen{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaylab"; name = "Acid-Proof containment chamber blast door"; unacidable = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gM" = (/obj/structure/disposalpipe/segment{desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; name = "Acid-Proof disposal pipe"; unacidable = 1},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"gN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/item/stack/rods,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"gN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/stack/rods,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gO" = (/obj/machinery/button/door{id = "Awaybiohazard"; name = "Biohazard Shutter Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "201"},/obj/machinery/light/small{dir = 8},/obj/machinery/computer/security{desc = "Used to access the various cameras on the outpost."; network = list("MO19R","MO19")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gP" = (/obj/structure/stool/bed/chair/office/dark,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "gQ" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -365,9 +365,9 @@ "ha" = (/obj/structure/disposaloutlet{desc = "An outlet for the pneumatic disposal system. This one has been applied with an acid-proof coating."; dir = 1; name = "Acid-Proof disposal outlet"; unacidable = 1},/obj/structure/disposalpipe/trunk{desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; dir = 1; name = "Acid-Proof disposal pipe"; unacidable = 1},/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hb" = (/obj/machinery/light{active_power_usage = 0; dir = 2; icon_state = "tube-broken"; status = 2},/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/machinery/camera{c_tag = "Xenobiology Containment South"; dir = 1; network = list("MO19X")},/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hc" = (/obj/machinery/sparker{desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating."; id = "awayxenobio"; name = "Acid-Proof mounted igniter"; pixel_x = 0; pixel_y = -25; unacidable = 1},/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/alien/resin/wall,/turf/simulated/floor/engine,/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"he" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hf" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"he" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hf" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hg" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hh" = (/obj/structure/table,/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hi" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -377,11 +377,11 @@ "hm" = (/obj/machinery/vending/medical{req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hn" = (/obj/structure/closet/crate/bin,/obj/item/clothing/gloves/color/latex,/obj/item/trash/chips,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{active_power_usage = 0; dir = 1; icon_state = "bulb-broken"; status = 2},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ho" = (/obj/structure/table,/obj/item/weapon/storage/box/gloves{pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hq" = (/obj/structure/closet/secure_closet{icon_state = "rdsecure1"; locked = 1; name = "research director's locker"; req_access_txt = "201"},/obj/item/weapon/storage/backpack/satchel_tox,/obj/item/clothing/gloves/color/latex,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hr" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hs" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light/small{active_power_usage = 0; dir = 1; icon_state = "bulb-broken"; status = 2},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/item/weapon/paper{info = "Personal Log for Research Director Gerald Rosswell

Entry One - 17/05/2554:
You know, I can't believe I took this position so suddenly. I saw that corporate needed a research director for one of it's outposts and thought it would be a cakewalk, there isn't going to be a lot of research to be done on a tiny outpost. Mainly just running scans on the gas giant we are orbiting or some basic RnD. However, they conveniently forgot to tell me that me and my science staff would have to pull double duty as medical staff and that there is no one higher up on the chain of command here, so I get to pull triple duty as acting captain as well! This shit is probably allowed in some 3 point fine print buried underneath the literally thousands of pages of contracts. Well, at least the research will be easy work.

Entry Two - 25/05/2554:
Well, we all expected it at the outpost, CentComm has decided to completely change what research we are doing. They've decided that we should be research the species known as 'xenomporphs'. They announced this change 4 days ago and along with it, sadly, the termination of our current science staff barring me. Not to mention the constant noise made by the construction detail they sent to staple on an xenobiology lab ensuring no one has been able to sleep decently ever since they announced the shift. To make matters worse our current security guard actually died of a heart attack today. Just goes to show that 75 year old men shouldn't be security guards. Still can't believe that they decided to do this major change less than a month after the outpost was established.

Entry Three - 27/05/2554:
The new security guard arrived today. Apparently transferred here from the research station that also is orbiting the gas giant. He seems to be rather angry about his transfer. Considering the rumors I've heard about the research station he's probably caught off guard by the fact that Steve hasn't tried to force an IED down his throat.

Entry Four - 06/06/2554:
My requests for additional security and containment measures for the 'xenomorph' has been denied. Does Central Command not notice how dangerous these creatures are? The only thing keeping them in is a force field, a minor problem with the power grid and the entire hive is loose. What would stop them then, the lone security guard with a dinky little taser? Kenneth can barely handle a short-tempered engineer. We are under equipped and under staffed, we are inevitably going to be destroyed unless we get the equipment and staff we need.

Entry Five - 10/06/2554:
Cunningham got a good look at the xenomorph in containment. He was frightened for the rest of the day, rather amusing if it wasn't for the fact that we are all trapped on this scrap heap with naught but a force field keeping those xenomorphs in.

Entry Six - 17/06/2554:
The reactions from the specimens today has shown that they possess strange mental properties. Mark hypothesizes that they possibly have a sort of hive mind, while nothing is certain this would explain how xenomorphs seem to have vastly increased intellect when a 'queen' is present. Of course, to test this hypothesis would require many complicated procedures which we will not be able to undertake. But we do not know the full extend of the xenomorph mind, it may or may not be able to find a way to circumvent our containment system. I will resend my request for additional security measures along with this new found information."; name = "Personal Log - Gerald Rosswell"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ht" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hq" = (/obj/structure/closet/secure_closet{icon_state = "rdsecure1"; locked = 1; name = "research director's locker"; req_access_txt = "201"},/obj/item/weapon/storage/backpack/satchel_tox,/obj/item/clothing/gloves/color/latex,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hr" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hs" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light/small{active_power_usage = 0; dir = 1; icon_state = "bulb-broken"; status = 2},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/item/weapon/paper{info = "Personal Log for Research Director Gerald Rosswell

Entry One - 17/05/2554:
You know, I can't believe I took this position so suddenly. I saw that corporate needed a research director for one of it's outposts and thought it would be a cakewalk, there isn't going to be a lot of research to be done on a tiny outpost. Mainly just running scans on the gas giant we are orbiting or some basic RnD. However, they conveniently forgot to tell me that me and my science staff would have to pull double duty as medical staff and that there is no one higher up on the chain of command here, so I get to pull triple duty as acting captain as well! This shit is probably allowed in some 3 point fine print buried underneath the literally thousands of pages of contracts. Well, at least the research will be easy work.

Entry Two - 25/05/2554:
Well, we all expected it at the outpost, CentComm has decided to completely change what research we are doing. They've decided that we should be research the species known as 'xenomporphs'. They announced this change 4 days ago and along with it, sadly, the termination of our current science staff barring me. Not to mention the constant noise made by the construction detail they sent to staple on an xenobiology lab ensuring no one has been able to sleep decently ever since they announced the shift. To make matters worse our current security guard actually died of a heart attack today. Just goes to show that 75 year old men shouldn't be security guards. Still can't believe that they decided to do this major change less than a month after the outpost was established.

Entry Three - 27/05/2554:
The new security guard arrived today. Apparently transferred here from the research station that also is orbiting the gas giant. He seems to be rather angry about his transfer. Considering the rumors I've heard about the research station he's probably caught off guard by the fact that Steve hasn't tried to force an IED down his throat.

Entry Four - 06/06/2554:
My requests for additional security and containment measures for the 'xenomorph' has been denied. Does Central Command not notice how dangerous these creatures are? The only thing keeping them in is a force field, a minor problem with the power grid and the entire hive is loose. What would stop them then, the lone security guard with a dinky little taser? Kenneth can barely handle a short-tempered engineer. We are under equipped and under staffed, we are inevitably going to be destroyed unless we get the equipment and staff we need.

Entry Five - 10/06/2554:
Cunningham got a good look at the xenomorph in containment. He was frightened for the rest of the day, rather amusing if it wasn't for the fact that we are all trapped on this scrap heap with naught but a force field keeping those xenomorphs in.

Entry Six - 17/06/2554:
The reactions from the specimens today has shown that they possess strange mental properties. Mark hypothesizes that they possibly have a sort of hive mind, while nothing is certain this would explain how xenomorphs seem to have vastly increased intellect when a 'queen' is present. Of course, to test this hypothesis would require many complicated procedures which we will not be able to undertake. But we do not know the full extend of the xenomorph mind, it may or may not be able to find a way to circumvent our containment system. I will resend my request for additional security measures along with this new found information."; name = "Personal Log - Gerald Rosswell"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ht" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hu" = (/obj/structure/grille,/obj/machinery/door/poddoor{id = "AwayRD"; layer = 2.9; name = "privacy shutter"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hv" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hw" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -389,18 +389,18 @@ "hy" = (/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hz" = (/obj/effect/decal/cleanable/robot_debris,/obj/effect/decal/cleanable/oil,/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer{pixel_x = 6; pixel_y = -5},/obj/item/device/assembly/prox_sensor{pixel_x = -5; pixel_y = -2},/obj/item/robot_parts/l_arm,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hA" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire{pixel_x = 0; pixel_y = 0},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hB" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hC" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{density = 0; emagged = 1; icon_state = "door_open"; locked = 1; name = "Research Director's Office"; opacity = 0; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hB" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hC" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{density = 0; emagged = 1; icon_state = "door_open"; locked = 1; name = "Research Director's Office"; opacity = 0; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hE" = (/obj/structure/noticeboard{dir = 1; pixel_y = -32},/obj/machinery/light/small{active_power_usage = 0; dir = 2; icon_state = "bulb-broken"; status = 2},/obj/item/weapon/paper{info = "

In The Event of Xenobiology Breach: Evacuate staff, Lock down Xenobiology, Notify on-site superiors and/or Central Command immediatly.

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 Date: Fri, 23 Oct 2015 14:19:17 -0500 Subject: [PATCH 054/418] Adds HUD items - Adds Diagnostic HUD to Sci - Adds NV Diagnostic HUD as well --- code/modules/clothing/glasses/hud.dm | 13 +++++++++++-- code/modules/research/designs.dm | 18 ++++++++++++++++++ icons/mob/eyes.dmi | Bin 9030 -> 9731 bytes icons/obj/clothing/glasses.dmi | Bin 9232 -> 9775 bytes 4 files changed, 29 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index 50779dd1141..5105fd84850 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -42,10 +42,19 @@ /obj/item/clothing/glasses/hud/diagnostic name = "Diagnostic HUD" - desc = "A heads-up display that scans silicons" - icon_state = "healthhud" + desc = "A heads-up display capable of analyzing the integrity and status of robotics and exosuits." + icon_state = "diagnostichud" hud_type = DATA_HUD_DIAGNOSTIC +/obj/item/clothing/glasses/hud/diagnostic/night + name = "Night Vision Diagnostic HUD" + desc = "A robotics diagnostic HUD fitted with a light amplifier." + icon_state = "diagnostichudnight" + item_state = "glasses" + darkness_view = 8 + invis_view = SEE_INVISIBLE_MINIMUM + + /obj/item/clothing/glasses/hud/security name = "Security HUD" desc = "A heads-up display that scans the humans in view and provides accurate data about their ID status and security records." diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 91dc1ccf37d..4eed38fb5a7 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -281,6 +281,24 @@ other types of metals and chemistry for reagents). build_path = /obj/item/clothing/glasses/hud/security/night category = list("Equipment") +datum/design/diagnostic_hud + name = "Diagnostic HUD" + desc = "A HUD used to analyze and determine faults within robotic machinery." + id = "dianostic_hud" + req_tech = list("magnets" = 3, "engineering" = 3, "powerstorage" = 2) + build_type = PROTOLATHE + materials = list("$metal" = 50, "$glass" = 50) + build_path = /obj/item/clothing/glasses/hud/diagnostic + +datum/design/diagnostic_hud_night + name = "Night Vision Diagnostic HUD" + desc = "Upgraded version of the diagnostic HUD designed to function during a power failure." + id = "dianostic_hud_night" + req_tech = list("magnets" = 5, "engineering" = 4, "powerstorage" = 4) + build_type = PROTOLATHE + materials = list("$metal" = 200, "$glass" = 200, "$uranium" = 1000, "$plasma" = 300) + build_path = /obj/item/clothing/glasses/hud/diagnostic/night + ///////////////////////////////////////// //////////////////Test/////////////////// ///////////////////////////////////////// diff --git a/icons/mob/eyes.dmi b/icons/mob/eyes.dmi index af3b20ed3037ab7f0d61cac54bef9f0b48819fd9..6ac5175fc07dc675412caafcfd31ff378d49b1f9 100644 GIT binary patch literal 9731 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 literal 9030 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 B=iLAR diff --git a/icons/obj/clothing/glasses.dmi b/icons/obj/clothing/glasses.dmi index 2882987689dbeda4b29b1f372a397ec165d34639..20a1cacfb1dbeb91febc30d50bad72e21800b6dd 100644 GIT binary patch literal 9775 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 Date: Fri, 23 Oct 2015 16:26:49 -0400 Subject: [PATCH 055/418] Chronosuit uses next_move instead of next_click face_atom doesn't do anything if notransform is nonzero Added Timeline Eradication Agent outfit --- code/_onclick/click.dm | 2 +- code/modules/clothing/outfits/standard.dm | 22 ++++++--- .../modules/clothing/spacesuits/chronosuit.dm | 49 ++++++++++--------- 3 files changed, 42 insertions(+), 31 deletions(-) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index ceed0282a97..abb72a37627 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -291,7 +291,7 @@ // Simple helper to face what you clicked on, in case it should be needed in more than one place /mob/proc/face_atom(atom/A) - if( buckled || stat != CONSCIOUS || !A || !x || !y || !A.x || !A.y ) return + if( buckled || notransform || stat != CONSCIOUS || !A || !x || !y || !A.x || !A.y ) return var/dx = A.x - x var/dy = A.y - y if(!dx && !dy) // Wall items are graphically shifted but on the floor diff --git a/code/modules/clothing/outfits/standard.dm b/code/modules/clothing/outfits/standard.dm index 623edd0775d..cb76ec05eb6 100644 --- a/code/modules/clothing/outfits/standard.dm +++ b/code/modules/clothing/outfits/standard.dm @@ -12,13 +12,13 @@ var/obj/item/weapon/tank/jetpack/J = H.back J.toggle() J.Topic(null, list("stat" = 1)) - + /datum/outfit/tournament /datum/outfit/tournament/ name = "tournament standard red" - + uniform = /obj/item/clothing/under/color/red shoes = /obj/item/clothing/shoes/sneakers/black suit = /obj/item/clothing/suit/armor/vest @@ -30,7 +30,7 @@ /datum/outfit/tournament/red name = "tournament standard green" - + uniform = /obj/item/clothing/under/color/green /datum/outfit/tournament/gangster @@ -156,7 +156,7 @@ /datum/outfit/assassin/post_equip(mob/living/carbon/human/H) var/obj/item/clothing/under/U = H.w_uniform U.attachTie(new /obj/item/clothing/tie/waistcoat(H)) - + //Could use a type var/obj/item/weapon/storage/secure/briefcase/sec_briefcase = H.l_hand for(var/obj/item/briefcase_item in sec_briefcase) @@ -172,7 +172,7 @@ pda.owner = H.real_name pda.ownjob = "Reaper" pda.update_label() - + var/obj/item/weapon/card/id/syndicate/W = H.wear_id W.access = get_all_accesses() W.assignment = "Reaper" @@ -340,7 +340,7 @@ var/obj/item/device/radio/R = H.ears R.set_frequency(CENTCOM_FREQ) R.freqlock = 1 - + var/obj/item/weapon/implant/loyalty/L = new/obj/item/weapon/implant/loyalty(H)//Here you go Deuryn L.imp_in = H L.implanted = 1 @@ -359,7 +359,15 @@ name = "Death Commando Officer" head = /obj/item/clothing/head/helmet/space/beret +/datum/outfit/chrono_agent + name = "Timeline Eradication Agent" + uniform = /obj/item/clothing/under/color/white + suit = /obj/item/clothing/suit/space/chronos + back = /obj/item/weapon/chrono_eraser + head = /obj/item/clothing/head/helmet/space/chronos + mask = /obj/item/clothing/mask/breath + suit_store = /obj/item/weapon/tank/internals/oxygen + - \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/chronosuit.dm b/code/modules/clothing/spacesuits/chronosuit.dm index 6209c4b4006..dc292715fbc 100644 --- a/code/modules/clothing/spacesuits/chronosuit.dm +++ b/code/modules/clothing/spacesuits/chronosuit.dm @@ -72,25 +72,28 @@ user << "E:FATAL:RAM_READ_FAIL\nE:FATAL:STACK_EMPTY\nE:FATAL:READ_NULL_POINT\nE:FATAL:PWR_BUS_OVERLOAD" deactivate(1, 1) -/obj/item/clothing/suit/space/chronos/proc/finish_chronowalk(mob/living/carbon/human/user) - user.next_click = world.time - 1 - user.alpha = 255 - user.color = "#ffffff" - user.animate_movement = FORWARD_STEPS - user.notransform = 0 - user.anchored = 0 - teleporting = 0 - if(phase_underlay && !qdeleted(phase_underlay)) - qdel(phase_underlay) - phase_underlay = null - if(camera) - camera.remove_target_ui() - camera.loc = user - if(teleport_now.button) - teleport_now.button.UpdateIcon() +/obj/item/clothing/suit/space/chronos/proc/finish_chronowalk() + var/mob/living/carbon/human/user = src.loc + if(istype(user)) + user.next_move = 1 + user.alpha = 255 + user.color = "#ffffff" + user.animate_movement = FORWARD_STEPS + user.notransform = 0 + user.anchored = 0 + teleporting = 0 + if(phase_underlay && !qdeleted(phase_underlay)) + qdel(phase_underlay) + phase_underlay = null + if(camera) + camera.remove_target_ui() + camera.loc = user + if(teleport_now.button) + teleport_now.button.UpdateIcon() -/obj/item/clothing/suit/space/chronos/proc/chronowalk(mob/living/carbon/human/user, atom/location) - if(!teleporting && user && location && user.loc && location.loc && user.wear_suit == src && user.stat == CONSCIOUS) +/obj/item/clothing/suit/space/chronos/proc/chronowalk(atom/location) + var/mob/living/carbon/human/user = src.loc + if(activated && !teleporting && user && istype(user) && location && user.loc && location.loc && user.wear_suit == src && user.stat == CONSCIOUS) teleporting = 1 var/turf/from_turf = get_turf(user) var/turf/to_turf = get_turf(location) @@ -129,7 +132,7 @@ phase_underlay.pixel_y = user.pixel_y user.animate_movement = NO_STEPS - user.next_click = world.time + (8 + phase_in_ds) + user.changeNext_move(8 + phase_in_ds) user.notransform = 1 user.anchored = 1 @@ -150,7 +153,7 @@ sleep(3) if(teleporting && user && !qdeleted(user)) user.loc = to_turf //this will cover if bad things happen before the teleport, yes it is redundant - finish_chronowalk(user) + finish_chronowalk() /obj/item/clothing/suit/space/chronos/process() if(activated) @@ -160,7 +163,7 @@ if(!teleporting) if(camera.loc != user && ((camera.x != user.x) || (camera.y != user.y) || (camera.z != user.z))) if(camera.phase_time <= world.time) - chronowalk(user, camera) + chronowalk(camera) else camera.remove_target_ui() else @@ -224,8 +227,8 @@ cooldown = world.time + cooldowntime * 1.5 activated = 0 activating = 0 + finish_chronowalk() if(teleporting && force) - finish_chronowalk(user) user.electrocute_act(35, src, safety = 1) /obj/effect/chronos_cam @@ -319,7 +322,7 @@ /datum/action/item_action/hands_free/chrono_teleport/Activate() if(IsAvailable()) if(chronosuit.camera) - chronosuit.chronowalk(owner, chronosuit.camera) + chronosuit.chronowalk(chronosuit.camera) /datum/action/item_action/hands_free/chrono_teleport/CheckRemoval() return (..() && !(chronosuit && chronosuit.activated && chronosuit.camera)) \ No newline at end of file From f327514d3d88459c40357052daaac62307be4c84 Mon Sep 17 00:00:00 2001 From: blobbernaut Date: Fri, 23 Oct 2015 16:50:37 -0400 Subject: [PATCH 056/418] Fixes cloaks. Cloaks actually provide the armor that they're supposed to now, hooray! --- code/modules/clothing/cloaks.dm | 2 ++ code/modules/mob/living/carbon/human/human_defense.dm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/cloaks.dm b/code/modules/clothing/cloaks.dm index 36459139176..2b3da1fc5a5 100644 --- a/code/modules/clothing/cloaks.dm +++ b/code/modules/clothing/cloaks.dm @@ -7,6 +7,8 @@ icon_state = "qmcloak" w_class = 2 slot_flags = SLOT_BACK + body_parts_covered = CHEST|GROIN|LEGS|ARMS + /obj/item/clothing/cloak/suicide_act(mob/user) user.visible_message("[user] is strangling themself with [src]! It looks like they're trying to commit suicide.") diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index f05aad65d01..30ddfa5ae89 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -27,7 +27,7 @@ emp_act /mob/living/carbon/human/proc/checkarmor(obj/item/organ/limb/def_zone, type) if(!type) return 0 var/protection = 0 - var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform) + var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back) for(var/bp in body_parts) if(!bp) continue if(bp && istype(bp ,/obj/item/clothing)) From 8ca04f834e3db6bb3ade886b4ae3bdfd3f4ef79c Mon Sep 17 00:00:00 2001 From: Robustin Date: Fri, 23 Oct 2015 17:09:50 -0400 Subject: [PATCH 057/418] Update hydroitemdefines.dm --- code/modules/hydroponics/hydroitemdefines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydroitemdefines.dm b/code/modules/hydroponics/hydroitemdefines.dm index 6e5a45843d4..0c51fdfe86b 100644 --- a/code/modules/hydroponics/hydroitemdefines.dm +++ b/code/modules/hydroponics/hydroitemdefines.dm @@ -40,7 +40,7 @@ desc = "It's some pest eliminator spray! Do not inhale!" icon = 'icons/obj/hydroponics/equipment.dmi' name = "pest spray" - icon_state = "pestspray" + icon_state = "weedspray" item_state = "spray" volume = 100 flags = OPENCONTAINER From 0664761bab374b09d0870ac6dba3245eae3b0c1c Mon Sep 17 00:00:00 2001 From: Robustin Date: Fri, 23 Oct 2015 17:28:42 -0400 Subject: [PATCH 058/418] Update hydroitemdefines.dm --- code/modules/hydroponics/hydroitemdefines.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/hydroitemdefines.dm b/code/modules/hydroponics/hydroitemdefines.dm index 0c51fdfe86b..be5a259b3c4 100644 --- a/code/modules/hydroponics/hydroitemdefines.dm +++ b/code/modules/hydroponics/hydroitemdefines.dm @@ -40,8 +40,8 @@ desc = "It's some pest eliminator spray! Do not inhale!" icon = 'icons/obj/hydroponics/equipment.dmi' name = "pest spray" - icon_state = "weedspray" - item_state = "spray" + icon_state = "pestspray" + item_state = "plantbgone volume = 100 flags = OPENCONTAINER slot_flags = SLOT_BELT From 2f48487df38cac97c27de75ae15cd72f9de6485b Mon Sep 17 00:00:00 2001 From: Robustin Date: Fri, 23 Oct 2015 17:29:51 -0400 Subject: [PATCH 059/418] Update hydroitemdefines.dm --- code/modules/hydroponics/hydroitemdefines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydroitemdefines.dm b/code/modules/hydroponics/hydroitemdefines.dm index be5a259b3c4..8db628f09e2 100644 --- a/code/modules/hydroponics/hydroitemdefines.dm +++ b/code/modules/hydroponics/hydroitemdefines.dm @@ -41,7 +41,7 @@ icon = 'icons/obj/hydroponics/equipment.dmi' name = "pest spray" icon_state = "pestspray" - item_state = "plantbgone + item_state = "plantbgone" volume = 100 flags = OPENCONTAINER slot_flags = SLOT_BELT From 9c482231fb1eae766d9bb4c5bcca7e927a72f519 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Fri, 23 Oct 2015 18:40:44 -0500 Subject: [PATCH 060/418] Blobfix --- code/game/gamemodes/blob/blobs/blob_mobs.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/gamemodes/blob/blobs/blob_mobs.dm b/code/game/gamemodes/blob/blobs/blob_mobs.dm index 7979875e313..13680b6a6c5 100644 --- a/code/game/gamemodes/blob/blobs/blob_mobs.dm +++ b/code/game/gamemodes/blob/blobs/blob_mobs.dm @@ -64,6 +64,8 @@ if(H.stat == DEAD) Zombify(H) break + if(factory && z != factory.z) + death() ..() /mob/living/simple_animal/hostile/blob/blobspore/proc/Zombify(mob/living/carbon/human/H) From 438babc1977567d896b8be8db3b87a768ae7d85b Mon Sep 17 00:00:00 2001 From: GunHog Date: Fri, 23 Oct 2015 18:47:58 -0500 Subject: [PATCH 061/418] HUD fixes - Data HUDs that apply only to humans (medical, security) are now prepared only for humans, preventing errors. - The RD's hardsuit helmet now deactivates its own HUD if a diagnostic HUD item is worn. - HUDs on newly spawned entities now update properly. --- code/datums/hud.dm | 8 +++---- code/game/data_huds.dm | 24 +++++++++---------- code/game/mecha/mecha.dm | 6 ++++- code/game/mecha/medical/odysseus.dm | 4 ++-- code/modules/clothing/spacesuits/hardsuit.dm | 22 ++++++++++------- code/modules/mob/living/carbon/human/human.dm | 2 +- .../mob/living/carbon/monkey/monkey.dm | 2 +- .../modules/mob/living/silicon/robot/robot.dm | 2 ++ code/modules/mob/living/silicon/silicon.dm | 4 +++- 9 files changed, 44 insertions(+), 30 deletions(-) diff --git a/code/datums/hud.dm b/code/datums/hud.dm index c507fe27676..904b3cf828e 100644 --- a/code/datums/hud.dm +++ b/code/datums/hud.dm @@ -2,10 +2,10 @@ //GLOBAL HUD LIST var/datum/atom_hud/huds = list( \ - DATA_HUD_SECURITY_BASIC = new/datum/atom_hud/data/security/basic(), \ - DATA_HUD_SECURITY_ADVANCED = new/datum/atom_hud/data/security/advanced(), \ - DATA_HUD_MEDICAL_BASIC = new/datum/atom_hud/data/medical/basic(), \ - DATA_HUD_MEDICAL_ADVANCED = new/datum/atom_hud/data/medical/advanced(), \ + DATA_HUD_SECURITY_BASIC = new/datum/atom_hud/data/human/security/basic(), \ + DATA_HUD_SECURITY_ADVANCED = new/datum/atom_hud/data/human/security/advanced(), \ + DATA_HUD_MEDICAL_BASIC = new/datum/atom_hud/data/human/medical/basic(), \ + DATA_HUD_MEDICAL_ADVANCED = new/datum/atom_hud/data/human/medical/advanced(), \ DATA_HUD_DIAGNOSTIC = new/datum/atom_hud/data/diagnostic(), \ ANTAG_HUD_CULT = new/datum/atom_hud/antag(), \ ANTAG_HUD_REV = new/datum/atom_hud/antag(), \ diff --git a/code/game/data_huds.dm b/code/game/data_huds.dm index 665063fe61d..a961c5df067 100644 --- a/code/game/data_huds.dm +++ b/code/game/data_huds.dm @@ -7,41 +7,41 @@ /* DATA HUD DATUMS */ -/atom/proc/add_to_all_data_huds() - for(var/datum/atom_hud/data/hud in huds) hud.add_to_hud(src) +/atom/proc/add_to_all_human_data_huds() + for(var/datum/atom_hud/data/human/hud in huds) hud.add_to_hud(src) /atom/proc/remove_from_all_data_huds() for(var/datum/atom_hud/data/hud in huds) hud.remove_from_hud(src) /datum/atom_hud/data -/datum/atom_hud/data/medical +/datum/atom_hud/data/human/medical hud_icons = list(HEALTH_HUD, STATUS_HUD) -/datum/atom_hud/data/medical/basic +/datum/atom_hud/data/human/medical/basic -/datum/atom_hud/data/medical/basic/proc/check_sensors(mob/living/carbon/human/H) +/datum/atom_hud/data/human/medical/basic/proc/check_sensors(mob/living/carbon/human/H) if(!istype(H)) return 0 var/obj/item/clothing/under/U = H.w_uniform if(!istype(U)) return 0 if(U.sensor_mode <= 2) return 0 return 1 -/datum/atom_hud/data/medical/basic/add_to_single_hud(mob/M, mob/living/carbon/H) +/datum/atom_hud/data/human/medical/basic/add_to_single_hud(mob/M, mob/living/carbon/H) if(check_sensors(H)) ..() -/datum/atom_hud/data/medical/basic/proc/update_suit_sensors(mob/living/carbon/H) +/datum/atom_hud/data/human/medical/basic/proc/update_suit_sensors(mob/living/carbon/H) check_sensors(H) ? add_to_hud(H) : remove_from_hud(H) -/datum/atom_hud/data/medical/advanced +/datum/atom_hud/data/human/medical/advanced -/datum/atom_hud/data/security +/datum/atom_hud/data/human/security -/datum/atom_hud/data/security/basic +/datum/atom_hud/data/human/security/basic hud_icons = list(ID_HUD) -/datum/atom_hud/data/security/advanced +/datum/atom_hud/data/human/security/advanced hud_icons = list(ID_HUD, IMPTRACK_HUD, IMPLOYAL_HUD, IMPCHEM_HUD, WANTED_HUD) /datum/atom_hud/data/diagnostic @@ -93,7 +93,7 @@ //called when a human changes suit sensors /mob/living/carbon/proc/update_suit_sensors() - var/datum/atom_hud/data/medical/basic/B = huds[DATA_HUD_MEDICAL_BASIC] + var/datum/atom_hud/data/human/medical/basic/B = huds[DATA_HUD_MEDICAL_BASIC] B.update_suit_sensors(src) var/turf/T = get_turf(src) diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index d793cb10316..770e05f8a19 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -92,9 +92,13 @@ SSobj.processing |= src log_message("[src.name] created.") mechas_list += src //global mech list + prepare_huds() var/datum/atom_hud/data/diagnostic/diag_hud = huds[DATA_HUD_DIAGNOSTIC] diag_hud.add_to_hud(src) - prepare_huds() + diag_hud_set_mechhealth() + diag_hud_set_mechcell() + diag_hud_set_mechstat() + return /obj/mecha/Destroy() diff --git a/code/game/mecha/medical/odysseus.dm b/code/game/mecha/medical/odysseus.dm index 6e72db4a2f8..efb5b3d31b4 100644 --- a/code/game/mecha/medical/odysseus.dm +++ b/code/game/mecha/medical/odysseus.dm @@ -16,7 +16,7 @@ if(H.glasses && istype(H.glasses, /obj/item/clothing/glasses/hud)) occupant_message("Your [H.glasses] prevent you from using the built-in medical hud.") else - var/datum/atom_hud/data/medical/advanced/A = huds[DATA_HUD_MEDICAL_ADVANCED] + var/datum/atom_hud/data/human/medical/advanced/A = huds[DATA_HUD_MEDICAL_ADVANCED] A.add_hud_to(H) builtin_hud_user = 1 return 1 @@ -26,7 +26,7 @@ /obj/mecha/medical/odysseus/go_out() if(ishuman(occupant) && builtin_hud_user) var/mob/living/carbon/human/H = occupant - var/datum/atom_hud/data/medical/advanced/A = huds[DATA_HUD_MEDICAL_ADVANCED] + var/datum/atom_hud/data/human/medical/advanced/A = huds[DATA_HUD_MEDICAL_ADVANCED] A.remove_hud_from(H) ..() return diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index e2f5b8e9048..1ab2df82ddf 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -318,20 +318,26 @@ icon_state = "hardsuit0-rd" item_color = "rd" unacidable = 1 + var/onboard_hud_enabled = 0 //stops conflicts with another diag HUD max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT armor = list(melee = 10, bullet = 5, laser = 10, energy = 5, bomb = 100, bio = 100, rad = 60) -/obj/item/clothing/head/helmet/space/hardsuit/rd/equipped(mob/user, slot) - user.scanner.Grant(user) - var/datum/atom_hud/DHUD = huds[DATA_HUD_DIAGNOSTIC] - DHUD.add_hud_to(user) +/obj/item/clothing/head/helmet/space/hardsuit/rd/equipped(mob/living/carbon/human/user, slot) ..(user, slot) + user.scanner.Grant(user) + if(user.glasses && istype(user.glasses, /obj/item/clothing/glasses/hud/diagnostic)) + user << ("Your [user.glasses] prevents you using [src]'s diagnostic visor HUD.") + else + onboard_hud_enabled = 1 + var/datum/atom_hud/DHUD = huds[DATA_HUD_DIAGNOSTIC] + DHUD.add_hud_to(user) -/obj/item/clothing/head/helmet/space/hardsuit/rd/dropped(mob/user) - user.scanner.devices -= 1 - var/datum/atom_hud/DHUD = huds[DATA_HUD_DIAGNOSTIC] - DHUD.remove_hud_from(user) +/obj/item/clothing/head/helmet/space/hardsuit/rd/dropped(mob/living/carbon/human/user) ..(user) + user.scanner.devices -= 1 + if(onboard_hud_enabled && !(user.glasses && istype(user.glasses, /obj/item/clothing/glasses/hud/diagnostic))) + var/datum/atom_hud/DHUD = huds[DATA_HUD_DIAGNOSTIC] + DHUD.remove_hud_from(user) /obj/item/clothing/suit/space/hardsuit/rd icon_state = "hardsuit-rd" diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index fdbe76af769..6705065bc53 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -48,7 +48,7 @@ sec_hud_set_implants() sec_hud_set_security_status() //...and display them. - add_to_all_data_huds() + add_to_all_human_data_huds() /mob/living/carbon/human/Destroy() for(var/atom/movable/organelle in organs) diff --git a/code/modules/mob/living/carbon/monkey/monkey.dm b/code/modules/mob/living/carbon/monkey/monkey.dm index 844ebd793ae..9d2dedb2e08 100644 --- a/code/modules/mob/living/carbon/monkey/monkey.dm +++ b/code/modules/mob/living/carbon/monkey/monkey.dm @@ -39,7 +39,7 @@ //Prepare our med HUD... ..() //...and display it. - for(var/datum/atom_hud/data/medical/hud in huds) + for(var/datum/atom_hud/data/human/medical/hud in huds) hud.add_to_hud(src) /mob/living/carbon/monkey/movement_delay() diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index c5cdaedc234..23f13d52701 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -68,6 +68,7 @@ var/lamp_recharging = 0 //Flag for if the lamp is on cooldown after being forcibly disabled. var/updating = 0 //portable camera camerachunk update + hud_possible = list(ANTAG_HUD, DIAG_STAT_HUD, DIAG_HUD, DIAG_BATT_HUD) /mob/living/silicon/robot/New(loc) spark_system = new /datum/effect/effect/system/spark_spread() @@ -126,6 +127,7 @@ aicamera = new/obj/item/device/camera/siliconcam/robot_camera(src) toner = 40 scanner.Grant(src) + diag_hud_set_borgcell() //If there's an MMI in the robot, have it ejected when the mob goes away. --NEO /mob/living/silicon/robot/Destroy() diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index dc99501935a..ec32fbe6a40 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -32,9 +32,11 @@ var/law_change_counter = 0 /mob/living/silicon/New() + ..() var/datum/atom_hud/data/diagnostic/diag_hud = huds[DATA_HUD_DIAGNOSTIC] diag_hud.add_to_hud(src) - ..() + diag_hud_set_status() + diag_hud_set_health() /mob/living/silicon/Destroy() radio = null From d524b4acdeaa574f63503c8212184c5e7e94de84 Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Sat, 24 Oct 2015 00:53:36 +0100 Subject: [PATCH 062/418] Adds a special camera that can see ghosts (if the ghost is orbiting something they are skipped, this is to prevent it being used for power/meta gaming) the Chaplain spawns with one and they can be tablecrafted using a camera and holywater --- code/game/jobs/job/civilian_chaplain.dm | 2 + code/modules/crafting/recipes.dm | 12 ++++- code/modules/paperwork/photography.dm | 67 +++++++++++++++++++------ 3 files changed, 66 insertions(+), 15 deletions(-) diff --git a/code/game/jobs/job/civilian_chaplain.dm b/code/game/jobs/job/civilian_chaplain.dm index 261193a8563..8821d603f0c 100644 --- a/code/game/jobs/job/civilian_chaplain.dm +++ b/code/game/jobs/job/civilian_chaplain.dm @@ -23,6 +23,8 @@ Chaplain belt = /obj/item/device/pda/chaplain uniform = /obj/item/clothing/under/rank/chaplain + backpack_contents = list(/obj/item/device/camera/spooky = 1) + /datum/outfit/job/chaplain/post_equip(mob/living/carbon/human/H) ..() diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 2721f4f8ed3..c6833f2fa99 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -229,4 +229,14 @@ /obj/item/stack/packageWrap = 5,) tools = list(/obj/item/weapon/screwdriver) time = 200 - category = CAT_WEAPON \ No newline at end of file + category = CAT_WEAPON + + +/datum/table_recipe/spooky_camera + name = "Camera Obscura" + result = /obj/item/device/camera/spooky + time = 15 + reqs = list(/obj/item/device/camera = 1, + /datum/reagent/water/holywater = 10) + parts = list(/obj/item/device/camera = 1) + category = CAT_MISC diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm index 835b33b40fb..d5c4ea284ce 100644 --- a/code/modules/paperwork/photography.dm +++ b/code/modules/paperwork/photography.dm @@ -114,6 +114,22 @@ var/on = 1 var/blueprints = 0 //are blueprints visible in the current photo being created? var/list/aipictures = list() //Allows for storage of pictures taken by AI, in a similar manner the datacore stores info. Keeping this here allows us to share some procs w/ regualar camera + var/see_ghosts = 0 //for the spoop of it + + +/obj/item/device/camera/CheckParts() + var/obj/item/device/camera/C = locate(/obj/item/device/camera) in contents + if(C) + pictures_max = C.pictures_max + pictures_left = C.pictures_left + visible_message("[C] has been imbued with godlike power!") + qdel(C) + + +/obj/item/device/camera/spooky + name = "camera obscura" + desc = "A polaroid camera, some say it can see ghosts!" + see_ghosts = 1 /obj/item/device/camera/siliconcam //camera AI can take pictures with @@ -163,7 +179,14 @@ for(var/turf/T in turfs) atoms.Add(T) for(var/atom/movable/A in T) - if(A.invisibility) continue + if(A.invisibility) + if(see_ghosts) + if(istype(A, /mob/dead/observer)) + var/mob/dead/observer/O = A + if(O.orbiting) //so you dont see ghosts following people like antags, etc. + continue + else + continue atoms.Add(A) var/list/sorted = list() @@ -202,21 +225,37 @@ /obj/item/device/camera/proc/camera_get_mobs(turf/the_turf) var/mob_detail - for(var/mob/living/A in the_turf) - if(A.invisibility) continue - var/holding = null - if(A.l_hand || A.r_hand) - if(A.l_hand) holding = "They are holding \a [A.l_hand]" - if(A.r_hand) - if(holding) - holding += " and \a [A.r_hand]" + for(var/mob/M in the_turf) + if(M.invisibility) + if(see_ghosts && istype(M,/mob/dead/observer)) + var/mob/dead/observer/O = M + if(O.orbiting) + continue + if(!mob_detail) + mob_detail = "You can see a g-g-g-g-ghooooost! " else - holding = "They are holding \a [A.r_hand]" + mob_detail += "You can also see a g-g-g-g-ghooooost!" + else + continue + + var/holding = null + + if(istype(M, /mob/living)) + var/mob/living/L = M + if(L.l_hand || L.r_hand) + if(L.l_hand) holding = "They are holding \a [L.l_hand]" + if(L.r_hand) + if(holding) + holding += " and \a [L.r_hand]" + else + holding = "They are holding \a [L.r_hand]" + + if(!mob_detail) + mob_detail = "You can see [L] on the photo[L.health < 75 ? " - [L] looks hurt":""].[holding ? " [holding]":"."]. " + else + mob_detail += "You can also see [L] on the photo[L.health < 75 ? " - [L] looks hurt":""].[holding ? " [holding]":"."]." + - if(!mob_detail) - mob_detail = "You can see [A] on the photo[A:health < 75 ? " - [A] looks hurt":""].[holding ? " [holding]":"."]. " - else - mob_detail += "You can also see [A] on the photo[A:health < 75 ? " - [A] looks hurt":""].[holding ? " [holding]":"."]." return mob_detail From 76480250948d752a8859122856f80ff393d3f097 Mon Sep 17 00:00:00 2001 From: Incoming Date: Fri, 23 Oct 2015 20:07:59 -0400 Subject: [PATCH 063/418] for fucks sake .ini make up your mind --- tgstation.int | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 tgstation.int diff --git a/tgstation.int b/tgstation.int deleted file mode 100644 index b82874fded5..00000000000 --- a/tgstation.int +++ /dev/null @@ -1,6 +0,0 @@ -// BEGIN_INTERNALS -/* -MAP_ICON_TYPE: 0 -AUTO_FILE_DIR: OFF -*/ -// END_INTERNALS From 35d09e7cc0e307870dd4ddfbe6e9b8597a0624cd Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Sat, 24 Oct 2015 02:35:33 -0300 Subject: [PATCH 064/418] Adds Admin-only Antag HUDs Togglable by a verb in the Admin tab. Only Rev, Cult, Ops and Shadowling atm because the others don't have huds/have more than one hud and I'm too lazy to handle it properly here. Also adds a debug verb for huds. --- code/modules/admin/admin_verbs.dm | 10 +++++++--- code/modules/admin/verbs/debug.dm | 10 +++++++++- code/modules/admin/verbs/randomverbs.dm | 19 +++++++++++++++++++ 3 files changed, 35 insertions(+), 4 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index f7818ccb1b0..4f421cbeced 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -58,8 +58,9 @@ var/list/admin_verbs_admin = list( /client/proc/admin_cancel_shuttle, /*allows us to cancel the emergency shuttle, sending it back to centcom*/ /client/proc/cmd_admin_direct_narrate, /*send text directly to a player with no padding. Useful for narratives and fluff-text*/ /client/proc/cmd_admin_world_narrate, /*sends text to all players with no padding*/ - /client/proc/cmd_admin_local_narrate, //sends text to all mobs within view of atmo + /client/proc/cmd_admin_local_narrate, /*sends text to all mobs within view of atom*/ /client/proc/cmd_admin_create_centcom_report, + /client/proc/toggle_antag_hud /*toggle display of the admin antag hud*/ ) var/list/admin_verbs_ban = list( /client/proc/unban_panel, @@ -136,7 +137,8 @@ var/list/admin_verbs_debug = list( /client/proc/populate_world, /client/proc/cmd_display_del_log, /client/proc/reset_latejoin_spawns, - /client/proc/create_outfits + /client/proc/create_outfits, + /client/proc/debug_huds ) var/list/admin_verbs_possess = list( /proc/possess, @@ -214,7 +216,9 @@ var/list/admin_verbs_hideable = list( /client/proc/panicbunker, /client/proc/admin_change_sec_level, /client/proc/toggle_nuke, - /client/proc/cmd_display_del_log + /client/proc/cmd_display_del_log, + /client/proc/toggle_antag_hud, + /client/proc/debug_huds ) /client/proc/add_admin_verbs() diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index aaed2a84488..375399cb580 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -767,4 +767,12 @@ var/global/list/g_fancy_list_of_types = null for(var/path in SSgarbage.noqdelhint) dat += "[path]
" - usr << browse(dat, "window=dellog") \ No newline at end of file + usr << browse(dat, "window=dellog") + +/client/proc/debug_huds(i as num) + set category = "Debug" + set name = "Debug HUDs" + set desc = "Debug the data or antag HUDs" + + if(!holder) return + debug_variables(huds[i]) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 18b04e6e779..01acb9822f3 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -910,3 +910,22 @@ var/list/datum/outfit/custom_outfits = list() //Admin created outfits "} usr << browse(dat, "window=dressup;size=550x600") + +/client/proc/toggle_antag_hud() + set category = "Admin" + set name = "Toggle AntagHUD" + set desc = "Toggles the Admin AntagHUD" + + if(!holder) return + + var/datum/atom_hud/magical = huds[ANTAG_HUD_WIZ] + var/adding_hud = (usr in magical.hudusers) ? 0 : 1 + + for(var/datum/atom_hud/H in huds) + if(istype(H, /datum/atom_hud/antag)) + (adding_hud) ? H.add_hud_to(usr) : H.remove_hud_from(usr) + + usr << "You toggled your admin antag HUD [adding_hud ? "ON" : "OFF"]." + message_admins("[key_name_admin(usr)] toggled their admin antag HUD [adding_hud ? "ON" : "OFF"].") + log_admin("[key_name(usr)] toggled their admin antag HUD [adding_hud ? "ON" : "OFF"].") + feedback_add_details("admin_verb","TAH") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! From e641abeaf3d68dd1bfc617e539efe64642224c9c Mon Sep 17 00:00:00 2001 From: Incoming Date: Sat, 24 Oct 2015 03:01:09 -0400 Subject: [PATCH 065/418] Fixes a goofy bug(?) where if you let yourself be killed by an NPC headslug you, the dead guy getting gibbed, gain control of the resulting ling. While said ling would still technically be "station aligned" people could use this to "add" changeling status to any other kind of antag, which is a really dangerous/hilarious situation. Kudos and apologies to those that managed to figure this out. --- code/modules/mob/living/simple_animal/hostile/headcrab.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/headcrab.dm b/code/modules/mob/living/simple_animal/hostile/headcrab.dm index 43d9a143831..de1e30d9fa5 100644 --- a/code/modules/mob/living/simple_animal/hostile/headcrab.dm +++ b/code/modules/mob/living/simple_animal/hostile/headcrab.dm @@ -75,9 +75,6 @@ for(var/obj/item/organ/internal/I in src) I.Insert(M, 1) - if(!origin && owner.mind) - origin = owner.mind - if(origin) origin.transfer_to(M) if(!origin.changeling) From c8030a274cc4a670bf6d575d6a57ef787d4d69c8 Mon Sep 17 00:00:00 2001 From: blobbernaut Date: Sat, 24 Oct 2015 03:28:09 -0400 Subject: [PATCH 066/418] Update human_defense.dm --- code/modules/mob/living/carbon/human/human_defense.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 30ddfa5ae89..862d4c124ad 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -27,7 +27,7 @@ emp_act /mob/living/carbon/human/proc/checkarmor(obj/item/organ/limb/def_zone, type) if(!type) return 0 var/protection = 0 - var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back) + var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back, gloves, shoes, belt) for(var/bp in body_parts) if(!bp) continue if(bp && istype(bp ,/obj/item/clothing)) From 32641c20fd38a770592170015094110392eae58c Mon Sep 17 00:00:00 2001 From: blobbernaut Date: Sat, 24 Oct 2015 03:29:56 -0400 Subject: [PATCH 067/418] Update human_defense.dm --- code/modules/mob/living/carbon/human/human_defense.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 862d4c124ad..87fa99289b5 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -27,7 +27,7 @@ emp_act /mob/living/carbon/human/proc/checkarmor(obj/item/organ/limb/def_zone, type) if(!type) return 0 var/protection = 0 - var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back, gloves, shoes, belt) + var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back, gloves, shoes, belt, s_store) for(var/bp in body_parts) if(!bp) continue if(bp && istype(bp ,/obj/item/clothing)) From 711cac68a843d311589831e6080822357d315fc5 Mon Sep 17 00:00:00 2001 From: Incoming Date: Sat, 24 Oct 2015 03:32:10 -0400 Subject: [PATCH 068/418] Fixes an oversight where the traitor panel would show a station aligned changeling as a traitor no matter if it actually was an antag or not. It will still admit the ling is a ling, but at the very least it will say they aren't an antag. --- code/datums/mind.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index b94616ba4b6..0ace499a864 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -372,12 +372,18 @@ if (ticker.mode.config_tag=="changeling" || ticker.mode.config_tag=="traitorchan") text = uppertext(text) text = "[text]: " - if (src in ticker.mode.changelings) + if ((src in ticker.mode.changelings) && special_role) text += "YES|
no" if (objectives.len==0) text += "
Objectives are empty! Randomize!" if(changeling && changeling.stored_profiles.len && (current.real_name != changeling.first_prof.name) ) text += "
Transform to initial appearance." + else if(src in ticker.mode.changelings) //Station Aligned Changeling + text += "YES (but not an antag)|no" + if (objectives.len==0) + text += "
Objectives are empty! Randomize!" + if(changeling && changeling.stored_profiles.len && (current.real_name != changeling.first_prof.name) ) + text += "
Transform to initial appearance." else text += "yes|NO" // var/datum/game_mode/changeling/changeling = ticker.mode From 66d724a9b33e19f732e76d9d1a15537e8a8eb5c2 Mon Sep 17 00:00:00 2001 From: blobbernaut Date: Sat, 24 Oct 2015 03:50:44 -0400 Subject: [PATCH 069/418] Update human_defense.dm --- code/modules/mob/living/carbon/human/human_defense.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 87fa99289b5..46bdf2083d5 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -27,7 +27,7 @@ emp_act /mob/living/carbon/human/proc/checkarmor(obj/item/organ/limb/def_zone, type) if(!type) return 0 var/protection = 0 - var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back, gloves, shoes, belt, s_store) + var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back, gloves, shoes, belt, s_store) //List of body parts which can be armored. Currently everything but ID slot, glassses, and ears. for(var/bp in body_parts) if(!bp) continue if(bp && istype(bp ,/obj/item/clothing)) From c003925c24875db394e95b620aeb194fc5cb78dc Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Sat, 24 Oct 2015 04:49:42 -0500 Subject: [PATCH 070/418] Reflector --- code/game/objects/structures/reflector.dm | 70 ++++++++++++++++++++++ icons/obj/structures.dmi | Bin 114476 -> 115696 bytes tgstation.dme | 1 + 3 files changed, 71 insertions(+) create mode 100644 code/game/objects/structures/reflector.dm diff --git a/code/game/objects/structures/reflector.dm b/code/game/objects/structures/reflector.dm new file mode 100644 index 00000000000..c4aa89399e3 --- /dev/null +++ b/code/game/objects/structures/reflector.dm @@ -0,0 +1,70 @@ +//dir 1 = north +//dir 2 = south +//dir 8 = west +//dir 4 = east + +/obj/structure/reflector + name = "reflector" + icon_state = "reflector" + desc = "An angled mirror for reflecting lasers." + anchored = 1 + density = 1 + layer = 2 + +/obj/structure/reflector/bullet_act(obj/item/projectile/P) + var/reflect_x = 0 + var/reflect_y = 0 + var/new_dir = 0 + var/turf/reflect_turf = get_turf(src) + + switch(P.dir) //Is the projectile heading in a direction that would hit a reflective panel? + if(1) //Travelling north + switch(src.dir) + if(2) //Facing south, reflected east + new_dir = 4 + if(8) //Facing west, reflected west + new_dir = 8 + if(2) //Travelling south + switch(src.dir) + if(1) //Facing north, reflected west + new_dir = 8 + if(4) //Facing east, reflected east + new_dir = 4 + if(8) //Travelling west + switch(src.dir) + if(2) + new_dir = 2 + if(4) + new_dir = 1 + if(4) //Travelling east + switch(src.dir) + if(1) + new_dir = 1 + if(8) + new_dir = 2 + + switch(new_dir) //Setting a new target based on the reflection direction + if(1) + reflect_x = src.x + reflect_y = src.y+2 + if(2) + reflect_x = src.x + reflect_y = src.y-2 + if(4) + reflect_x = src.x+2 + reflect_y = src.y + if(8) + reflect_x = src.x-2 + reflect_y = src.y + else //If it didnt hit a panel and a new_dir wasn't set + visible_message("[src] is hit by the [P]!") + return ..() //Hits as normal, explodes or emps or whatever + + visible_message("[P] bounces off of the [src]") + P.original = locate(reflect_x, reflect_y, P.z) + P.starting = reflect_turf + P.current = reflect_turf + P.yo = reflect_y - reflect_turf.y + P.xo = reflect_x - reflect_turf.x + P.kill_count = 50 //Keep the projectile healthy as long as its bouncing off things + return - 1 \ No newline at end of file diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi index 1a7b8fb091c94e849539a9043ef782f94dae0b08..37dc77d2e7913e9425ed7a2d7aec7776aeb22bcf 100644 GIT binary patch delta 23726 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



Current Xenobiology Containment Level:Secure RUN

"; name = "Evacuation Procedure"},/obj/machinery/camera{c_tag = "Research Division"; dir = 1; network = list("MO19","MO19R")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hF" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hG" = (/obj/machinery/door/airlock/glass_research{name = "Research Storage"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hH" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hI" = (/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "hJ" = (/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"hK" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hK" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hL" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hM" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hM" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hN" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaybiohazard"; layer = 2.9; name = "Acid-Proof biohazard containment door"; unacidable = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "delivery"; name = "floor"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hO" = (/obj/structure/table,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "hP" = (/obj/structure/toilet{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -410,11 +410,11 @@ "hT" = (/obj/machinery/shower{pixel_y = 16},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "hU" = (/obj/machinery/shower{pixel_y = 16},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "hV" = (/obj/machinery/light/small,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"hW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hX" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hY" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"hZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the research division and the labs within."; name = "research monitor"; network = list("MO19X","MO19R")},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ia" = (/obj/machinery/computer/aifixer,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hX" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hY" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"hZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the research division and the labs within."; name = "research monitor"; network = list("MO19X","MO19R")},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ia" = (/obj/machinery/computer/aifixer,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ib" = (/obj/structure/rack,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/circuitboard/teleporter,/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ic" = (/obj/structure/rack,/obj/item/device/paicard{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "id" = (/obj/structure/rack,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -429,12 +429,12 @@ "im" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "in" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "io" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"ip" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/button/door{id = "Awaybiohazard"; name = "Biohazard Shutter Control"; pixel_x = 0; pixel_y = 8; req_access_txt = "201"},/obj/machinery/button/door{id = "AwayRD"; name = "Privacy Shutter Control"; pixel_x = 0; pixel_y = -2; req_access_txt = "201"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"iq" = (/obj/structure/stool/bed/chair/office/light{dir = 1; pixel_y = 3},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"ir" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ip" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/button/door{id = "Awaybiohazard"; name = "Biohazard Shutter Control"; pixel_x = 0; pixel_y = 8; req_access_txt = "201"},/obj/machinery/button/door{id = "AwayRD"; name = "Privacy Shutter Control"; pixel_x = 0; pixel_y = -2; req_access_txt = "201"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"iq" = (/obj/structure/stool/bed/chair/office/light{dir = 1; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"ir" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "is" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"it" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32; pixel_y = 0},/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/pen,/obj/item/weapon/paper/crumpled{info = "19 06 2554

I fucking knew it. There was a major breach, that idiotic force field failed and the xenomorphs rushed out and took out the scientists. I've managed to make it to my office and closed the blast doors. I can hear them trying to pry open the doors. Probably don't have long. I have no clue what has happened to the rest of the crew, for all I know they've been killed to produce more of the fucks."; name = "Hastily Written Note"},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"iu" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (EAST)"},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"it" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32; pixel_y = 0},/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/pen,/obj/item/weapon/paper/crumpled{info = "19 06 2554

I fucking knew it. There was a major breach, that idiotic force field failed and the xenomorphs rushed out and took out the scientists. I've managed to make it to my office and closed the blast doors. I can hear them trying to pry open the doors. Probably don't have long. I have no clue what has happened to the rest of the crew, for all I know they've been killed to produce more of the fucks."; name = "Hastily Written Note"},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"iu" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iv" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iw" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ix" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -444,14 +444,14 @@ "iB" = (/obj/structure/table,/obj/item/trash/plate,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "iC" = (/obj/structure/table,/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "iD" = (/obj/structure/table,/obj/item/trash/raisins,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"iE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"iE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iF" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iG" = (/obj/machinery/door/airlock{name = "Private Restroom"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"iH" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/obj/machinery/light/small{active_power_usage = 0; dir = 2; icon_state = "bulb-broken"; status = 2},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("MO19","MO19R")},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"iI" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"iJ" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/laser_pointer,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"iH" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/obj/machinery/light/small{active_power_usage = 0; dir = 2; icon_state = "bulb-broken"; status = 2},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("MO19","MO19R")},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"iI" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"iJ" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/laser_pointer,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iK" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"iL" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"iL" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iM" = (/obj/structure/table,/obj/item/weapon/storage/secure/briefcase,/obj/item/device/taperecorder{pixel_x = -3},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iN" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "iO" = (/obj/structure/closet/emcloset,/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) @@ -460,17 +460,17 @@ "iR" = (/obj/structure/stool/bed/chair{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "iS" = (/obj/structure/stool/bed/chair{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "iT" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 0},/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"iU" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"iV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"iW" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"iX" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"iY" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"iU" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"iV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"iW" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"iX" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"iY" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "iZ" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) "ja" = (/obj/item/stack/rods,/obj/item/weapon/shard,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"jb" = (/obj/structure/stool/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jc" = (/obj/structure/table,/obj/item/weapon/book/manual/detective,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jb" = (/obj/structure/stool/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jc" = (/obj/structure/table,/obj/item/weapon/book/manual/detective,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jd" = (/obj/structure/stool/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"je" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"je" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jf" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jg" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jh" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -479,88 +479,88 @@ "jk" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jl" = (/obj/structure/stool,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jm" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/machinery/door/poddoor/shutters{id = "awaykitchen"; name = "Serving Hatch"},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jn" = (/obj/effect/decal/cleanable/flour,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jo" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"jq" = (/obj/structure/flora/kirbyplants{desc = "A plastic potted plant."; layer = 4.1; pixel_y = 3},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jr" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jn" = (/obj/effect/decal/cleanable/flour,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jo" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"jq" = (/obj/structure/flora/kirbyplants{desc = "A plastic potted plant."; layer = 4.1; pixel_y = 3},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jr" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "js" = (/obj/structure/stool/bed/chair,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jt" = (/obj/structure/table,/obj/item/weapon/newspaper,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jt" = (/obj/structure/table,/obj/item/weapon/newspaper,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ju" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jv" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jw" = (/obj/machinery/vending/snack,/obj/structure/sign/poster{icon_state = "poster14"; pixel_x = 0; pixel_y = 32; serial_number = 14},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jx" = (/obj/structure/sign/science{pixel_x = 0; pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "purple"; tag = "icon-purple (NORTHWEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jy" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "purple"; tag = "icon-purple (NORTH)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jz" = (/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "purple"; tag = "icon-purple (NORTHEAST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg1"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jv" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jw" = (/obj/machinery/vending/snack,/obj/structure/sign/poster{icon_state = "poster14"; pixel_x = 0; pixel_y = 32; serial_number = 14},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jx" = (/obj/structure/sign/science{pixel_x = 0; pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "purple"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jy" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "purple"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jz" = (/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "purple"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jB" = (/obj/structure/grille,/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jD" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jE" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jF" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jF" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jG" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jH" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{cell_type = 15000; dir = 1; locked = 0; name = "Worn-out APC"; pixel_x = 0; pixel_y = 25; req_access = null; start_charge = 100},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jI" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jJ" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jK" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jL" = (/obj/structure/noticeboard{pixel_y = 32},/obj/item/weapon/paper{info = "

I Can't Believe It's Not Pasta: Half off on Wednesdays



Burger night every Friday 6PM-10PM, free drinks with purchase of meal!



Premiering Tonight: The comedy stylings of Shoe Snatching Willy! 11AM-7PM

"; name = "Specials This Week"},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jJ" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jK" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jL" = (/obj/structure/noticeboard{pixel_y = 32},/obj/item/weapon/paper{info = "

I Can't Believe It's Not Pasta: Half off on Wednesdays



Burger night every Friday 6PM-10PM, free drinks with purchase of meal!



Premiering Tonight: The comedy stylings of Shoe Snatching Willy! 11AM-7PM

"; name = "Specials This Week"},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jM" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jN" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "jO" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "awaykitchen"; name = "Serving Hatch"},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jP" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jQ" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jR" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jS" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) -"jT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jY" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "purplecorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"jZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "purplecorner"; tag = "icon-purplecorner (NORTH)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"ka" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "purplecorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kb" = (/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched2 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged1 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"ke" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kf" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched1 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg1"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"ki" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged3 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kk" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jP" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jQ" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jR" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jS" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "MO19 Research"}) +"jT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jY" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "purplecorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"jZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "purplecorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"ka" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "purplecorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kb" = (/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"ke" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kf" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"ki" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kk" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "km" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kn" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/glass/rag{pixel_y = 5},/obj/machinery/door/poddoor/shutters{id = "awaykitchen"; name = "Serving Hatch"},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"ko" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kp" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kq" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kr" = (/obj/effect/decal/cleanable/egg_smudge,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"ks" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/processor,/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"ko" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kp" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kq" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kr" = (/obj/effect/decal/cleanable/egg_smudge,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"ks" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/processor,/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kt" = (/obj/structure/closet/crate/bin,/obj/item/trash/candy,/obj/item/trash/can,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ku" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kw" = (/obj/machinery/light/small,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/obj/machinery/camera{c_tag = "Arrivals North"; dir = 1; network = list("MO19")},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kx" = (/obj/structure/sign/poster{icon_state = "poster2_legit"; pixel_x = 0; pixel_y = -32; serial_number = 2},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ky" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitecorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kz" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kz" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kA" = (/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kB" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged2 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kB" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kC" = (/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kD" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/remains/human{desc = "They look like human remains. The skeleton is curled up in fetal position with the hands placed near the throat."},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged4 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kE" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kF" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged5 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kG" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kD" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/remains/human{desc = "They look like human remains. The skeleton is curled up in fetal position with the hands placed near the throat."},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kE" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kF" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kG" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kH" = (/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kI" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kI" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kJ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kK" = (/obj/effect/decal/cleanable/xenoblood,/obj/effect/decal/cleanable/xenoblood/xgibs,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kL" = (/obj/effect/decal/cleanable/xenoblood,/obj/effect/decal/remains/xeno{desc = "They look like the remains of something... alien. The front of skull appears to have been completely obliterated."},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kM" = (/obj/structure/closet/crate/bin,/obj/item/trash/plate,/obj/item/weapon/reagent_containers/food/snacks/badrecipe,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kM" = (/obj/structure/closet/crate/bin,/obj/item/trash/plate,/obj/item/weapon/reagent_containers/food/snacks/badrecipe,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kN" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kO" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kO" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kP" = (/obj/item/stack/rods,/obj/structure/grille{density = 0; destroyed = 1; icon_state = "brokengrille"},/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"kQ" = (/obj/structure/grille{density = 0; destroyed = 1; icon_state = "brokengrille"},/obj/item/stack/rods,/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg3"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"kQ" = (/obj/structure/grille{density = 0; destroyed = 1; icon_state = "brokengrille"},/obj/item/stack/rods,/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kR" = (/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kS" = (/obj/machinery/door/firedoor{density = 1; icon_state = "door_closed"; opacity = 1},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kT" = (/obj/machinery/button/door{id = "awaydorm1"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -571,12 +571,12 @@ "kY" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{dir = 0; heat_capacity = 1e+006; icon_state = "blue"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "kZ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 0; heat_capacity = 1e+006; icon_state = "blue"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "la" = (/obj/structure/stool/bed/chair,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lb" = (/obj/structure/extinguisher_cabinet{pixel_x = 26; pixel_y = 0},/obj/machinery/camera{c_tag = "Kitchen"; dir = 8; network = list("MO19")},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lc" = (/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lb" = (/obj/structure/extinguisher_cabinet{pixel_x = 26; pixel_y = 0},/obj/machinery/camera{c_tag = "Kitchen"; dir = 8; network = list("MO19")},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lc" = (/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ld" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "le" = (/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/turf/simulated/wall/shuttle{dir = 3; icon_state = "swall_f10"; layer = 2},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lf" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lg" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lg" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lh" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warningcorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "li" = (/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "lj" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -585,11 +585,11 @@ "lm" = (/obj/machinery/door/airlock{id_tag = "awaydorm1"; name = "Dorm 1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ln" = (/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lo" = (/obj/machinery/light/small{dir = 4},/obj/structure/stool/bed/chair/wood/normal,/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lp" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lp" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lq" = (/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/weapon/storage/box,/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lr" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ls" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Bar"; dir = 8; network = list("MO19")},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lt" = (/obj/machinery/button/door{id = "awaykitchen"; name = "Kitchen Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "0"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lt" = (/obj/machinery/button/door{id = "awaykitchen"; name = "Kitchen Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "0"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lu" = (/obj/machinery/door/airlock{name = "Kitchen Cold Room"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lv" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"; temperature = 273.15},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lw" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"; temperature = 273.15},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -599,8 +599,8 @@ "lA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lB" = (/turf/simulated/wall/shuttle{icon_state = "swall4"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lC" = (/turf/simulated/wall/shuttle{icon_state = "swall1"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lD" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (EAST)"; icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating{carbon_dioxide = 48.7; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lE" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_r (WEST)"; icon_state = "burst_r"; dir = 8},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lD" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating{carbon_dioxide = 48.7; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lE" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 8},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lF" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lG" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warningcorner"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lH" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -611,7 +611,7 @@ "lM" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lN" = (/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lO" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"lP" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"lP" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "201"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lR" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "lS" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -627,10 +627,10 @@ "mc" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "md" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "me" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"mf" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_l (WEST)"; icon_state = "burst_l"; dir = 8},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"mf" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 8},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mg" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mh" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 2; heat_capacity = 1e+006; icon_state = "neutralcorner"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"mi" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/decal/cleanable/dirt,/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"mi" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/decal/cleanable/dirt,/obj/structure/window{icon_state = "window"; dir = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mj" = (/obj/structure/stool,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mk" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ml" = (/obj/structure/table,/obj/item/weapon/storage/backpack/satchel/withwallet,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -664,7 +664,7 @@ "mN" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/noticeboard{dir = 8; pixel_x = 32; pixel_y = 0},/obj/item/weapon/paper{info = "

Welcome to Moon Outpost 19! Property of Nanotrasen Inc.




Staff Roster:
-Dr. Gerald Rosswell: Research Director & Acting Captain
-Dr. Sakuma Sano: Xenobiologist
-Dr. Mark Douglas: Xenobiologist
-Kenneth Cunningham: Security Officer-Ivan Volodin: Engineer
-Mathias Kuester: Bartender
-Sven Edling: Chef
-Steve: Assistant

Please enjoy your stay, and report any abnormalities to an officer."; name = "Welcome Notice"},/obj/machinery/camera{c_tag = "Arrivals South"; dir = 8; network = list("MO19")},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mO" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mP" = (/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 9; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "neutralcorner"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"mQ" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched2 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"mQ" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mR" = (/obj/machinery/door/airlock{id_tag = "awaydorm2"; name = "Dorm 2"},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mS" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 5; icon_state = "ltrails_1"},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "mT" = (/obj/machinery/light/small{dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -682,16 +682,16 @@ "nf" = (/obj/structure/filingcabinet,/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ng" = (/obj/structure/stool/bed/chair{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nh" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/obj/machinery/light/small,/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"ni" = (/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched2 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nj" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged2 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"ni" = (/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nj" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nk" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/candy,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nl" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nm" = (/obj/structure/sign/vacuum{desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; name = "\improper HOSTILE ATMOSPHERE AHEAD"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nn" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "no" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "np" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nq" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; icon_state = "ltrails_2"},/obj/machinery/camera{c_tag = "Dormitories"; dir = 4; network = list("MO19")},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged1 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nr" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nq" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; icon_state = "ltrails_2"},/obj/machinery/camera{c_tag = "Dormitories"; dir = 4; network = list("MO19")},/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nr" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "ns" = (/obj/structure/grille{density = 0; destroyed = 1; icon_state = "brokengrille"},/obj/item/stack/rods,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nt" = (/obj/structure/grille,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nu" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_plating = "asteroidplating"; icon_state = "asteroidplating"; nitrogen = 13.2; oxygen = 32.45; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -703,13 +703,13 @@ "nA" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nB" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nC" = (/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "small"},/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 9; icon_state = "ltrails_1"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"nD" = (/obj/structure/grille{density = 0; destroyed = 1; icon_state = "brokengrille"},/obj/item/stack/rods,/obj/item/weapon/shard,/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_2"},/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg1"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nE" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_2"},/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg3"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nF" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nG" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 6; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nD" = (/obj/structure/grille{density = 0; destroyed = 1; icon_state = "brokengrille"},/obj/item/stack/rods,/obj/item/weapon/shard,/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_2"},/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nE" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_2"},/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nF" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 8; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nG" = (/obj/effect/decal/cleanable/blood/tracks{desc = "Your instincts say you shouldn't be following these."; dir = 6; icon_state = "ltrails_1"},/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nH" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "awaydorm3"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/effect/decal/remains/human{desc = "They look like human remains. The skeleton is laid out on its side and there seems to have been no sign of struggle."; layer = 4.1},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nI" = (/obj/structure/dresser,/obj/item/weapon/paper{info = "Bugs break out. I run to here and lock door. I hear door next to me break open and screams. All nice people here dead now. I no want to be eaten, and bottle always said to be coward way out, but person who say that is stupid. Mira, there is no escape for me, tell Alexis and Elena that father will never come home, and that I love you all."; name = "Note"},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nJ" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nJ" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nK" = (/obj/structure/sign/vacuum{desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; name = "\improper HOSTILE ATMOSPHERE AHEAD"; pixel_x = -32},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nL" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nM" = (/obj/structure/stool/bed/chair/comfy/black{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "neutralcorner"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -718,12 +718,12 @@ "nP" = (/obj/item/weapon/pen,/obj/item/weapon/storage/pill_bottle{pixel_y = 6},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nR" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nS" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged1 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nS" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nT" = (/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/suit_jacket/burgundy,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nU" = (/obj/machinery/newscaster{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nV" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nW" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_plating = "asteroidplating"; icon_state = "asteroidplating"; nitrogen = 13.2; oxygen = 32.45; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) -"nX" = (/obj/structure/stool/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched2 (WEST)"; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) +"nX" = (/obj/structure/stool/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nY" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 2; heat_capacity = 1e+006; icon_state = "neutralcorner"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) "nZ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_plating = "asteroidplating"; icon_state = "asteroidplating"; nitrogen = 13.2; oxygen = 32.45; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "oa" = (/obj/structure/stool/bed/chair/comfy/black,/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a1{has_gravity = 1; name = "MO19 Arrivals"}) @@ -742,35 +742,35 @@ "on" = (/obj/item/stack/cable_coil{amount = 2; icon_state = "coil_red2"; item_state = "coil_red2"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "oo" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; item_state = "coil_red1"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "op" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oq" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"or" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; tag = "icon-damaged1 (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"os" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; tag = "icon-damaged2 (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ot" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; tag = "icon-damaged3 (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ou" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; tag = "icon-damaged4 (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ov" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"; tag = "icon-damaged5 (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ow" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ox" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oq" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"or" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"os" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"ot" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"ou" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"ov" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"ow" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"ox" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "oy" = (/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "oz" = (/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oA" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oB" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oC" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oD" = (/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oA" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oB" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oC" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oD" = (/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "oE" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oF" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorgrime (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oG" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged1 (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oH" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged2 (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oI" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged3 (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oJ" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged4 (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oK" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-damaged5 (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oL" = (/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched1 (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oM" = (/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-floorscorched2 (WEST)"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oF" = (/turf/simulated/floor/plasteel{carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oG" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oH" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oI" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oJ" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oK" = (/turf/simulated/floor/plasteel{broken = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oL" = (/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oM" = (/turf/simulated/floor/plasteel{burnt = 1; carbon_dioxide = 48.7; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "oN" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "oO" = (/turf/simulated/floor/plating{carbon_dioxide = 48.7; heat_capacity = 1e+006; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oP" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg1"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oQ" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg2"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg2"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oR" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-platingdmg3"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"oS" = (/turf/simulated/floor/plating{burnt = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "panelscorched"; nitrogen = 13.2; oxygen = 32.4; tag = "icon-panelscorched"; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oP" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg1"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oQ" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg2"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oR" = (/turf/simulated/floor/plating{broken = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "platingdmg3"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"oS" = (/turf/simulated/floor/plating{burnt = 1; carbon_dioxide = 48.7; heat_capacity = 1e+006; icon_state = "panelscorched"; nitrogen = 13.2; oxygen = 32.4; temperature = 251},/area/awaycontent/a3{always_unpowered = 1; ambientsounds = list('sound/ambience/ambimine.ogg'); has_gravity = 1; name = "Khonsu 19"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/RandomZLevels/spacebattle.dmm b/_maps/RandomZLevels/spacebattle.dmm index 1e7e23a80b9..fee73cb0638 100644 --- a/_maps/RandomZLevels/spacebattle.dmm +++ b/_maps/RandomZLevels/spacebattle.dmm @@ -1,12 +1,12 @@ "aa" = (/turf/simulated/mineral/random,/area/space) "ab" = (/turf/space,/area/space) "ac" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate2) -"ad" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate2) -"ae" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (NORTH)"; icon_state = "propulsion"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate2) -"af" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (NORTH)"; icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate2) +"ad" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate2) +"ae" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate2) +"af" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate2) "ag" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate2) "ah" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/spacebattle/syndicate2) -"ai" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate2) +"ai" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate2) "aj" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate2) "ak" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel/shuttle{icon_state = "floor4"},/area/awaymission/spacebattle/syndicate2) "al" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate2) @@ -21,13 +21,13 @@ "au" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/projectile/automatic/c20r,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate2) "av" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel/shuttle{icon_state = "floor4"},/area/awaymission/spacebattle/syndicate2) "aw" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate3) -"ax" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate3) -"ay" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (NORTH)"; icon_state = "propulsion"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate3) -"az" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (NORTH)"; icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate3) +"ax" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate3) +"ay" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate3) +"az" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate3) "aA" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate3) "aB" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/projectile/automatic/pistol,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate2) "aC" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/spacebattle/syndicate3) -"aD" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate3) +"aD" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate3) "aE" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate3) "aF" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate3) "aG" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate3) @@ -41,15 +41,15 @@ "aO" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate2) "aP" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate2) "aQ" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate1) -"aR" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate1) -"aS" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (NORTH)"; icon_state = "propulsion"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate1) -"aT" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (NORTH)"; icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate1) +"aR" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate1) +"aS" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate1) +"aT" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/syndicate1) "aU" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate1) "aV" = (/obj/machinery/sleeper,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate3) "aW" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/spacebattle/syndicate1) -"aX" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate1) -"aY" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate2) -"aZ" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate2) +"aX" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate1) +"aY" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate2) +"aZ" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate2) "ba" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate1) "bb" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate2) "bc" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate2) @@ -87,47 +87,47 @@ "bI" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate1) "bJ" = (/obj/machinery/porta_turret{dir = 8; emagged = 1; installation = /obj/item/weapon/gun/energy/lasercannon},/turf/simulated/floor/plating,/area/awaymission/spacebattle/syndicate1) "bK" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) -"bL" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/cruiser) +"bL" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/space,/area/awaymission/spacebattle/cruiser) "bM" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) -"bN" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (NORTH)"; icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/cruiser) +"bN" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/space,/area/awaymission/spacebattle/cruiser) "bO" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) "bP" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/spacebattle/cruiser) -"bQ" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"bQ" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "bR" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/cruiser) -"bS" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"bS" = (/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "bT" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/cruiser) "bU" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/cruiser) -"bV" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/awaymission/spacebattle/cruiser) -"bW" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/awaymission/spacebattle/cruiser) -"bX" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"},/area/awaymission/spacebattle/cruiser) -"bY" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/awaymission/spacebattle/cruiser) -"bZ" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/awaymission/spacebattle/cruiser) -"ca" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_l (EAST)"; icon_state = "burst_l"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) -"cb" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-engine"; icon_state = "engine"},/area/awaymission/spacebattle/cruiser) +"bV" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/awaymission/spacebattle/cruiser) +"bW" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/awaymission/spacebattle/cruiser) +"bX" = (/turf/simulated/wall/shuttle{icon_state = "swall14"},/area/awaymission/spacebattle/cruiser) +"bY" = (/turf/simulated/wall/shuttle{icon_state = "swall12"},/area/awaymission/spacebattle/cruiser) +"bZ" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/awaymission/spacebattle/cruiser) +"ca" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) +"cb" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "engine"},/area/awaymission/spacebattle/cruiser) "cc" = (/obj/machinery/computer/telecomms/monitor,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"cd" = (/turf/simulated/floor/plasteel{tag = "icon-damaged5"; icon_state = "damaged5"},/area/awaymission/spacebattle/cruiser) +"cd" = (/turf/simulated/floor/plasteel{icon_state = "damaged5"},/area/awaymission/spacebattle/cruiser) "ce" = (/obj/machinery/computer/pod{id = "spacebattlepod"; name = "Hull Door Control"},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/cruiser) "cf" = (/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "cg" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"ch" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/awaymission/spacebattle/cruiser) -"ci" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) +"ch" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/awaymission/spacebattle/cruiser) +"ci" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) "cj" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"ck" = (/turf/simulated/floor/plasteel{tag = "icon-damaged5"; icon_state = "damaged5"},/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) -"cl" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "spacebattlepod"; name = "Front Hull Door"; opacity = 1; tag = "icon-pdoor0"},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) -"cm" = (/turf/simulated/floor/plasteel{tag = "icon-damaged4"; icon_state = "damaged4"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) +"ck" = (/turf/simulated/floor/plasteel{icon_state = "damaged5"},/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) +"cl" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "spacebattlepod"; name = "Front Hull Door"; opacity = 1},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) +"cm" = (/turf/simulated/floor/plasteel{icon_state = "damaged4"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) "cn" = (/mob/living/simple_animal/hostile/syndicate/melee/space,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"co" = (/turf/simulated/floor/plasteel{tag = "icon-damaged2"; icon_state = "damaged2"},/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) -"cp" = (/turf/simulated/floor/plasteel{tag = "icon-damaged4"; icon_state = "damaged4"},/area/awaymission/spacebattle/cruiser) -"cq" = (/turf/simulated/floor/plasteel{tag = "icon-damaged3"; icon_state = "damaged3"},/area/awaymission/spacebattle/cruiser) -"cr" = (/turf/simulated/floor/plasteel{tag = "icon-damaged5"; icon_state = "damaged5"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) -"cs" = (/turf/simulated/floor/plasteel{tag = "icon-damaged1"; icon_state = "damaged1"},/area/awaymission/spacebattle/cruiser) +"co" = (/turf/simulated/floor/plasteel{icon_state = "damaged2"},/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) +"cp" = (/turf/simulated/floor/plasteel{icon_state = "damaged4"},/area/awaymission/spacebattle/cruiser) +"cq" = (/turf/simulated/floor/plasteel{icon_state = "damaged3"},/area/awaymission/spacebattle/cruiser) +"cr" = (/turf/simulated/floor/plasteel{icon_state = "damaged5"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) +"cs" = (/turf/simulated/floor/plasteel{icon_state = "damaged1"},/area/awaymission/spacebattle/cruiser) "ct" = (/obj/effect/landmark/corpse/engineer{mobname = "Rosen Miller"; name = "Rosen Miller"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "cu" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"cv" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"},/area/awaymission/spacebattle/cruiser) -"cw" = (/turf/simulated/wall/shuttle{tag = "icon-swallc1"; icon_state = "swallc1"},/area/awaymission/spacebattle/cruiser) -"cx" = (/turf/simulated/wall/shuttle{tag = "icon-swallc2"; icon_state = "swallc2"},/area/awaymission/spacebattle/cruiser) +"cv" = (/turf/simulated/wall/shuttle{icon_state = "swall7"},/area/awaymission/spacebattle/cruiser) +"cw" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"},/area/awaymission/spacebattle/cruiser) +"cx" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"},/area/awaymission/spacebattle/cruiser) "cy" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"cz" = (/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel{tag = "icon-damaged2"; icon_state = "damaged2"},/area/awaymission/spacebattle/cruiser) +"cz" = (/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel{icon_state = "damaged2"},/area/awaymission/spacebattle/cruiser) "cA" = (/obj/item/stack/sheet/metal,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "cB" = (/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "cC" = (/obj/structure/closet/cabinet,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) @@ -144,11 +144,11 @@ "cN" = (/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "cO" = (/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "cP" = (/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"cQ" = (/turf/simulated/floor/plasteel{tag = "icon-damaged2"; icon_state = "damaged2"},/area/awaymission/spacebattle/cruiser) +"cQ" = (/turf/simulated/floor/plasteel{icon_state = "damaged2"},/area/awaymission/spacebattle/cruiser) "cR" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "cS" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/spacebattle/cruiser) "cT" = (/obj/item/stack/sheet/metal,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"cU" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"},/area/awaymission/spacebattle/cruiser) +"cU" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"},/area/awaymission/spacebattle/cruiser) "cV" = (/obj/effect/landmark/corpse/engineer{mobname = "Bill Sanchez"; name = "Bill Sanchez"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "cW" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/spacebattle/cruiser) "cX" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/snacks/fries,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/awaymission/spacebattle/cruiser) @@ -162,7 +162,7 @@ "df" = (/obj/machinery/computer/pod{id = "spacebattlepod2"; name = "Hull Door Control"},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/cruiser) "dg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "dh" = (/obj/machinery/shieldgen{anchored = 1},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"di" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (EAST)"; icon_state = "propulsion_r"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) +"di" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) "dj" = (/obj/effect/landmark/corpse/engineer{mobname = "John Locke"; name = "John Locke"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "dk" = (/obj/structure/rack,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "dl" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) @@ -171,15 +171,15 @@ "do" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "dp" = (/obj/effect/landmark/corpse/doctor{mobname = "Daniel Kalla"; name = "Daniel Kalla"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "dq" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/spacebattle/cruiser) -"dr" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"; dir = 2},/area/awaymission/spacebattle/cruiser) -"ds" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"; dir = 2},/area/awaymission/spacebattle/cruiser) -"dt" = (/turf/simulated/floor/plasteel{tag = "icon-damaged4"; icon_state = "damaged4"},/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) -"du" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "spacebattlepod2"; name = "Front Hull Door"; opacity = 1; tag = "icon-pdoor0"},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) -"dv" = (/turf/simulated/floor/plasteel{tag = "icon-damaged1"; icon_state = "damaged1"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) -"dw" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area/awaymission/spacebattle/cruiser) -"dx" = (/obj/effect/decal/cleanable/blood,/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/awaymission/spacebattle/cruiser) -"dy" = (/turf/simulated/wall/shuttle{tag = "icon-swall15"; icon_state = "swall15"},/area/awaymission/spacebattle/cruiser) -"dz" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"},/area/awaymission/spacebattle/cruiser) +"dr" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/awaymission/spacebattle/cruiser) +"ds" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/awaymission/spacebattle/cruiser) +"dt" = (/turf/simulated/floor/plasteel{icon_state = "damaged4"},/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) +"du" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id = "spacebattlepod2"; name = "Front Hull Door"; opacity = 1},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) +"dv" = (/turf/simulated/floor/plasteel{icon_state = "damaged1"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) +"dw" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/awaymission/spacebattle/cruiser) +"dx" = (/obj/effect/decal/cleanable/blood,/turf/simulated/wall/shuttle{icon_state = "swall12"},/area/awaymission/spacebattle/cruiser) +"dy" = (/turf/simulated/wall/shuttle{icon_state = "swall15"},/area/awaymission/spacebattle/cruiser) +"dz" = (/turf/simulated/wall/shuttle{icon_state = "swall11"},/area/awaymission/spacebattle/cruiser) "dA" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/awaymission/spacebattle/cruiser) "dB" = (/obj/structure/rack,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/awaymission/spacebattle/cruiser) "dC" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/awaymission/spacebattle/cruiser) @@ -191,7 +191,7 @@ "dI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) "dJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) "dK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) -"dL" = (/turf/simulated/floor/plasteel{tag = "icon-damaged3"; icon_state = "damaged3"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) +"dL" = (/turf/simulated/floor/plasteel{icon_state = "damaged3"},/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/cruiser) "dM" = (/obj/item/stack/rods,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "dN" = (/obj/mecha/medical/odysseus,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "dO" = (/obj/mecha/working/ripley/firefighter,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) @@ -209,7 +209,7 @@ "ea" = (/obj/effect/landmark/corpse/engineer/rig{corpseidjob = "Gunner"; mobname = "Andrew Thorn"; name = "Andrew Thorn"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "eb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) "ec" = (/obj/machinery/porta_turret{dir = 8; emagged = 1; installation = /obj/item/weapon/gun/energy/lasercannon},/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) -"ed" = (/obj/effect/landmark/corpse/engineer{mobname = "Clay Dawson"; name = "Clay Dawson"},/turf/simulated/floor/plasteel{tag = "icon-damaged5"; icon_state = "damaged5"},/area/awaymission/spacebattle/cruiser) +"ed" = (/obj/effect/landmark/corpse/engineer{mobname = "Clay Dawson"; name = "Clay Dawson"},/turf/simulated/floor/plasteel{icon_state = "damaged5"},/area/awaymission/spacebattle/cruiser) "ee" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "ef" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "eg" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) @@ -236,21 +236,21 @@ "eB" = (/obj/effect/landmark/corpse/bridgeofficer{mobname = "Davis Hume"; name = "Davis Hume"},/obj/item/weapon/gun/projectile/shotgun/automatic/combat,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "eC" = (/obj/item/ammo_casing/shotgun,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "eD" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/spacebattle/cruiser) -"eE" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/awaymission/spacebattle/cruiser) +"eE" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/awaymission/spacebattle/cruiser) "eF" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/awaymission/spacebattle/cruiser) "eG" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/awaymission/spacebattle/cruiser) -"eH" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{tag = "icon-bluefull"; icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) +"eH" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) "eI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "eJ" = (/mob/living/simple_animal/hostile/syndicate/melee/space,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "eK" = (/obj/effect/landmark/corpse/engineer/rig{corpseidjob = "Gunner"; mobname = "Peter West"; name = "Peter West"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"eL" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"; dir = 2},/area/awaymission/spacebattle/cruiser) -"eM" = (/turf/simulated/wall/shuttle{tag = "icon-swallc4"; icon_state = "swallc4"},/area/awaymission/spacebattle/cruiser) +"eL" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/awaymission/spacebattle/cruiser) +"eM" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"},/area/awaymission/spacebattle/cruiser) "eN" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate4) "eO" = (/obj/machinery/computer/shuttle,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate4) "eP" = (/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 8},/area/awaymission/spacebattle/cruiser) "eQ" = (/obj/item/weapon/shield/energy,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "eR" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"eS" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel{tag = "icon-bluefull"; icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) +"eS" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel{icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) "eT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "eU" = (/obj/machinery/sleeper,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate4) "eV" = (/obj/structure/stool/bed/chair{dir = 1},/mob/living/simple_animal/hostile/syndicate,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate4) @@ -260,7 +260,7 @@ "eZ" = (/obj/effect/landmark/corpse/syndicatesoldier,/obj/item/weapon/melee/energy/sword/saber/red,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "fa" = (/obj/effect/landmark/corpse/bridgeofficer{mobname = "Kurt Kliest"; name = "Kurt Kliest"},/obj/item/weapon/gun/projectile/shotgun/automatic/combat,/obj/item/ammo_casing/shotgun,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "fb" = (/obj/item/ammo_casing/shotgun,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"fc" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{tag = "icon-bluefull"; icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) +"fc" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) "fd" = (/obj/effect/landmark/corpse/engineer/rig{corpseidjob = "Gunner"; mobname = "Eric Abnett"; name = "Eric Abnett"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "fe" = (/obj/structure/closet/crate,/obj/item/clothing/glasses/night,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "ff" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/awaymission/spacebattle/cruiser) @@ -270,7 +270,7 @@ "fj" = (/obj/machinery/door/poddoor{id = "spacebattlestorage"; name = "Secure Storage"},/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "fk" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 8},/area/awaymission/spacebattle/cruiser) "fl" = (/obj/machinery/computer/security/telescreen,/turf/simulated/wall/shuttle,/area/awaymission/spacebattle/cruiser) -"fm" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area/awaymission/spacebattle/cruiser) +"fm" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/awaymission/spacebattle/cruiser) "fn" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate4) "fo" = (/obj/structure/closet/crate,/obj/item/clothing/glasses/material,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "fp" = (/obj/structure/closet/crate,/obj/item/weapon/light/tube,/obj/item/weapon/light/tube,/obj/item/weapon/light/tube,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) @@ -281,19 +281,19 @@ "fu" = (/obj/item/ammo_casing/shotgun,/turf/simulated/floor/plasteel{dir = 1; icon_state = "bluecorner"},/area/awaymission/spacebattle/cruiser) "fv" = (/obj/item/ammo_casing/a357,/obj/item/ammo_casing/a357,/obj/item/weapon/gun/projectile/revolver/mateba,/obj/effect/landmark/corpse/commander{mobname = "Aaron Bowden"; name = "Aaron Bowden"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "fw" = (/obj/structure/stool/bed/chair{dir = 4},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"fx" = (/obj/machinery/computer/shuttle,/turf/simulated/floor/plasteel{tag = "icon-bluefull"; icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) -"fy" = (/obj/structure/artilleryplaceholder{tag = "icon-1"; icon_state = "1"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fz" = (/obj/structure/artilleryplaceholder{tag = "icon-2"; icon_state = "2"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fA" = (/obj/structure/artilleryplaceholder{tag = "icon-3"; icon_state = "3"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fB" = (/obj/structure/artilleryplaceholder{tag = "icon-4"; icon_state = "4"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fC" = (/obj/structure/artilleryplaceholder{tag = "icon-5"; icon_state = "5"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fD" = (/obj/structure/artilleryplaceholder{tag = "icon-6"; icon_state = "6"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fE" = (/obj/structure/artilleryplaceholder{tag = "icon-7"; icon_state = "7"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fF" = (/obj/structure/artilleryplaceholder{tag = "icon-8"; icon_state = "8"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fG" = (/obj/structure/artilleryplaceholder{tag = "icon-9"; icon_state = "9"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fH" = (/obj/structure/artilleryplaceholder{tag = "icon-10"; icon_state = "10"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fI" = (/obj/structure/artilleryplaceholder{tag = "icon-11"; icon_state = "11"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fJ" = (/obj/structure/artilleryplaceholder{tag = "icon-12"; icon_state = "12"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fx" = (/obj/machinery/computer/shuttle,/turf/simulated/floor/plasteel{icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) +"fy" = (/obj/structure/artilleryplaceholder{icon_state = "1"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fz" = (/obj/structure/artilleryplaceholder{icon_state = "2"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fA" = (/obj/structure/artilleryplaceholder{icon_state = "3"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fB" = (/obj/structure/artilleryplaceholder{icon_state = "4"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fC" = (/obj/structure/artilleryplaceholder{icon_state = "5"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fD" = (/obj/structure/artilleryplaceholder{icon_state = "6"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fE" = (/obj/structure/artilleryplaceholder{icon_state = "7"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fF" = (/obj/structure/artilleryplaceholder{icon_state = "8"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fG" = (/obj/structure/artilleryplaceholder{icon_state = "9"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fH" = (/obj/structure/artilleryplaceholder{icon_state = "10"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fI" = (/obj/structure/artilleryplaceholder{icon_state = "11"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fJ" = (/obj/structure/artilleryplaceholder{icon_state = "12"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "fK" = (/obj/structure/closet/crate/internals,/obj/item/weapon/storage/firstaid/o2,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "fL" = (/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/awaymission/spacebattle/cruiser) "fM" = (/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/awaymission/spacebattle/cruiser) @@ -301,32 +301,32 @@ "fO" = (/obj/item/ammo_casing/shotgun,/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/awaymission/spacebattle/cruiser) "fP" = (/obj/effect/landmark/corpse/syndicatesoldier,/obj/item/weapon/gun/projectile/automatic/c20r,/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/awaymission/spacebattle/cruiser) "fQ" = (/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/awaymission/spacebattle/cruiser) -"fR" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel{tag = "icon-bluefull"; icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) -"fS" = (/obj/structure/artilleryplaceholder{tag = "icon-13"; icon_state = "13"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fT" = (/obj/structure/artilleryplaceholder{tag = "icon-14"; icon_state = "14"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fU" = (/obj/structure/artilleryplaceholder{tag = "icon-15"; icon_state = "15"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fV" = (/obj/structure/artilleryplaceholder{tag = "icon-16"; icon_state = "16"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fW" = (/obj/structure/artilleryplaceholder{tag = "icon-17"; icon_state = "17"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fX" = (/obj/structure/artilleryplaceholder{tag = "icon-18"; icon_state = "18"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fY" = (/obj/structure/artilleryplaceholder{tag = "icon-19"; icon_state = "19"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"fZ" = (/obj/structure/artilleryplaceholder{tag = "icon-20"; icon_state = "20"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"ga" = (/obj/structure/artilleryplaceholder{tag = "icon-21"; icon_state = "21"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gb" = (/obj/structure/artilleryplaceholder{tag = "icon-22"; icon_state = "22"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gc" = (/obj/structure/artilleryplaceholder{tag = "icon-23"; icon_state = "23"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gd" = (/obj/structure/artilleryplaceholder{tag = "icon-24"; icon_state = "24"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fR" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel{icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) +"fS" = (/obj/structure/artilleryplaceholder{icon_state = "13"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fT" = (/obj/structure/artilleryplaceholder{icon_state = "14"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fU" = (/obj/structure/artilleryplaceholder{icon_state = "15"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fV" = (/obj/structure/artilleryplaceholder{icon_state = "16"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fW" = (/obj/structure/artilleryplaceholder{icon_state = "17"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fX" = (/obj/structure/artilleryplaceholder{icon_state = "18"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fY" = (/obj/structure/artilleryplaceholder{icon_state = "19"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"fZ" = (/obj/structure/artilleryplaceholder{icon_state = "20"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"ga" = (/obj/structure/artilleryplaceholder{icon_state = "21"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gb" = (/obj/structure/artilleryplaceholder{icon_state = "22"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gc" = (/obj/structure/artilleryplaceholder{icon_state = "23"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gd" = (/obj/structure/artilleryplaceholder{icon_state = "24"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "ge" = (/obj/structure/closet/crate,/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "gf" = (/obj/effect/landmark/corpse/bridgeofficer{mobname = "Robert Faver"; name = "Robert Faver"},/obj/item/ammo_casing/shotgun,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"gg" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-25"; icon_state = "25"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gh" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-26"; icon_state = "26"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gi" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-27"; icon_state = "27"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gj" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-28"; icon_state = "28"},/obj/machinery/artillerycontrol,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gk" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-29"; icon_state = "29"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gl" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-30"; icon_state = "30"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gm" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-31"; icon_state = "31"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gn" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-32"; icon_state = "32"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"go" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-33"; icon_state = "33"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gp" = (/obj/structure/artilleryplaceholder/decorative{tag = "icon-34"; icon_state = "34"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) -"gq" = (/obj/structure/artilleryplaceholder{tag = "icon-35"; icon_state = "35"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gg" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "25"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gh" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "26"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gi" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "27"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gj" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "28"},/obj/machinery/artillerycontrol,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gk" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "29"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gl" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "30"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gm" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "31"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gn" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "32"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"go" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "33"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gp" = (/obj/structure/artilleryplaceholder/decorative{icon_state = "34"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) +"gq" = (/obj/structure/artilleryplaceholder{icon_state = "35"},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "gr" = (/obj/structure/closet/crate/secure/weapon,/obj/item/ammo_casing/a357,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "gs" = (/obj/structure/closet/crate,/obj/item/weapon/lipstick/black,/obj/item/weapon/lipstick/jade,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "gt" = (/obj/machinery/button/door{dir = 2; id = "spacebattlestorage"; name = "Secure Storage"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) @@ -342,16 +342,16 @@ "gD" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate4) "gE" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/energy/laser,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "gF" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) -"gG" = (/obj/effect/decal/cleanable/blood,/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/awaymission/spacebattle/cruiser) +"gG" = (/obj/effect/decal/cleanable/blood,/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/awaymission/spacebattle/cruiser) "gH" = (/obj/effect/landmark/corpse/doctor{mobname = "Adam Smith"; name = "Adam Smith"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "gI" = (/obj/structure/optable,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/spacebattle/cruiser) "gJ" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/spacebattle/cruiser) "gK" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/awaymission/spacebattle/cruiser) "gL" = (/mob/living/simple_animal/hostile/syndicate/melee/space,/turf/simulated/floor/wood,/area/awaymission/spacebattle/cruiser) -"gM" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{tag = "icon-bluefull"; icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) +"gM" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) "gN" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/awaymission/spacebattle/cruiser) "gO" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/spacebattle/cruiser) -"gP" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{tag = "icon-bluefull"; icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) +"gP" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "bluefull"},/area/awaymission/spacebattle/cruiser) "gQ" = (/obj/effect/landmark/corpse/engineer/rig{corpseidjob = "Gunner"; name = "Jeremy Tailor"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/cruiser) "gR" = (/obj/machinery/porta_turret{dir = 8; emagged = 1; installation = /obj/item/weapon/gun/energy/lasercannon},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate7) "gS" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate7) @@ -375,8 +375,8 @@ "hk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/spacebattle/syndicate7) "hl" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate7) "hm" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate7) -"hn" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (EAST)"; icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate7) -"ho" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (WEST)"; icon_state = "propulsion_r"; dir = 8},/turf/space,/area/awaymission/spacebattle/syndicate7) +"hn" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/spacebattle/syndicate7) +"ho" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 8},/turf/space,/area/awaymission/spacebattle/syndicate7) "hp" = (/obj/structure/largecrate,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "hq" = (/obj/structure/closet/crate/secure/plasma,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "hr" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) @@ -385,7 +385,7 @@ "hu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) "hv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) "hw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/spacebattle/syndicate7) -"hx" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (WEST)"; icon_state = "propulsion_l"; dir = 8},/turf/space,/area/awaymission/spacebattle/syndicate7) +"hx" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 8},/turf/space,/area/awaymission/spacebattle/syndicate7) "hy" = (/obj/structure/largecrate,/mob/living/simple_animal/pet/dog/corgi/puppy,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "hz" = (/obj/structure/closet/crate,/obj/item/weapon/paint/anycolor,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) "hA" = (/obj/structure/closet/crate,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plating,/area/awaymission/spacebattle/cruiser) @@ -397,7 +397,7 @@ "hG" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/turf/simulated/floor/wood,/area/awaymission/spacebattle/cruiser) "hH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/awaymission/spacebattle/cruiser) "hI" = (/turf/space,/turf/simulated/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate7) -"hJ" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"; dir = 2},/area/awaymission/spacebattle/cruiser) +"hJ" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/awaymission/spacebattle/cruiser) "hK" = (/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/spacebattle/cruiser) "hL" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/captain,/turf/simulated/floor/wood,/area/awaymission/spacebattle/cruiser) "hM" = (/obj/structure/closet/secure_closet/captains,/turf/simulated/floor/wood,/area/awaymission/spacebattle/cruiser) @@ -411,18 +411,18 @@ "hU" = (/obj/machinery/computer/shuttle,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate7) "hV" = (/obj/structure/stool/bed/chair{dir = 8},/mob/living/simple_animal/hostile/syndicate,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate7) "hW" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/spacebattle/syndicate7) -"hX" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) +"hX" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) "hY" = (/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) -"hZ" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) +"hZ" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) "ia" = (/obj/structure/toilet,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) "ib" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/spacebattle/cruiser) -"ic" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"},/area/awaymission/spacebattle/cruiser) +"ic" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"},/area/awaymission/spacebattle/cruiser) "id" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) -"ie" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/awaymission/spacebattle/cruiser) +"ie" = (/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/awaymission/spacebattle/cruiser) "if" = (/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/spacebattle/cruiser) "ig" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/o2,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/spacebattle/cruiser) -"ih" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) -"ii" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/obj/item/weapon/soap,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) +"ih" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) +"ii" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/obj/item/weapon/soap,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) "ij" = (/mob/living/simple_animal/hostile/syndicate/ranged/space,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) "ik" = (/obj/effect/landmark/corpse/doctor{mobname = "Herbert West"; name = "Herbert West"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/spacebattle/cruiser) "il" = (/obj/effect/landmark/corpse/engineer{mobname = "Carth Robinson"; name = "Carth Robinson"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/awaymission/spacebattle/cruiser) @@ -436,19 +436,19 @@ "it" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/spacebattle/cruiser) "iu" = (/obj/effect/landmark/corpse/engineer{mobname = "Cyrion"; name = "Cyrion"},/obj/item/weapon/flamethrower/full,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "iv" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) -"iw" = (/obj/effect/landmark/corpse/syndicatesoldier,/obj/item/weapon/gun/projectile/automatic/c20r,/turf/simulated/floor/plasteel{tag = "icon-damaged2"; icon_state = "damaged2"},/area/awaymission/spacebattle/cruiser) -"ix" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_r (EAST)"; icon_state = "burst_r"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) +"iw" = (/obj/effect/landmark/corpse/syndicatesoldier,/obj/item/weapon/gun/projectile/automatic/c20r,/turf/simulated/floor/plasteel{icon_state = "damaged2"},/area/awaymission/spacebattle/cruiser) +"ix" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 4},/turf/space,/area/awaymission/spacebattle/cruiser) "iy" = (/obj/effect/landmark/corpse/engineer{mobname = "Mercutio"; name = "Mercutio"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel,/area/awaymission/spacebattle/cruiser) "iz" = (/obj/structure/lattice,/turf/space,/area/space) "iA" = (/obj/effect/landmark/corpse/syndicatesoldier,/turf/space,/area/space) "iB" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/space) "iC" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/space) -"iD" = (/obj/machinery/sleeper,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"; tag = "icon-floor4 (SOUTHWEST)"},/area/space) -"iE" = (/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"; tag = "icon-floor4 (SOUTHWEST)"},/area/space) -"iF" = (/obj/effect/landmark/corpse/syndicatesoldier,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"; tag = "icon-floor4 (SOUTHWEST)"},/area/space) +"iD" = (/obj/machinery/sleeper,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"},/area/space) +"iE" = (/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"},/area/space) +"iF" = (/obj/effect/landmark/corpse/syndicatesoldier,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"},/area/space) "iG" = (/turf/simulated/mineral/clown,/area/space) -"iH" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel/airless{tag = "icon-floor4 (SOUTHWEST)"; icon_state = "floor4"; dir = 10},/area/space) -"iI" = (/obj/item/stack/rods,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"; tag = "icon-floor4 (SOUTHWEST)"},/area/space) +"iH" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel/airless{icon_state = "floor4"; dir = 10},/area/space) +"iI" = (/obj/item/stack/rods,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"},/area/space) "iJ" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate5) "iK" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/spacebattle/syndicate5) "iL" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/spacebattle/syndicate5) @@ -480,9 +480,9 @@ "jl" = (/obj/structure/shuttle/engine/propulsion,/turf/space,/area/awaymission/spacebattle/syndicate6) "jm" = (/turf/simulated/floor/plating/asteroid/airless,/area/space) "jn" = (/turf/simulated/wall/mineral/plasma,/area/awaymission/spacebattle/secret) -"jo" = (/turf/simulated/floor/plasteel{tag = "icon-alienvault"; icon_state = "alienvault"},/area/awaymission/spacebattle/secret) +"jo" = (/turf/simulated/floor/plasteel{icon_state = "alienvault"},/area/awaymission/spacebattle/secret) "jp" = (/obj/machinery/door/airlock/plasma,/turf/simulated/wall/mineral/plasma,/area/awaymission/spacebattle/secret) -"jq" = (/obj/item/clothing/suit/space/hardsuit/wizard,/obj/item/clothing/head/helmet/space/hardsuit/wizard,/turf/simulated/floor/plasteel{tag = "icon-alienvault"; icon_state = "alienvault"},/area/awaymission/spacebattle/secret) +"jq" = (/obj/item/clothing/suit/space/hardsuit/wizard,/obj/item/clothing/head/helmet/space/hardsuit/wizard,/turf/simulated/floor/plasteel{icon_state = "alienvault"},/area/awaymission/spacebattle/secret) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/RandomZLevels/stationCollision.dmm b/_maps/RandomZLevels/stationCollision.dmm index 9b93bc7e342..274a982c2b2 100644 --- a/_maps/RandomZLevels/stationCollision.dmm +++ b/_maps/RandomZLevels/stationCollision.dmm @@ -19,12 +19,12 @@ "as" = (/obj/machinery/power/solar_control{stat = 1},/turf/simulated/floor/plasteel,/area/awaymission/northblock) "at" = (/obj/machinery/power/solar_control,/turf/simulated/floor/plasteel,/area/awaymission/northblock) "au" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel,/area/awaymission/northblock) -"av" = (/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"; tag = ""},/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass,/obj/item/stack/sheet/plasteel,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) +"av" = (/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass,/obj/item/stack/sheet/plasteel,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) "aw" = (/obj/structure/window/reinforced/tinted,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) "ax" = (/obj/structure/window/reinforced/tinted,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) "ay" = (/obj/structure/window/reinforced/tinted,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) "az" = (/obj/structure/window/reinforced/tinted,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) -"aA" = (/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"; tag = ""},/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) +"aA" = (/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) "aB" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/northblock) "aC" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/syndishuttle) "aD" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/awaymission/syndishuttle) @@ -32,14 +32,14 @@ "aF" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/awaymission/northblock) "aG" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) "aH" = (/obj/effect/decal/remains/robot,/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/awaymission/northblock) -"aI" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_l (EAST)"; icon_state = "burst_l"; dir = 4},/turf/space,/area/awaymission/syndishuttle) +"aI" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 4},/turf/space,/area/awaymission/syndishuttle) "aJ" = (/turf/simulated/floor/plating/airless,/area/awaymission/syndishuttle) "aK" = (/turf/space,/area/awaymission/syndishuttle) "aL" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel,/area/awaymission/northblock) "aM" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/awaymission/northblock) "aN" = (/obj/machinery/robotic_fabricator,/turf/simulated/floor/plasteel,/area/awaymission/northblock) -"aO" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (EAST)"; icon_state = "propulsion_r"; dir = 4},/turf/space,/area/awaymission/syndishuttle) -"aP" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/syndishuttle) +"aO" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/space,/area/awaymission/syndishuttle) +"aP" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/turf/simulated/floor/plating/airless,/area/awaymission/syndishuttle) "aQ" = (/turf/simulated/floor/plating/airless,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/awaymission/syndishuttle) "aR" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) "aS" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) @@ -53,7 +53,7 @@ "ba" = (/turf/simulated/wall,/area/space) "bb" = (/obj/machinery/door/airlock/engineering,/turf/simulated/floor/plasteel/airless,/area/awaymission/northblock) "bc" = (/obj/machinery/door/airlock/engineering,/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/awaymission/northblock) -"bd" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_l (EAST)"; icon_state = "burst_l"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/syndishuttle) +"bd" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/syndishuttle) "be" = (/obj/structure/shuttle/engine/heater,/turf/simulated/floor/plating,/area/awaymission/syndishuttle) "bf" = (/turf/simulated/floor/plating,/area/awaymission/syndishuttle) "bg" = (/obj/machinery/sleeper,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/syndishuttle) @@ -64,14 +64,14 @@ "bl" = (/obj/structure/closet/syndicate,/obj/item/clothing/suit/space/hardsuit/syndi,/obj/item/clothing/head/helmet/space/hardsuit/syndi,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/syndishuttle) "bm" = (/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/syndishuttle) "bn" = (/obj/structure/closet/syndicate,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/syndishuttle) -"bo" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/syndishuttle) +"bo" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/syndishuttle) "bp" = (/obj/structure/shuttle/engine/router,/turf/simulated/floor/plating,/area/awaymission/syndishuttle) -"bq" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/turf/simulated/floor/plating,/area/awaymission/syndishuttle) +"bq" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/turf/simulated/floor/plating,/area/awaymission/syndishuttle) "br" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/simulated/floor/plating,/area/awaymission/syndishuttle) "bs" = (/obj/structure/lattice,/turf/space,/area/awaymission/syndishuttle) "bt" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/syndishuttle) -"bu" = (/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"; tag = "icon-floor4 (SOUTHWEST)"},/area/awaymission/syndishuttle) -"bv" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"; tag = "icon-floor4 (SOUTHWEST)"},/area/awaymission/syndishuttle) +"bu" = (/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"},/area/awaymission/syndishuttle) +"bv" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "shuttlefloor4"},/area/awaymission/syndishuttle) "bw" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/awaymission/research) "bx" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/awaymission/research) "by" = (/turf/simulated/wall/r_wall,/area/awaymission/research) @@ -97,8 +97,8 @@ "bS" = (/mob/living/simple_animal/lizard,/turf/simulated/floor/grass,/area/awaymission/research) "bT" = (/turf/simulated/floor/grass,/area/awaymission/research) "bU" = (/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/awaymission/research) -"bV" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_r (EAST)"; icon_state = "burst_r"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/syndishuttle) -"bW" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/syndishuttle) +"bV" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/awaymission/syndishuttle) +"bW" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/syndishuttle) "bX" = (/turf/simulated/floor/plating,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/awaymission/syndishuttle) "bY" = (/obj/machinery/sleeper{dir = 1},/turf/simulated/floor/plasteel/shuttle/red/syndicate,/area/awaymission/syndishuttle) "bZ" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/awaymission/research) @@ -127,11 +127,11 @@ "cw" = (/obj/structure/window/reinforced,/mob/living/carbon/monkey,/turf/simulated/floor/grass,/area/awaymission/research) "cx" = (/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/awaymission/research) "cy" = (/obj/structure/window/reinforced,/obj/effect/overlay/palmtree_l,/turf/simulated/floor/grass,/area/awaymission/research) -"cz" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/space,/area/awaymission/research) -"cA" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission/research) +"cz" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/space,/area/awaymission/research) +"cA" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission/research) "cB" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) "cC" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) -"cD" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (EAST)"; icon_state = "propulsion_l"; dir = 4},/turf/space,/area/awaymission/syndishuttle) +"cD" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/space,/area/awaymission/syndishuttle) "cE" = (/turf/simulated/floor/plating/airless,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/awaymission/syndishuttle) "cF" = (/obj/machinery/portable_atmospherics/canister/toxins{destroyed = 1},/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/awaymission/northblock) "cG" = (/obj/machinery/door/window/eastleft,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) @@ -139,7 +139,7 @@ "cI" = (/obj/item/clothing/mask/facehugger,/mob/living/carbon/alien/humanoid/royal/queen{fireloss = 300; stat = 2},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "cJ" = (/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "cK" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) -"cL" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission/research) +"cL" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission/research) "cM" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/obj/item/clothing/suit/toggle/labcoat,/obj/item/weapon/clipboard{pixel_x = -7; pixel_y = -4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) "cN" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) "cO" = (/obj/effect/rune,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) @@ -156,7 +156,7 @@ "cZ" = (/turf/space,/area/awaymission/research) "da" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) "db" = (/obj/machinery/door/airlock/atmos{name = "Airlock"},/turf/simulated/floor/plasteel,/area/awaymission/northblock) -"dc" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/structure/window/reinforced/tinted,/turf/simulated/floor/plasteel,/area/awaymission/research) +"dc" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/structure/window/reinforced/tinted,/turf/simulated/floor/plasteel,/area/awaymission/research) "dd" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/research) "de" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/research) "df" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) @@ -170,11 +170,11 @@ "dn" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; state = 2},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) "do" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) "dp" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel,/area/awaymission/northblock) -"dq" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) -"dr" = (/obj/machinery/door/airlock/highsecurity{name = "Security Airlock"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/research) -"ds" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/research) -"dt" = (/obj/machinery/door/window/westright{name = "Windoor"},/obj/machinery/door/window/eastright{name = "Windoor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) -"du" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) +"dq" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) +"dr" = (/obj/machinery/door/airlock/highsecurity{name = "Security Airlock"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/research) +"ds" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/research) +"dt" = (/obj/machinery/door/window/westright{name = "Windoor"},/obj/machinery/door/window/eastright{name = "Windoor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) +"du" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "dv" = (/obj/effect/decal/remains/human,/obj/item/clothing/suit/toggle/labcoat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "dw" = (/obj/machinery/door/airlock/hatch{name = "High-Security Airlock"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/research) "dx" = (/obj/singularity/narsie/sc_Narsie{pixel_x = -48; pixel_y = -51},/turf/space,/area/awaymission/research) @@ -182,8 +182,8 @@ "dz" = (/obj/machinery/message_server{stat = 1},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/awaymission/northblock) "dA" = (/obj/machinery/computer/message_monitor{stat = 1},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/awaymission/northblock) "dB" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/awaymission/northblock) -"dC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/awaymission/northblock) -"dD" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_y = -10; tag = "icon-shower (EAST)"},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/research) +"dC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/awaymission/northblock) +"dD" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_y = -10},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/research) "dE" = (/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/awaymission/research) "dF" = (/obj/structure/window/reinforced,/obj/structure/cable,/obj/machinery/power/apc{cell_type = 7500; dir = 8; name = "Research APC"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "dG" = (/obj/machinery/door/window/southright{name = "Windoor"},/obj/effect/decal/remains/human,/obj/item/clothing/suit/toggle/labcoat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) @@ -202,7 +202,7 @@ "dT" = (/obj/structure/sign/goldenplaque{pixel_y = 31},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) "dU" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) "dV" = (/obj/structure/sign/atmosplaque{pixel_y = 31},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) -"dW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) +"dW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) "dX" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "dY" = (/obj/structure/table,/obj/item/stack/cable_coil{amount = 5},/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "dZ" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) @@ -226,15 +226,15 @@ "er" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/northblock) "es" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/awaymission/northblock) "et" = (/obj/structure/stool/bed/chair/office/light{dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) -"eu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/northblock) -"ev" = (/obj/machinery/door/airlock/command,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/northblock) -"ew" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/awaymission/northblock) -"ex" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/northblock) -"ey" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) -"ez" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) -"eA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/awaymission/northblock) -"eB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/northblock) -"eC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) +"eu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/awaymission/northblock) +"ev" = (/obj/machinery/door/airlock/command,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/northblock) +"ew" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/awaymission/northblock) +"ex" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/northblock) +"ey" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) +"ez" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) +"eA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/awaymission/northblock) +"eB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/northblock) +"eC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) "eD" = (/obj/structure/AIcore,/turf/simulated/floor/greengrid,/area/awaymission/research) "eE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/greengrid,/area/awaymission/research) "eF" = (/turf/simulated/floor/greengrid,/area/awaymission/research) @@ -242,12 +242,12 @@ "eH" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8; icon_state = "manifold"; level = 2},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "eI" = (/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "eJ" = (/obj/machinery/atmospherics/pipe/simple{dir = 9; icon_state = "intact"; level = 2},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) -"eK" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/research) +"eK" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/awaymission/research) "eL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/awaymission/northblock) "eM" = (/obj/structure/table,/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/awaymission/northblock) "eN" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "North Block APC"; pixel_x = 28},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/awaymission/northblock) "eO" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/awaymission/northblock) -"eP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) +"eP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/northblock) "eQ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/stack/cable_coil{amount = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "eR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "eS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) @@ -262,7 +262,7 @@ "fb" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) "fc" = (/turf/simulated/floor/plasteel,/area/awaymission/northblock) "fd" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/northblock) -"fe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/northblock) +"fe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/northblock) "ff" = (/obj/structure/table,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor{pixel_x = -3},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module{pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "fg" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "fh" = (/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stock_parts/micro_laser{pixel_x = -3; pixel_y = -3},/obj/item/weapon/stock_parts/micro_laser{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) @@ -280,7 +280,7 @@ "ft" = (/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) "fu" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/midblock) "fv" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/midblock) -"fw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/midblock) +"fw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/midblock) "fx" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "fy" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 20; pixel_x = -3; pixel_y = -3},/obj/item/stack/sheet/glass{amount = 10; pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) "fz" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/awaymission/research) @@ -292,37 +292,37 @@ "fF" = (/obj/item/ammo_casing/c45,/obj/item/ammo_casing/c45{pixel_x = 7},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/northblock) "fG" = (/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/under/syndicate,/obj/item/clothing/head/helmet/space/syndicate,/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/obj/item/clothing/shoes/sneakers/syndigaloshes,/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/gun/projectile/automatic/pistol,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/northblock) "fH" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) -"fI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/midblock) -"fJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/awaymission/midblock) -"fK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/midblock) +"fI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/midblock) +"fJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/awaymission/midblock) +"fK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/midblock) "fL" = (/turf/simulated/wall/cult,/area/awaymission/midblock) "fM" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/midblock) "fN" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/midblock) -"fO" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/awaymission/arrivalblock) -"fP" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"; dir = 2},/area/awaymission/arrivalblock) +"fO" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/awaymission/arrivalblock) +"fP" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/awaymission/arrivalblock) "fQ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "fR" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "fS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) -"fT" = (/turf/space,/turf/simulated/wall/shuttle{dir = 3; icon_state = "swall_f10"; layer = 2; tag = "icon-swall_f10"},/area/awaymission/arrivalblock) +"fT" = (/turf/space,/turf/simulated/wall/shuttle{dir = 3; icon_state = "swall_f10"; layer = 2},/area/awaymission/arrivalblock) "fU" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = -3; pixel_y = 5},/obj/item/weapon/paper{pixel_x = 3},/obj/item/weapon/pen{pixel_x = 10; pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/northblock) "fV" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/northblock) -"fW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) +"fW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) "fX" = (/turf/simulated/wall,/area/awaymission/midblock) "fY" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/midblock) "fZ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/midblock) "ga" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/midblock) "gb" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/midblock) -"gc" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/awaymission/arrivalblock) -"gd" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"; dir = 2},/area/awaymission/arrivalblock) +"gc" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/awaymission/arrivalblock) +"gd" = (/turf/simulated/wall/shuttle{icon_state = "swall1"; dir = 2},/area/awaymission/arrivalblock) "ge" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/awaymission/arrivalblock) "gf" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/awaymission/arrivalblock) "gg" = (/obj/structure/stool/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/northblock) "gh" = (/obj/item/weapon/storage/secure/safe/sc_ssafe{pixel_x = 4; pixel_y = -26},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/northblock) "gi" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/captain,/obj/item/clothing/under/rank/captain,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/gun/energy/laser/retro/sc_retro,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/awaymission/northblock) -"gj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/midblock) +"gj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/midblock) "gk" = (/obj/structure/closet/wardrobe,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gl" = (/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"gm" = (/obj/structure/closet/wardrobe/pjs,/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"; tag = ""},/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"; tag = ""},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"gm" = (/obj/structure/closet/wardrobe/pjs,/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gn" = (/obj/structure/closet/wardrobe/pink,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "go" = (/obj/structure/kitchenspike,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gp" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel,/area/awaymission/midblock) @@ -343,10 +343,10 @@ "gE" = (/obj/machinery/door/window/eastleft{name = "Windoor"},/obj/machinery/door/window/westleft{name = "Windoor"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gF" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gG" = (/obj/item/ammo_casing/shotgun,/obj/machinery/power/apc{cell_type = 5000; dir = 8; name = "Mid Block APC"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"gH" = (/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"gI" = (/obj/item/ammo_casing/shotgun,/obj/effect/decal/remains/human,/obj/item/clothing/under/rank/bartender,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/gun/projectile/shotgun/sc_pump,/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"gJ" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"gK" = (/obj/structure/stool,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"gH" = (/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"gI" = (/obj/item/ammo_casing/shotgun,/obj/effect/decal/remains/human,/obj/item/clothing/under/rank/bartender,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/gun/projectile/shotgun/sc_pump,/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"gJ" = (/obj/structure/table,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"gK" = (/obj/structure/stool,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gL" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gM" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "gN" = (/obj/machinery/door/airlock/sandstone{name = "Airlock"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/midblock) @@ -360,7 +360,7 @@ "gV" = (/obj/machinery/door/unpowered/shuttle{name = "Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/awaymission/arrivalblock) "gW" = (/obj/machinery/door/airlock/external{welded = 1},/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "gX" = (/obj/structure/sign/vacuum{pixel_y = 32},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/awaymission/arrivalblock) -"gY" = (/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/awaymission/arrivalblock) +"gY" = (/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/awaymission/arrivalblock) "gZ" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/awaymission/arrivalblock) "ha" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/awaymission/arrivalblock) "hb" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/melee/baton,/obj/item/clothing/head/warden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/awaymission/arrivalblock) @@ -369,13 +369,13 @@ "he" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/awaymission/arrivalblock) "hf" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/midblock) "hg" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/blue,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"hh" = (/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"; tag = ""},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"hh" = (/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hi" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/purple,/obj/structure/window/reinforced/tinted{dir = 1},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hj" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/purple,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hk" = (/obj/machinery/door/airlock,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hl" = (/obj/structure/table,/obj/item/ammo_casing/shotgun,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hm" = (/obj/structure/table,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"hn" = (/obj/structure/stool,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"hn" = (/obj/structure/stool,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "ho" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hp" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/awaymission/midblock) "hq" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/awaymission/midblock) @@ -392,11 +392,11 @@ "hB" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "hC" = (/obj/machinery/door/window/southleft{name = "Windoor"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/arrivalblock) "hD" = (/obj/item/ammo_casing/c10mm{pixel_x = 2; pixel_y = 5},/obj/item/ammo_casing/c10mm{pixel_x = -4; pixel_y = -5},/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) -"hE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) +"hE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) "hF" = (/obj/structure/sink/kitchen{pixel_y = 32},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hG" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/obj/item/weapon/reagent_containers/food/condiment/peppermill,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hH" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"hI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"hI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "hK" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/awaymission/arrivalblock) "hL" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) @@ -407,7 +407,7 @@ "hQ" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/purple,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hR" = (/obj/machinery/processor,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hS" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"hT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"hT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hU" = (/obj/effect/decal/remains/human,/obj/item/weapon/kitchen/knife/butcher,/obj/item/weapon/kitchen/knife,/obj/item/clothing/head/chefhat,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hV" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "hW" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/obj/item/ammo_casing/c10mm,/obj/item/weapon/paper/sc_safehint_paper_caf,/obj/item/clothing/under/syndicate,/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/gun/projectile/automatic/c20r/sc_c20r,/turf/simulated/floor/plasteel,/area/awaymission/midblock) @@ -416,16 +416,16 @@ "hZ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/midblock) "ia" = (/obj/effect/decal/cleanable/blood/splatter,/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "ib" = (/obj/machinery/power/apc{cell_type = 7500; dir = 8; name = "Arrivals Block APC"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/awaymission/arrivalblock) -"ic" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) -"id" = (/obj/structure/stool/bed/chair{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) -"ie" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/arrivalblock) -"if" = (/obj/machinery/door/airlock/glass_security{name = "Glass Airlock"; req_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) -"ig" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) -"ih" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/midblock) +"ic" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) +"id" = (/obj/structure/stool/bed/chair{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) +"ie" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/awaymission/arrivalblock) +"if" = (/obj/machinery/door/airlock/glass_security{name = "Glass Airlock"; req_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) +"ig" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless,/area/awaymission/midblock) +"ih" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/awaymission/midblock) "ii" = (/obj/machinery/microwave{pixel_x = -2; pixel_y = 7},/obj/structure/table,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "ij" = (/obj/structure/stool,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "ik" = (/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"il" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/obj/item/ammo_casing/c10mm,/obj/item/clothing/under/syndicate,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/item/weapon/gun/projectile/automatic/c20r/sc_c20r,/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"il" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/obj/item/ammo_casing/c10mm,/obj/item/clothing/under/syndicate,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/gun/projectile/automatic/c20r/sc_c20r,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "im" = (/obj/structure/stool/bed/chair{dir = 4},/obj/item/ammo_casing/c10mm,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "in" = (/obj/structure/table,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "io" = (/obj/structure/stool/bed/chair{dir = 8},/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) @@ -442,7 +442,7 @@ "iz" = (/obj/machinery/door/window/eastright{name = "Windoor"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "iA" = (/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "iB" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/obj/item/clothing/under/syndicate,/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/gun/projectile/automatic/c20r/sc_c20r,/turf/simulated/floor/plasteel,/area/awaymission/midblock) -"iC" = (/obj/item/ammo_casing/c10mm,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"iC" = (/obj/item/ammo_casing/c10mm,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "iD" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/obj/item/ammo_casing/c10mm,/obj/item/clothing/under/syndicate,/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/gun/projectile/automatic/c20r/sc_c20r,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "iE" = (/obj/item/ammo_casing/c10mm,/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "iF" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/midblock) @@ -451,7 +451,7 @@ "iI" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "iJ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "iK" = (/obj/machinery/door/airlock/security,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) -"iL" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/midblock) +"iL" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/midblock) "iM" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel,/area/awaymission/midblock) "iN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "iO" = (/obj/item/weapon/shard{icon_state = "small"},/obj/item/stack/rods,/obj/effect/decal/remains/human,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) @@ -461,7 +461,7 @@ "iS" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/awaymission/arrivalblock) "iT" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/awaymission/arrivalblock) "iU" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) -"iV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"iV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) "iW" = (/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) "iX" = (/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) "iY" = (/obj/item/ammo_casing/c10mm{pixel_x = -4; pixel_y = 3},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) @@ -476,19 +476,19 @@ "jh" = (/turf/space,/area/awaymission/arrivalblock) "ji" = (/obj/structure/girder,/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/awaymission/arrivalblock) "jj" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/awaymission/southblock) -"jk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) -"jl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) -"jm" = (/obj/item/ammo_casing/c10mm{pixel_y = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) -"jn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) -"jo" = (/obj/structure/sign/bluecross{pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) -"jp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) -"jq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"jk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"jl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"jm" = (/obj/item/ammo_casing/c10mm{pixel_y = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"jn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"jo" = (/obj/structure/sign/bluecross{pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"jp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) +"jq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) "jr" = (/obj/item/clothing/head/helmet/space/syndicate,/turf/simulated/floor/plasteel/airless,/area/awaymission/southblock) "js" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) -"jt" = (/obj/machinery/door/airlock/maintenance{name = "Airlock"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"jt" = (/obj/machinery/door/airlock/maintenance{name = "Airlock"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "ju" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Glass Airlock"; req_access_txt = "0"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "jv" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel,/area/awaymission/southblock) -"jw" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"jw" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "jx" = (/turf/simulated/wall,/area/awaymission/gateroom) "jy" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/southblock) "jz" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/southblock) @@ -499,7 +499,7 @@ "jE" = (/obj/machinery/light{dir = 1},/obj/item/ammo_casing/c10mm,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "jF" = (/obj/structure/sign/vacuum{pixel_y = 32},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "jG" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel,/area/awaymission/southblock) -"jH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"jH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "jI" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel,/area/awaymission/southblock) "jJ" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "jK" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/southblock) @@ -527,28 +527,28 @@ "kg" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/southblock) "kh" = (/obj/structure/table,/obj/item/weapon/paper_bin,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/southblock) "ki" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) -"kj" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"kj" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "kk" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "kl" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "km" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) -"kn" = (/obj/structure/stool/bed/chair/comfy/brown{tag = "icon-comfychair_brown (EAST)"; icon_state = "comfychair_brown"; dir = 4},/turf/simulated/floor/wood,/area/awaymission/southblock) +"kn" = (/obj/structure/stool/bed/chair/comfy/brown{icon_state = "comfychair_brown"; dir = 4},/turf/simulated/floor/wood,/area/awaymission/southblock) "ko" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/awaymission/arrivalblock) "kp" = (/obj/machinery/door/airlock/external{welded = 1},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "kq" = (/obj/machinery/door/airlock/medical,/turf/simulated/floor/plasteel,/area/awaymission/southblock) "kr" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/gateroom) "ks" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) -"kt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/gateway,/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"kt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/gateway,/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "ku" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "kv" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/awaymission/gateroom) "kw" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/awaymission/southblock) "kx" = (/obj/structure/stool/bed/chair/comfy/brown,/turf/simulated/floor/wood,/area/awaymission/southblock) "ky" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/awaymission/southblock) -"kz" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r"; icon_state = "propulsion_r"},/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) +"kz" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) "kA" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) -"kB" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l"; icon_state = "propulsion_l"},/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_l"; icon_state = "burst_l"},/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l"; icon_state = "propulsion_l"},/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) -"kC" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (NORTH)"; icon_state = "propulsion_l"; dir = 1},/obj/structure/window/reinforced,/turf/space,/area/awaymission/arrivalblock) -"kD" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (NORTH)"; icon_state = "propulsion_r"; dir = 1},/obj/structure/window/reinforced,/turf/space,/area/awaymission/arrivalblock) -"kE" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/awaymission/arrivalblock) +"kB" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/awaymission/arrivalblock) +"kC" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/obj/structure/window/reinforced,/turf/space,/area/awaymission/arrivalblock) +"kD" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/obj/structure/window/reinforced,/turf/space,/area/awaymission/arrivalblock) +"kE" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/awaymission/arrivalblock) "kF" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "kG" = (/obj/machinery/vending/hydroseeds,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "kH" = (/obj/structure/sink/kitchen{pixel_y = 32},/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) @@ -557,24 +557,24 @@ "kK" = (/obj/structure/bodycontainer/morgue,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "kL" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "kM" = (/obj/structure/stool/bed/roller,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/awaymission/southblock) -"kN" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet{pixel_x = 2; pixel_y = 2},/obj/item/weapon/paper/pamphlet{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/awaymission/gateroom) +"kN" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet{pixel_x = 2; pixel_y = 2},/obj/item/weapon/paper/pamphlet{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/awaymission/gateroom) "kO" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/gateroom) -"kP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/gateroom) -"kQ" = (/obj/structure/table,/obj/item/device/camera,/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/awaymission/gateroom) -"kR" = (/obj/structure/stool/bed/chair/comfy/brown{tag = "icon-comfychair_brown (WEST)"; icon_state = "comfychair_brown"; dir = 8},/turf/simulated/floor/wood,/area/awaymission/southblock) +"kP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/gateroom) +"kQ" = (/obj/structure/table,/obj/item/device/camera,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/awaymission/gateroom) +"kR" = (/obj/structure/stool/bed/chair/comfy/brown{icon_state = "comfychair_brown"; dir = 8},/turf/simulated/floor/wood,/area/awaymission/southblock) "kS" = (/obj/structure/stool/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle/white,/area/awaymission/arrivalblock) "kT" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel/shuttle/white,/area/awaymission/arrivalblock) "kU" = (/obj/structure/stool/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle/white,/area/awaymission/arrivalblock) -"kV" = (/obj/structure/bodycontainer/morgue,/turf/simulated/floor/plasteel{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/awaymission/southblock) +"kV" = (/obj/structure/bodycontainer/morgue,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 8},/area/awaymission/southblock) "kW" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/southblock) -"kX" = (/turf/simulated/floor/plasteel{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/awaymission/southblock) +"kX" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 8},/area/awaymission/southblock) "kY" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/southblock) "kZ" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/awaymission/gateroom) "la" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) -"lb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"lb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "lc" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/awaymission/gateroom) "ld" = (/turf/simulated/floor/plasteel/shuttle/white,/area/awaymission/arrivalblock) -"le" = (/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"; tag = ""},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"le" = (/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "lf" = (/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "lg" = (/obj/structure/stool/bed,/obj/structure/window/reinforced/tinted,/obj/item/weapon/bedsheet/medical,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/southblock) "lh" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/awaymission/gateroom) @@ -584,18 +584,18 @@ "ll" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "lm" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "ln" = (/obj/item/weapon/grown/nettle/death,/obj/item/clothing/shoes/sneakers/brown,/obj/item/clothing/under/rank/hydroponics,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) -"lo" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/awaymission/southblock) -"lp" = (/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"lo" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 8},/area/awaymission/southblock) +"lp" = (/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "lq" = (/obj/structure/stool/bed,/obj/structure/window/reinforced/tinted,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/southblock) "lr" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/awaymission/gateroom) "ls" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/awaymission/gateroom) "lt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/southblock) "lu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/southblock) "lv" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/awaymission/southblock) -"lw" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area/awaymission/arrivalblock) -"lx" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/awaymission/arrivalblock) +"lw" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/awaymission/arrivalblock) +"lx" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/awaymission/arrivalblock) "ly" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/arrivalblock) -"lz" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area/awaymission/arrivalblock) +"lz" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/awaymission/arrivalblock) "lA" = (/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "lB" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "lC" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) @@ -603,10 +603,10 @@ "lE" = (/obj/structure/optable,/obj/machinery/light/small{dir = 1},/obj/effect/decal/remains/human,/obj/item/weapon/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "lF" = (/obj/structure/sink{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "lG" = (/obj/structure/stool/bed,/obj/structure/window/reinforced/tinted,/obj/item/weapon/bedsheet/medical,/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/southblock) -"lH" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) -"lI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/door/airlock/highsecurity{name = "Security Airlock"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"lH" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"lI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "Security Airlock"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "lJ" = (/turf/simulated/floor/plasteel,/area/awaymission/gateroom) -"lK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"lK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "lL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "lM" = (/obj/structure/closet/secure_closet/hydroponics,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) "lN" = (/obj/structure/table,/obj/item/weapon/shovel/spade,/obj/item/weapon/reagent_containers/spray/plantbgone,/turf/simulated/floor/plasteel,/area/awaymission/arrivalblock) @@ -615,24 +615,24 @@ "lQ" = (/obj/machinery/door/window/westright{name = "Windoor"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) "lR" = (/obj/machinery/vending/wallmed{pixel_x = 31},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/awaymission/southblock) "lS" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/southblock) -"lT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) -"lU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/southblock) -"lV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/southblock) -"lW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/southblock) -"lX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/awaymission/southblock) -"lY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/engineering,/turf/simulated/floor/plasteel,/area/awaymission/gateroom) -"lZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) -"ma" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"lT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"lU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/southblock) +"lV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/southblock) +"lW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/awaymission/southblock) +"lX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/awaymission/southblock) +"lY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/engineering,/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"lZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"ma" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "mb" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "mc" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "md" = (/obj/structure/closet/crate/medical{name = "Surgical Tools"},/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/surgicaldrill,/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "me" = (/obj/structure/stool/bed/roller,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) -"mf" = (/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"; tag = ""},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/southblock) +"mf" = (/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/southblock) "mg" = (/obj/machinery/sleeper{dir = 1},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/awaymission/southblock) "mh" = (/obj/machinery/sleep_console,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/southblock) "mi" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/awaymission/southblock) "mj" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/awaymission/southblock) -"mk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/awaymission/gateroom) +"mk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/awaymission/gateroom) "ml" = (/obj/machinery/power/apc{dir = 4; name = "Gateroom APC"; pixel_x = 28; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/awaymission/gateroom) (1,1,1) = {" diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index fdc7cfcefd4..4deff8c6211 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -3,36 +3,36 @@ "ac" = (/turf/indestructible{icon_state = "rock"; name = "rock"},/area/space) "ad" = (/turf/simulated/mineral/random/labormineral,/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "ae" = (/turf/simulated/wall/r_wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"af" = (/turf/simulated/wall/shuttle{tag = "icon-swallc2"; icon_state = "swallc2"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"af" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ag" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ah" = (/turf/simulated/wall/shuttle{tag = "icon-swallc1"; icon_state = "swallc1"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ah" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ai" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"aj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; tag = "icon-damaged1 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ak" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; tag = "icon-damaged2 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"al" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"am" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"aj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ak" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"al" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"am" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "an" = (/turf/simulated/wall/r_wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ao" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ap" = (/obj/machinery/light/small{active_power_usage = 0; dir = 8; icon_state = "bulb-broken"; status = 2},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"aq" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; tag = "icon-damaged4 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ap" = (/obj/machinery/light/small{active_power_usage = 0; dir = 8; icon_state = "bulb-broken"; status = 2},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"aq" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ar" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{active_power_usage = 0; dir = 4; icon_state = "bulb-broken"; status = 2},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"as" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; tag = "icon-damaged3 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"at" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "darkblue"; tag = "icon-darkblue"; temperature = 273.15},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"au" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue (SOUTHEAST)"; icon_state = "darkblue"; dir = 6; heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"av" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"as" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"at" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "darkblue"; temperature = 273.15},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"au" = (/turf/simulated/floor/plasteel{icon_state = "darkblue"; dir = 6; heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"av" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aw" = (/turf/simulated/wall/shuttle{icon_state = "swall8"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ax" = (/obj/machinery/button/door{desc = "A remote control-switch to send the elevator to the basement floor."; id = "UO45_useless"; name = "B1"; pixel_x = 6; pixel_y = -24; req_access_txt = "0"},/obj/machinery/button/door{desc = "A remote control-switch for the elevator doors."; id = "UO45_Elevator"; name = "Elevator Doors"; pixel_x = -6; pixel_y = -24; req_access_txt = "0"},/obj/machinery/button/door{desc = "A remote control-switch to send the elevator to the ground floor."; id = "UO45_useless"; name = "G1"; pixel_x = 6; pixel_y = -34; req_access_txt = "0"},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ax" = (/obj/machinery/button/door{desc = "A remote control-switch to send the elevator to the basement floor."; id = "UO45_useless"; name = "B1"; pixel_x = 6; pixel_y = -24; req_access_txt = "0"},/obj/machinery/button/door{desc = "A remote control-switch for the elevator doors."; id = "UO45_Elevator"; name = "Elevator Doors"; pixel_x = -6; pixel_y = -24; req_access_txt = "0"},/obj/machinery/button/door{desc = "A remote control-switch to send the elevator to the ground floor."; id = "UO45_useless"; name = "G1"; pixel_x = 6; pixel_y = -34; req_access_txt = "0"},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ay" = (/obj/machinery/door/poddoor{id = "UO45_Elevator"; name = "Elevator Door"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "delivery"; name = "floor"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"az" = (/obj/machinery/door/poddoor{id = "UO45_Elevator"; name = "Elevator Door"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"az" = (/obj/machinery/door/poddoor{id = "UO45_Elevator"; name = "Elevator Door"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aA" = (/turf/simulated/wall/shuttle{icon_state = "swall4"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"aB" = (/turf/simulated/wall/shuttle{tag = "icon-swallc4"; icon_state = "swallc4"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"aB" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aC" = (/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aD" = (/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aE" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"aF" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"aF" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aG" = (/obj/machinery/button/door{desc = "A remote control-switch to call the elevator to your level."; id = "UO45_useless"; name = "Call Elevator"; pixel_x = -6; pixel_y = 24; req_access_txt = "0"},/obj/machinery/button/door{desc = "A remote control-switch for the elevator doors."; id = "UO45_Elevator"; name = "Elevator Doors"; pixel_x = 6; pixel_y = 24; req_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aH" = (/obj/structure/sign/poster{icon_state = "poster2_legit"; pixel_x = 0; pixel_y = 32; serial_number = 2},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"aI" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"aI" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aJ" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aK" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/obj/structure/sign/poster{icon_state = "poster19_legit"; pixel_x = -32; pixel_y = 0; serial_number = 19},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aL" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -44,7 +44,7 @@ "aR" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aS" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aT" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"aU" = (/obj/structure/stool/bed/chair/comfy/beige{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "grimy"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"aU" = (/obj/structure/stool/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 4},/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "grimy"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aV" = (/obj/structure/table/wood,/obj/item/weapon/newspaper,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "grimy"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aW" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "grimy"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "aX" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "grimy"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -93,29 +93,29 @@ "bO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "bP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "bQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"bR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"bR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "bS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "bT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"bU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"bU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "bV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10; level = 1},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "bW" = (/obj/effect/glowshroom/single,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 351.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bX" = (/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 351.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "bY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"bZ" = (/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"bZ" = (/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ca" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ce" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ce" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ch" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ci" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ck" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ck" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "co" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -124,31 +124,31 @@ "ct" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cu" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cv" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cx" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/pj/blue,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/suit_jacket/female,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cA" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/stool/bed/chair/wood/normal{tag = "icon-wooden_chair (EAST)"; icon_state = "wooden_chair"; dir = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/suit_jacket/female,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cA" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/stool/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cD" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cE" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/structure/stool/bed/chair/wood/normal{tag = "icon-wooden_chair (NORTH)"; icon_state = "wooden_chair"; dir = 1},/obj/machinery/button/door{id = "awaydorm2"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/structure/stool/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 1},/obj/machinery/button/door{id = "awaydorm2"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/button/door{id = "awaydorm1"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5; level = 2},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window{tag = "icon-window (WEST)"; icon_state = "window"; dir = 8},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window{icon_state = "window"; dir = 8},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"cU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/structure/window{tag = "icon-window (EAST)"; icon_state = "window"; dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"cU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/structure/window{icon_state = "window"; dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10; level = 1},/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cW" = (/obj/structure/grille,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "cX" = (/obj/item/stack/rods,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -157,18 +157,18 @@ "da" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "db" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{id_tag = "awaydorm1"; name = "Dorm 1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/closet,/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"dd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"dd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "de" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "df" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/stack/rods,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"di" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"dj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"di" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"dj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"dl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"dl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dm" = (/obj/machinery/firealarm{dir = 2; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"do" = (/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "greencorner"; tag = "icon-greencorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"do" = (/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "greencorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dq" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dr" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -176,7 +176,7 @@ "dt" = (/obj/machinery/seed_extractor,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "du" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"dw" = (/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"dw" = (/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -187,15 +187,15 @@ "dE" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"dH" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"dH" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dJ" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 2; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dK" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{pixel_y = 25},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dL" = (/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dM" = (/obj/structure/closet/secure_closet{icon_state = "hydrosecure"; locked = 0; name = "botanist's locker"; req_access_txt = "201"},/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/device/analyzer/plant_analyzer,/obj/item/clothing/mask/bandana,/obj/item/weapon/hatchet,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"dN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"dN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dO" = (/obj/structure/closet/secure_closet{icon_state = "sec1"; locked = 1; name = "security officer's locker"; req_access_txt = "201"},/obj/item/weapon/storage/belt/security,/obj/item/device/assembly/flash/handheld,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"dP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/stool/bed/chair,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"dP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/stool/bed/chair,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dR" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "dS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -208,11 +208,11 @@ "dZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ea" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eb" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ec" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ec" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ed" = (/obj/structure/closet/secure_closet{icon_state = "hydrosecure"; locked = 0; name = "botanist's locker"; req_access_txt = "201"},/obj/item/clothing/suit/apron,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/clothing/mask/bandana,/obj/item/weapon/cultivator,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ee" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ef" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Security Checkpoint Maintenance"; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"eg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"eg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ei" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ej" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "redcorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -224,20 +224,20 @@ "ep" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "er" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"es" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"et" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"es" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"et" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eu" = (/turf/simulated/floor/plating{carbon_dioxide = 173.4; heat_capacity = 1e+006; icon_plating = "asteroidplating"; icon_state = "asteroidplating"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "ev" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/filingcabinet,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ew" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ex" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/door/window/southleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Security Checkpoint"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ey" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ez" = (/obj/structure/stool/bed/chair/office{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ez" = (/obj/structure/stool/bed/chair/office{icon_state = "chair"; dir = 4},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eA" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eB" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"eC" = (/obj/structure/stool/bed/chair/office{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"eD" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"eC" = (/obj/structure/stool/bed/chair/office{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"eD" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eE" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"eF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"eF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/external,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eI" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -245,7 +245,7 @@ "eK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/newscaster/security_unit{pixel_x = -30; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eL" = (/obj/structure/stool/bed/chair/office/dark{dir = 4},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eM" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/folder/red,/obj/machinery/door/window/southleft{base_state = "left"; dir = 8; icon_state = "left"; name = "Security Checkpoint"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"eN" = (/obj/structure/stool/bed/chair/office{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"eN" = (/obj/structure/stool/bed/chair/office{icon_state = "chair"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eO" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eP" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "greencorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eQ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "left"; dir = 4; icon_state = "left"; name = "Hydroponics Desk"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -259,17 +259,17 @@ "eY" = (/obj/machinery/computer/security{network = list("UO45")},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "eZ" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "redcorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fa" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fb" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "greencorner"; tag = "icon-greencorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fb" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "greencorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fc" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fd" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Hydroponics Desk"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ff" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fg" = (/obj/machinery/camera{c_tag = "Hydroponics"; dir = 1; network = list("UO45")},/obj/machinery/power/apc{cell_type = 15000; dir = 2; locked = 0; name = "Hydroponics APC"; pixel_x = 0; pixel_y = -25; req_access = null; start_charge = 100},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "green"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall/rust,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fn" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -280,16 +280,16 @@ "ft" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fu" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fv" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/structure/stool/bed/chair/wood/normal,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "awaydorm3"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{id_tag = "awaydorm3"; name = "Dorm 3"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fH" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/poster{icon_state = "poster14"; pixel_x = 32; pixel_y = 0; serial_number = 14},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "greencorner"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -299,11 +299,11 @@ "fM" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastleft{dir = 1; name = "Hydroponics Desk"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "fN" = (/turf/simulated/wall/rust,/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "fO" = (/turf/simulated/wall,/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"fP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fQ" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -28},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fR" = (/obj/machinery/light/small,/obj/machinery/alarm{dir = 1; frequency = 1439; locked = 0; pixel_y = -23; req_access = null},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/dresser,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fS" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"fT" = (/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"fT" = (/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fU" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/machinery/camera{c_tag = "Central Hallway"; dir = 1; network = list("UO45")},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fV" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -28},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fW" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -311,7 +311,7 @@ "fY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "fZ" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ga" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"gb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "gc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5; level = 1},/turf/simulated/wall/r_wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "gd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10; level = 1},/turf/simulated/wall/r_wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "ge" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) @@ -319,14 +319,14 @@ "gg" = (/turf/simulated/wall/r_wall/rust,/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gh" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gi" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"gj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "gk" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gm" = (/obj/structure/closet/crate{desc = "It's a storage unit for kitchen clothes and equipment."; name = "Kitchen Crate"},/obj/item/weapon/storage/box/mousetraps,/obj/item/clothing/under/waiter,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gn" = (/obj/structure/closet/secure_closet{icon_state = "fridge"; locked = 0; name = "meat fridge"; req_access_txt = "201"},/obj/item/weapon/reagent_containers/food/snacks/meat/slab/monkey,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/monkey,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/monkey,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/monkey,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "showroomfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "go" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"gp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"gq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"gp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"gq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "gr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gs" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) @@ -336,23 +336,23 @@ "gx" = (/turf/simulated/wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "gy" = (/turf/simulated/wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "gz" = (/turf/simulated/wall/r_wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"gA" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gA" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "gB" = (/obj/machinery/light/small,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gC" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gD" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gE" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gF" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gG" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"gC" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gD" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gE" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gF" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gG" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "gI" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "gJ" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "gK" = (/turf/simulated/wall,/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "gL" = (/turf/simulated/wall/rust,/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "gM" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 16; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 23},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "gN" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"gO" = (/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gP" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"gQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"gO" = (/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gP" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"gQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "gR" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "gS" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "gT" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) @@ -377,16 +377,16 @@ "hm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hn" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ho" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hp" = (/obj/structure/extinguisher_cabinet{pixel_x = -25; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hq" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hr" = (/obj/structure/table,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hs" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/camera{c_tag = "Kitchen"; dir = 8; network = list("UO45")},/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hp" = (/obj/structure/extinguisher_cabinet{pixel_x = -25; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hq" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hr" = (/obj/structure/table,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hs" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/camera{c_tag = "Kitchen"; dir = 8; network = list("UO45")},/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ht" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "hu" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "hv" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"hw" = (/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"hx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"hy" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"hw" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"hx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"hy" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "hz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "hA" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "hB" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) @@ -397,26 +397,26 @@ "hG" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "hH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "hI" = (/obj/structure/table,/obj/item/trash/chips,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hJ" = (/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hJ" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hK" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hL" = (/obj/structure/stool,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hM" = (/obj/structure/table/reinforced,/obj/item/weapon/lighter,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access_txt = "201"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hQ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hR" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hS" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4; level = 2},/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hQ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hR" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hS" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"hU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4; level = 2},/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "hV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4; level = 2},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"hW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"hW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "hX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "hY" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "hZ" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "ia" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"ib" = (/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"ic" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"ib" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"ic" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "id" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "ie" = (/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "if" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) @@ -426,17 +426,17 @@ "ij" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "ik" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "il" = (/obj/structure/table,/obj/item/trash/plate,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"im" = (/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"im" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "in" = (/obj/structure/stool,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "io" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ip" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"iq" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ir" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/processor,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ip" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"iq" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ir" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/processor,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "is" = (/obj/machinery/light{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "it" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"iu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "iv" = (/obj/structure/window/reinforced,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"iw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/nosmoking_2{pixel_x = 32},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/nosmoking_2{pixel_x = 32},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "ix" = (/obj/machinery/door/airlock{name = "Emergency Supplies"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "iy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "iz" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) @@ -449,18 +449,18 @@ "iG" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "iH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "iI" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"iJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"iK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"iL" = (/obj/structure/closet/secure_closet{icon_state = "fridge"; locked = 0; name = "refrigerator"; req_access_txt = "201"},/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/storage/fancy/egg_box,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"iM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"iN" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/structure/sign/biohazard{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"iO" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"iP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"iK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"iL" = (/obj/structure/closet/secure_closet{icon_state = "fridge"; locked = 0; name = "refrigerator"; req_access_txt = "201"},/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/storage/fancy/egg_box,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"iM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"iN" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/structure/sign/biohazard{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iO" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "iQ" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"iR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "iS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"iT" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"iU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iT" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"iU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "iV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "iW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "iX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10; level = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) @@ -469,12 +469,12 @@ "ja" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jb" = (/obj/machinery/light/small{dir = 8},/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jc" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"je" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jf" = (/obj/structure/closet/secure_closet{icon_state = "secure"; locked = 0; name = "kitchen Cabinet"; req_access_txt = "201"},/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jg" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/camera{c_tag = "Gateway Chamber"; dir = 4; network = list("UO45","UO45R")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"jd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"je" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jf" = (/obj/structure/closet/secure_closet{icon_state = "secure"; locked = 0; name = "kitchen Cabinet"; req_access_txt = "201"},/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jg" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/camera{c_tag = "Gateway Chamber"; dir = 4; network = list("UO45","UO45R")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"ji" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"ji" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/stool,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) @@ -492,41 +492,41 @@ "jx" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jy" = (/obj/machinery/door/window/southright{name = "Bar Door"; req_access_txt = "201"; req_one_access_txt = "0"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jz" = (/obj/machinery/camera{c_tag = "Bar"; dir = 8; network = list("UO45")},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jA" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jA" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/rust,/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"jD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "jE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "jF" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jG" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"jI" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"jI" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"jK" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"jK" = (/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jL" = (/obj/machinery/light/small,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "jM" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "jN" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/research{name = "Research Lab"; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "jO" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "jP" = (/obj/machinery/light/small,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "jQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jR" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/obj/structure/sign/poster{icon_state = "poster19_legit"; pixel_x = 0; pixel_y = 32; serial_number = 19},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jS" = (/obj/structure/stool/bed/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jR" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/obj/structure/sign/poster{icon_state = "poster19_legit"; pixel_x = 0; pixel_y = 32; serial_number = 19},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jS" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jT" = (/obj/structure/table,/obj/item/weapon/kitchen/fork,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jU" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "jV" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{cell_type = 15000; dir = 1; locked = 0; name = "UO45 Bar APC"; pixel_x = 0; pixel_y = 25; req_access = null; start_charge = 100},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"jZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ka" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"kb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"kc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"kd" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/command{icon_state = "door_closed"; lockdownbyai = 0; locked = 0; name = "Gateway Chamber"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"jW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"jZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ka" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"kb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"kc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"kd" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/command{icon_state = "door_closed"; lockdownbyai = 0; locked = 0; name = "Gateway Chamber"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "ke" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "vault"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kh" = (/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"ki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"ki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "whitepurple"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kk" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kl" = (/obj/structure/closet/secure_closet{icon_state = "secureres"; locked = 0; name = "scientist's locker"; req_access_txt = "201"},/obj/item/weapon/tank/internals/air,/obj/item/clothing/mask/gas,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) @@ -538,41 +538,41 @@ "kr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ks" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "kt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ku" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"kv" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) +"ku" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"kv" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "kw" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) "kx" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a1{has_gravity = 1; name = "UO45 Central Hall"}) -"ky" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/head/welding,/obj/structure/sign/biohazard{pixel_x = 0; pixel_y = 32},/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (EAST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kz" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"ky" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/head/welding,/obj/structure/sign/biohazard{pixel_x = 0; pixel_y = 32},/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"kz" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kA" = (/obj/structure/dispenser/oxygen,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 8},/obj/structure/sign/securearea{pixel_x = -32},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "kF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kJ" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"kM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"kH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"kI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"kJ" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"kK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"kL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"kM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"kQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"kR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"kS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"kT" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"kU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"kV" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"kW" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kT" = (/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kV" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"kW" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kX" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "whitepurple"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kY" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "UO45_biohazard"; name = "biohazard containment door"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "delivery"; name = "floor"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "kZ" = (/obj/structure/sink{pixel_y = 25},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/space) "la" = (/obj/machinery/shower{pixel_y = 15},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lb" = (/obj/structure/sink{pixel_y = 25},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"lc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/sign/science{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "purplecorner"; tag = "icon-purplecorner (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"lc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/science{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "purplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ld" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "le" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lf" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) @@ -581,123 +581,123 @@ "li" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/alarm{dir = 1; frequency = 1439; locked = 0; pixel_y = -23; req_access = null},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ll" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"lm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ll" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"lm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ln" = (/turf/simulated/wall/r_wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"lo" = (/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (EAST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Gateway Ready Room"; dir = 2; network = list("UO45","UO45R")},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"ls" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lu" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/command{icon_state = "door_closed"; lockdownbyai = 0; locked = 0; name = "Gateway Ready Room"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lx" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"ly" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division West"; dir = 1; network = list("UO45","UO45R")},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lD" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"lE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"lF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"lG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/light,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"lo" = (/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Gateway Ready Room"; dir = 2; network = list("UO45","UO45R")},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"ls" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lu" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/command{icon_state = "door_closed"; lockdownbyai = 0; locked = 0; name = "Gateway Ready Room"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lx" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"ly" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division West"; dir = 1; network = list("UO45","UO45R")},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lD" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"lE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"lF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"lG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{cell_type = 15000; dir = 2; locked = 0; name = "UO45 Research Division APC"; pixel_x = 0; pixel_y = -25; req_access = null; start_charge = 100},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lI" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"lJ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"lJ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lM" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lN" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/machinery/camera{c_tag = "Research Division East"; dir = 1; network = list("UO45","UO45R")},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "lO" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"lP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "purple"; tag = "icon-purple (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"lP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "purple"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"lR" = (/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"lS" = (/obj/structure/stool/bed/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"lR" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"lS" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lT" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lU" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "bar"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lV" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"lW" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"lW" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "lX" = (/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/plasma{amount = 26},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "lY" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Engineering Secure Storage"; dir = 2; network = list("UO45")},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "lZ" = (/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plating{dir = 8; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ma" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (EAST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"ma" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "mb" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mc" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mc" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "md" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "me" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window{tag = "icon-window (EAST)"; icon_state = "window"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window{icon_state = "window"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "UO45_rdprivacy"; name = "privacy shutters"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "UO45_rdprivacy"; name = "privacy shutters"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mk" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "whitepurplecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "ml" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mm" = (/obj/structure/closet/firecloset,/obj/machinery/light/small,/obj/structure/sign/securearea{pixel_x = 0; pixel_y = -32},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "warnwhite"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "purplecorner"; tag = "icon-purplecorner (NORTH)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"mp" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"mq" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/machinery/newscaster{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"mo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "purplecorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"mp" = (/obj/structure/stool/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"mq" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/machinery/newscaster{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mr" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ms" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mt" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mu" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mv" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/structure/stool/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mw" = (/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/pj/red,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"mx" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"my" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"mx" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"my" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mz" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "mA" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"mB" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndarkcorners"; tag = "icon-warndarkcorners (WEST)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mC" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mD" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -28},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mE" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 15000; dir = 2; locked = 0; name = "UO45 Gateway APC"; pixel_x = 0; pixel_y = -25; req_access = null; start_charge = 100},/obj/machinery/light/small,/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mF" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mG" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) -"mH" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mB" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndarkcorners"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mC" = (/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mD" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -28},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mE" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 15000; dir = 2; locked = 0; name = "UO45 Gateway APC"; pixel_x = 0; pixel_y = -25; req_access = null; start_charge = 100},/obj/machinery/light/small,/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mF" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mG" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) +"mH" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "mI" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a6{has_gravity = 1; name = "UO45 Gateway"}) "mJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Research Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mL" = (/obj/structure/closet/secure_closet{icon_state = "rdsecure1"; locked = 1; name = "research director's locker"; req_access_txt = "201"},/obj/item/weapon/storage/backpack/satchel_tox,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/toggle/labcoat/science,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mM" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mP" = (/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/kirbyplants{layer = 5},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Research Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mL" = (/obj/structure/closet/secure_closet{icon_state = "rdsecure1"; locked = 1; name = "research director's locker"; req_access_txt = "201"},/obj/item/weapon/storage/backpack/satchel_tox,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/toggle/labcoat/science,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mM" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mP" = (/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/kirbyplants{layer = 5},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mR" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mS" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mT" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"mU" = (/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"mU" = (/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "mV" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Dormitories"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Dormitories"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"mX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/button/door{id = "awaydorm5"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/structure/stool/bed/chair/wood/normal{tag = "icon-wooden_chair (NORTH)"; icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"mX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/button/door{id = "awaydorm5"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/structure/stool/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mY" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "mZ" = (/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/suit_jacket/navy,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "na" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "nb" = (/obj/machinery/button/door{id = "awaydorm7"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "nc" = (/obj/machinery/vending/cola,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"nd" = (/obj/structure/stool/bed/chair/comfy/black{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"nd" = (/obj/structure/stool/bed/chair/comfy/black{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ne" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"nf" = (/obj/structure/stool/bed/chair/comfy/black{tag = "icon-comfychair (WEST)"; icon_state = "comfychair"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ng" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"nf" = (/obj/structure/stool/bed/chair/comfy/black{icon_state = "comfychair"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ng" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "nh" = (/obj/machinery/door/poddoor{id = "UO45_Secure Storage"; name = "secure storage"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ni" = (/turf/simulated/wall/r_wall/rust,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"nj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nk" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nl" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nk" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nl" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "no" = (/obj/machinery/computer/security{network = list("UO45")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "np" = (/obj/structure/stool/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "nq" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the research division and the labs within."; dir = 8; name = "research monitor"; network = list("UO45R")},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nr" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitepurplecorner (EAST)"; icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"ns" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"nx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"nr" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitepurplecorner"; dir = 4; heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"ns" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"nx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ny" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "nz" = (/obj/machinery/vending/cigarette,/obj/structure/sign/poster{icon_state = "poster7"; pixel_y = 32; serial_number = 7},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "nA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) @@ -708,17 +708,17 @@ "nF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "nG" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Dormitories"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "nH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"nI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"nJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warndarkcorners"; tag = "icon-warndarkcorners"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"nK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"nL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndarkcorners"; tag = "icon-warndarkcorners (NORTH)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"nI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"nJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warndarkcorners"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"nK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"nL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndarkcorners"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "nM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nO" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/laser_pointer,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nP" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nR" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the research division and the labs within."; dir = 2; name = "research monitor"; network = list("UO45R")},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"nS" = (/obj/machinery/light/small{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/table/reinforced,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nO" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/laser_pointer,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nP" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nR" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the research division and the labs within."; dir = 2; name = "research monitor"; network = list("UO45R")},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"nS" = (/obj/machinery/light/small{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/table/reinforced,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "nT" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/light{dir = 8},/obj/item/device/radio/off,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "nU" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "nV" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) @@ -726,69 +726,69 @@ "nX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "nY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "nZ" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oa" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ob" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"od" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/camera{c_tag = "Dormitories"; dir = 2; network = list("UO45")},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"of" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"og" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ok" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ol" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"om" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"on" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-y"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"op" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Dormitories"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"or" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/junction{tag = "icon-pipe-y (WEST)"; icon_state = "pipe-y"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"os" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (EAST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"oa" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ob" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"od" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/camera{c_tag = "Dormitories"; dir = 2; network = list("UO45")},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"of" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"og" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ok" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ol" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"om" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"on" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-y"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"op" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Dormitories"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"or" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"os" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ot" = (/obj/structure/cable,/obj/machinery/power/smes{charge = 1.5e+006; input_level = 10000; inputting = 0; output_level = 7000; outputting = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ou" = (/obj/structure/cable,/obj/machinery/power/smes{charge = 1.5e+006; input_level = 30000; inputting = 0; output_level = 7000; outputting = 1},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ov" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ow" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"ox" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"oy" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/button/door{desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination."; id = "UO45_biohazard"; name = "Biohazard Door Control"; pixel_x = 0; pixel_y = 8; req_access_txt = "201"},/obj/machinery/button/door{desc = "A remote control-switch that controls the privacy shutters."; id = "UO45_rdprivacy"; name = "Privacy Shutter Control"; pixel_x = 0; pixel_y = -2; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"oz" = (/obj/structure/stool/bed/chair/office/light{dir = 1; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"oA" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"oB" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"ov" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"ow" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"ox" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"oy" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/button/door{desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination."; id = "UO45_biohazard"; name = "Biohazard Door Control"; pixel_x = 0; pixel_y = 8; req_access_txt = "201"},/obj/machinery/button/door{desc = "A remote control-switch that controls the privacy shutters."; id = "UO45_rdprivacy"; name = "Privacy Shutter Control"; pixel_x = 0; pixel_y = -2; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"oz" = (/obj/structure/stool/bed/chair/office/light{dir = 1; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"oA" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"oB" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "oC" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "oD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "oE" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "oF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oH" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oQ" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "oR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"oU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (EAST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"oS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"oU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "oV" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/power/port_gen/pacman{desc = "A portable generator for emergency backup power."; name = "P.A.C.M.A.N.-type portable generator"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "oW" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/power/port_gen/pacman/super{desc = "A portable generator for emergency backup power."; name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator"},/obj/item/weapon/wrench,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "oX" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/power/port_gen/pacman{desc = "A portable generator for emergency backup power."; name = "P.A.C.M.A.N.-type portable generator"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"oY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"oY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "oZ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "pa" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "UO45_air_sensor"; output = 7},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"pb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"pc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"pd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"pe" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"pf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"pg" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -27},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pe" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pg" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -27},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "cafeteria"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "ph" = (/obj/structure/filingcabinet,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "pi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/button/door{desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination."; id = "UO45_biohazard"; name = "Biohazard Door Control"; pixel_x = 0; pixel_y = -24; req_access_txt = "201"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "pj" = (/obj/structure/closet/secure_closet{icon_state = "sec1"; locked = 1; name = "security officer's locker"; req_access_txt = "201"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/flash/handheld,/obj/item/weapon/reagent_containers/spray/pepper,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"pk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "pl" = (/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "pm" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "neutralcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "pn" = (/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "neutral"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) @@ -797,20 +797,20 @@ "pq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{id_tag = "awaydorm6"; name = "Dorm 6"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "pr" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ps" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"pt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"pt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "pu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "pv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "pw" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "px" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall/rust,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "py" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/wall/r_wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"pz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndarkcorners"; tag = "icon-warndarkcorners (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"pA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"pB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"pC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"; tag = "icon-warndark (NORTH)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"pD" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndarkcorners"; tag = "icon-warndarkcorners (EAST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"pz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "warndarkcorners"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"pA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"pB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"pC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "warndark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"pD" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "warndarkcorners"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "pE" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{dir = 2; external_pressure_bound = 0; frequency = 1443; icon_state = "in"; id_tag = "UO45_air_out"; internal_pressure_bound = 2000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "pF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2; frequency = 1443; id = "UO45_air_in"},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"pG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"pG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "pH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "pI" = (/obj/machinery/door/airlock/command{name = "Server Room"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "pJ" = (/obj/machinery/door/airlock{name = "Private Restroom"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) @@ -829,13 +829,13 @@ "pW" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "pX" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "pY" = (/obj/structure/mirror{pixel_x = 28},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"pZ" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"pZ" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "qa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "qb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"qc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/glass_engineering{name = "SMES Room"; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"qc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/glass_engineering{name = "SMES Room"; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/meter{frequency = 1443; id = "UO45_mair_out_meter"; layer = 3.3; name = "Mixed Air Tank Out"},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter{frequency = 1443; id = "UO45_mair_in_meter"; layer = 3.3; name = "Mixed Air Tank In"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"qf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"qf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qi" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) @@ -843,7 +843,7 @@ "qk" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "ql" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{current_temperature = 80; dir = 2; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qm" = (/obj/machinery/light/small,/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -11; pixel_y = 0},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"qn" = (/obj/structure/toilet{tag = "icon-toilet00 (WEST)"; icon_state = "toilet00"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"qn" = (/obj/structure/toilet{icon_state = "toilet00"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qo" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitecorner"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qp" = (/obj/structure/table,/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/hand_labeler,/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qq" = (/obj/machinery/vending/medical{req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) @@ -856,30 +856,30 @@ "qx" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "qy" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "qz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"qA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"qA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "qB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "qC" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qD" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qE" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"qF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"qG" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"qF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"qG" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/closet/secure_closet{icon_state = "secureeng1"; locked = 1; name = "engineer's locker"; req_access_txt = "201"},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/backpack/satchel_eng,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/secure_closet/engineering_personal{req_access = list(201)},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"qJ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/machinery/camera{c_tag = "Atmospherics"; dir = 2; network = list("UO45")},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/machinery/firealarm{dir = 2; pixel_x = 0; pixel_y = 24},/obj/item/device/multitool,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"qK" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1443; input_tag = "UO45_air_in"; name = "Mixed Air Supply Control"; output_tag = "UO45_air_out"; pressure_setting = 2000; sensors = list("UO45_air_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "arrival"; tag = "icon-arrival (NORTHWEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"qJ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 10},/obj/machinery/camera{c_tag = "Atmospherics"; dir = 2; network = list("UO45")},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/machinery/firealarm{dir = 2; pixel_x = 0; pixel_y = 24},/obj/item/device/multitool,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"qK" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1443; input_tag = "UO45_air_in"; name = "Mixed Air Supply Control"; output_tag = "UO45_air_out"; pressure_setting = 2000; sensors = list("UO45_air_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qL" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 1; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; pixel_x = 0; pixel_y = 0; req_access = null; target_pressure = 4500},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "bot"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "qN" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "bot"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"qO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"qO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qP" = (/obj/machinery/light/small{dir = 8},/obj/machinery/alarm/server{dir = 4; pixel_x = -22; pixel_y = 0},/obj/machinery/r_n_d/server/core{id_with_download_string = "3"; id_with_upload_string = "3"; req_access = null},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qQ" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qR" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/airlock/glass_command{name = "Server Room"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qS" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qT" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/structure/stool/bed/chair/office/light,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"qU" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"qU" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qW" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"qX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"qX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "qY" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -28},/obj/item/weapon/pen,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "qZ" = (/obj/structure/stool/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ra" = (/obj/machinery/light/small{dir = 1},/obj/structure/toilet{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) @@ -887,10 +887,10 @@ "rc" = (/obj/structure/mirror{pixel_x = 28},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "rd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "re" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "rg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rh" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ri" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"rh" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"ri" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rj" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rk" = (/obj/structure/flora/kirbyplants{layer = 5},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rl" = (/obj/machinery/firealarm{dir = 2; pixel_x = 0; pixel_y = 24},/obj/structure/dispenser{pixel_x = -1},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) @@ -898,51 +898,51 @@ "rn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ro" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rp" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{cell_type = 15000; dir = 8; locked = 1; name = "UO45 Engineering APC"; pixel_x = -25; pixel_y = 0; req_access = list(201); start_charge = 100},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"rq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"rq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Air to Distro"; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ru" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Exterior"; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"rv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"rw" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"rv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"rw" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "rx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "bot"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ry" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"ry" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rz" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = -32},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rB" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rC" = (/obj/machinery/computer/rdservercontrol,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "dark"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"rD" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/poster/contraband,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"rD" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/poster/contraband,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4; level = 2},/obj/machinery/door/airlock/maintenance{name = "Research Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rG" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"rH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"rH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "white"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rJ" = (/obj/structure/table,/obj/item/weapon/storage/box/gloves{pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "whitehall"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"rK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"rK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "rL" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/machinery/camera{c_tag = "Engineering Hallway"; dir = 4; network = list("UO45")},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"rX" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Reception"; req_access_txt = "0"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"rY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"rZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"rM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Engineering Hallway"; dir = 4; network = list("UO45")},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellowcorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"rX" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Reception"; req_access_txt = "0"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"rY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"rZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sc" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "UO45_EngineeringOffice"; name = "Privacy Shutters"},/obj/machinery/door/window/southleft{base_state = "left"; dir = 4; icon_state = "left"; name = "Engineering Reception"; req_access_txt = "201"},/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"se" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"se" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "UO45_Engineering"; layer = 2.9; name = "engineering security door"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sh" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"si" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 2},/obj/machinery/meter{frequency = 1443; id = "UO45_dloop_atm_meter"; name = "Distribution Loop"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sh" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{icon_state = "intact"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"si" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 2},/obj/machinery/meter{frequency = 1443; id = "UO45_dloop_atm_meter"; name = "Distribution Loop"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sj" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Distro"; on = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sl" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) @@ -963,7 +963,7 @@ "sA" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "sB" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "sC" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"sD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"sD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "sE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "sF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "cautioncorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "sG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "cautioncorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) @@ -973,17 +973,17 @@ "sK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "sL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Reception"; req_access_txt = "0"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sP" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "UO45_EngineeringOffice"; name = "Privacy Shutters"},/obj/machinery/door/window/southleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Engineering Reception"; req_access_txt = "201"},/obj/item/weapon/folder/red,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/stool/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "UO45_Engineering"; layer = 2.9; name = "engineering security door"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Waste In"; on = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Waste In"; on = 1},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"sX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"sX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Filter"; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "sZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6; initialize_directions = 6},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ta" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) @@ -992,106 +992,106 @@ "td" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/meter{layer = 3.3},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "te" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "UO45_waste_in"},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tf" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "UO45_waste_sensor"; output = 63},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"tg" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"th" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"ti" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tj" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tg" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"th" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"ti" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tj" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "to" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/wall/r_wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/wall/r_wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "ts" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "tt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"tu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"tu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "tv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 2},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "arrival"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"tw" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 2},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "escape"; tag = "icon-escape (NORTH)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"tx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"tw" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 2},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "escape"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"tx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ty" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/sign/securearea{pixel_y = -32},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tz" = (/obj/machinery/computer/security{network = list("UO45")},/obj/machinery/button/door{desc = "A remote control-switch for the security privacy shutters."; id = "UO45_EngineeringOffice"; name = "Privacy Shutters"; pixel_x = -24; pixel_y = 6; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"tB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"tB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"tD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"tD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter{frequency = 1443; id = "UO45_wloop_atm_meter"; name = "Waste Loop"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tH" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 Outlet Pump"; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 Outlet Pump"; on = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"tJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Unfiltered to Mix"; on = 1},/obj/structure/sign/nosmoking_2{pixel_x = 32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"tJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Unfiltered to Mix"; on = 1},/obj/structure/sign/nosmoking_2{pixel_x = 32},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "tK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5; level = 1},/turf/simulated/wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engineering Maintenance"; req_access_txt = "201"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/rust,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"tV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/item/stack/rods,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"tV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/item/stack/rods,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "tX" = (/obj/machinery/shower{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "tY" = (/obj/machinery/shower{dir = 1; pixel_y = 0},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "tZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "browncorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"ua" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "browncorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"ua" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "browncorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "ub" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "uc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ud" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ue" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"ue" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uf" = (/obj/structure/filingcabinet,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ug" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "UO45_Engineering"; name = "Engineering Lockdown"; pixel_x = 24; pixel_y = 6; req_access_txt = "201"},/obj/structure/closet/secure_closet{icon_state = "sec1"; locked = 1; name = "security officer's locker"; req_access_txt = "201"},/obj/item/clothing/suit/armor/vest,/obj/item/clothing/head/helmet,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ui" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "bot"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "External to Filter"; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "External to Filter"; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air to External"; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ul" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/machinery/alarm{dir = 1; frequency = 1439; locked = 0; pixel_y = -23; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"ul" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/machinery/alarm{dir = 1; frequency = 1439; locked = 0; pixel_y = -23; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "um" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; filter_type = 2; on = 1; req_access = null},/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "un" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "UO45_n2_in"; name = "Nitrogen Supply Control"; output_tag = "UO45_n2_out"; sensors = list("UO45_n2_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "red"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uo" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uo" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "up" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; filter_type = 1; on = 1; req_access = null},/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "blue"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "UO45_o2_in"; name = "Oxygen Supply Control"; output_tag = "UO45_o2_out"; sensors = list("UO45_o2_sensor" = "Tank")},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "blue"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"ur" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"ur" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "us" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating{dir = 9; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"ut" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating{dir = 1; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"uu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/table/reinforced,/obj/item/weapon/wrench,/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"ut" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating{dir = 1; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"uu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/obj/structure/table/reinforced,/obj/item/weapon/wrench,/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "uv" = (/turf/simulated/mineral/random/labormineral,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "uw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/external,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "ux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"uy" = (/obj/structure/closet,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"uy" = (/obj/structure/closet,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "uz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "uA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/general_air_control{frequency = 1441; name = "Tank Monitor"; sensors = list("UO45_n2_sensor" = "Nitrogen", "UO45_o2_sensor" = "Oxygen", "UO45_waste_sensor" = "Gas Mix Tank")},/turf/simulated/floor/plasteel{dir = 9; heat_capacity = 1e+006; icon_state = "caution"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uE" = (/turf/simulated/wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uF" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "201"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/engineering{name = "Engineering"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/engineering{name = "Engineering"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uH" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/wall/r_wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1; initialize_directions = 12},/obj/machinery/meter{layer = 3.3},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/green/visible{icon_state = "intact"; dir = 1; initialize_directions = 12},/obj/machinery/meter{layer = 3.3},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/meter{layer = 3.3},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uK" = (/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{dir = 8; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "uL" = (/obj/machinery/atmospherics/components/binary/valve{dir = 2},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "uM" = (/obj/machinery/atmospherics/components/binary/valve{dir = 2},/turf/simulated/floor/plating{dir = 4; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"uN" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"uO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"uN" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) +"uO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) "uP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a5{has_gravity = 1; name = "UO45 Research"}) -"uQ" = (/obj/structure/stool/bed/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"uQ" = (/obj/structure/stool/bed/chair{icon_state = "chair"; dir = 8},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "uR" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"uS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"uS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "uT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; heat_capacity = 1e+006; icon_state = "browncorner"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "uU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("UO45_mair_in_meter" = "Mixed Air In", "UO45_air_sensor" = "Mixed Air Supply Tank", "UO45_mair_out_meter" = "Mixed Air Out", "UO45_dloop_atm_meter" = "Distribution Loop", "UO45_wloop_atm_meter" = "Waste Loop")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "caution"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5; level = 1},/obj/structure/stool/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"uX" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"uX" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{frequency = 1439; locked = 0; pixel_y = 23; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 5; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "uZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "va" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "UO45_Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "delivery"; name = "floor"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vb" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/poddoor/preopen{id = "UO45_Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "delivery"; name = "floor"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vb" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "UO45_Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "delivery"; name = "floor"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vc" = (/obj/machinery/door/firedoor,/obj/structure/sign/securearea{pixel_y = 32},/obj/machinery/door/poddoor/preopen{id = "UO45_Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "delivery"; name = "floor"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vd" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "UO45_n2_in"},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 10000; oxygen = 0},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "ve" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; id_tag = "UO45_n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 10000; oxygen = 0},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) @@ -1104,21 +1104,21 @@ "vl" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "vm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "vn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/rods,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"vo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"vo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "vp" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "vq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "brown"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) -"vr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "brown"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) +"vr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "brown"},/area/awaycontent/a2{has_gravity = 1; name = "UO45 Crew Quarters"}) "vs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "caution"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vt" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/airlock/engineering{name = "Engineering"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vB" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vC" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vt" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/engineering{name = "Engineering"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vB" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vC" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vD" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "UO45_n2_sensor"},/obj/machinery/light/small,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 10000; oxygen = 0},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vE" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 10000; oxygen = 0},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vF" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "UO45_o2_sensor"},/obj/machinery/light/small,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 10000},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) @@ -1130,14 +1130,14 @@ "vL" = (/turf/simulated/wall/rust,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "vM" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "vN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_mining{name = "Mining Foyer"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"vO" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_mining{name = "Mining Foyer"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"vP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "caution"; tag = "icon-caution (SOUTHWEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/noticeboard{dir = 1; pixel_y = -27},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vO" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_mining{name = "Mining Foyer"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"vP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel{dir = 10; heat_capacity = 1e+006; icon_state = "caution"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/noticeboard{dir = 1; pixel_y = -27},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/vending/engivend{req_access_txt = "0"},/obj/machinery/camera{c_tag = "Engineering Foyer"; dir = 1; network = list("UO45")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"vV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/vending/tool,/obj/structure/sign/poster{icon_state = "poster5_legit"; pixel_x = 0; pixel_y = -32; serial_number = 21},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/vending/engivend{req_access_txt = "0"},/obj/machinery/camera{c_tag = "Engineering Foyer"; dir = 1; network = list("UO45")},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"vV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/vending/tool,/obj/structure/sign/poster{icon_state = "poster5_legit"; pixel_x = 0; pixel_y = -32; serial_number = 21},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{dir = 6; heat_capacity = 1e+006; icon_state = "yellow"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "vY" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "bot"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) @@ -1147,14 +1147,14 @@ "wc" = (/obj/machinery/light/small{dir = 1},/obj/structure/stool/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "we" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wg" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wg" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/kirbyplants{layer = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wj" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"wm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "201"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"wm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "201"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wn" = (/turf/simulated/wall/rust,/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wo" = (/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) @@ -1162,46 +1162,46 @@ "wr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock{id_tag = "awaydorm8"; name = "Mining Dorm 1"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "ws" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "ww" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wx" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_x = -32},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"wA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"wA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wB" = (/obj/structure/toilet{pixel_y = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"wC" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wC" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wG" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wH" = (/obj/structure/stool/bed/chair/office,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wI" = (/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"wJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"wJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wK" = (/obj/machinery/door/airlock{name = "Private Restroom"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wL" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light/small,/obj/structure/mirror{pixel_x = 28},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "freezerfloor"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wM" = (/obj/structure/stool/bed/chair/wood/normal,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/door{id = "awaydorm9"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock{id_tag = "awaydorm9"; name = "Mining Dorm 2"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wR" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wS" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wT" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"wU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light/small{dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"wU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "wV" = (/obj/machinery/light/small,/obj/structure/stool/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/turf/simulated/floor/carpet{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"wX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/closet/secure_closet/miner{req_access = list(201)},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"wX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/closet/secure_closet/miner{req_access = list(201)},/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wY" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 15000; dir = 2; locked = 0; name = "UO45 Mining APC"; pixel_x = 0; pixel_y = -25; req_access = null; start_charge = 100},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/engineering_personal{icon_state = "miningsec"; locked = 0; name = "miner's equipment"; req_access = list(201)},/obj/item/weapon/storage/backpack/satchel_eng,/obj/item/clothing/gloves/fingerless,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "browncorner"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "wZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "brown"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "brown"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "brown"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xb" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/cigarettes{pixel_x = -2},/obj/item/weapon/lighter{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "xc" = (/obj/structure/stool/bed/chair/office/light{dir = 1; pixel_y = 3},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"xd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) -"xe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/newscaster{pixel_y = -28},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"xd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) +"xe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/newscaster{pixel_y = -28},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "xf" = (/obj/structure/bookcase/manuals/engineering,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "xg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/mining{name = "Processing Area"; req_access_txt = "201"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/mining{name = "Processing Area"; req_access_txt = "201"},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/mining{name = "Processing Area"; req_access_txt = "201"},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xi" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "xj" = (/obj/machinery/light/small,/obj/machinery/computer/atmos_alert,/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "UO45_Engineering"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = -24; req_access_txt = "201"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "UO45_Secure Storage"; name = "Engineering Secure Storage"; pixel_x = 6; pixel_y = -24; req_access_txt = "201"},/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) "xk" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 2; heat_capacity = 1e+006; icon_state = "neutralfull"},/area/awaycontent/a3{has_gravity = 1; name = "UO45 Engineering"}) @@ -1209,45 +1209,45 @@ "xm" = (/obj/machinery/mineral/unloading_machine{dir = 1; icon_state = "unloader-corner"; input_dir = 4; output_dir = 8},/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xn" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "loadingarea"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; frequency = 1439; locked = 0; pixel_x = 23; pixel_y = 0; req_access = null},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xq" = (/obj/machinery/conveyor{dir = 2; id = "UO45_mining"},/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plating{dir = 4; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xr" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xs" = (/obj/machinery/conveyor_switch/oneway{id = "UO45_mining"; name = "mining conveyor"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xu" = (/obj/machinery/suit_storage_unit/mining,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xv" = (/obj/structure/table,/obj/item/weapon/pickaxe,/obj/item/device/radio/off,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xw" = (/obj/machinery/mineral/processing_unit{dir = 1; output_dir = 2},/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xx" = (/obj/machinery/mineral/processing_unit_console{machinedir = 8},/turf/simulated/wall/rust,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Mining"; dir = 4; network = list("UO45")},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xC" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xD" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xD" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xE" = (/obj/machinery/conveyor{dir = 2; id = "UO45_mining"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{dir = 4; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xF" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass_mining{name = "Mining EVA"; req_access_txt = "201"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass_mining{name = "Mining EVA"; req_access_txt = "201"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xL" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xM" = (/obj/machinery/mineral/stacking_unit_console{machinedir = 2},/turf/simulated/wall,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 26},/obj/item/stack/sheet/glass{amount = 19},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 26},/obj/item/stack/sheet/glass{amount = 19},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xQ" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/mech_bay_recharge_floor,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xS" = (/obj/machinery/mech_bay_recharge_port{tag = "icon-recharge_port (WEST)"; icon_state = "recharge_port"; dir = 8},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/mech_bay_recharge_floor,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xS" = (/obj/machinery/mech_bay_recharge_port{icon_state = "recharge_port"; dir = 8},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xT" = (/obj/machinery/mineral/stacking_machine{dir = 1; input_dir = 8; output_dir = 4},/turf/simulated/floor/plating{dir = 5; heat_capacity = 1e+006; icon_state = "warnplate"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xU" = (/turf/simulated/floor/plasteel{dir = 4; heat_capacity = 1e+006; icon_state = "loadingarea"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"xW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/plasma{amount = 6},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"xW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/plasma{amount = 6},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/external{name = "Mining External Airlock"; req_access_txt = "201"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "xZ" = (/obj/machinery/alarm{dir = 4; frequency = 1439; locked = 0; pixel_x = -23; pixel_y = 0; req_access = null},/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "ya" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) -"yb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) +"yb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "yc" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "yd" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "ye" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plasteel{heat_capacity = 1e+006; icon_state = "warning"},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) @@ -1255,31 +1255,31 @@ "yg" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a4{has_gravity = 1; name = "UO45 Mining"}) "yh" = (/obj/structure/ore_box,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yi" = (/obj/structure/closet/crate,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yj" = (/obj/structure/alien/weeds{tag = "icon-weeds2"; icon_state = "weeds2"},/obj/structure/stool/bed/nest,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yk" = (/obj/structure/alien/weeds{tag = "icon-weeds2"; icon_state = "weeds2"},/obj/structure/stool/bed/nest,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yl" = (/obj/structure/alien/weeds{tag = "icon-weeds2"; icon_state = "weeds2"},/obj/effect/glowshroom/single,/obj/effect/decal/cleanable/blood/gibs/down,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ym" = (/obj/structure/alien/weeds{tag = "icon-weeds1"; icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs/core,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yn" = (/obj/structure/alien/weeds{tag = "icon-weeds2"; icon_state = "weeds2"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yj" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/stool/bed/nest,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yk" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/stool/bed/nest,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yl" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/effect/glowshroom/single,/obj/effect/decal/cleanable/blood/gibs/down,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"ym" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs/core,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yn" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yo" = (/obj/structure/alien/weeds,/obj/structure/alien/resin/wall,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yp" = (/obj/structure/alien/weeds{tag = "icon-weeds1"; icon_state = "weeds1"},/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yp" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yq" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yr" = (/obj/effect/decal/cleanable/blood/gibs/up,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "ys" = (/obj/structure/alien/weeds,/obj/structure/stool/bed/nest,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yt" = (/obj/structure/alien/weeds{tag = "icon-weeds1"; icon_state = "weeds1"},/obj/effect/glowshroom/single,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yt" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/glowshroom/single,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yu" = (/obj/structure/alien/resin/wall,/obj/structure/alien/weeds,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yv" = (/obj/structure/alien/weeds,/obj/effect/decal/cleanable/blood/gibs/core,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yw" = (/obj/structure/alien/weeds,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yx" = (/obj/structure/alien/weeds{tag = "icon-weeds1"; icon_state = "weeds1"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yx" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yy" = (/obj/structure/alien/weeds,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yz" = (/obj/structure/alien/resin/membrane,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yA" = (/obj/structure/alien/weeds,/obj/effect/decal/cleanable/blood/gibs/down,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yB" = (/obj/effect/decal/cleanable/blood/gibs/limb,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yC" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yD" = (/obj/structure/alien/weeds{tag = "icon-weeds2"; icon_state = "weeds2"},/obj/effect/decal/cleanable/blood/splatter,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yE" = (/obj/structure/alien/weeds{tag = "icon-weeds2"; icon_state = "weeds2"},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yF" = (/obj/structure/alien/weeds{tag = "icon-weeds1"; icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs/down,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yD" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/effect/decal/cleanable/blood/splatter,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yE" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yF" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs/down,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yG" = (/obj/structure/alien/weeds,/obj/structure/stool/bed/nest,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yH" = (/obj/structure/alien/weeds{tag = "icon-weeds1"; icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs/down,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yH" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs/down,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yI" = (/obj/structure/alien/weeds,/obj/effect/landmark/corpse,/turf/simulated/floor/plating/asteroid{carbon_dioxide = 173.4; heat_capacity = 1e+006; name = "Cave Floor"; nitrogen = 135.1; oxygen = 0; temperature = 363.9; toxins = 229.8},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yJ" = (/obj/item/weapon/shard,/turf/simulated/floor/plasteel/shuttle{icon_state = "floor3"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yK" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plasteel/shuttle{icon_state = "floor3"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) @@ -1292,20 +1292,20 @@ "yR" = (/obj/item/stack/cable_coil{amount = 2; icon_state = "coil_red2"; item_state = "coil_red2"},/turf/simulated/floor/plasteel/shuttle{icon_state = "floor3"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yS" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; item_state = "coil_red1"},/turf/simulated/floor/plasteel/shuttle{icon_state = "floor3"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "yT" = (/turf/simulated/floor/plasteel{heat_capacity = 1e+006},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yU" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"; tag = "icon-floorgrime (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yV" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"; tag = "icon-damaged1 (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yW" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"; tag = "icon-damaged2 (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yX" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"; tag = "icon-damaged3 (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yY" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"; tag = "icon-damaged4 (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"yZ" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"; tag = "icon-damaged5 (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"za" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"; tag = "icon-floorscorched1 (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"zb" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"; tag = "icon-floorscorched2 (WEST)"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yU" = (/turf/simulated/floor/plasteel{dir = 8; heat_capacity = 1e+006; icon_state = "floorgrime"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yV" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged1"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yW" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged2"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yX" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged3"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yY" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged4"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"yZ" = (/turf/simulated/floor/plasteel{broken = 1; dir = 8; heat_capacity = 1e+006; icon_state = "damaged5"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"za" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched1"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"zb" = (/turf/simulated/floor/plasteel{burnt = 1; dir = 8; heat_capacity = 1e+006; icon_state = "floorscorched2"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "zc" = (/turf/simulated/floor/plasteel/shuttle,/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) "zd" = (/turf/simulated/floor/plating{heat_capacity = 1e+006},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"ze" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"; tag = "icon-platingdmg1"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"zf" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"; tag = "icon-platingdmg2"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"zg" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"; tag = "icon-platingdmg3"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) -"zh" = (/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"; tag = "icon-panelscorched"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"ze" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg1"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"zf" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg2"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"zg" = (/turf/simulated/floor/plating{broken = 1; heat_capacity = 1e+006; icon_state = "platingdmg3"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) +"zh" = (/turf/simulated/floor/plating{burnt = 1; heat_capacity = 1e+006; icon_state = "panelscorched"},/area/awaycontent/a7{always_unpowered = 1; has_gravity = 1; name = "UO45 Caves"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0}) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm index c3153aa21c1..16468f8b285 100644 --- a/_maps/RandomZLevels/wildwest.dmm +++ b/_maps/RandomZLevels/wildwest.dmm @@ -2,31 +2,31 @@ "ab" = (/turf/indestructible,/area/awaymission/wwvault) "ac" = (/turf/simulated/floor/engine/cult,/area/awaymission/wwvault) "ad" = (/obj/structure/cult/pylon,/turf/simulated/floor/engine/cult,/area/awaymission/wwvault) -"ae" = (/turf/simulated/floor/plating{tag = "icon-cultdamage5"; icon_state = "cultdamage5"},/area/awaymission/wwvault) +"ae" = (/turf/simulated/floor/plating{icon_state = "cultdamage5"},/area/awaymission/wwvault) "af" = (/mob/living/simple_animal/hostile/faithless,/turf/simulated/floor/engine/cult,/area/awaymission/wwvault) -"ag" = (/turf/simulated/floor/plating{tag = "icon-bcircuitoff"; icon_state = "bcircuitoff"},/area/awaymission/wwvault) +"ag" = (/turf/simulated/floor/plating{icon_state = "bcircuitoff"},/area/awaymission/wwvault) "ah" = (/turf/simulated/wall/cult,/area/awaymission/wwvault) "ai" = (/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/simulated/wall/cult,/area/awaymission/wwvault) -"aj" = (/turf/simulated/floor/plating{tag = "icon-cultdamage3"; icon_state = "cultdamage3"},/area/awaymission/wwvault) -"ak" = (/turf/simulated/floor/plating{tag = "icon-cultdamage6"; icon_state = "cultdamage6"},/area/awaymission/wwvault) +"aj" = (/turf/simulated/floor/plating{icon_state = "cultdamage3"},/area/awaymission/wwvault) +"ak" = (/turf/simulated/floor/plating{icon_state = "cultdamage6"},/area/awaymission/wwvault) "al" = (/obj/effect/gateway,/turf/simulated/floor/engine/cult,/area/awaymission/wwvault) -"am" = (/mob/living/simple_animal/hostile/faithless,/turf/simulated/floor/plating{tag = "icon-bcircuitoff"; icon_state = "bcircuitoff"},/area/awaymission/wwvault) +"am" = (/mob/living/simple_animal/hostile/faithless,/turf/simulated/floor/plating{icon_state = "bcircuitoff"},/area/awaymission/wwvault) "an" = (/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/indestructible,/area/awaymission/wwvault) -"ao" = (/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"ap" = (/obj/machinery/wish_granter_dark,/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"aq" = (/obj/structure/cult/pylon,/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"ar" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"as" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"at" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"au" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"av" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"aw" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"ax" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"ay" = (/obj/machinery/gateway,/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"az" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"aA" = (/obj/effect/meatgrinder,/turf/simulated/floor/plating{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/awaymission/wwvault) -"aB" = (/obj/structure/cult/pylon,/turf/simulated/floor/plating{tag = "icon-bcircuitoff"; icon_state = "bcircuitoff"},/area/awaymission/wwvault) -"aC" = (/turf/simulated/floor/plating{tag = "icon-cultdamage2"; icon_state = "cultdamage2"},/area/awaymission/wwvault) +"ao" = (/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"ap" = (/obj/machinery/wish_granter_dark,/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"aq" = (/obj/structure/cult/pylon,/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"ar" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"as" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"at" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"au" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"av" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"aw" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"ax" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"ay" = (/obj/machinery/gateway,/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"az" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"aA" = (/obj/effect/meatgrinder,/turf/simulated/floor/plating{icon_state = "gcircuitoff"},/area/awaymission/wwvault) +"aB" = (/obj/structure/cult/pylon,/turf/simulated/floor/plating{icon_state = "bcircuitoff"},/area/awaymission/wwvault) +"aC" = (/turf/simulated/floor/plating{icon_state = "cultdamage2"},/area/awaymission/wwvault) "aD" = (/turf/simulated/floor/carpet,/area/awaymission/wwvault) "aE" = (/mob/living/simple_animal/hostile/faithless,/turf/simulated/floor/carpet,/area/awaymission/wwvault) "aF" = (/obj/machinery/door/airlock/vault{locked = 1},/turf/simulated/floor/engine/cult,/area/awaymission/wwvaultdoors) @@ -41,27 +41,27 @@ "aO" = (/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/simulated/mineral/diamond,/area/awaymission/wwmines) "aP" = (/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/simulated/mineral/silver,/area/awaymission/wwmines) "aQ" = (/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/simulated/mineral/gold,/area/awaymission/wwmines) -"aR" = (/obj/structure/ore_box,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"aR" = (/obj/structure/ore_box,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "aS" = (/obj/item/weapon/paper{info = "meat grinder requires sacri"},/turf/simulated/floor/engine/cult,/area/awaymission/wwvault) -"aT" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"aT" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "aU" = (/obj/effect/landmark/corpse/syndicatecommando,/turf/simulated/floor/engine/cult,/area/awaymission/wwvault) "aV" = (/turf/simulated/mineral,/area/awaymission/wwrefine) "aW" = (/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwrefine) "aX" = (/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) -"aY" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibup1"; icon_state = "gibup1"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"aZ" = (/obj/effect/mine/sound/bwoink,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"ba" = (/obj/effect/mine/sound/bwoink,/obj/item/ammo_box/c10mm,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"aY" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibup1"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"aZ" = (/obj/effect/mine/sound/bwoink,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"ba" = (/obj/effect/mine/sound/bwoink,/obj/item/ammo_box/c10mm,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "bb" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/awaymission/wwrefine) "bc" = (/turf/simulated/floor/plating,/area/awaymission/wwrefine) "bd" = (/obj/machinery/door/airlock/sandstone,/turf/simulated/floor/plating,/area/awaymission/wwrefine) -"be" = (/obj/item/ammo_box/c10mm,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"bf" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"be" = (/obj/item/ammo_box/c10mm,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"bf" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "bg" = (/turf/simulated/wall/mineral/sandstone,/area/space) "bh" = (/obj/structure/largecrate,/turf/simulated/floor/plating,/area/awaymission/wwrefine) -"bi" = (/obj/effect/landmark/corpse/miner/rig,/obj/effect/mine/sound/bwoink,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"bi" = (/obj/effect/landmark/corpse/miner/rig,/obj/effect/mine/sound/bwoink,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "bj" = (/turf/simulated/floor/wood,/area/awaymission/wwmines) "bk" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"bl" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibup1"; icon_state = "gibup1"},/turf/simulated/floor/wood,/area/awaymission/wwmines) +"bl" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibup1"},/turf/simulated/floor/wood,/area/awaymission/wwmines) "bm" = (/obj/effect/mine/sound/bwoink,/turf/simulated/floor/wood,/area/awaymission/wwmines) "bn" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plating,/area/awaymission/wwrefine) "bo" = (/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/awaymission/wwrefine) @@ -71,11 +71,11 @@ "bs" = (/obj/effect/mine/sound/bwoink,/obj/item/ammo_box/c10mm,/turf/simulated/floor/wood,/area/awaymission/wwmines) "bt" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/awaymission/wwrefine) "bu" = (/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) -"bv" = (/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/space,/area/space) -"bw" = (/obj/structure/lattice,/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/space,/area/space) -"bx" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"by" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bz" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bv" = (/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/space,/area/space) +"bw" = (/obj/structure/lattice,/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/space,/area/space) +"bx" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"by" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bz" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) "bA" = (/obj/structure/closet/cabinet,/turf/simulated/floor/wood,/area/awaymission/wwmines) "bB" = (/obj/structure/stool/bed,/turf/simulated/floor/wood,/area/awaymission/wwmines) "bC" = (/obj/structure/table/wood,/obj/item/weapon/gun/projectile,/turf/simulated/floor/wood,/area/awaymission/wwmines) @@ -85,234 +85,234 @@ "bG" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/wood,/area/awaymission/wwmines) "bH" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/wood,/area/awaymission/wwmines) "bI" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"bJ" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bK" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bL" = (/obj/structure/table/wood,/obj/machinery/microwave,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bM" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bN" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bO" = (/obj/structure/lattice,/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/turf/space,/area/space) +"bJ" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bK" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bL" = (/obj/structure/table/wood,/obj/machinery/microwave,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bM" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bN" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bO" = (/obj/structure/lattice,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/turf/space,/area/space) "bP" = (/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwgov) -"bQ" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"bR" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"bS" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"bT" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/space,/area/space) -"bU" = (/obj/structure/stool/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bV" = (/obj/structure/stool/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"bW" = (/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/turf/space,/area/space) -"bX" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"bY" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"bZ" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand2"; icon_state = "ironsand2"},/area/awaymission/wwgov) -"ca" = (/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) +"bQ" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"bR" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"bS" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"bT" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/space,/area/space) +"bU" = (/obj/structure/stool/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bV" = (/obj/structure/stool/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"bW" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/turf/space,/area/space) +"bX" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"bY" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"bZ" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand2"},/area/awaymission/wwgov) +"ca" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) "cb" = (/obj/machinery/door/window,/turf/simulated/floor/wood,/area/awaymission/wwmines) "cc" = (/obj/structure/table/wood,/obj/item/ammo_box/a357,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"cd" = (/obj/effect/landmark/corpse/cook{mobname = "Chef"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"ce" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"cf" = (/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"cg" = (/obj/structure/table/wood,/obj/item/weapon/paper{info = " The miners in the town have become sick and almost all production has stopped. They, in a fit of delusion, tossed all of their mining equipment into the furnaces. They all claimed the same thing. A voice beckoning them to lay down their arms. Stupid miners."; name = "Planer Saul's Journal: Page 4"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"ch" = (/obj/structure/table/wood,/obj/item/weapon/gun/projectile,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"ci" = (/obj/structure/mineral_door/wood{tag = "icon-woodopening"; icon_state = "woodopening"},/turf/simulated/floor/wood,/area/awaymission/wwmines) +"cd" = (/obj/effect/landmark/corpse/cook{mobname = "Chef"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"ce" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"cf" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"cg" = (/obj/structure/table/wood,/obj/item/weapon/paper{info = " The miners in the town have become sick and almost all production has stopped. They, in a fit of delusion, tossed all of their mining equipment into the furnaces. They all claimed the same thing. A voice beckoning them to lay down their arms. Stupid miners."; name = "Planer Saul's Journal: Page 4"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"ch" = (/obj/structure/table/wood,/obj/item/weapon/gun/projectile,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"ci" = (/obj/structure/mineral_door/wood{icon_state = "woodopening"},/turf/simulated/floor/wood,/area/awaymission/wwmines) "cj" = (/obj/structure/stool,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "ck" = (/obj/item/ammo_box/c10mm,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "cl" = (/obj/structure/stool,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"cm" = (/obj/structure/bookcase{tag = "icon-book-5"; icon_state = "book-5"},/turf/simulated/floor/wood,/area/awaymission/wwgov) +"cm" = (/obj/structure/bookcase{icon_state = "book-5"},/turf/simulated/floor/wood,/area/awaymission/wwgov) "cn" = (/turf/simulated/floor/wood,/area/awaymission/wwgov) "co" = (/obj/item/weapon/moneybag,/turf/simulated/floor/wood,/area/awaymission/wwgov) -"cp" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"cq" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"cr" = (/obj/structure/table/wood,/obj/machinery/microwave,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"cs" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"ct" = (/obj/structure/lattice,/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/space,/area/space) +"cp" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cq" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cr" = (/obj/structure/table/wood,/obj/machinery/microwave,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cs" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"ct" = (/obj/structure/lattice,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/space,/area/space) "cu" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space) "cv" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "cw" = (/turf/simulated/floor/carpet,/area/awaymission/wwgov) "cx" = (/obj/item/weapon/moneybag,/turf/simulated/floor/carpet,/area/awaymission/wwgov) "cy" = (/obj/structure/stool/bed/chair/wood/wings,/turf/simulated/floor/wood,/area/awaymission/wwgov) -"cz" = (/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cz" = (/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) "cA" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"cB" = (/obj/effect/mine/gas/plasma,/obj/item/ammo_box/c10mm,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"cB" = (/obj/effect/mine/gas/plasma,/obj/item/ammo_box/c10mm,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "cC" = (/obj/structure/table/wood,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/wood,/area/awaymission/wwgov) "cD" = (/obj/structure/table/wood,/obj/item/clothing/gloves/color/yellow,/obj/item/device/multitool,/turf/simulated/floor/wood,/area/awaymission/wwgov) "cE" = (/obj/structure/stool/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwgov) "cF" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/awaymission/wwgov) -"cG" = (/mob/living/simple_animal/hostile/creature,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"cH" = (/obj/effect/landmark/corpse/cook{mobname = "Chef"},/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"cI" = (/obj/structure/bookcase{tag = "icon-book-5"; icon_state = "book-5"},/turf/simulated/floor/wood,/area/awaymission/wwmines) +"cG" = (/mob/living/simple_animal/hostile/creature,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cH" = (/obj/effect/landmark/corpse/cook{mobname = "Chef"},/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cI" = (/obj/structure/bookcase{icon_state = "book-5"},/turf/simulated/floor/wood,/area/awaymission/wwmines) "cJ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/peppermill,/turf/simulated/floor/wood,/area/awaymission/wwmines) "cK" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/turf/simulated/floor/wood,/area/awaymission/wwmines) "cL" = (/obj/structure/table/wood,/obj/item/weapon/twohanded/dualsaber,/turf/simulated/floor/wood,/area/awaymission/wwgov) "cM" = (/obj/effect/landmark/corpse/miner/rig,/turf/simulated/floor/wood,/area/awaymission/wwgov) "cN" = (/mob/living/simple_animal/hostile/creature,/turf/simulated/floor/wood,/area/awaymission/wwgov) -"cO" = (/obj/structure/mineral_door/wood{tag = "icon-woodopening"; icon_state = "woodopening"},/turf/simulated/floor/wood,/area/awaymission/wwgov) +"cO" = (/obj/structure/mineral_door/wood{icon_state = "woodopening"},/turf/simulated/floor/wood,/area/awaymission/wwgov) "cP" = (/mob/living/simple_animal/hostile/creature,/turf/simulated/floor/carpet,/area/awaymission/wwgov) -"cQ" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) +"cQ" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) "cR" = (/obj/structure/stool/bed/chair/wood/wings{dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwgov) -"cS" = (/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) +"cS" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) "cT" = (/obj/effect/decal/remains/human,/mob/living/simple_animal/hostile/syndicate/ranged/space{name = "Syndicate Commander"},/turf/simulated/floor/plating,/area/awaymission/wwrefine) "cU" = (/obj/item/weapon/paper{info = "We've discovered something floating in space. We can't really tell how old it is, but it is scraped and bent to hell. There object is the size of about a room with double doors that we have yet to break into. It is a lot sturdier than we could have imagined. We have decided to call it 'The Vault' "; name = "Planer Saul's Journal: Page 1"},/turf/simulated/floor/carpet,/area/awaymission/wwgov) -"cV" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/soup/monkeysdelight,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"cW" = (/obj/structure/table/wood,/obj/item/weapon/kitchen/knife/butcher,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"cX" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/soup/stew,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cV" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/soup/monkeysdelight,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cW" = (/obj/structure/table/wood,/obj/item/weapon/kitchen/knife/butcher,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"cX" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/soup/stew,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) "cY" = (/obj/structure/stool/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwmines) "cZ" = (/obj/structure/stool/bed/chair/comfy/teal{dir = 8},/turf/simulated/floor/wood,/area/awaymission/wwmines) "da" = (/obj/structure/stool/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwmines) "db" = (/obj/structure/stool/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dc" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"dd" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/store/bread/creamcheese,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"de" = (/obj/structure/table/wood,/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"df" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lemon,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"dg" = (/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) +"dc" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"dd" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/store/bread/creamcheese,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"de" = (/obj/structure/table/wood,/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"df" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lemon,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"dg" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) "dh" = (/obj/effect/landmark/corpse/syndicatecommando{mobname = "Syndicate Commando"},/turf/simulated/floor/carpet,/area/awaymission/wwgov) "di" = (/obj/machinery/mineral/mint,/turf/simulated/floor/plating,/area/awaymission/wwrefine) "dj" = (/obj/structure/window/reinforced{dir = 5; health = 1e+007},/turf/simulated/floor/wood,/area/awaymission/wwmines) "dk" = (/obj/structure/shuttle/engine/propulsion/burst/left,/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) "dl" = (/obj/structure/sign/maltesefalcon/right,/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) -"dm" = (/obj/structure/mineral_door/wood{tag = "icon-woodopening"; icon_state = "woodopening"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"dn" = (/obj/structure/mineral_door/wood{tag = "icon-woodopening"; icon_state = "woodopening"},/obj/effect/decal/cleanable/blood/tracks,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"dm" = (/obj/structure/mineral_door/wood{icon_state = "woodopening"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"dn" = (/obj/structure/mineral_door/wood{icon_state = "woodopening"},/obj/effect/decal/cleanable/blood/tracks,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "do" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) "dp" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/wood,/area/awaymission/wwgov) -"dq" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"dr" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"ds" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/patron,/turf/simulated/floor/plasteel{tag = "icon-stage_bleft"; icon_state = "stage_bleft"},/area/awaymission/wwgov) -"dt" = (/obj/effect/decal/cleanable/blood/tracks,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"dq" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"dr" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"ds" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/patron,/turf/simulated/floor/plasteel{icon_state = "stage_bleft"},/area/awaymission/wwgov) +"dt" = (/obj/effect/decal/cleanable/blood/tracks,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "du" = (/obj/effect/decal/cleanable/blood/tracks,/turf/simulated/floor/wood,/area/awaymission/wwmines) "dv" = (/obj/effect/mine/gas/plasma,/obj/item/ammo_box/c10mm,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dw" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"dx" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand4"; icon_state = "ironsand4"},/area/awaymission/wwgov) +"dw" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"dx" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand4"},/area/awaymission/wwgov) "dy" = (/obj/effect/landmark/corpse/miner/rig,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dz" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand12"; icon_state = "ironsand12"},/area/awaymission/wwgov) -"dA" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand14"; icon_state = "ironsand14"},/area/awaymission/wwgov) -"dB" = (/obj/structure/toilet,/mob/living/simple_animal/hostile/creature,/turf/simulated/floor/plasteel{tag = "icon-white"; icon_state = "white"},/area/awaymission/wwgov) -"dC" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand9"; icon_state = "ironsand9"},/area/awaymission/wwgov) -"dD" = (/obj/structure/mineral_door/wood{tag = "icon-woodopening"; icon_state = "woodopening"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) +"dz" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand12"},/area/awaymission/wwgov) +"dA" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand14"},/area/awaymission/wwgov) +"dB" = (/obj/structure/toilet,/mob/living/simple_animal/hostile/creature,/turf/simulated/floor/plasteel{icon_state = "white"},/area/awaymission/wwgov) +"dC" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand9"},/area/awaymission/wwgov) +"dD" = (/obj/structure/mineral_door/wood{icon_state = "woodopening"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) "dE" = (/obj/structure/largecrate,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dF" = (/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand7"; icon_state = "ironsand7"},/area/awaymission/wwgov) -"dG" = (/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"dF" = (/turf/simulated/floor/plating/ironsand{icon_state = "ironsand7"},/area/awaymission/wwgov) +"dG" = (/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) "dH" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/blue,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dI" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibdown1"; icon_state = "gibdown1"},/turf/simulated/floor/carpet,/area/awaymission/wwmines) +"dI" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibdown1"},/turf/simulated/floor/carpet,/area/awaymission/wwmines) "dJ" = (/obj/structure/stool/bed/chair/comfy/brown,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "dK" = (/obj/structure/stool/bed/chair/comfy/beige,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "dL" = (/obj/machinery/door/airlock/sandstone,/turf/simulated/floor/wood,/area/awaymission/wwmines) "dM" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dN" = (/obj/structure/stool/bed/chair/comfy/brown{tag = "icon-comfychair_brown (WEST)"; icon_state = "comfychair_brown"; dir = 8},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dO" = (/obj/structure/stool/bed/chair/comfy/brown{tag = "icon-comfychair_brown (EAST)"; icon_state = "comfychair_brown"; dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"dP" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibdown1"; icon_state = "gibdown1"},/turf/simulated/floor/wood,/area/awaymission/wwmines) +"dN" = (/obj/structure/stool/bed/chair/comfy/brown{icon_state = "comfychair_brown"; dir = 8},/turf/simulated/floor/wood,/area/awaymission/wwmines) +"dO" = (/obj/structure/stool/bed/chair/comfy/brown{icon_state = "comfychair_brown"; dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwmines) +"dP" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibdown1"},/turf/simulated/floor/wood,/area/awaymission/wwmines) "dQ" = (/obj/machinery/computer/security/telescreen/entertainment,/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) -"dR" = (/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"dS" = (/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"dT" = (/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"dU" = (/obj/machinery/door/airlock/sandstone,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"dV" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"dW" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"dR" = (/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"dS" = (/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"dT" = (/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"dU" = (/obj/machinery/door/airlock/sandstone,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"dV" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"dW" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) "dX" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet,/area/awaymission/wwmines) "dY" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly/slimejelly,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "dZ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/coffee,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "ea" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "eb" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/donut,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "ec" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet,/area/awaymission/wwmines) -"ed" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/turf/space,/area/space) -"ee" = (/obj/structure/lattice,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/turf/space,/area/space) -"ef" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) -"eg" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"eh" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwgov) -"ei" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/space,/area/space) -"ej" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"ek" = (/obj/effect/mine/gas/plasma,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) -"el" = (/obj/effect/decal/cleanable/blood,/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"ed" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/turf/space,/area/space) +"ee" = (/obj/structure/lattice,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/turf/space,/area/space) +"ef" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) +"eg" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"eh" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwgov) +"ei" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/space,/area/space) +"ej" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"ek" = (/obj/effect/mine/gas/plasma,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"el" = (/obj/effect/decal/cleanable/blood,/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) "em" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/blue,/obj/item/ammo_box/a357,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"en" = (/obj/structure/stool/bed/chair/comfy/brown{tag = "icon-comfychair_brown (EAST)"; icon_state = "comfychair_brown"; dir = 4},/turf/simulated/floor/carpet,/area/awaymission/wwmines) +"en" = (/obj/structure/stool/bed/chair/comfy/brown{icon_state = "comfychair_brown"; dir = 4},/turf/simulated/floor/carpet,/area/awaymission/wwmines) "eo" = (/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/awaymission/wwmines) -"ep" = (/obj/structure/stool/bed/chair/comfy/brown{tag = "icon-comfychair_brown (WEST)"; icon_state = "comfychair_brown"; dir = 8},/turf/simulated/floor/carpet,/area/awaymission/wwmines) +"ep" = (/obj/structure/stool/bed/chair/comfy/brown{icon_state = "comfychair_brown"; dir = 8},/turf/simulated/floor/carpet,/area/awaymission/wwmines) "eq" = (/obj/item/weapon/gun/projectile/shotgun,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"er" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand12"; icon_state = "ironsand12"},/area/awaymission/wwgov) -"es" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand2"; icon_state = "ironsand2"},/area/awaymission/wwgov) +"er" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand12"},/area/awaymission/wwgov) +"es" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand2"},/area/awaymission/wwgov) "et" = (/turf/simulated/wall/r_wall,/area/awaymission/wwrefine) "eu" = (/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"ev" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) +"ev" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/awaymission/wwmines) "ew" = (/mob/living/simple_animal/hostile/syndicate/ranged,/turf/simulated/floor/carpet,/area/awaymission/wwmines) -"ex" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand7"; icon_state = "ironsand7"},/area/awaymission/wwgov) -"ey" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand4"; icon_state = "ironsand4"},/area/awaymission/wwgov) +"ex" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand7"},/area/awaymission/wwgov) +"ey" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand4"},/area/awaymission/wwgov) "ez" = (/obj/machinery/mineral/input,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "eA" = (/obj/machinery/mineral/mint,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "eB" = (/obj/machinery/mineral/output,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "eC" = (/obj/structure/stool/bed/chair/comfy/brown,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"eD" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand12"; icon_state = "ironsand12"},/area/awaymission/wwgov) +"eD" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand12"},/area/awaymission/wwgov) "eE" = (/obj/structure/stool/bed,/obj/item/weapon/bedsheet/blue,/obj/item/weapon/gun/projectile,/turf/simulated/floor/wood,/area/awaymission/wwmines) "eF" = (/obj/effect/decal/cleanable/blood,/obj/structure/stool/bed,/obj/item/weapon/bedsheet/blue,/turf/simulated/floor/wood,/area/awaymission/wwmines) "eG" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/coffee,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly/slimejelly,/turf/simulated/floor/carpet,/area/awaymission/wwmines) -"eH" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 8},/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibdown1"; icon_state = "gibdown1"},/turf/simulated/floor/carpet,/area/awaymission/wwmines) -"eI" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand7"; icon_state = "ironsand7"},/area/awaymission/wwgov) +"eH" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 8},/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibdown1"},/turf/simulated/floor/carpet,/area/awaymission/wwmines) +"eI" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand7"},/area/awaymission/wwgov) "eJ" = (/obj/structure/sign/vacuum,/turf/simulated/wall/r_wall,/area/awaymission/wwrefine) -"eK" = (/obj/structure/mecha_wreckage/gygax{anchored = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"eK" = (/obj/structure/mecha_wreckage/gygax{anchored = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "eL" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/landmark/corpse/miner/rig,/turf/simulated/floor/carpet,/area/awaymission/wwmines) "eM" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) -"eN" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand14"; icon_state = "ironsand14"},/area/awaymission/wwgov) -"eO" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"eP" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"eQ" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"eR" = (/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"eN" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand14"},/area/awaymission/wwgov) +"eO" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"eP" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"eQ" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"eR" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "eS" = (/obj/effect/mine/gas/plasma,/turf/simulated/floor/wood,/area/awaymission/wwmines) "eT" = (/obj/structure/mecha_wreckage/gygax{anchored = 1},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"eU" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_beige"; tag = ""},/turf/simulated/floor/carpet,/area/awaymission/wwmines) +"eU" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_beige"},/turf/simulated/floor/carpet,/area/awaymission/wwmines) "eV" = (/obj/structure/stool/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/wwmines) -"eW" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibup1"; icon_state = "gibup1"},/turf/simulated/floor/carpet,/area/awaymission/wwmines) +"eW" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibup1"},/turf/simulated/floor/carpet,/area/awaymission/wwmines) "eX" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "eY" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "eZ" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "fa" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "fb" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) -"fc" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand9"; icon_state = "ironsand9"},/area/awaymission/wwgov) +"fc" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand9"},/area/awaymission/wwgov) "fd" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "fe" = (/obj/structure/sink,/turf/simulated/floor/wood,/area/awaymission/wwmines) "ff" = (/obj/structure/mecha_wreckage/durand{anchored = 1},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"fg" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibdown1"; icon_state = "gibdown1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) +"fg" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibdown1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "fh" = (/obj/effect/landmark/corpse/doctor{mobname = "Doctor Mugabee"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "fi" = (/obj/item/stack/medical/bruise_pack,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) -"fj" = (/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"fk" = (/obj/structure/mecha_wreckage/seraph{anchored = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"fj" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"fk" = (/obj/structure/mecha_wreckage/seraph{anchored = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "fl" = (/obj/structure/mecha_wreckage/ripley/deathripley{anchored = 1},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"fm" = (/turf/simulated/wall/mineral{icon_state = "sandstone0"; mineral = "sandstone"; tag = "icon-sandstone0"; walltype = "sandstone"},/area/awaymission/wwmines) +"fm" = (/turf/simulated/wall/mineral{icon_state = "sandstone0"; mineral = "sandstone"; walltype = "sandstone"},/area/awaymission/wwmines) "fn" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) -"fo" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"fo" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "fp" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/wood,/area/awaymission/wwmines) "fq" = (/obj/structure/toilet{dir = 1},/obj/item/ammo_box/a357,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"fr" = (/obj/structure/mecha_wreckage/ripley/deathripley{anchored = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"fr" = (/obj/structure/mecha_wreckage/ripley/deathripley{anchored = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "fs" = (/obj/effect/decal/cleanable/blood,/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) -"ft" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibdown1"; icon_state = "gibdown1"},/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) +"ft" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibdown1"},/turf/simulated/wall/mineral/sandstone,/area/awaymission/wwmines) "fu" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwmines) "fv" = (/obj/structure/stool/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "fw" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "fx" = (/obj/structure/stool/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) -"fy" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/space,/area/space) -"fz" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/space,/area/space) -"fA" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"fB" = (/obj/effect/mine/gas/plasma,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"fC" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibdown1"; icon_state = "gibdown1"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"fD" = (/obj/structure/mecha_wreckage/mauler{anchored = 1},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"fy" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/space,/area/space) +"fz" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/space,/area/space) +"fA" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"fB" = (/obj/effect/mine/gas/plasma,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"fC" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibdown1"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"fD" = (/obj/structure/mecha_wreckage/mauler{anchored = 1},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "fE" = (/obj/structure/stool/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/awaymission/wwmines) "fF" = (/obj/structure/stool/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwmines) "fG" = (/obj/structure/stool/bed/chair/office/light{dir = 4},/turf/simulated/floor/wood,/area/awaymission/wwmines) "fH" = (/obj/structure/stool/bed/chair/office/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"fI" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibup1"; icon_state = "gibup1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) -"fJ" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/grass,/area/awaymission/wwgov) -"fK" = (/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/turf/simulated/floor/grass,/area/awaymission/wwgov) +"fI" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibup1"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) +"fJ" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/grass,/area/awaymission/wwgov) +"fK" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/turf/simulated/floor/grass,/area/awaymission/wwgov) "fL" = (/turf/simulated/floor/grass,/area/awaymission/wwgov) -"fM" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/turf/simulated/floor/grass,/area/awaymission/wwgov) -"fN" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/lattice,/turf/space,/area/space) +"fM" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/turf/simulated/floor/grass,/area/awaymission/wwgov) +"fN" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/lattice,/turf/space,/area/space) "fO" = (/mob/living/simple_animal/hostile/syndicate,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"fP" = (/obj/structure/mecha_wreckage/ripley/deathripley{anchored = 1},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"fQ" = (/obj/effect/decal/cleanable/blood/gibs/body,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"fP" = (/obj/structure/mecha_wreckage/ripley/deathripley{anchored = 1},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"fQ" = (/obj/effect/decal/cleanable/blood/gibs/body,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "fR" = (/obj/effect/mine/sound/bwoink,/obj/effect/landmark/corpse/miner/rig,/turf/simulated/floor/wood,/area/awaymission/wwmines) "fS" = (/obj/structure/table/wood,/obj/item/weapon/gun/projectile/shotgun,/turf/simulated/floor/wood,/area/awaymission/wwmines) "fT" = (/obj/structure/stool/bed/chair/wood/normal,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) -"fU" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/grass,/area/awaymission/wwgov) +"fU" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/grass,/area/awaymission/wwgov) "fV" = (/obj/machinery/hydroponics/soil,/turf/simulated/floor/grass,/area/awaymission/wwgov) "fW" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/grass,/area/awaymission/wwgov) -"fX" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"fX" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "fY" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/wood,/area/awaymission/wwmines) "fZ" = (/obj/item/weapon/paper{info = "The Vault...it just keeps growing and growing. I went on my daily walk through the garden and now its just right outside the mansion... a few days ago it was only barely visible. But whatever is inside...its calling to me."; name = "Planer Sauls' Journal: Page 7"},/turf/simulated/floor/wood,/area/awaymission/wwmines) -"ga" = (/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/simulated/floor/grass,/area/awaymission/wwgov) -"gb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/simulated/floor/grass,/area/awaymission/wwgov) -"gc" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plasteel/airless,/area/space) +"ga" = (/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/simulated/floor/grass,/area/awaymission/wwgov) +"gb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/simulated/floor/grass,/area/awaymission/wwgov) +"gc" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plasteel/airless,/area/space) "gd" = (/turf/simulated/floor/plasteel/airless,/area/space) "ge" = (/obj/effect/landmark/corpse/miner/rig,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "gf" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/awaymission/wwmines) @@ -328,39 +328,39 @@ "gp" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/simulated/mineral,/area/awaymission/wwmines) "gq" = (/obj/effect/decal/cleanable/blood/gibs/up,/turf/simulated/floor/wood,/area/awaymission/wwmines) "gr" = (/obj/effect/decal/cleanable/blood/gibs/down,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"gs" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 4},/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibdown1"; icon_state = "gibdown1"},/turf/simulated/floor/wood,/area/awaymission/wwmines) +"gs" = (/obj/structure/stool/bed/chair/comfy/beige{dir = 4},/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibdown1"},/turf/simulated/floor/wood,/area/awaymission/wwmines) "gt" = (/obj/machinery/washing_machine,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"gu" = (/obj/effect/decal/cleanable/blood/gibs/body{tag = "icon-gibup1"; icon_state = "gibup1"},/obj/structure/stool/bed/chair/wood/normal,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) +"gu" = (/obj/effect/decal/cleanable/blood/gibs/body{icon_state = "gibup1"},/obj/structure/stool/bed/chair/wood/normal,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/awaymission/wwmines) "gv" = (/obj/item/weapon/hatchet,/turf/simulated/floor/wood,/area/awaymission/wwmines) "gw" = (/obj/item/weapon/gun/projectile/automatic/pistol,/turf/simulated/floor/wood,/area/awaymission/wwmines) -"gx" = (/obj/item/weapon/gun/projectile/shotgun,/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"gx" = (/obj/item/weapon/gun/projectile/shotgun,/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) "gy" = (/obj/effect/landmark/corpse/syndicatecommando{mobname = "Syndicate Commando"},/turf/simulated/floor/grass,/area/awaymission/wwgov) -"gz" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"gA" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"gB" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"gC" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-fwindow (NORTH)"; icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) -"gD" = (/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/awaymission/wwgov) +"gz" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"gA" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"gB" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"gC" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 1},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"gD" = (/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/awaymission/wwgov) "gE" = (/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/awaymission/wwgov) "gF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/grass,/area/awaymission/wwgov) -"gG" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-fwindow (EAST)"; icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-fwindow (WEST)"; icon_state = "fwindow"; dir = 8},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) +"gG" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 4},/obj/structure/window/reinforced{icon_state = "fwindow"; dir = 8},/obj/structure/grille,/turf/simulated/floor/plasteel,/area/awaymission/wwrefine) "gH" = (/obj/effect/decal/cleanable/blood,/obj/effect/forcefield{desc = "You can't get in. Heh."; layer = 1; name = "Blocker"},/turf/simulated/mineral,/area/awaymission/wwmines) -"gI" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"},/area/awaymission/wwrefine) -"gJ" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"},/area/awaymission/wwrefine) -"gK" = (/turf/simulated/wall/shuttle{tag = "icon-swall8"; icon_state = "swall8"},/area/awaymission/wwrefine) -"gL" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel/shuttle{tag = "icon-floor2"; icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) -"gM" = (/turf/simulated/wall/shuttle{tag = "icon-swall4"; icon_state = "swall4"},/area/awaymission/wwrefine) -"gN" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"},/area/awaymission/wwrefine) -"gO" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"},/area/awaymission/wwrefine) -"gP" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel/shuttle{tag = "icon-floor2"; icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) -"gQ" = (/turf/simulated/floor/plasteel/shuttle{tag = "icon-floor2"; icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) -"gR" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"},/area/awaymission/wwrefine) -"gS" = (/turf/simulated/wall/shuttle{tag = "icon-swallc1"; icon_state = "swallc1"},/area/awaymission/wwrefine) -"gT" = (/turf/simulated/wall/shuttle{tag = "icon-swallc2"; icon_state = "swallc2"},/area/awaymission/wwrefine) -"gU" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"},/area/awaymission/wwrefine) -"gV" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) -"gW" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/space/syndicate/black/orange,/obj/item/clothing/head/helmet/space/syndicate/black/orange,/obj/item/clothing/mask/gas/syndicate,/obj/item/weapon/tank/internals/oxygen,/turf/simulated/floor/plasteel/shuttle{tag = "icon-floor2"; icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) -"gX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{tag = "icon-fwindow"; icon_state = "fwindow"},/turf/simulated/floor/plasteel/shuttle{tag = "icon-floor2"; icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) -"gY" = (/obj/item/weapon/paper{info = "The syndicate have invaded. Their ships appeared out of nowhere and now they likely intend to kill us all and take everything. On the off-chance that the Vault may grant us sanctuary, many of us have decided to force our way inside and bolt the door, taking as many provisions with us as we can carry. In case you find this, send for help immediately and open the Vault. Find us inside."; name = "Planer Saul's Journal: Page 8"},/turf/simulated/floor/plating/ironsand{tag = "icon-ironsand1"; icon_state = "ironsand1"},/area/awaymission/wwmines) +"gI" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"},/area/awaymission/wwrefine) +"gJ" = (/turf/simulated/wall/shuttle{icon_state = "swall12"},/area/awaymission/wwrefine) +"gK" = (/turf/simulated/wall/shuttle{icon_state = "swall8"},/area/awaymission/wwrefine) +"gL" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) +"gM" = (/turf/simulated/wall/shuttle{icon_state = "swall4"},/area/awaymission/wwrefine) +"gN" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"},/area/awaymission/wwrefine) +"gO" = (/turf/simulated/wall/shuttle{icon_state = "swall3"},/area/awaymission/wwrefine) +"gP" = (/obj/structure/stool/bed/chair,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) +"gQ" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) +"gR" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"},/area/awaymission/wwrefine) +"gS" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"},/area/awaymission/wwrefine) +"gT" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"},/area/awaymission/wwrefine) +"gU" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"},/area/awaymission/wwrefine) +"gV" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) +"gW" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/space/syndicate/black/orange,/obj/item/clothing/head/helmet/space/syndicate/black/orange,/obj/item/clothing/mask/gas/syndicate,/obj/item/weapon/tank/internals/oxygen,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) +"gX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{icon_state = "fwindow"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/awaymission/wwrefine) +"gY" = (/obj/item/weapon/paper{info = "The syndicate have invaded. Their ships appeared out of nowhere and now they likely intend to kill us all and take everything. On the off-chance that the Vault may grant us sanctuary, many of us have decided to force our way inside and bolt the door, taking as many provisions with us as we can carry. In case you find this, send for help immediately and open the Vault. Find us inside."; name = "Planer Saul's Journal: Page 8"},/turf/simulated/floor/plating/ironsand{icon_state = "ironsand1"},/area/awaymission/wwmines) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/map_files/AsteroidStation/AsteroidStation.dmm b/_maps/map_files/AsteroidStation/AsteroidStation.dmm index 25c9f08333c..8e2c714958c 100644 --- a/_maps/map_files/AsteroidStation/AsteroidStation.dmm +++ b/_maps/map_files/AsteroidStation/AsteroidStation.dmm @@ -2317,7 +2317,7 @@ "aSC" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "aSD" = (/turf/simulated/floor/plating/airless{icon_state = "warnplatecorner"},/area/engine/engineering) "aSE" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"},/area/engine/engineering) -"aSF" = (/obj/structure/sign/directions/security{dir = 8; pixel_y = 8},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 0; pixel_y = 0; tag = "icon-direction_med (EAST)"},/turf/simulated/wall,/area/storage/primary{name = "Tool Storage"}) +"aSF" = (/obj/structure/sign/directions/security{dir = 8; pixel_y = 8},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/storage/primary{name = "Tool Storage"}) "aSG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "warnplate"},/area/engine/engineering) "aSH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "warnplatecorner"; dir = 1},/area/engine/engineering) "aSI" = (/turf/simulated/wall,/area/engine/engineering) @@ -4970,7 +4970,7 @@ "bRD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/toxins/mixing) "bRE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing) "bRF" = (/obj/machinery/door/airlock/glass_command{name = "Research Director's Office"; req_access_txt = "30"},/obj/structure/cable/pink{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/pink{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/hor) -"bRG" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 0; pixel_y = 0; tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = -8; tag = "icon-direction_sec (NORTH)"},/turf/simulated/wall,/area/maintenance/aft) +"bRG" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 0; pixel_y = 0},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = -8},/turf/simulated/wall,/area/maintenance/aft) "bRH" = (/obj/structure/table/glass,/obj/item/device/flashlight/pen,/obj/item/device/radio/headset/headset_medsci,/obj/machinery/camera{c_tag = "Genetics Research"; dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/medical/genetics) "bRI" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "bRJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) @@ -5025,7 +5025,7 @@ "bSG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bSH" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bSI" = (/obj/structure/sign/directions/security{dir = 8; pixel_y = 8},/obj/structure/sign/directions/science,/turf/simulated/wall,/area/toxins/lab) -"bSJ" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/evac{pixel_y = -5},/obj/structure/sign/directions/engineering{pixel_y = 2},/turf/simulated/wall,/area/janitor) +"bSJ" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/evac{pixel_y = -5},/obj/structure/sign/directions/engineering{pixel_y = 2},/turf/simulated/wall,/area/janitor) "bSK" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitepurple"},/area/medical/genetics) "bSL" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/medical/genetics) "bSM" = (/obj/structure/window/reinforced{dir = 4},/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/medical/genetics) @@ -5266,7 +5266,7 @@ "bXn" = (/obj/structure/cable/pink{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/pink{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bXo" = (/obj/structure/cable/pink{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bXq" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 1; on = 1; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing) +"bXq" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing) "bXr" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing) "bXs" = (/obj/machinery/door/airlock/glass_research{name = "Toxins Lab"; req_access_txt = "7"},/turf/simulated/floor/plasteel{icon_state = "whitepurplefull"},/area/toxins/mixing) "bXt" = (/obj/machinery/status_display,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/maintenance/asmaint2{icon_state = "toxtest"; name = "Toxins Launch Room"}) @@ -5989,7 +5989,7 @@ "cli" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/simulated/wall,/area/atmos) "clj" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) "clk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) -"cll" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 1; on = 1; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) +"cll" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) "clm" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/atmos) "cln" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plasteel,/area/atmos) "clo" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; pixel_y = -2; sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop")},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/atmos) @@ -6393,8 +6393,8 @@ "csW" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/obj/docking_port/stationary{dir = 2; dwidth = 10; height = 13; id = "emergency_home"; name = "emergency evac bay"; width = 28},/obj/docking_port/mobile/emergency{dir = 2; dwidth = 10; height = 13; width = 28},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "csX" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/escape) "csY" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) -"csZ" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) -"cta" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/space,/area/shuttle/escape) +"csZ" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) +"cta" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/space,/area/shuttle/escape) "ctb" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) "ctc" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/escape) "ctd" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) @@ -6408,19 +6408,19 @@ "ctl" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/escape) "ctm" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/shuttle/escape) "ctn" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/escape) -"cto" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f13"; icon_state = "swall_f13"},/area/shuttle/escape) -"ctp" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f11"; icon_state = "swall_f11"},/area/shuttle/escape) +"cto" = (/turf/simulated/wall/shuttle{icon_state = "swall_f13"},/area/shuttle/escape) +"ctp" = (/turf/simulated/wall/shuttle{icon_state = "swall_f11"},/area/shuttle/escape) "ctq" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/shuttle/escape) -"ctr" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28; tag = "west"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) +"ctr" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) "cts" = (/obj/machinery/suit_storage_unit,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) -"ctt" = (/obj/structure/extinguisher_cabinet{pixel_y = 30; tag = "(north)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"ctt" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ctu" = (/obj/machinery/door/airlock/mining{name = "Emergency Shuttle Storage"; req_access_txt = "0"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor2"},/area/shuttle/escape) "ctv" = (/obj/structure/table,/obj/item/weapon/extinguisher,/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctw" = (/obj/structure/closet,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctx" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "cty" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctz" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"ctA" = (/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 23; tag = "north"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"ctA" = (/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 23},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctB" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"; dir = 2},/area/shuttle/escape) "ctC" = (/obj/machinery/door/airlock/glass_security{name = "Emergency Shuttle Brig"; req_access_txt = "2"},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) "ctD" = (/obj/structure/bed,/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) @@ -6428,7 +6428,7 @@ "ctF" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctG" = (/obj/structure/bed/chair/office/light{name = "Captain"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctH" = (/obj/structure/bed/chair/office/light{name = "Chief Engineer"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"ctI" = (/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 23; tag = "north"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"ctI" = (/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 23},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctJ" = (/obj/structure/bed/chair/office/light{name = "Head of Security"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctK" = (/obj/machinery/ai_status_display,/turf/simulated/wall/shuttle{icon_state = "swall1"; dir = 2},/area/shuttle/escape) "ctL" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) @@ -6445,7 +6445,7 @@ "ctW" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctX" = (/obj/structure/bed/chair/office/light{dir = 1; name = "Head of Personnel"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ctY" = (/obj/structure/bed/chair/office/light{dir = 1; name = "Research Director"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"ctZ" = (/obj/structure/extinguisher_cabinet{pixel_y = -30; tag = "(south)"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"ctZ" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "cua" = (/obj/structure/bed/chair/office/light{dir = 1; name = "Chief Medical Officer"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "cub" = (/obj/machinery/status_display,/turf/simulated/wall/shuttle{icon_state = "swall2"; dir = 2},/area/shuttle/escape) "cuc" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) @@ -6455,13 +6455,13 @@ "cug" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cuh" = (/obj/machinery/door/airlock{name = "Emergency Shuttle Restroom"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cui" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cuj" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29; tag = "south"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"cuk" = (/obj/structure/bed/chair{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = -30; tag = "(south)"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"cuj" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"cuk" = (/obj/structure/bed/chair{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "cul" = (/obj/structure/table,/obj/item/weapon/extinguisher,/obj/item/weapon/crowbar,/obj/machinery/recharger,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "cum" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cun" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/escape) "cuo" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/escape) -"cup" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28; tag = "west"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"cup" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cuq" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cur" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cus" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) @@ -6479,7 +6479,7 @@ "cuE" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cuF" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cuG" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"cuH" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"; tag = "icon-comfychair (NORTH)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"cuH" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cuI" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cuJ" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cuK" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) diff --git a/_maps/map_files/BirdStation/BirdStation.dmm b/_maps/map_files/BirdStation/BirdStation.dmm index 21f9017d4dc..61c3661b265 100644 --- a/_maps/map_files/BirdStation/BirdStation.dmm +++ b/_maps/map_files/BirdStation/BirdStation.dmm @@ -11,7 +11,7 @@ "aak" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters"; name = "remote shutter control"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aal" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aam" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"aan" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"; tag = "icon-comfychair (NORTH)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"aan" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aao" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aap" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "aaq" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -67,7 +67,7 @@ "abo" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "abp" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "abq" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"abr" = (/obj/machinery/nuclearbomb{tag = "syndienuke"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"abr" = (/obj/machinery/nuclearbomb/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "abs" = (/turf/simulated/wall,/area/engine/engineering) "abt" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) "abu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/engine/engineering) @@ -93,63 +93,63 @@ "abO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice/catwalk,/turf/space,/area/space) "abP" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/space,/area/space) "abQ" = (/obj/structure/lattice,/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) -"abR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/lattice/catwalk,/turf/space,/area/space) -"abS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/structure/lattice/catwalk,/turf/space,/area/space) -"abT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/door/airlock/external{name = "engineering external airlock"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/engine/engineering) -"abU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"abV" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"abW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"abX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"abY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)"; icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) -"abZ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aca" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; icon_state = "pump_map"; tag = "icon-pump_map (EAST)"; target_pressure = 2000.32},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acc" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/engineering) +"abR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 6},/obj/structure/lattice/catwalk,/turf/space,/area/space) +"abS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/obj/structure/lattice/catwalk,/turf/space,/area/space) +"abT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/obj/machinery/door/airlock/external{name = "engineering external airlock"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/engine/engineering) +"abU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"abV" = (/obj/machinery/atmospherics/components/binary/pump/on{icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"abW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"abX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"abY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) +"abZ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aca" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; icon_state = "pump_map"; target_pressure = 2000.32},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acc" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/engine/engineering) "acd" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "0-2"},/turf/simulated/floor/plasteel/bot,/area/engine/engineering) "ace" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/engine/engineering) "acf" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/space,/area/space) "acg" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/lattice/catwalk,/turf/space,/area/space) "ach" = (/obj/structure/table,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/turf/simulated/floor/plasteel,/area/engine/engineering) "aci" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/analyzer,/obj/item/device/analyzer,/turf/simulated/floor/plasteel,/area/engine/engineering) -"acj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) -"ack" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; filter_type = 3; icon_state = "filter_off"; req_access = null; tag = "icon-filter_off (EAST)"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) -"acm" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (SOUTHEAST)"; icon_state = "brownold"; dir = 6},/area/engine/engineering) -"acn" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/brownold,/area/engine/engineering) -"aco" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (SOUTHWEST)"; icon_state = "brownold"; dir = 10},/area/engine/engineering) -"acp" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/engineering) +"acj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 6},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) +"ack" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; filter_type = 3; icon_state = "filter_off"; req_access = null},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) +"acm" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 6},/area/engine/engineering) +"acn" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/brownold,/area/engine/engineering) +"aco" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 10},/area/engine/engineering) +"acp" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/engine/engineering) "acq" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/engine/engineering) "acr" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) "acs" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/space,/area/space) "act" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/space,/area/space) "acu" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"acv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"acw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acx" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acy" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1; tag = "icon-manifold-g (NORTH)"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acz" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acA" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) -"acB" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) -"acC" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel/warning/corner,/area/engine/engineering) -"acD" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/engine/engineering) -"acE" = (/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (EAST)"; icon_state = "brownold"; dir = 4},/area/engine/engineering) +"acv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"acw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acx" = (/obj/machinery/atmospherics/components/binary/pump/on{icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acy" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acz" = (/obj/machinery/atmospherics/pipe/simple/green/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acA" = (/obj/machinery/atmospherics/pipe/simple/green/visible{icon_state = "intact"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) +"acB" = (/obj/machinery/atmospherics/pipe/simple/green/visible{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) +"acC" = (/obj/machinery/atmospherics/pipe/simple/green/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel/warning/corner,/area/engine/engineering) +"acD" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 6},/area/engine/engineering) +"acE" = (/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 4},/area/engine/engineering) "acF" = (/obj/machinery/power/emitter{anchored = 1; state = 2},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"acG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/area/engine/engineering) -"acH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/engine/engineering) -"acI" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/engine/engineering) -"acJ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 8},/area/engine/engineering) +"acH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 10},/area/engine/engineering) +"acI" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 1},/area/engine/engineering) +"acJ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump/on{icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "acK" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) "acL" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/turf/space,/area/space) "acM" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/space,/area/space) "acN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/space,/area/space) "acO" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/lattice,/turf/space,/area/space) -"acP" = (/obj/machinery/button/door{id = "heater vent"; name = "heating chamber venting switch"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acR" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acP" = (/obj/machinery/button/door{id = "heater vent"; name = "heating chamber venting switch"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{name = "waste pipe"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"acR" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) "acS" = (/obj/machinery/atmospherics/components/trinary/filter/flipped{req_access = null},/turf/simulated/floor/plasteel,/area/engine/engineering) -"acT" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) +"acT" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) "acU" = (/turf/simulated/wall/r_wall,/area/engine/engineering) -"acV" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/engineering) +"acV" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 8},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/engine/engineering) "acW" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) "acX" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/space,/area/space) "acY" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/space,/area/space) @@ -159,9 +159,9 @@ "adc" = (/obj/machinery/atmospherics/components/binary/pump/on,/turf/simulated/wall/r_wall,/area/engine/engineering) "add" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) "ade" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"adf" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/engine,/area/engine/engineering) +"adf" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/engine,/area/engine/engineering) "adg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) -"adh" = (/obj/machinery/atmospherics/components/binary/pump,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/engineering) +"adh" = (/obj/machinery/atmospherics/components/binary/pump,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/engine/engineering) "adi" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump,/turf/simulated/floor/plasteel,/area/engine/engineering) "adj" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/space,/area/space) "adk" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/space,/area/space) @@ -172,37 +172,37 @@ "adp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/simulated/floor/engine,/area/engine/engineering) "adq" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/machinery/camera{c_tag = "Heating chamber north"; network = list("heating")},/turf/simulated/floor/engine,/area/engine/engineering) "adr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/simulated/floor/engine,/area/engine/engineering) -"ads" = (/obj/machinery/meter,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"adt" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) -"adu" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"adv" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"adw" = (/obj/machinery/power/supermatter_shard{anchored = 1; base_icon_state = "darkmatter"; explosion_power = 20; gasefficency = 0.15; icon_state = "darkmatter"; name = "supermatter crystal"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; name = "supermatter chamber air scrubber"; on = 1},/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) -"adx" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/engineering) -"ady" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) +"ads" = (/obj/machinery/meter,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0; req_access = null},/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 8},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"adt" = (/obj/machinery/atmospherics/components/binary/pump/on{icon_state = "pump_map"; dir = 8},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) +"adu" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"adv" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"adw" = (/obj/machinery/power/supermatter_shard{anchored = 1; base_icon_state = "darkmatter"; explosion_power = 20; gasefficency = 0.15; icon_state = "darkmatter"; name = "supermatter crystal"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; name = "supermatter chamber air scrubber"; on = 1},/obj/machinery/atmospherics/pipe/manifold/general/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) +"adx" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/engine/engineering) +"ady" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump/on{icon_state = "pump_map"; dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) "adz" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/space,/area/space) "adA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/space,/area/space) "adB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plating,/area/engine/engineering) "adC" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/simulated/floor/engine,/area/engine/engineering) "adD" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) "adE" = (/obj/machinery/igniter,/turf/simulated/floor/engine,/area/engine/engineering) -"adF" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"adF" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) "adG" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/turf/simulated/floor/engine,/area/engine/engineering) -"adH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/engineering) +"adH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/engine/engineering) "adI" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) "adJ" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/space,/area/space) "adK" = (/turf/simulated/wall/r_wall,/area/space) "adL" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai{name = "\improper AI Core"}) "adM" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/simulated/floor/engine,/area/engine/engineering) "adN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/alien/weeds,/turf/simulated/floor/engine,/area/engine/engineering) -"adO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) -"adP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (WEST)"; icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) -"adQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/engine/engineering) +"adO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) +"adP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) +"adQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/engine/engineering) "adR" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/engine/engineering) "adS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) "adT" = (/obj/machinery/suit_storage_unit/atmos,/turf/simulated/floor/plasteel,/area/engine/engineering) "adU" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/alien/weeds,/turf/simulated/floor/engine,/area/engine/engineering) "adV" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/simulated/floor/engine,/area/engine/engineering) -"adW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) +"adW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) "adX" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/engine/engineering) "adY" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/engine/engineering) "adZ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice/catwalk,/turf/space,/area/space) @@ -210,16 +210,16 @@ "aeb" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aec" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai{name = "\improper AI Core"}) "aed" = (/obj/machinery/camera/autoname,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) -"aee" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/obj/machinery/power/apc{dir = 1; name = "AI Core APC"; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) -"aef" = (/obj/machinery/light{dir = 1},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)"; icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"aee" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/obj/machinery/power/apc{dir = 1; name = "AI Core APC"; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"aef" = (/obj/machinery/light{dir = 1},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeg" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeh" = (/turf/simulated/floor/engine{name = "high pressure o2 floor"; nitrogen = 0; oxygen = 500000},/area/engine/engineering) "aei" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine{name = "high pressure o2 floor"; nitrogen = 0; oxygen = 500000},/area/engine/engineering) -"aej" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aek" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ael" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/engine/engineering) -"aem" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/engine/engineering) -"aen" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/engine/engineering) +"aej" = (/obj/machinery/atmospherics/components/binary/pump/on{icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aek" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel,/area/engine/engineering) +"ael" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/engine/engineering) +"aem" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/engine/engineering) +"aen" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/engine/engineering) "aeo" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/engine/engineering) "aep" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai{name = "\improper AI Core"}) "aeq" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai{name = "\improper AI Core"}) @@ -227,12 +227,12 @@ "aes" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/engine{name = "high pressure o2 floor"; nitrogen = 0; oxygen = 500000},/area/engine/engineering) "aet" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/engine{name = "high pressure o2 floor"; nitrogen = 0; oxygen = 500000},/area/engine/engineering) "aeu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "high pressure o2 floor"; nitrogen = 0; oxygen = 500000},/area/engine/engineering) -"aev" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/space,/area/space) -"aew" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aex" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aey" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aez" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aeA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aev" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/space,/area/space) +"aew" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aex" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aey" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aez" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aeA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) "aeB" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeC" = (/obj/effect/landmark/start{name = "AI"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeD" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "high pressure o2 floor"; nitrogen = 0; oxygen = 500000},/area/engine/engineering) @@ -240,9 +240,9 @@ "aeF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel,/area/engine/engineering) "aeG" = (/obj/machinery/door/airlock/glass_engineering{name = "engineering door"; req_access_txt = "10"; req_one_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) "aeH" = (/obj/machinery/door/airlock/glass_engineering{name = "engineering door"; req_access_txt = "10"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aeI" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"aeI" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeJ" = (/obj/machinery/turretid{control_area = "\improper AI Core"; pixel_x = 24},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "telecomms and ai module door"; req_access_txt = "61"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) -"aeK" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"aeK" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeL" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) "aeM" = (/obj/structure/table,/obj/item/weapon/pipe_dispenser,/obj/item/weapon/pipe_dispenser,/obj/item/weapon/pipe_dispenser,/turf/simulated/floor/plasteel,/area/engine/engineering) "aeN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/simulated/floor/engine,/area/engine/engineering) @@ -253,9 +253,9 @@ "aeS" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/space,/area/space) "aeT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/space,/area/space) "aeU" = (/turf/simulated/wall/r_wall,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) -"aeV" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"aeV" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeW" = (/obj/machinery/power/smes{charge = 3e+006; input_level = 10000; output_level = 2000},/obj/structure/cable/green,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) -"aeX" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"aeX" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "aeY" = (/turf/simulated/floor/engine/n20,/area/engine/engineering) "aeZ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine/n20,/area/engine/engineering) "afa" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -263,13 +263,13 @@ "afc" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/simulated/floor/engine,/area/engine/engineering) "afd" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/machinery/camera{c_tag = "Heating chamber south"; dir = 1; network = list("heating")},/turf/simulated/floor/engine,/area/engine/engineering) "afe" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"aff" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engineering) -"afg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aff" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 6},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"afg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "afh" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) "afi" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/engine/engineering) "afj" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/space,/area/space) "afk" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/space,/area/space) -"afl" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) +"afl" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "afm" = (/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "afn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "afo" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) @@ -278,11 +278,11 @@ "afr" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/engine/n20,/area/engine/engineering) "afs" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/engine/n20,/area/engine/engineering) "aft" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/n20,/area/engine/engineering) -"afu" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/space,/area/space) +"afu" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 10},/turf/space,/area/space) "afv" = (/obj/item/clothing/head/cone,/obj/item/clothing/head/cone,/obj/item/clothing/head/cone,/obj/item/clothing/head/cone,/obj/item/clothing/head/cone,/obj/item/clothing/head/cone,/turf/simulated/floor/plasteel,/area/engine/engineering) "afw" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/simulated/wall/r_wall,/area/engine/engineering) -"afx" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/wall/r_wall,/area/engine/engineering) -"afy" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel/warning,/area/engine/engineering) +"afx" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{icon_state = "intact"; dir = 1},/turf/simulated/wall/r_wall,/area/engine/engineering) +"afy" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plasteel/warning,/area/engine/engineering) "afz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/warning,/area/engine/engineering) "afA" = (/obj/machinery/atmospherics/components/binary/pump,/turf/simulated/floor/plasteel/warning,/area/engine/engineering) "afB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/space,/area/space) @@ -290,42 +290,42 @@ "afD" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/bluegrid,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "afE" = (/obj/machinery/telecomms/broadcaster/preset_left/birdstation,/turf/simulated/floor/bluegrid,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "afF" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) -"afG" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) -"afH" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"afG" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) +"afH" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai{name = "\improper AI Core"}) "afI" = (/obj/machinery/light/small,/turf/simulated/floor/engine/n20,/area/engine/engineering) "afJ" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/space,/area/space) "afK" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "afL" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"afM" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the heating area."; name = "Heating chamber monitor"; network = list("heating"); pixel_y = 28},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) +"afM" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the heating area."; name = "Heating chamber monitor"; network = list("heating"); pixel_y = 28},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) "afN" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/meter,/turf/simulated/floor/engine,/area/engine/engineering) -"afO" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/turf/simulated/floor/engine,/area/engine/engineering) -"afP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/engine,/area/engine/engineering) -"afQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/engine,/area/engine/engineering) -"afR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/engine,/area/engine/engineering) -"afS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) -"afT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"afU" = (/obj/machinery/light{dir = 1},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"afV" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"afW" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"afO" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 1},/turf/simulated/floor/engine,/area/engine/engineering) +"afP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/engine,/area/engine/engineering) +"afQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/engine,/area/engine/engineering) +"afR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/engine,/area/engine/engineering) +"afS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) +"afT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"afU" = (/obj/machinery/light{dir = 1},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"afV" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"afW" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) "afX" = (/obj/machinery/telecomms/server/presets/common/birdstation,/turf/simulated/floor/bluegrid,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "afY" = (/turf/simulated/floor/bluegrid,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "afZ" = (/obj/machinery/telecomms/hub/preset,/turf/simulated/floor/bluegrid,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "aga" = (/obj/machinery/announcement_system,/turf/simulated/floor/bluegrid,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "agb" = (/obj/machinery/door/airlock/highsecurity{name = "telecomms and ai module door"; req_access_txt = "61"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai{name = "\improper AI Core"}) -"agc" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/space,/area/space) -"agd" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) +"agc" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 5},/turf/space,/area/space) +"agd" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "age" = (/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) -"agf" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"agf" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "agg" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) "agh" = (/obj/machinery/atmospherics/components/binary/pump,/turf/simulated/floor/engine,/area/engine/engineering) -"agi" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) +"agi" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) "agj" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/simulated/floor/engine,/area/engine/engineering) -"agk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/engine,/area/engine/engineering) +"agk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/engine,/area/engine/engineering) "agl" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/engine,/area/engine/engineering) "agm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/engine,/area/engine/engineering) -"agn" = (/obj/machinery/power/smes{charge = 1e+006},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/engine/engineering) -"ago" = (/obj/machinery/power/smes{charge = 1e+006},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/engine/engineering) -"agp" = (/obj/machinery/power/smes{charge = 1e+006},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/engine/engineering) +"agn" = (/obj/machinery/power/smes{charge = 1e+006},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 9},/area/engine/engineering) +"ago" = (/obj/machinery/power/smes{charge = 1e+006},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 1},/area/engine/engineering) +"agp" = (/obj/machinery/power/smes{charge = 1e+006},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 5},/area/engine/engineering) "agq" = (/obj/machinery/atmospherics/components/binary/pump,/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/engine,/area/engine/engineering) "agr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/engine/engineering) "ags" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "4-8"},/turf/space,/area/space) @@ -341,16 +341,16 @@ "agC" = (/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) "agD" = (/turf/simulated/floor/engine{carbon_dioxide = 0; name = "high pressure plasma floor"; nitrogen = 0; oxygen = 0; toxins = 240000},/area/engine/engineering) "agE" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "high pressure plasma floor"; nitrogen = 0; oxygen = 0; toxins = 240000},/area/engine/engineering) -"agF" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) -"agG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (WEST)"; icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) +"agF" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) +"agG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) "agH" = (/obj/item/weapon/wrench,/turf/simulated/floor/plasteel,/area/engine/engineering) "agI" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced,/obj/machinery/meter,/turf/simulated/floor/engine,/area/engine/engineering) -"agJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/reinforced,/turf/simulated/floor/engine,/area/engine/engineering) -"agK" = (/obj/machinery/meter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced,/turf/simulated/floor/engine,/area/engine/engineering) -"agL" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/engine/engineering) -"agM" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/black,/area/engine/engineering) -"agN" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/engineering) -"agO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/engine,/area/engine/engineering) +"agJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/reinforced,/turf/simulated/floor/engine,/area/engine/engineering) +"agK" = (/obj/machinery/meter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced,/turf/simulated/floor/engine,/area/engine/engineering) +"agL" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 8},/area/engine/engineering) +"agM" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/black,/area/engine/engineering) +"agN" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 4},/area/engine/engineering) +"agO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 5},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/engine,/area/engine/engineering) "agP" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "agQ" = (/obj/machinery/door/window/southright,/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "agR" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) @@ -361,42 +361,42 @@ "agW" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "high pressure plasma floor"; nitrogen = 0; oxygen = 0; toxins = 240000},/area/engine/engineering) "agX" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/engine{carbon_dioxide = 0; name = "high pressure plasma floor"; nitrogen = 0; oxygen = 0; toxins = 240000},/area/engine/engineering) "agY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "high pressure plasma floor"; nitrogen = 0; oxygen = 0; toxins = 240000},/area/engine/engineering) -"agZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aha" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ahb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) -"ahc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"agZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) +"aha" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"ahb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) +"ahc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) "ahd" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) "ahe" = (/obj/machinery/atmospherics/components/binary/circulator,/turf/simulated/floor/plasteel,/area/engine/engineering) "ahf" = (/obj/structure/cable,/obj/machinery/power/generator/birdstation,/turf/simulated/floor/plasteel,/area/engine/engineering) "ahg" = (/obj/machinery/atmospherics/components/binary/circulator{icon_state = "circ2-off"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ahh" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/engine/engineering) +"ahh" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 10},/area/engine/engineering) "ahi" = (/obj/machinery/computer/monitor,/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plasteel/darkwarning,/area/engine/engineering) -"ahj" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/engine/engineering) -"ahk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/engine,/area/engine/engineering) +"ahj" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 6},/area/engine/engineering) +"ahk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 6},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/engine,/area/engine/engineering) "ahl" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "ahm" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "ahn" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "aho" = (/obj/structure/table,/obj/item/weapon/paper/monitorkey{pixel_x = 5; pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) -"ahp" = (/obj/machinery/turretid{control_area = "\improper AI Core Lobby"; pixel_x = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) -"ahq" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) +"ahp" = (/obj/machinery/turretid{control_area = "\improper AI Core Lobby"; pixel_x = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) +"ahq" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) "ahr" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) "ahs" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/bot/ed209{name = "Officer Pingsky II"; radio_frequency = 1447},/turf/simulated/floor/bluegrid,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) "aht" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) "ahu" = (/obj/structure/table,/obj/item/areaeditor/blueprints,/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) "ahv" = (/obj/machinery/light{dir = 1},/obj/machinery/nuclearbomb/selfdestruct,/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) "ahw" = (/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) -"ahx" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/engine/gravity_generator) +"ahx" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/engine/gravity_generator) "ahy" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) -"ahz" = (/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/engine/gravity_generator) +"ahz" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/engine/gravity_generator) "ahA" = (/obj/machinery/light/small,/turf/simulated/floor/engine{carbon_dioxide = 0; name = "high pressure plasma floor"; nitrogen = 0; oxygen = 0; toxins = 240000},/area/engine/engineering) -"ahB" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/engine/engineering) +"ahB" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/engine/engineering) "ahC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/engine,/area/engine/engineering) -"ahD" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"ahE" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ahF" = (/obj/machinery/atmospherics/pipe/simple{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ahG" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/engine,/area/engine/engineering) -"ahH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"ahI" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (WEST)"; icon_state = "pump_map"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) +"ahD" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 6},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"ahE" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) +"ahF" = (/obj/machinery/atmospherics/pipe/simple{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) +"ahG" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/engine,/area/engine/engineering) +"ahH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"ahI" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 8},/turf/simulated/floor/engine,/area/engine/engineering) "ahJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "1-4"},/turf/space,/area/space) "ahK" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "2-8"},/turf/space,/area/space) "ahL" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) @@ -408,10 +408,10 @@ "ahR" = (/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) "ahS" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) "ahT" = (/turf/simulated/floor/plasteel/black,/area/engine/gravity_generator) -"ahU" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/space,/area/space) -"ahV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/engine,/area/engine/engineering) -"ahW" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) -"ahX" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/engine,/area/engine/engineering) +"ahU" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 6},/turf/space,/area/space) +"ahV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/engine,/area/engine/engineering) +"ahW" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/engine/engineering) +"ahX" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/engine,/area/engine/engineering) "ahY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/engine,/area/engine/engineering) "ahZ" = (/turf/simulated/floor/plasteel/stairs,/area/engine/engineering) "aia" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/engine,/area/engine/engineering) @@ -419,7 +419,7 @@ "aic" = (/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "aid" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) "aie" = (/obj/machinery/power/apc{dir = 4; name = "Telecommunications Chamber APC"; pixel_x = 24},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) -"aif" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) +"aif" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) "aig" = (/obj/machinery/power/apc{name = "AI Core Lobby APC"; pixel_y = -24},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/black,/area/turret_protected/aisat_interior{name = "\improper AI Core Lobby"}) "aih" = (/obj/machinery/power/apc{dir = 8; name = "Vault APC"; pixel_x = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) "aii" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/security/nuke_storage) @@ -430,11 +430,11 @@ "ain" = (/turf/simulated/floor/engine{carbon_dioxide = 200000; name = "high pressure co2 floor"; nitrogen = 0; oxygen = 0},/area/engine/engineering) "aio" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine{carbon_dioxide = 200000; name = "high pressure co2 floor"; nitrogen = 0; oxygen = 0},/area/engine/engineering) "aip" = (/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 8},/area/engine/engineering) -"aiq" = (/obj/machinery/atmospherics/components/binary/pump{tag = "icon-pump_map (NORTH)"; icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"aiq" = (/obj/machinery/atmospherics/components/binary/pump{icon_state = "pump_map"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) "air" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"ais" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/engine/engineering) -"ait" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aiu" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/engine/engineering) +"ais" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/engine/engineering) +"ait" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aiu" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/engine/engineering) "aiv" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area/space) "aiw" = (/obj/structure/grille,/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/space,/area/space) "aix" = (/obj/machinery/door/airlock/highsecurity{name = "telecomms and ai module door"; req_access_txt = "61"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/turret_protected/tcomeast{name = "\improper Telecommunications Chamber"}) @@ -445,17 +445,17 @@ "aiC" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/engine{carbon_dioxide = 200000; name = "high pressure co2 floor"; nitrogen = 0; oxygen = 0},/area/engine/engineering) "aiD" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/engine{carbon_dioxide = 200000; name = "high pressure co2 floor"; nitrogen = 0; oxygen = 0},/area/engine/engineering) "aiE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 200000; name = "high pressure co2 floor"; nitrogen = 0; oxygen = 0},/area/engine/engineering) -"aiF" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/space,/area/space) +"aiF" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 9},/turf/space,/area/space) "aiG" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/engine/engineering) "aiH" = (/obj/item/device/radio/beacon,/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/engine/engineering) "aiI" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aiJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/engine/engineering) -"aiK" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/engine/engineering) +"aiJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/engine/engineering) +"aiK" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/engine/engineering) "aiL" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/engine/engineering) "aiM" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "aiN" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "aiO" = (/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"aiP" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"aiP" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "aiQ" = (/turf/simulated/wall,/area/engine/gravity_generator) "aiR" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) "aiS" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) @@ -463,24 +463,24 @@ "aiU" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/gravity_generator) "aiV" = (/obj/machinery/light/small,/turf/simulated/floor/engine{carbon_dioxide = 200000; name = "high pressure co2 floor"; nitrogen = 0; oxygen = 0},/area/engine/engineering) "aiW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{name = "waste pipe"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aiX" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aiY" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aiZ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aiX" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{icon_state = "manifold"; dir = 8},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/engine/engineering) +"aiY" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aiZ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/engine/engineering) "aja" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "ajb" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "ajc" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/engine/gravity_generator) "ajd" = (/obj/machinery/power/apc{name = "Gravity Generator APC"; pixel_y = -24},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"aje" = (/obj/structure/closet/radiation,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) +"aje" = (/obj/structure/closet/radiation,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) "ajf" = (/obj/machinery/power/apc{dir = 4; name = "Engineering APC"; pixel_x = 24},/obj/structure/cable/cyan,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/floor/plasteel,/area/engine/engineering) "ajg" = (/turf/simulated/wall,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "ajh" = (/obj/machinery/door/airlock/glass_command{name = "command door"; req_access_txt = "19"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "aji" = (/turf/simulated/floor/engine{name = "high pressure n2 floor"; nitrogen = 400000; oxygen = 0},/area/engine/engineering) "ajj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "high pressure n2 floor"; nitrogen = 400000; oxygen = 0},/area/engine/engineering) -"ajk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{tag = "icon-manifold (WEST)"; name = "waste pipe"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"ajl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; name = "waste pipe"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"ajm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (NORTHWEST)"; name = "waste pipe"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"ajn" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"ajo" = (/obj/machinery/atmospherics/components/binary/pump/on{tag = "icon-pump_map (EAST)"; icon_state = "pump_map"; dir = 4},/turf/simulated/wall,/area/engine/engineering) +"ajk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{name = "waste pipe"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"ajl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{name = "waste pipe"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"ajm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{name = "waste pipe"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"ajn" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"ajo" = (/obj/machinery/atmospherics/components/binary/pump/on{icon_state = "pump_map"; dir = 4},/turf/simulated/wall,/area/engine/engineering) "ajp" = (/obj/structure/dispenser,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "ajq" = (/obj/machinery/vending/engivend,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "ajr" = (/obj/machinery/vending/tool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -502,14 +502,14 @@ "ajH" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "high pressure n2 floor"; nitrogen = 400000; oxygen = 0},/area/engine/engineering) "ajI" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/simulated/floor/plating/airless,/area/engine/engineering) "ajJ" = (/obj/machinery/button/door{id = "secure storage"; name = "secure storage button"; pixel_x = -24},/turf/simulated/floor/plasteel,/area/engine/engineering) -"ajK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"ajL" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"ajM" = (/obj/machinery/power/apc{dir = 1; name = "Command Hallway APC"; pixel_y = 24},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"ajN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"ajO" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"ajK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"ajL" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"ajM" = (/obj/machinery/power/apc{dir = 1; name = "Command Hallway APC"; pixel_y = 24},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"ajN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"ajO" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "ajP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"ajQ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"ajR" = (/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) +"ajQ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"ajR" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) "ajS" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) "ajT" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/engine/engineering) "ajU" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods{amount = 50},/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -517,13 +517,13 @@ "ajW" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "ajX" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "ajY" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"ajZ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"ajZ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "aka" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akb" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akd" = (/turf/simulated/floor/engine{name = "high pressure air floor"; nitrogen = 40015; oxygen = 10000},/area/engine/engineering) "ake" = (/obj/machinery/door/poddoor{id = "secure storage"; name = "secure storage blast door"},/turf/simulated/floor/plating,/area/engine/engineering) -"akf" = (/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"akf" = (/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 8},/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akg" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akh" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) "aki" = (/turf/simulated/wall,/area/gateway) @@ -532,35 +532,35 @@ "akl" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/engine{name = "high pressure air floor"; nitrogen = 40015; oxygen = 10000},/area/engine/engineering) "akm" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/engine{name = "high pressure air floor"; nitrogen = 40015; oxygen = 10000},/area/engine/engineering) "akn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{name = "high pressure air floor"; nitrogen = 40015; oxygen = 10000},/area/engine/engineering) -"ako" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) -"akp" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/space,/area/space) +"ako" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) +"akp" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{icon_state = "manifold"; dir = 4},/turf/space,/area/space) "akq" = (/obj/structure/closet/radiation,/turf/simulated/floor/plating,/area/engine/engineering) "akr" = (/turf/simulated/floor/plating,/area/engine/engineering) "aks" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/engine/engineering) "akt" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/engine/engineering) "aku" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/engine/engineering) "akv" = (/obj/machinery/door/airlock/glass_engineering{name = "engineering door"; req_access_txt = "10"; req_one_access_txt = "0"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"akw" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (WEST)"; icon_state = "brownold"; dir = 8},/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"akw" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 8},/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akx" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"aky" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"aky" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akz" = (/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "akA" = (/obj/machinery/porta_turret{ai = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "akB" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "akC" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/full/asimovpp,/obj/item/weapon/aiModule/core/full/corp,/obj/item/weapon/aiModule/core/full/paladin,/obj/item/weapon/aiModule/core/full/robocop,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) -"akD" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/gateway) -"akE" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) -"akF" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"akG" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) -"akH" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/gateway) -"akI" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/gateway) +"akD" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/gateway) +"akE" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 1},/area/gateway) +"akF" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/gateway) +"akG" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 4},/area/gateway) +"akH" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/gateway) +"akI" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel,/area/gateway) "akJ" = (/obj/machinery/light/small{dir = 8},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) -"akK" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) +"akK" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) "akL" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "akM" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/space,/area/space) "akN" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/radiation,/turf/simulated/floor/plating,/area/engine/engineering) "akO" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/plating,/area/engine/engineering) "akP" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"akQ" = (/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"akQ" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "akR" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "akS" = (/obj/machinery/door/airlock/command{name = "command door"; req_access_txt = "19"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/turret_protected/ai_upload) "akT" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) @@ -568,42 +568,42 @@ "akV" = (/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "akW" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) "akX" = (/obj/machinery/computer/upload/borg,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westright{req_access_txt = "55"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"akY" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"; tag = "icon-plant-05"},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"akY" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "akZ" = (/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) -"ala" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"; tag = "icon-plant-05"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"ala" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "alb" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint) "alc" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "ald" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/maintenance/fsmaint) "ale" = (/obj/structure/table_frame/wood,/turf/simulated/floor/wood,/area/maintenance/fsmaint) "alf" = (/obj/structure/table/wood,/obj/item/clothing/under/blueskirt/redskirt,/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"alg" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/gateway) -"alh" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"alg" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/gateway) +"alh" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/gateway) "ali" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/plasteel/black,/area/gateway) -"alj" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"alj" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/gateway) "alk" = (/obj/machinery/light{dir = 4},/obj/structure/closet/cardboard,/obj/effect/spawner/lootdrop{loot = list(/obj/effect/decal/cleanable/blood/old = 10, /obj/item/voodoo = 1); name = "vodoo doll spawner"},/obj/item/weapon/coin/diamond,/turf/simulated/floor/plating,/area/gateway) "all" = (/turf/simulated/wall/rust,/area/gateway) "alm" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) "aln" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engine/engineering) "alo" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/engine/engineering) "alp" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/device/gps/engineering,/obj/item/device/gps/engineering,/obj/item/clothing/shoes/magboots/advance,/turf/simulated/floor/plating,/area/engine/engineering) -"alq" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"alr" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"alq" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"alr" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "als" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "alt" = (/obj/machinery/computer/upload/ai,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westleft{req_access_txt = "55"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"alu" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"alu" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "alv" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"alw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"alx" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"aly" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"alz" = (/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1; tag = "icon-plant-04"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"alw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"alx" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"aly" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"alz" = (/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "alA" = (/turf/simulated/floor/wood,/area/maintenance/fsmaint) "alB" = (/obj/structure/bookcase,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "alC" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "alD" = (/obj/structure/table/wood,/obj/item/weapon/relic,/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"alE" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/gateway) -"alF" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) -"alG" = (/obj/machinery/gateway,/obj/structure/cable/cyan{icon_state = "0-2"},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"alH" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) +"alE" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/gateway) +"alF" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 4},/area/gateway) +"alG" = (/obj/machinery/gateway,/obj/structure/cable/cyan{icon_state = "0-2"},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/gateway) +"alH" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 1},/area/gateway) "alI" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel,/area/gateway) "alJ" = (/turf/simulated/floor/plasteel/black,/area/maintenance/fsmaint) "alK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/glass_engineering{name = "engineering door"; req_access_txt = "10"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -613,7 +613,7 @@ "alO" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/machinery/light/small,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "alP" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/tyrant,/obj/item/weapon/aiModule/core/full/antimov,/obj/item/weapon/aiModule/reset/purge,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/item/weapon/aiModule/supplied/quarantine,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/supplied/protectStation,/obj/item/weapon/aiModule/supplied/safeguard,/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "alQ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"alR" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) +"alR" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "alS" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "alT" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) "alU" = (/obj/machinery/door/airlock/command{name = "command door"; req_access_txt = "19"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) @@ -621,21 +621,21 @@ "alW" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/wood,/area/maintenance/fsmaint) "alX" = (/obj/structure/spirit_board{anchored = 1},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "alY" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/gateway) -"alZ" = (/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/gateway) -"ama" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/gateway) -"amb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/gateway) +"alZ" = (/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/gateway) +"ama" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/gateway) +"amb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/gateway) "amc" = (/turf/simulated/floor/plasteel/warning/corner{dir = 4},/area/gateway) "amd" = (/turf/simulated/floor/plasteel,/area/gateway) "ame" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) -"amf" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)"; icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"amf" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "amg" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "amh" = (/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "ami" = (/obj/machinery/door/airlock/atmos{name = "atmospherics door"; req_access_txt = "24"},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"amj" = (/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/engine/engineering) -"amk" = (/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (NORTH)"; icon_state = "brownold"; dir = 1},/area/engine/engineering) -"aml" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (NORTH)"; icon_state = "brownold"; dir = 1},/area/engine/engineering) +"amj" = (/turf/simulated/floor/plasteel/blue/side{icon_state = "blue"; dir = 8},/area/engine/engineering) +"amk" = (/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 1},/area/engine/engineering) +"aml" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 1},/area/engine/engineering) "amm" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/space,/area/space) -"amn" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) +"amn" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/black,/area/turret_protected/ai_upload) "amo" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "amp" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "amq" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) @@ -648,12 +648,12 @@ "amx" = (/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "amy" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "amz" = (/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "0-8"},/turf/space,/area/space) -"amA" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/space,/area/space) -"amB" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/space,/area/space) +"amA" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 5},/turf/space,/area/space) +"amB" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 10},/turf/space,/area/space) "amC" = (/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "amD" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "amE" = (/obj/machinery/door/airlock/atmos{name = "atmospherics door"; req_access_txt = "24"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"amF" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (WEST)"; icon_state = "blue"; dir = 8},/area/engine/engineering) +"amF" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/blue/side{icon_state = "blue"; dir = 8},/area/engine/engineering) "amG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) "amH" = (/turf/simulated/floor/plating/airless,/area/space) "amI" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/simulated/floor/plating/airless,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) @@ -671,14 +671,14 @@ "amU" = (/obj/structure/dresser,/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "amV" = (/obj/machinery/computer/communications,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "amW" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/fore{name = "\improper Command Hallway"}) -"amX" = (/turf/simulated/floor/wood{tag = "icon-wood-broken3"; icon_state = "wood-broken3"},/area/maintenance/fsmaint) +"amX" = (/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/maintenance/fsmaint) "amY" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/gateway) "amZ" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "ana" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "anb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "anc" = (/obj/structure/flora/kirbyplants,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "and" = (/obj/structure/flora/kirbyplants,/obj/machinery/camera/autoname{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"ane" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) +"ane" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) "anf" = (/obj/machinery/power/apc{dir = 1; name = "Teleporter Room APC"; pixel_y = 24},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) "ang" = (/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) "anh" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) @@ -693,14 +693,14 @@ "anq" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/barricade/wooden,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anr" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "ans" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"ant" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"; tag = "icon-plant-05"},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"ant" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "anu" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anv" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anw" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) "anx" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) -"any" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/wall,/area/engine/engineering) +"any" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/wall,/area/engine/engineering) "anz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"anA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"anA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "anB" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/scrubber{name = "heavy duty air scrubber"; volume = 3000; widenet = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "anC" = (/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "anD" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) @@ -709,7 +709,7 @@ "anG" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) "anH" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) "anI" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/hand_tele,/turf/simulated/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"}) -"anJ" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"anJ" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "anK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "anL" = (/obj/machinery/computer/card,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "anM" = (/obj/structure/table/wood,/obj/item/weapon/storage/lockbox/medal,/obj/item/weapon/card/id/captains_spare,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -718,7 +718,7 @@ "anP" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anQ" = (/obj/structure/table/wood,/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/wood,/area/maintenance/fsmaint) "anR" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"anS" = (/turf/simulated/floor/wood{tag = "icon-wood-broken4"; icon_state = "wood-broken4"},/area/maintenance/fsmaint) +"anS" = (/turf/simulated/floor/wood{icon_state = "wood-broken4"},/area/maintenance/fsmaint) "anT" = (/obj/machinery/photocopier,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anU" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anV" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint) @@ -728,9 +728,9 @@ "anZ" = (/turf/simulated/floor/plasteel/blue/side,/area/atmos{name = "Emergency Air Pumps"}) "aoa" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/blue/side,/area/atmos{name = "Emergency Air Pumps"}) "aob" = (/obj/machinery/door/airlock/glass_engineering{name = "engineering door"; req_access_txt = "10"; req_one_access_txt = "0"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aoc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/wall,/area/engine/engineering) +"aoc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/wall,/area/engine/engineering) "aod" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/pump,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"aoe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/scrubber{name = "heavy duty air scrubber"; volume = 3000; widenet = 1},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"aoe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/scrubber{name = "heavy duty air scrubber"; volume = 3000; widenet = 1},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "aof" = (/turf/simulated/wall,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "aog" = (/obj/machinery/power/apc{dir = 8; name = "Northwest Hallway APC"; pixel_x = -24},/obj/structure/cable/cyan{icon_state = "0-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "aoh" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) @@ -748,8 +748,8 @@ "aot" = (/turf/simulated/wall/r_wall,/area/atmos{name = "Emergency Air Pumps"}) "aou" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/wall/r_wall,/area/atmos{name = "Emergency Air Pumps"}) "aov" = (/obj/machinery/door/airlock/atmos{name = "atmospherics door"; req_access_txt = "24"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"aow" = (/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (NORTH)"; icon_state = "brownold"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"aox" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel/brownold{tag = "icon-brownold (NORTH)"; icon_state = "brownold"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"aow" = (/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"aox" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel/brownold{icon_state = "brownold"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "aoy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "aoz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "aoA" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel/blue/side,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) @@ -767,39 +767,39 @@ "aoM" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/yellowsiding,/area/bridge) "aoN" = (/obj/machinery/keycard_auth{pixel_y = 24},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/yellowsiding,/area/bridge) "aoO" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/yellowsiding,/area/bridge) -"aoP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/yellowsiding,/area/bridge) -"aoQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/yellowsiding/corner{tag = "icon-yellowcornersiding (WEST)"; icon_state = "yellowcornersiding"; dir = 8},/area/bridge) -"aoR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/bridge) -"aoS" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) -"aoT" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aoU" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aoV" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"aoP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/yellowsiding,/area/bridge) +"aoQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/yellowsiding/corner{icon_state = "yellowcornersiding"; dir = 8},/area/bridge) +"aoR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/bridge) +"aoS" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) +"aoT" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"aoU" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"aoV" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aoW" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aoX" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) "aoY" = (/obj/machinery/atmospherics/components/binary/pump,/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) "aoZ" = (/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) -"apa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"apb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"apc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/atmos{name = "Emergency Air Pumps"}) -"apd" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"ape" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"apf" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"apg" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"aph" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"api" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"apj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"apk" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"apa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"apb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"apc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/atmos{name = "Emergency Air Pumps"}) +"apd" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"ape" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"apf" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"apg" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"aph" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"api" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"apj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"apk" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "apl" = (/obj/machinery/door/airlock/command{name = "E.V.A. door"; req_access_txt = "18"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "apm" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "apn" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "apo" = (/obj/machinery/door/airlock/command{name = "command door"; req_access_txt = "19"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "app" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/bridge) -"apq" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (EAST)"; icon_state = "yellowsiding"; dir = 4},/area/bridge) -"apr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/bridge) +"apq" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 4},/area/bridge) +"apr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel,/area/bridge) "aps" = (/turf/simulated/floor/plasteel/black,/area/bridge) "apt" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/black,/area/bridge) -"apu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/bridge) -"apv" = (/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (WEST)"; icon_state = "yellowsiding"; dir = 8},/area/bridge) +"apu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel,/area/bridge) +"apv" = (/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 8},/area/bridge) "apw" = (/obj/machinery/computer/message_monitor,/turf/simulated/floor/plasteel,/area/bridge) "apx" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) "apy" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) @@ -813,18 +813,18 @@ "apG" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "apH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "apI" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"apJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"apJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "apK" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "apL" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "apM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "apN" = (/obj/machinery/door/airlock/command{name = "E.V.A. door"; req_access_txt = "18"},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "apO" = (/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "apP" = (/obj/machinery/door/airlock/command{name = "command door"; req_access_txt = "19"},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"apQ" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellowsiding/corner{tag = "icon-yellowcornersiding (EAST)"; icon_state = "yellowcornersiding"; dir = 4},/area/bridge) +"apQ" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellowsiding/corner{icon_state = "yellowcornersiding"; dir = 4},/area/bridge) "apR" = (/obj/machinery/computer/robotics,/turf/simulated/floor/plasteel/black,/area/bridge) "apS" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/black,/area/bridge) "apT" = (/obj/structure/bed/dogbed{anchored = 1; desc = "A comfy-looking bird bed. You can even strap your pet in, in case the gravity turns off."; name = "bird bed"},/mob/living/simple_animal/parrot{harm_intent_damage = 20; health = 600; name = "Poly"; speak = list("BWAK!","Callings shuttle!","Helloings!","Rude!","CAW!","Cute birdings!","Squawk!","Hi!","Piyo!","BWAAK BWAAK.","Caw.","SQAWK!","Kill all humans.")},/turf/simulated/floor/plasteel/black,/area/bridge) -"apU" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/yellowsiding/corner{tag = "icon-yellowcornersiding (NORTH)"; icon_state = "yellowcornersiding"; dir = 1},/area/bridge) +"apU" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/yellowsiding/corner{icon_state = "yellowcornersiding"; dir = 1},/area/bridge) "apV" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel,/area/bridge) "apW" = (/obj/structure/table/wood,/obj/item/clothing/suit/monkeysuit,/obj/item/clothing/mask/gas/monkeymask,/turf/simulated/floor/wood,/area/maintenance/fsmaint) "apX" = (/obj/structure/table/wood,/obj/item/clothing/suit/suspenders,/obj/item/clothing/under/syndicate/tacticool,/turf/simulated/floor/wood,/area/maintenance/fsmaint) @@ -837,14 +837,14 @@ "aqe" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqf" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) "aqg" = (/turf/simulated/wall,/area/atmos{name = "Emergency Air Pumps"}) -"aqh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"aqi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (WEST)"; icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"aqh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"aqi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "aqj" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/primary{name = "Tool Storage"}) "aqk" = (/obj/machinery/door/airlock/glass{name = "glass door"},/turf/simulated/floor/plasteel,/area/storage/primary{name = "Tool Storage"}) "aql" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/storage/primary{name = "Tool Storage"}) "aqm" = (/turf/simulated/wall,/area/storage/primary{name = "Tool Storage"}) -"aqn" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"aqo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"aqn" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/blue/side{icon_state = "blue"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"aqo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/blue/side{icon_state = "blue"; dir = 1},/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "aqp" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "aqq" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/obj/machinery/light,/obj/item/device/gps,/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "aqr" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) @@ -862,8 +862,8 @@ "aqD" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqE" = (/turf/simulated/wall,/area/quartermaster/storage) "aqF" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) -"aqG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) -"aqH" = (/obj/machinery/atmospherics/components/binary/valve{tag = "icon-mvalve_map (EAST)"; icon_state = "mvalve_map"; dir = 4},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) +"aqG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) +"aqH" = (/obj/machinery/atmospherics/components/binary/valve{icon_state = "mvalve_map"; dir = 4},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) "aqI" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/engine,/area/atmos{name = "Emergency Air Pumps"}) "aqJ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/secure_closet/atmospherics,/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) "aqK" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) @@ -906,14 +906,14 @@ "arv" = (/obj/machinery/computer/monitor,/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plasteel/black,/area/bridge) "arw" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/black,/area/bridge) "arx" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/plasteel/black,/area/bridge) -"ary" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/yellowsiding/corner{tag = "icon-yellowcornersiding (WEST)"; icon_state = "yellowcornersiding"; dir = 8},/area/bridge) +"ary" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/yellowsiding/corner{icon_state = "yellowcornersiding"; dir = 8},/area/bridge) "arz" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel,/area/bridge) "arA" = (/turf/simulated/floor/carpet,/area/maintenance/fsmaint) "arB" = (/obj/item/clothing/under/rank/clown,/obj/item/clothing/mask/gas/clown_hat,/turf/simulated/floor/carpet,/area/maintenance/fsmaint) "arC" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"arD" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"arE" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"arF" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"arD" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"arE" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"arF" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "arG" = (/obj/structure/bed/stool,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "arH" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/supply) "arI" = (/obj/machinery/conveyor{dir = 2; id = "cargoshuttle"; name = "cargo shuttle conveyor belt"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) @@ -931,16 +931,16 @@ "arU" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "arV" = (/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "arW" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"arX" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (EAST)"; icon_state = "yellowsiding"; dir = 4},/area/bridge) -"arY" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/bridge) +"arX" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 4},/area/bridge) +"arY" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel,/area/bridge) "arZ" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/plasteel/black,/area/bridge) -"asa" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/bridge) +"asa" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel,/area/bridge) "asb" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel,/area/bridge) "asc" = (/obj/item/clothing/shoes/clown_shoes/banana_shoes,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/maintenance/fsmaint) -"asd" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/maintenance/fsmaint) +"asd" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/maintenance/fsmaint) "ase" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"asf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"asg" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"asf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"asg" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "ash" = (/turf/simulated/wall/rust,/area/crew_quarters/sleep) "asi" = (/turf/simulated/wall,/area/crew_quarters/sleep) "asj" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/crew_quarters/sleep) @@ -960,33 +960,33 @@ "asx" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/storage/primary{name = "Tool Storage"}) "asy" = (/obj/effect/landmark/start{name = "Assistant"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/storage/primary{name = "Tool Storage"}) "asz" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/storage/primary{name = "Tool Storage"}) -"asA" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"asB" = (/obj/structure/bed/chair/office/light,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/obj/machinery/button/door{id = "hop shutter"; name = "HoP office shutter button"; pixel_x = -24},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"asA" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"asB" = (/obj/structure/bed/chair/office/light,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/obj/machinery/button/door{id = "hop shutter"; name = "HoP office shutter button"; pixel_x = -24},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "asC" = (/obj/machinery/computer/card,/turf/simulated/floor/carpet,/area/crew_quarters/heads) "asD" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "asE" = (/obj/structure/table/wood,/obj/item/weapon/clipboard,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/crew_quarters/heads) "asF" = (/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"asG" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) +"asG" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "asH" = (/obj/machinery/power/apc{dir = 8; name = "Bridge APC"; pixel_x = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plasteel,/area/bridge) -"asI" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/yellowsiding/corner{tag = "icon-yellowcornersiding (EAST)"; icon_state = "yellowcornersiding"; dir = 4},/area/bridge) -"asJ" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (NORTH)"; icon_state = "yellowsiding"; dir = 1},/area/bridge) -"asK" = (/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (NORTH)"; icon_state = "yellowsiding"; dir = 1},/area/bridge) -"asL" = (/obj/machinery/keycard_auth{pixel_y = -24},/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (NORTH)"; icon_state = "yellowsiding"; dir = 1},/area/bridge) -"asM" = (/obj/machinery/light,/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (NORTH)"; icon_state = "yellowsiding"; dir = 1},/area/bridge) -"asN" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel/yellowsiding{tag = "icon-yellowsiding (NORTH)"; icon_state = "yellowsiding"; dir = 1},/area/bridge) -"asO" = (/turf/simulated/floor/plasteel/yellowsiding/corner{tag = "icon-yellowcornersiding (NORTH)"; icon_state = "yellowcornersiding"; dir = 1},/area/bridge) +"asI" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/yellowsiding/corner{icon_state = "yellowcornersiding"; dir = 4},/area/bridge) +"asJ" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 1},/area/bridge) +"asK" = (/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 1},/area/bridge) +"asL" = (/obj/machinery/keycard_auth{pixel_y = -24},/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 1},/area/bridge) +"asM" = (/obj/machinery/light,/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 1},/area/bridge) +"asN" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel/yellowsiding{icon_state = "yellowsiding"; dir = 1},/area/bridge) +"asO" = (/turf/simulated/floor/plasteel/yellowsiding/corner{icon_state = "yellowcornersiding"; dir = 1},/area/bridge) "asP" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/bridge) "asQ" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "asR" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters/sleep) "asS" = (/obj/machinery/door/airlock{name = "door"},/turf/simulated/floor/plating,/area/crew_quarters/sleep) "asT" = (/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"asU" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters/sleep) +"asU" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters/sleep) "asV" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"asW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"asX" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"asY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"asZ" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"ata" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (WEST)"; icon_state = "vent_map"; dir = 8},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"asW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"asX" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"asY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"asZ" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"ata" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 8},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "atb" = (/obj/structure/table/wood,/obj/item/device/electropack,/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/carpet,/area/maintenance/fsmaint) "atc" = (/obj/structure/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/carpet,/area/maintenance/fsmaint) "atd" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/maintenance/fsmaint) @@ -995,14 +995,14 @@ "atg" = (/obj/machinery/conveyor{dir = 6; id = "cargoshuttle"; name = "cargo shuttle conveyor belt"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) "ath" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8; id = "cargoshuttle"; name = "cargo shuttle conveyor belt"},/turf/simulated/floor/plating,/area/shuttle/supply) "ati" = (/obj/machinery/conveyor{dir = 4; id = "cargo"; name = "cargo conveyor belt"},/obj/machinery/door/poddoor{id = "cargo blast"; name = "cargo conveyor blast door"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"atj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) -"atk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) -"atl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"atm" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"atn" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) -"ato" = (/obj/machinery/vending/assist,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/storage/primary{name = "Tool Storage"}) -"atp" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) -"atq" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"atj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) +"atk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/atmos{name = "Emergency Air Pumps"}) +"atl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"atm" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{icon_state = "manifold"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"atn" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel,/area/atmos{name = "Emergency Air Pumps"}) +"ato" = (/obj/machinery/vending/assist,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/storage/primary{name = "Tool Storage"}) +"atp" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) +"atq" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port{name = "\improper Northwest Hallway"}) "atr" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "hop shutter"; name = "HoP Office shutter"},/obj/machinery/door/window/southright,/obj/machinery/door/window/northright{name = "HoP desk door"; req_one_access_txt = "19;57"},/turf/simulated/floor/plating,/area/crew_quarters/heads) "ats" = (/obj/machinery/door/airlock/glass_command{name = "command door"; req_access_txt = "19"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/blue,/area/bridge) "att" = (/obj/machinery/door/airlock/glass_command{name = "command door"; req_access_txt = "19"},/turf/simulated/floor/plasteel/blue,/area/bridge) @@ -1010,14 +1010,14 @@ "atv" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/crew_quarters/sleep) "atw" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/crew_quarters/sleep) "atx" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"aty" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/item/weapon/soap,/turf/simulated/floor/plating,/area/crew_quarters/sleep) +"aty" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/item/weapon/soap,/turf/simulated/floor/plating,/area/crew_quarters/sleep) "atz" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"atA" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"atB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"atC" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"atA" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"atB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"atC" = (/obj/structure/flora/kirbyplants{icon_state = "plant-22"},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "atD" = (/obj/structure/table/wood,/obj/item/weapon/relic,/turf/simulated/floor/carpet,/area/maintenance/fsmaint) "atE" = (/obj/structure/table/wood,/obj/item/weapon/coin/gold,/turf/simulated/floor/carpet,/area/maintenance/fsmaint) -"atF" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"atF" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "atG" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) "atH" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/supply) "atI" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/shuttle/supply) @@ -1057,36 +1057,36 @@ "auq" = (/obj/machinery/button/door{id = "cargo blast"; name = "cargo blast door button"; pixel_x = -24; pixel_y = 0},/obj/machinery/light{dir = 8},/obj/machinery/computer/supplycomp,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aur" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "cargo"; name = "shuttle conveyor switch"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aus" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aut" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/quartermaster/storage) +"aut" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 4},/area/quartermaster/storage) "auu" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=4"; freq = 1400; location = "Cargo #1"; name = "navigation beacon"},/obj/machinery/bot/mulebot{beacon_freq = 1400; home_destination = "Cargo #1"; suffix = "#1"},/turf/simulated/floor/plasteel/delivery,/area/quartermaster/storage) "auv" = (/turf/simulated/floor/plasteel/bot,/area/quartermaster/storage) "auw" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aux" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/folder/yellow,/obj/item/weapon/hand_labeler,/obj/machinery/status_display{name = "cargo status display"; pixel_x = 0; pixel_y = 32; supply_display = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "auy" = (/obj/machinery/autolathe,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "auz" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/device/multitool,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"auA" = (/turf/simulated/floor/plasteel{icon_state = "loadingarea"; tag = "loading"},/area/hallway/primary/central) -"auB" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"; tag = "loading"},/area/hallway/primary/central) +"auA" = (/turf/simulated/floor/plasteel{icon_state = "loadingarea"},/area/hallway/primary/central) +"auB" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"},/area/hallway/primary/central) "auC" = (/obj/machinery/door/airlock/glass_command{name = "command door"; req_access_txt = "19"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "auD" = (/obj/machinery/door/airlock/glass_command{name = "command door"; req_access_txt = "19"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "auE" = (/obj/machinery/vending/autodrobe{req_access_txt = ""},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/sleep) "auF" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"auG" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"auG" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "auH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "auI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "auJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "auK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"auL" = (/obj/item/device/assembly/mousetrap/armed{tag = "icon-mousetraparmed (EAST)"; icon_state = "mousetraparmed"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"auM" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1; tag = "icon-plant-06"},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"auL" = (/obj/item/device/assembly/mousetrap/armed{icon_state = "mousetraparmed"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"auM" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "auN" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"auO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"auP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"auQ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"auR" = (/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Dormitory Maintenance APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"auS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"auO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"auP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"auQ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"auR" = (/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Dormitory Maintenance APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"auS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "auT" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "auU" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/obj/docking_port/mobile/supply{dwidth = 3; width = 10},/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 7; id = "supply_home"; name = "supply bay"; width = 10},/turf/simulated/floor/plating,/area/shuttle/supply) "auV" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"auW" = (/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/quartermaster/storage) +"auW" = (/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 4},/area/quartermaster/storage) "auX" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=4"; freq = 1400; location = "Cargo #2"; name = "navigation beacon"},/turf/simulated/floor/plasteel/delivery,/area/quartermaster/storage) "auY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "auZ" = (/obj/structure/table,/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster,/turf/simulated/floor/plasteel,/area/quartermaster/storage) @@ -1098,11 +1098,11 @@ "avf" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "avg" = (/obj/effect/landmark/start{name = "Assistant"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "avh" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hallway shutter"; name = "hallway shutter"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avi" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/hallway/primary/central) -"avj" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/blue/side{tag = "icon-blue (NORTH)"; icon_state = "blue"; dir = 1},/area/hallway/primary/central) +"avi" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/blue/side{icon_state = "blue"; dir = 1},/area/hallway/primary/central) +"avj" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/blue/side{icon_state = "blue"; dir = 1},/area/hallway/primary/central) "avk" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "avl" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avm" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/sleep) +"avm" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/sleep) "avn" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "avo" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "avp" = (/obj/effect/landmark/start{name = "Assistant"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) @@ -1120,31 +1120,31 @@ "avB" = (/obj/machinery/conveyor{dir = 8; id = "cargo"; name = "cargo conveyor belt"},/obj/machinery/door/poddoor{id = "cargo blast"; name = "cargo conveyor blast door"},/turf/simulated/floor/plating,/area/quartermaster/storage) "avC" = (/obj/machinery/conveyor{dir = 8; id = "cargo"; name = "cargo conveyor belt"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "avD" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"avE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"avF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"avE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"avF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "avG" = (/obj/machinery/mineral/ore_redemption{input_dir = 8; output_dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "avH" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/bot,/area/hallway/primary/central) -"avI" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=5-CNE"; location = "4-CNW"; name = "bot patrol navigation beacon"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avK" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avL" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avM" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-y (EAST)"; icon_state = "pipe-y"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avI" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=5-CNE"; location = "4-CNW"; name = "bot patrol navigation beacon"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avK" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avL" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avM" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "avN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avP" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avQ" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hallway shutter"; name = "hallway shutter"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avR" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avT" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"avV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) -"avW" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"avX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"avY" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; tag = "icon-sink (WEST)"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) -"avZ" = (/obj/machinery/hydroponics/soil,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) -"awa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) -"awb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"awc" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"avO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avP" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avQ" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hallway shutter"; name = "hallway shutter"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avR" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avT" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"avV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) +"avW" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"avX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"avY" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) +"avZ" = (/obj/machinery/hydroponics/soil,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) +"awa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) +"awb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"awc" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "awd" = (/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) "awe" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) "awf" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/wood,/area/maintenance/fsmaint) @@ -1153,13 +1153,13 @@ "awi" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/mining) "awj" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/mining) "awk" = (/turf/space,/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/mining) -"awl" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"},/area/shuttle/supply) +"awl" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"},/area/shuttle/supply) "awm" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/supply) "awn" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/plating/airless,/area/shuttle/supply) "awo" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/shuttle/supply) -"awp" = (/turf/simulated/floor/plasteel/yellow/corner{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/quartermaster/storage) -"awq" = (/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (NORTH)"; icon_state = "yellow"; dir = 1},/area/quartermaster/storage) -"awr" = (/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (NORTHEAST)"; icon_state = "yellow"; dir = 5},/area/quartermaster/storage) +"awp" = (/turf/simulated/floor/plasteel/yellow/corner{icon_state = "yellowcorner"; dir = 4},/area/quartermaster/storage) +"awq" = (/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 1},/area/quartermaster/storage) +"awr" = (/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 5},/area/quartermaster/storage) "aws" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "awt" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "awu" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) @@ -1179,9 +1179,9 @@ "awI" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) "awJ" = (/obj/machinery/hydroponics/soil,/turf/simulated/floor/plasteel/white,/area/crew_quarters/sleep) "awK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"awL" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"awM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (WEST)"; icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"awN" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1; tag = "icon-plant-06"},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"awL" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"awM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"awN" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "awO" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/maintenance/fsmaint) "awP" = (/obj/structure/table/wood,/obj/item/weapon/storage/pill_bottle/dice{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/wood,/area/maintenance/fsmaint) "awQ" = (/obj/structure/table/wood,/obj/item/toy/cards/deck,/turf/simulated/floor/wood,/area/maintenance/fsmaint) @@ -1195,7 +1195,7 @@ "awY" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel/bot,/area/quartermaster/storage) "awZ" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plasteel/bot,/area/quartermaster/storage) "axa" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/simulated/floor/plasteel/bot,/area/quartermaster/storage) -"axb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/quartermaster/storage) +"axb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 4},/area/quartermaster/storage) "axc" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_y = 5},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "axd" = (/obj/structure/table,/obj/item/weapon/stamp/denied{pixel_x = 6; pixel_y = 6},/obj/item/weapon/stamp,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "axe" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/plasteel,/area/quartermaster/storage) @@ -1205,14 +1205,14 @@ "axi" = (/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) "axj" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library) "axk" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/simulated/floor/wood,/area/library) -"axl" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/wood,/area/library) +"axl" = (/obj/structure/flora/kirbyplants{icon_state = "plant-22"},/turf/simulated/floor/wood,/area/library) "axm" = (/turf/simulated/floor/carpet,/area/library) "axn" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) "axo" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/library) "axp" = (/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) "axq" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/wood,/area/library) "axr" = (/turf/simulated/wall,/area/library) -"axs" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1; tag = "icon-plant-06"},/turf/simulated/floor/wood,/area/library) +"axs" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1},/turf/simulated/floor/wood,/area/library) "axt" = (/obj/structure/bed/chair/wood/normal,/turf/simulated/floor/wood,/area/library) "axu" = (/turf/simulated/wall,/area/crew_quarters/theatre) "axv" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plasteel,/area/hallway/primary/central) @@ -1223,7 +1223,7 @@ "axA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "axB" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "axC" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=7-DormsS"; location = "6-DormsN"; name = "bot patrol navigation beacon"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"axD" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"axD" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "axE" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "axF" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "axG" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_3"; layer = 4.1; name = "tree"; pixel_x = -4; pixel_y = 10},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/maintenance/fsmaint) @@ -1236,12 +1236,12 @@ "axN" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/bot,/area/quartermaster/storage) "axO" = (/obj/structure/closet/crate/medical,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/bot,/area/quartermaster/storage) "axP" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/bot,/area/quartermaster/storage) -"axQ" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/status_display{name = "cargo status display"; pixel_x = 0; pixel_y = -32; supply_display = 1},/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/quartermaster/storage) +"axQ" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/status_display{name = "cargo status display"; pixel_x = 0; pixel_y = -32; supply_display = 1},/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 4},/area/quartermaster/storage) "axR" = (/obj/structure/closet/wardrobe/cargotech,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "axS" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{name = "cargo door"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "axT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/quartermaster/storage) "axU" = (/obj/machinery/door/airlock/glass_mining{name = "cargo bay door"; req_access_txt = "31"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"axV" = (/obj/structure/bed/chair/wood/normal{tag = "icon-wooden_chair (EAST)"; icon_state = "wooden_chair"; dir = 4},/turf/simulated/floor/wood,/area/library) +"axV" = (/obj/structure/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 4},/turf/simulated/floor/wood,/area/library) "axW" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/simulated/floor/wood,/area/library) "axX" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) "axY" = (/turf/simulated/floor/wood,/area/library) @@ -1270,7 +1270,7 @@ "ayv" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "ayw" = (/obj/machinery/status_display{name = "cargo status display"; pixel_x = -32; supply_display = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "ayx" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"ayy" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/quartermaster/storage) +"ayy" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 4},/area/quartermaster/storage) "ayz" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "ayA" = (/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/carpet,/area/library) "ayB" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood,/area/library) @@ -1288,7 +1288,7 @@ "ayN" = (/obj/structure/table,/obj/item/weapon/storage/box/mousetraps,/turf/simulated/floor/plasteel,/area/maintenance/disposal) "ayO" = (/obj/structure/table,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/disposal) "ayP" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/plasteel,/area/maintenance/disposal) -"ayQ" = (/obj/structure/bed/chair/wood/normal{tag = "icon-wooden_chair (EAST)"; icon_state = "wooden_chair"; dir = 4},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/wood,/area/crew_quarters/sleep) +"ayQ" = (/obj/structure/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 4},/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/wood,/area/crew_quarters/sleep) "ayR" = (/obj/structure/table/wood,/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/wood,/area/crew_quarters/sleep) "ayS" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/maintenance/fsmaint) "ayT" = (/obj/structure/table/wood,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/wood,/area/maintenance/fsmaint) @@ -1302,22 +1302,22 @@ "azb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"}) "azc" = (/obj/machinery/door/airlock/glass_mining{name = "cargo bay door"; req_access_txt = "31"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "azd" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "cargoIN"; name = "cargo crate conveyor switch"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aze" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"aze" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/storage) "azf" = (/obj/machinery/conveyor{dir = 4; id = "cargoIN"; name = "cargo conveyor belt"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "azg" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "cargoIN"; name = "cargo conveyor belt"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"azh" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"azi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"azj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/yellow/side{tag = "icon-yellow (EAST)"; icon_state = "yellow"; dir = 4},/area/quartermaster/storage) -"azk" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"azl" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"azh" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"azi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"azj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/yellow/side{icon_state = "yellow"; dir = 4},/area/quartermaster/storage) +"azk" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"azl" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "azm" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/library) "azn" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/wood,/area/library) -"azo" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1; tag = "icon-plant-06"},/obj/machinery/power/apc{name = "Library APC"; pixel_y = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/wood,/area/library) +"azo" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1},/obj/machinery/power/apc{name = "Library APC"; pixel_y = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/wood,/area/library) "azp" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/wood,/area/library) "azq" = (/obj/structure/dresser,/turf/simulated/floor/wood,/area/crew_quarters/theatre) "azr" = (/obj/machinery/vending/autodrobe,/turf/simulated/floor/wood,/area/crew_quarters/theatre) "azs" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"azt" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; tag = "icon-sink (WEST)"},/turf/simulated/floor/plasteel,/area/maintenance/disposal) +"azt" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12},/turf/simulated/floor/plasteel,/area/maintenance/disposal) "azu" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=4"; freq = 1400; location = "Disposals"; name = "navigation beacon"},/turf/simulated/floor/plasteel/delivery,/area/maintenance/disposal) "azv" = (/turf/simulated/floor/plasteel/bot,/area/maintenance/disposal) "azw" = (/obj/structure/bed/chair/janicart,/turf/simulated/floor/plasteel,/area/maintenance/disposal) @@ -1329,11 +1329,11 @@ "azC" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep) "azD" = (/obj/structure/dresser,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep) "azE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"azF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) -"azG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"azH" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"azF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/wood,/area/maintenance/fsmaint) +"azG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) +"azH" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "azI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"azJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"azJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "azK" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/obj/structure/closet/cardboard,/obj/item/weapon/coin/silver,/turf/simulated/floor/plasteel,/area/maintenance/fsmaint) "azL" = (/turf/simulated/wall,/area/maintenance/asmaint2) "azM" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -1345,15 +1345,15 @@ "azS" = (/obj/machinery/computer/shuttle/mining{req_access = "0"; req_one_access = "0"},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"}) "azT" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "azU" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"azV" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel,/area/quartermaster/storage) +"azV" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "azW" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "cargoOUT"; name = "cargo crate conveyor switch"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"azX" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"azX" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/quartermaster/storage) "azY" = (/obj/machinery/conveyor{dir = 8; id = "cargoOUT"; name = "cargo conveyor belt"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "azZ" = (/obj/machinery/conveyor{dir = 8; id = "cargoOUT"; name = "cargo conveyor belt"},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aAa" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "cargoOUT"; name = "cargo conveyor belt"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aAb" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aAc" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/wood,/area/hallway/primary/central) -"aAd" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/wood,/area/library) +"aAd" = (/obj/structure/flora/kirbyplants{icon_state = "plant-22"},/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/wood,/area/library) "aAe" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/wood,/area/library) "aAf" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood,/area/library) "aAg" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/library) @@ -1421,12 +1421,12 @@ "aBq" = (/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aBr" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = -2; pixel_y = 5},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aBs" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aBt" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTHWEST)"; icon_state = "whitegreen"; dir = 9},/area/hydroponics) -"aBu" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder{pixel_y = 12},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/hydroponics) -"aBv" = (/obj/structure/table/glass,/obj/item/weapon/shovel/spade,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/storage/bag/plants,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/hydroponics) -"aBw" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/reagent_containers/food/snacks/grown/blumpkin,/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/chili,/obj/item/weapon/reagent_containers/food/snacks/grown/ghost_chili,/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/chanterelle,/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/walkingmushroom,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/lily,/obj/item/weapon/reagent_containers/food/snacks/grown/rice,/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/weapon/reagent_containers/food/snacks/grown/parsnip,/obj/item/weapon/reagent_containers/food/snacks/grown/eggplant,/obj/item/weapon/reagent_containers/food/snacks/grown/corn,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/obj/item/weapon/reagent_containers/food/snacks/grown/holymelon,/obj/item/weapon/reagent_containers/food/snacks/grown/bluecherries,/obj/item/weapon/reagent_containers/food/snacks/grown/sweetpotato,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/hydroponics) -"aBx" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/watertank,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTH)"; icon_state = "whitegreen"; dir = 1},/area/hydroponics) -"aBy" = (/obj/structure/closet/wardrobe/botanist,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (NORTHEAST)"; icon_state = "whitegreen"; dir = 5},/area/hydroponics) +"aBt" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 9},/area/hydroponics) +"aBu" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder{pixel_y = 12},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 1},/area/hydroponics) +"aBv" = (/obj/structure/table/glass,/obj/item/weapon/shovel/spade,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/storage/bag/plants,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 1},/area/hydroponics) +"aBw" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/reagent_containers/food/snacks/grown/blumpkin,/obj/item/weapon/reagent_containers/food/snacks/grown/cabbage,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/chili,/obj/item/weapon/reagent_containers/food/snacks/grown/ghost_chili,/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/chanterelle,/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/walkingmushroom,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy/lily,/obj/item/weapon/reagent_containers/food/snacks/grown/rice,/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/weapon/reagent_containers/food/snacks/grown/parsnip,/obj/item/weapon/reagent_containers/food/snacks/grown/eggplant,/obj/item/weapon/reagent_containers/food/snacks/grown/corn,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/obj/item/weapon/reagent_containers/food/snacks/grown/holymelon,/obj/item/weapon/reagent_containers/food/snacks/grown/bluecherries,/obj/item/weapon/reagent_containers/food/snacks/grown/sweetpotato,/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 1},/area/hydroponics) +"aBx" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/watertank,/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 1},/area/hydroponics) +"aBy" = (/obj/structure/closet/wardrobe/botanist,/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 5},/area/hydroponics) "aBz" = (/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aBA" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aBB" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=1"; freq = 1400; location = "Central Maint"; name = "navigation beacon"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) @@ -1441,7 +1441,7 @@ "aBK" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aBL" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/sillycup,/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aBM" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) -"aBN" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)"; icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) +"aBN" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aBO" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/tonic,/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aBP" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aBQ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -1457,15 +1457,15 @@ "aCa" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = -6; pixel_y = 11},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_3"; layer = 4.1; name = "tree"; pixel_x = 10; pixel_y = 6},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_4"; layer = 4.1; name = "tree"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aCb" = (/turf/simulated/floor/wood,/area/hallway/secondary/exit) "aCc" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aCd" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; tag = "icon-sink (WEST)"},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/hydroponics) +"aCd" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 8},/area/hydroponics) "aCe" = (/turf/simulated/floor/plasteel/white,/area/hydroponics) -"aCf" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/hydroponics) +"aCf" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 4},/area/hydroponics) "aCg" = (/obj/machinery/door/airlock/maintenance{name = "bar door"; req_one_access_txt = "25;28"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/maintcentral{name = "Central Maintenance"}) "aCh" = (/obj/machinery/icecream_vat,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aCi" = (/turf/simulated/floor/plasteel,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aCj" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) "aCk" = (/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"aCl" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aCl" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aCm" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating,/area/maintenance/disposal) "aCn" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/light,/turf/simulated/floor/plating,/area/maintenance/disposal) "aCo" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/door/poddoor{id = "crusherdoor"; layer = 3.1; name = "crusher safety blast door"},/turf/simulated/floor/plating,/area/maintenance/disposal) @@ -1474,7 +1474,7 @@ "aCr" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/simulated/floor/plating,/area/maintenance/disposal) "aCs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/disposal) "aCt" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"aCu" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) +"aCu" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aCv" = (/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aCw" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/black,/area/crew_quarters/sleep) "aCx" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/wall,/area/maintenance/asmaint2) @@ -1485,11 +1485,11 @@ "aCC" = (/obj/structure/flora/ausbushes/reedbush{pixel_x = 6},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aCD" = (/turf/simulated/wall/mineral/wood{desc = "A tiny shrine to the moon lady."; name = "Change'e shrine"; opacity = 0},/area/hallway/secondary/exit) "aCE" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = -5; pixel_y = -1},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aCF" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/hydroponics) +"aCF" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 8},/area/hydroponics) "aCG" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/white,/area/hydroponics) "aCH" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/white,/area/hydroponics) -"aCI" = (/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/hydroponics) -"aCJ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aCI" = (/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 4},/area/hydroponics) +"aCJ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aCK" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aCL" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aCM" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) @@ -1503,20 +1503,20 @@ "aCU" = (/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) "aCV" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hallway shutter"; name = "hallway shutter"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aCW" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/maintenance/disposal) -"aCX" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"aCY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"aCZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/bot,/area/crew_quarters/sleep) -"aDa" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=8"; freq = 1400; location = "Dorms"; name = "navigation beacon"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/delivery,/area/crew_quarters/sleep) -"aDb" = (/obj/machinery/power/apc{dir = 1; name = "Dormitories APC"; pixel_y = 24},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"aDc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"aDd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"aDe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) -"aDf" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aCX" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"aCY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"aCZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/bot,/area/crew_quarters/sleep) +"aDa" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=8"; freq = 1400; location = "Dorms"; name = "navigation beacon"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/delivery,/area/crew_quarters/sleep) +"aDb" = (/obj/machinery/power/apc{dir = 1; name = "Dormitories APC"; pixel_y = 24},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"aDc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"aDd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"aDe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) +"aDf" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDg" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aDh" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aDi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aDj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aDk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aDh" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aDi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aDj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aDk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDl" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDm" = (/obj/item/device/mmi,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDn" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/escape) @@ -1524,12 +1524,12 @@ "aDp" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/escape) "aDq" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/escape) "aDr" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"}) -"aDs" = (/obj/structure/flora/ausbushes/lavendergrass{pixel_x = 6},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) +"aDs" = (/obj/structure/flora/ausbushes/lavendergrass{pixel_x = 6},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aDt" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aDu" = (/obj/machinery/seed_extractor,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/hydroponics) +"aDu" = (/obj/machinery/seed_extractor,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 8},/area/hydroponics) "aDv" = (/obj/effect/landmark/start{name = "Botanist"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/hydroponics) "aDw" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/plasteel/white,/area/hydroponics) -"aDx" = (/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (EAST)"; icon_state = "whitegreen"; dir = 4},/area/hydroponics) +"aDx" = (/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 4},/area/hydroponics) "aDy" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hydroponics) "aDz" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aDA" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen shutter"; name = "kitchen shutter"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) @@ -1538,7 +1538,7 @@ "aDD" = (/obj/machinery/door/airlock/maintenance{name = "bar door"; req_one_access_txt = "25;28"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aDE" = (/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) "aDF" = (/obj/structure/piano,/turf/simulated/floor/carpet,/area/crew_quarters/theatre) -"aDG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/junction{tag = "icon-pipe-y (EAST)"; icon_state = "pipe-y"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aDG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aDH" = (/obj/machinery/door/airlock{name = "door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aDI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aDJ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) @@ -1546,11 +1546,11 @@ "aDL" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "aDM" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "aDN" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) -"aDO" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"aDO" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "aDP" = (/obj/machinery/door/airlock/maintenance{name = "science maintenance door"; req_one_access_txt = "47;12;29"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDQ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDR" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aDS" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aDS" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDT" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aDU" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aDV" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/warning/corner,/area/maintenance/asmaint2) @@ -1564,14 +1564,14 @@ "aEd" = (/obj/structure/table,/obj/item/weapon/cautery,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw{pixel_y = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) "aEe" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) "aEf" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) -"aEg" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (WEST)"; icon_state = "propulsion_r"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) +"aEg" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) "aEh" = (/obj/structure/closet/cardboard,/obj/item/weapon/coin/silver,/obj/item/weapon/coin/silver,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"}) "aEi" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_4"; layer = 4.1; name = "tree"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aEj" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 14; pixel_y = -8},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = -5; pixel_y = -1},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aEk" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_3"; layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_4"; layer = 4.1; name = "tree"; pixel_x = -5; pixel_y = -1},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aEl" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aEm" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = 0; pixel_y = 4},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aEn" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/hydroponics) +"aEn" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 8},/area/hydroponics) "aEo" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aEp" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aEq" = (/obj/machinery/vending/boozeomat,/turf/simulated/wall,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) @@ -1579,8 +1579,8 @@ "aEs" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aEt" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/kitchen/knife,/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aEu" = (/obj/machinery/button/door{id = "kitchen shutter"; name = "kitchen shutter button"; pixel_x = 24},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) -"aEv" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/wood/normal{tag = "icon-wooden_chair (NORTH)"; icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"aEw" = (/obj/structure/bed/chair/wood/normal{tag = "icon-wooden_chair (NORTH)"; icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"aEv" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"aEw" = (/obj/structure/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aEx" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aEy" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aEz" = (/obj/structure/closet/emcloset,/obj/item/clothing/shoes/griffin{name = "bird boots"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) @@ -1594,7 +1594,7 @@ "aEH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters{id = "xenozoo shutter"; name = "xenozoo shutters"},/turf/simulated/floor/plating,/area/toxins/xenobiology) "aEI" = (/obj/machinery/door/poddoor/shutters{id = "xenozoo shutter"; name = "xenozoo shutters"},/obj/machinery/door/airlock/glass{name = "glass door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) "aEJ" = (/obj/machinery/door/poddoor/shutters{id = "xenozoo shutter"; name = "xenozoo shutters"},/obj/machinery/door/airlock/glass{name = "glass door"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aEK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/maintenance/asmaint2) +"aEK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/maintenance/asmaint2) "aEL" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aEM" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aEN" = (/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -1603,16 +1603,16 @@ "aEQ" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/shuttle/escape) "aER" = (/obj/machinery/computer/emergency_shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "aES" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"aET" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"aET" = (/obj/structure/flora/kirbyplants{icon_state = "plant-22"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "aEU" = (/turf/simulated/wall/shuttle{icon_state = "swall1"; dir = 2},/area/shuttle/escape) "aEV" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) "aEW" = (/obj/structure/optable,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) -"aEX" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) +"aEX" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) "aEY" = (/obj/machinery/door/airlock/maintenance{name = "cargo maintenance door"; req_one_access_txt = "12;31"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"}) "aEZ" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_4"; layer = 4.1; name = "tree"; pixel_x = -4; pixel_y = 10},/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 10; pixel_y = 6},/obj/machinery/light{dir = 8},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aFa" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 10; pixel_y = 6},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aFb" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aFc" = (/obj/machinery/vending/hydroseeds,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/hydroponics) +"aFc" = (/obj/machinery/vending/hydroseeds,/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 8},/area/hydroponics) "aFd" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westright{name = "hydroponics door"; req_access_txt = "35"},/turf/simulated/floor/plasteel,/area/hydroponics) "aFe" = (/obj/structure/bed/stool,/turf/simulated/floor/wood,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aFf" = (/obj/structure/table/wood,/obj/item/toy/cards/deck,/turf/simulated/floor/wood,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) @@ -1621,8 +1621,8 @@ "aFi" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = 5},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = 10; pixel_y = 10},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aFj" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -2},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = 2; pixel_y = 4},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aFk" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) -"aFl" = (/obj/structure/bed/chair/wood/normal{tag = "icon-wooden_chair (NORTH)"; icon_state = "wooden_chair"; dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"aFm" = (/obj/structure/bed/chair/wood/normal{tag = "icon-wooden_chair (NORTH)"; icon_state = "wooden_chair"; dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"aFl" = (/obj/structure/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"aFm" = (/obj/structure/bed/chair/wood/normal{icon_state = "wooden_chair"; dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aFn" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aFo" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aFp" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/fitness) @@ -1635,9 +1635,9 @@ "aFw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/engine,/area/toxins/xenobiology) "aFx" = (/turf/simulated/wall/r_wall,/area/toxins/xenobiology) "aFy" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aFz" = (/obj/structure/disposaloutlet{tag = "icon-outlet (WEST)"; icon_state = "outlet"; dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aFz" = (/obj/structure/disposaloutlet{icon_state = "outlet"; dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/engine,/area/toxins/xenobiology) "aFA" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aFB" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/maintenance/asmaint2) +"aFB" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/maintenance/asmaint2) "aFC" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aFD" = (/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aFE" = (/obj/machinery/mecha_part_fabricator,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) @@ -1648,14 +1648,14 @@ "aFJ" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) "aFK" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 8},/turf/simulated/floor/plating/airless,/area/shuttle/escape) "aFL" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/exit) -"aFM" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"; tag = "icon-plant-05"},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aFM" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aFN" = (/obj/machinery/computer/slot_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aFO" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aFP" = (/obj/effect/spawner/structure/window,/turf/simulated/floor/plating,/area/hallway/secondary/exit) "aFQ" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_3"; layer = 4.1; name = "tree"; pixel_x = -3; pixel_y = -10},/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aFR" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = -1; pixel_y = -3},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = 14; pixel_y = -8},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aFS" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = 14; pixel_y = -8},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aFT" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (WEST)"; icon_state = "whitegreen"; dir = 8},/area/hydroponics) +"aFT" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 8},/area/hydroponics) "aFU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/white,/area/hydroponics) "aFV" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{name = "hydroponics door"; req_access_txt = "35"},/turf/simulated/floor/plasteel,/area/hydroponics) "aFW" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/wood,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) @@ -1663,19 +1663,19 @@ "aFY" = (/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor/wood,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aFZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen shutter"; name = "kitchen shutter"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aGa" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) -"aGb" = (/obj/structure/sink/kitchen{dir = 8; icon_state = "sink_alt"; pixel_x = 12; tag = "icon-sink_alt (WEST)"},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) -"aGc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"aGb" = (/obj/structure/sink/kitchen{dir = 8; icon_state = "sink_alt"; pixel_x = 12},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) +"aGc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aGd" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar,/obj/item/device/instrument/violin,/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aGe" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aGf" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aGg" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/fitness) "aGh" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/fitness) -"aGi" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/fitness) +"aGi" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/fitness) "aGj" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aGk" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/engine,/area/toxins/xenobiology) "aGl" = (/mob/living/simple_animal/slime,/turf/simulated/floor/engine,/area/toxins/xenobiology) "aGm" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aGn" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/maintenance/asmaint2) +"aGn" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/maintenance/asmaint2) "aGo" = (/obj/item/weapon/secbot_assembly,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aGp" = (/obj/machinery/light,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aGq" = (/obj/item/weapon/toolbox_tiles_sensor,/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -1687,10 +1687,10 @@ "aGw" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/escape) "aGx" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/escape) "aGy" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aGz" = (/obj/machinery/power/apc{dir = 8; name = "Hydroponics APC"; pixel_x = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (SOUTHWEST)"; icon_state = "whitegreen"; dir = 10},/area/hydroponics) +"aGz" = (/obj/machinery/power/apc{dir = 8; name = "Hydroponics APC"; pixel_x = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 10},/area/hydroponics) "aGA" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/whitegreen/side,/area/hydroponics) "aGB" = (/turf/simulated/floor/plasteel/whitegreen/side,/area/hydroponics) -"aGC" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/whitegreen/side{tag = "icon-whitegreen (SOUTHEAST)"; icon_state = "whitegreen"; dir = 6},/area/hydroponics) +"aGC" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/whitegreen/side{icon_state = "whitegreen"; dir = 6},/area/hydroponics) "aGD" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aGE" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aGF" = (/mob/living/carbon/monkey{name = "Pun Pun"; unique_name = 0},/turf/simulated/floor/wood,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) @@ -1700,18 +1700,18 @@ "aGJ" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aGK" = (/turf/simulated/floor/plasteel/stairs/left,/area/crew_quarters/theatre) "aGL" = (/turf/simulated/floor/plasteel/stairs/right,/area/crew_quarters/theatre) -"aGM" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aGM" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "incredibly heavy plant"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aGN" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aGO" = (/obj/machinery/door/window/westright{req_access_txt = "55"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) "aGP" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) "aGQ" = (/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) "aGR" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) "aGS" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/device/paicard,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aGT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aGU" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aGT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aGU" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aGV" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aGW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aGX" = (/obj/machinery/door/airlock/maintenance{name = "science maintenance door"; req_one_access_txt = "47;12;29"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aGW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aGX" = (/obj/machinery/door/airlock/maintenance{name = "science maintenance door"; req_one_access_txt = "47;12;29"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aGY" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel,/area/toxins/xenobiology) "aGZ" = (/obj/machinery/door/window/northright{req_access_txt = "55"},/obj/machinery/door/window/southright,/turf/simulated/floor/plasteel,/area/toxins/xenobiology) "aHa" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/toxins/xenobiology) @@ -1722,7 +1722,7 @@ "aHf" = (/turf/simulated/wall/shuttle,/area/shuttle/escape) "aHg" = (/obj/machinery/door/airlock/glass_security{name = "security airlock"; req_access_txt = "63"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/escape) "aHh" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) -"aHi" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"},/area/shuttle/escape) +"aHi" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"},/area/shuttle/escape) "aHj" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/escape) "aHk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aHl" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_3"; layer = 4.1; name = "tree"; pixel_x = -4; pixel_y = 10},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) @@ -1733,15 +1733,15 @@ "aHq" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen shutter"; name = "kitchen shutter"},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aHr" = (/turf/simulated/wall,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) "aHs" = (/obj/machinery/door/airlock/freezer{name = "kitchen door"; req_one_access_txt = "25;28"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/white,/area/crew_quarters/bar{name = "\improper Bar and Kitchen"}) -"aHt" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) +"aHt" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) "aHu" = (/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aHv" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aHw" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"aHx" = (/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/crew_quarters/fitness) -"aHy" = (/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/crew_quarters/fitness) +"aHx" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/crew_quarters/fitness) +"aHy" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/crew_quarters/fitness) "aHz" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aHA" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aHB" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (WEST)"; icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aHA" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aHB" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aHC" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aHD" = (/obj/structure/closet/boxinggloves,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aHE" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) @@ -1752,13 +1752,13 @@ "aHJ" = (/turf/simulated/floor/plasteel/warnwhite/corner,/area/toxins/xenobiology) "aHK" = (/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) "aHL" = (/obj/machinery/button/door{id = "xenozoo shutter"; name = "xeno zoo shutter button"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel/warnwhite,/area/toxins/xenobiology) -"aHM" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (NORTH)"; icon_state = "warnwhitecorner"; dir = 1},/area/toxins/xenobiology) +"aHM" = (/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 1},/area/toxins/xenobiology) "aHN" = (/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aHO" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aHP" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aHQ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aHR" = (/obj/item/weapon/relic,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aHS" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) +"aHS" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "aHT" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "aHU" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/shuttle/escape) "aHV" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/shuttle/escape) @@ -1768,37 +1768,37 @@ "aHZ" = (/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/hallway/secondary/exit) "aIa" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/exit) "aIb" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aIc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 6},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aId" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIe" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIf" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIh" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIi" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIj" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aIk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=4-CNW"; location = "3-CSW"; name = "bot patrol navigation beacon"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIe" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aIf" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aIg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aIh" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aIi" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aIj" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aIk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=4-CNW"; location = "3-CSW"; name = "bot patrol navigation beacon"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aIl" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIm" = (/obj/structure/disposalpipe/segment,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/camera/autoname,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIn" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIo" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIp" = (/obj/machinery/camera/autoname,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIq" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hallway shutter"; name = "hallway shutter"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIr" = (/obj/machinery/power/apc{dir = 1; name = "Central Primary Hallway APC"; pixel_y = 24},/obj/structure/cable/cyan{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIs" = (/obj/machinery/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; health = 45; maxhealth = 45; name = "Officer Beepsky"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIm" = (/obj/structure/disposalpipe/segment,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/camera/autoname,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIn" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIo" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIp" = (/obj/machinery/camera/autoname,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIq" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hallway shutter"; name = "hallway shutter"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIr" = (/obj/machinery/power/apc{dir = 1; name = "Central Primary Hallway APC"; pixel_y = 24},/obj/structure/cable/cyan{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aIs" = (/obj/machinery/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; health = 45; maxhealth = 45; name = "Officer Beepsky"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aIt" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aIu" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aIv" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"aIw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/crew_quarters/fitness) -"aIx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/crew_quarters/fitness) -"aIy" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"aIz" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) -"aIA" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aIu" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aIv" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"aIw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/crew_quarters/fitness) +"aIx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/crew_quarters/fitness) +"aIy" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) +"aIz" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"aIA" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aIB" = (/obj/item/device/assembly/mousetrap/armed,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aIC" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aID" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (EAST)"; icon_state = "warnwhite"; dir = 4},/area/toxins/xenobiology) +"aID" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 4},/area/toxins/xenobiology) "aIE" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/toxins/xenobiology) "aIF" = (/obj/machinery/smartfridge/extract,/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/toxins/xenobiology) -"aIG" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/toxins/xenobiology) +"aIG" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/toxins/xenobiology) "aIH" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/item/weapon/extinguisher,/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aII" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aIJ" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -1821,19 +1821,19 @@ "aJa" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aJb" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel/red/corner,/area/hallway/secondary/exit) "aJc" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) -"aJd" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) +"aJd" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) "aJe" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/side,/area/hallway/secondary/exit) -"aJf" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/corner{tag = "icon-redcorner (WEST)"; icon_state = "redcorner"; dir = 8},/area/hallway/secondary/exit) +"aJf" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/red/corner{icon_state = "redcorner"; dir = 8},/area/hallway/secondary/exit) "aJg" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJh" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJi" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJj" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aJk" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aJk" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJl" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJm" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJn" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJo" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hallway shutter"; name = "hallway shutter"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"aJp" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=3-CSW"; location = "2-CSE"; name = "bot patrol navigation beacon"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"aJp" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=3-CSW"; location = "2-CSE"; name = "bot patrol navigation beacon"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJq" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aJr" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aJs" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) @@ -1843,10 +1843,10 @@ "aJw" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aJx" = (/obj/machinery/space_heater,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "aJy" = (/turf/simulated/wall,/area/toxins/xenobiology) -"aJz" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; tag = "icon-sink (WEST)"},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aJA" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (WEST)"; icon_state = "warnwhitecorner"; dir = 8},/area/toxins/xenobiology) -"aJB" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aJC" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (EAST)"; icon_state = "warnwhitecorner"; dir = 4},/area/toxins/xenobiology) +"aJz" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) +"aJA" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 8},/area/toxins/xenobiology) +"aJB" = (/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aJC" = (/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 4},/area/toxins/xenobiology) "aJD" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aJE" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aJF" = (/obj/item/weapon/tank/internals/oxygen/yellow,/obj/structure/closet/cardboard,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -1858,22 +1858,22 @@ "aJL" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/shuttle/escape) "aJM" = (/obj/structure/bed/chair{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/shuttle/escape) "aJN" = (/turf/simulated/wall/shuttle{icon_state = "swall2"; dir = 2},/area/shuttle/escape) -"aJO" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"; tag = "icon-plant-05"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aJO" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aJP" = (/obj/machinery/computer/arcade/battle,/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aJQ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aJR" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aJS" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/item/weapon/paper_bin,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aJT" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aJU" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"aJV" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-21"; layer = 4.1; name = "heavy potted plant"; tag = "icon-plant-21"},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aJV" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-21"; layer = 4.1; name = "heavy potted plant"},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aJW" = (/turf/simulated/wall/r_wall,/area/security/brig) "aJX" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "security lockdown"; name = "brig blast door"},/obj/structure/cable/cyan{icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/brig) "aJY" = (/obj/machinery/door/airlock/glass_security{name = "security airlock"; req_access_txt = "63"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/brig) -"aJZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"aKa" = (/obj/structure/bed/chair/comfy/teal{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"aJZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"aKa" = (/obj/structure/bed/chair/comfy/teal{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) "aKb" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"aKc" = (/obj/structure/bed/chair/comfy/teal{tag = "icon-comfychair (WEST)"; icon_state = "comfychair"; dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) -"aKd" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"aKc" = (/obj/structure/bed/chair/comfy/teal{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) +"aKd" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/hallway/primary/central) "aKe" = (/turf/simulated/wall/r_wall,/area/medical/genetics_cloning) "aKf" = (/turf/simulated/wall,/area/medical/genetics_cloning) "aKg" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/wall,/area/medical/medbay) @@ -1897,11 +1897,11 @@ "aKy" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aKz" = (/obj/structure/bed/chair,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/shuttle/escape) "aKA" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) -"aKB" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"; tag = "icon-plant-05"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aKB" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aKC" = (/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aKD" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aKE" = (/obj/structure/table,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"aKF" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-21"; layer = 4.1; name = "heavy potted plant"; tag = "icon-plant-21"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aKF" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-21"; layer = 4.1; name = "heavy potted plant"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aKG" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "cell 1 locker"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/security/brig) "aKH" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/security/brig) "aKI" = (/obj/structure/bed,/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/security/brig) @@ -1914,7 +1914,7 @@ "aKP" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "cell 2 locker"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/security/brig) "aKQ" = (/obj/machinery/dna_scannernew,/turf/simulated/floor/plasteel/black,/area/medical/genetics_cloning) "aKR" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor/plasteel/black,/area/medical/genetics_cloning) -"aKS" = (/obj/structure/table/glass,/obj/item/weapon/storage/pill_bottle/mannitol,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) +"aKS" = (/obj/structure/table/glass,/obj/item/weapon/storage/pill_bottle/mannitol,/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) "aKT" = (/obj/machinery/camera/autoname,/obj/structure/mirror{pixel_y = 28},/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) "aKU" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) "aKV" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) @@ -1928,21 +1928,21 @@ "aLd" = (/obj/machinery/door/window/eastleft,/obj/machinery/door/window/westright{req_access_txt = "55"},/turf/simulated/floor/plasteel,/area/toxins/xenobiology) "aLe" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/toxins/xenobiology) "aLf" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/machinery/reagentgrinder{pixel_x = 0; pixel_y = 8},/obj/item/stack/sheet/mineral/plasma{amount = 5},/turf/simulated/floor/plasteel/black,/area/toxins/xenobiology) -"aLg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aLh" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aLg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aLh" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aLi" = (/obj/machinery/droneDispenser{pixel_x = 0},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aLj" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aLk" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aLk" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aLl" = (/obj/machinery/chem_dispenser/constructable,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aLm" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{name = "acidproof air injector"; unacidable = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) "aLn" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/engine,/area/toxins/xenobiology) "aLo" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/turf/simulated/floor/plating,/area/toxins/xenobiology) "aLp" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/fire{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) -"aLq" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aLq" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aLr" = (/obj/machinery/computer/arcade/orion_trail,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"aLs" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/obj/machinery/power/apc{name = "Escape Shuttle Hallway APC"; pixel_y = -24},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"aLt" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"; tag = "icon-plant-05"},/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) -"aLu" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-21"; layer = 4.1; name = "heavy potted plant"; tag = "icon-plant-21"},/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aLs" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/obj/machinery/power/apc{name = "Escape Shuttle Hallway APC"; pixel_y = -24},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aLt" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-05"; layer = 4.1; name = "heavy plant"},/obj/machinery/light,/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) +"aLu" = (/obj/structure/flora/kirbyplants{anchored = 1; icon_state = "plant-21"; layer = 4.1; name = "heavy potted plant"},/obj/structure/disposalpipe/segment,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aLv" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/black,/area/hallway/secondary/exit) "aLw" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel,/area/security/brig) "aLx" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/obj/machinery/flasher{id = "Cell 1"; pixel_x = 24},/turf/simulated/floor/plasteel,/area/security/brig) @@ -1955,9 +1955,9 @@ "aLE" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_4"; layer = 4.1; name = "tree"; pixel_x = -5; pixel_y = -1},/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/primary/central) "aLF" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/primary/central) "aLG" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_4"; layer = 4.1; name = "tree"; pixel_x = -5; pixel_y = -1},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/primary/central) -"aLH" = (/obj/machinery/power/apc{dir = 8; name = "Cloning Lab APC"; pixel_x = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/medical/genetics_cloning) -"aLI" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/medical/genetics_cloning) -"aLJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (EAST)"; icon_state = "warnwhitecorner"; dir = 4},/area/medical/genetics_cloning) +"aLH" = (/obj/machinery/power/apc{dir = 8; name = "Cloning Lab APC"; pixel_x = -24},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/medical/genetics_cloning) +"aLI" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/medical/genetics_cloning) +"aLJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 4},/area/medical/genetics_cloning) "aLK" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) "aLL" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) "aLM" = (/obj/structure/dresser,/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) @@ -1971,14 +1971,14 @@ "aLU" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/toxins/xenobiology) "aLV" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel/black,/area/toxins/xenobiology) "aLW" = (/obj/machinery/light,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aLX" = (/obj/structure/disposaloutlet{tag = "icon-outlet (WEST)"; icon_state = "outlet"; dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) +"aLX" = (/obj/structure/disposaloutlet{icon_state = "outlet"; dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology) "aLY" = (/turf/simulated/floor/plasteel/bot,/area/maintenance/asmaint2) "aLZ" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aMa" = (/obj/machinery/shieldwallgen{req_access = list(55)},/obj/structure/cable/cyan{icon_state = "0-2"},/turf/simulated/floor/plating,/area/toxins/xenobiology) "aMb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/toxins/xenobiology) "aMc" = (/obj/machinery/door/window/northleft{req_access_txt = "55"},/obj/machinery/door/window/southleft,/turf/simulated/floor/engine,/area/toxins/xenobiology) "aMd" = (/obj/machinery/door/window/northright{req_access_txt = "55"},/obj/machinery/door/window/southright,/turf/simulated/floor/engine,/area/toxins/xenobiology) -"aMe" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/toxins/xenobiology) +"aMe" = (/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/toxins/xenobiology) "aMf" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/escape) "aMg" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"; dir = 2},/area/shuttle/escape) "aMh" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/shuttle/escape) @@ -1988,21 +1988,21 @@ "aMl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/cyan,/turf/simulated/floor/plating,/area/security/brig) "aMm" = (/obj/machinery/door/window/brigdoor/northleft{id = "Cell 1"; name = "cell 1 door"; req_access_txt = "63"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/brig) "aMn" = (/obj/machinery/door/window/brigdoor/northleft{id = "Cell 2"; name = "cell 2 door"; req_access_txt = "63"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/brig) -"aMo" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel/warnwhite,/area/medical/genetics_cloning) +"aMo" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel/warnwhite,/area/medical/genetics_cloning) "aMp" = (/turf/simulated/floor/plasteel/warnwhite,/area/medical/genetics_cloning) "aMq" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/warnwhite,/area/medical/genetics_cloning) -"aMr" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (NORTH)"; icon_state = "warnwhitecorner"; dir = 1},/area/medical/genetics_cloning) +"aMr" = (/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 1},/area/medical/genetics_cloning) "aMs" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) "aMt" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) "aMu" = (/obj/machinery/chem_dispenser{layer = 2.7},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aMv" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aMw" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aMx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd shutter"; name = "research shutter"},/turf/simulated/floor/plating,/area/toxins/lab) -"aMy" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (EAST)"; icon_state = "warnwhite"; dir = 4},/area/toxins/lab) +"aMy" = (/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 4},/area/toxins/lab) "aMz" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/plasteel,/area/toxins/lab) "aMA" = (/obj/machinery/light{dir = 1},/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/plasteel,/area/toxins/lab) "aMB" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/floor/plasteel,/area/toxins/lab) -"aMC" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/toxins/lab) +"aMC" = (/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/toxins/lab) "aMD" = (/turf/simulated/wall,/area/toxins/lab) "aME" = (/obj/machinery/mecha_part_fabricator,/turf/simulated/floor/plasteel,/area/medical/robotics) "aMF" = (/obj/machinery/computer/rdconsole/robotics,/turf/simulated/floor/plasteel,/area/medical/robotics) @@ -2013,24 +2013,24 @@ "aMK" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel,/area/medical/robotics) "aML" = (/obj/machinery/door/airlock/maintenance{name = "science maintenance door"; req_one_access_txt = "47;12;29"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aMM" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/toxins/xenobiology) -"aMN" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aMO" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/xenobiology) -"aMP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aMQ" = (/obj/machinery/light{dir = 1},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aMR" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/camera/autoname,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aMS" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aMT" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (WEST)"; icon_state = "warnwhitecorner"; dir = 8},/area/toxins/xenobiology) -"aMU" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aMV" = (/obj/machinery/atmospherics/components/binary/volume_pump{tag = "icon-volpump_map (NORTH)"; icon_state = "volpump_map"; dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aMW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aMX" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aMY" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aMZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aNa" = (/obj/machinery/atmospherics/components/binary/volume_pump{tag = "icon-volpump_map (NORTH)"; icon_state = "volpump_map"; dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) -"aNb" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aMN" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aMO" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/xenobiology) +"aMP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) +"aMQ" = (/obj/machinery/light{dir = 1},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) +"aMR" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/camera/autoname,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) +"aMS" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) +"aMT" = (/obj/machinery/door/airlock/research{name = "xenobiology door"; req_access_txt = "55"; req_one_access_txt = "0"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 8},/area/toxins/xenobiology) +"aMU" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aMV" = (/obj/machinery/atmospherics/components/binary/volume_pump{icon_state = "volpump_map"; dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aMW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aMX" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aMY" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aMZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aNa" = (/obj/machinery/atmospherics/components/binary/volume_pump{icon_state = "volpump_map"; dir = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) +"aNb" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology) "aNc" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "aNd" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/shuttle/escape) -"aNe" = (/obj/machinery/sleeper{tag = "icon-sleeper-open (NORTH)"; icon_state = "sleeper-open"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) +"aNe" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) "aNf" = (/obj/structure/table/glass,/obj/item/weapon/defibrillator/loaded,/turf/simulated/floor/plasteel{icon_state = "white"},/area/shuttle/escape) "aNg" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 14; pixel_y = -8},/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = 4; pixel_y = 10},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aNh" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) @@ -2038,18 +2038,18 @@ "aNj" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/brig) "aNk" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel/black,/area/security/brig) "aNl" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/brig) -"aNm" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/security/brig) +"aNm" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/security/brig) "aNn" = (/turf/simulated/floor/plasteel,/area/security/brig) "aNo" = (/obj/machinery/door_timer{dir = 1; id = "Cell 1"; name = "cell 1 door timer"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/bot,/area/security/brig) -"aNp" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/security/brig) +"aNp" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel,/area/security/brig) "aNq" = (/obj/machinery/door_timer{dir = 1; id = "Cell 2"; name = "cell 2 door timer"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/bot,/area/security/brig) "aNr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "brig window shutter"; name = "brig window shutter"},/turf/simulated/floor/plating,/area/security/brig) "aNs" = (/obj/machinery/computer/cloning,/turf/simulated/floor/plasteel/black,/area/medical/genetics_cloning) "aNt" = (/obj/machinery/clonepod,/turf/simulated/floor/plasteel/black,/area/medical/genetics_cloning) -"aNu" = (/obj/structure/closet/secure_closet/personal/patient,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) +"aNu" = (/obj/structure/closet/secure_closet/personal/patient,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/medical/genetics_cloning) "aNv" = (/obj/machinery/button/door{id = "geneticsdoor"; name = "cloning door button"; normaldoorcontrol = 1; pixel_x = 24},/turf/simulated/floor/plasteel/white,/area/medical/genetics_cloning) "aNw" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder{pixel_x = 0; pixel_y = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aNx" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = 2; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -2},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aNx" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = 2; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -2},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aNy" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd shutter"; name = "research shutter"},/obj/machinery/door/window/eastright{name = "research door"; req_one_access_txt = "47;29"},/turf/simulated/floor/plasteel,/area/toxins/lab) "aNz" = (/turf/simulated/floor/plasteel,/area/toxins/lab) "aNA" = (/turf/simulated/floor/plasteel,/area/medical/robotics) @@ -2065,7 +2065,7 @@ "aNK" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aNL" = (/obj/machinery/door/airlock/research{name = "research door"; req_access_txt = "0"; req_one_access_txt = "47;29"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aNM" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/black,/area/toxins/misc_lab) -"aNN" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)"; icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/black,/area/toxins/misc_lab) +"aNN" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 6},/turf/simulated/floor/plasteel/black,/area/toxins/misc_lab) "aNO" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{current_temperature = 80; on = 1},/turf/simulated/floor/plasteel/black,/area/toxins/misc_lab) "aNP" = (/turf/simulated/wall/r_wall,/area/toxins/misc_lab) "aNQ" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -2081,7 +2081,7 @@ "aOa" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aOb" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_2"; layer = 4.1; name = "tree"; pixel_x = -1; pixel_y = -3},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) "aOc" = (/obj/structure/flora/ausbushes/pointybush{icon_state = "pointybush_4"; layer = 4.1; name = "tree"; pixel_x = -5; pixel_y = -1},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/secondary/exit) -"aOd" = (/obj/machinery/light{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/security/brig) +"aOd" = (/obj/machinery/light{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/security/brig) "aOe" = (/turf/simulated/floor/plasteel/black,/area/security/brig) "aOf" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel,/area/security/brig) "aOg" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/security/brig) @@ -2094,11 +2094,11 @@ "aOn" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/genetics_cloning) "aOo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aOp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/medical/medbay) -"aOq" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aOq" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aOr" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor/plasteel,/area/toxins/lab) "aOs" = (/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel,/area/toxins/lab) "aOt" = (/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/toxins/lab) -"aOu" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/toxins/lab) +"aOu" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/toxins/lab) "aOv" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd shutter"; name = "research shutter"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/toxins/lab) "aOw" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/medical/robotics) "aOx" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/bot,/area/medical/robotics) @@ -2120,7 +2120,7 @@ "aON" = (/obj/structure/closet/cardboard,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aOO" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aOP" = (/obj/machinery/shieldwallgen{req_access = list(55)},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aOQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) +"aOQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aOR" = (/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aOS" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aOT" = (/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) @@ -2137,24 +2137,24 @@ "aPe" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aPf" = (/obj/machinery/door/airlock/medical{name = "chemistry airlock"; req_one_access_txt = "33;5"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aPg" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aPh" = (/obj/machinery/button/door{id = "rnd shutter"; name = "R&D shutter button"; pixel_x = -24},/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (WEST)"; icon_state = "warnwhitecorner"; dir = 8},/area/toxins/lab) -"aPi" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/lab) -"aPj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/lab) -"aPk" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (EAST)"; icon_state = "warnwhitecorner"; dir = 4},/area/toxins/lab) +"aPh" = (/obj/machinery/button/door{id = "rnd shutter"; name = "R&D shutter button"; pixel_x = -24},/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 8},/area/toxins/lab) +"aPi" = (/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) +"aPj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) +"aPk" = (/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 4},/area/toxins/lab) "aPl" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/medical/robotics) "aPm" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/obj/structure/optable,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/robotics) "aPn" = (/obj/structure/table,/obj/item/weapon/scalpel,/obj/item/weapon/retractor{pixel_x = 0; pixel_y = 5},/obj/item/weapon/hemostat,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/robotics) "aPo" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel,/area/medical/robotics) "aPp" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/window/westleft{req_access_txt = "55"},/obj/machinery/door/window/eastright,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aPq" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aPr" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/misc_lab) +"aPq" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"aPr" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/toxins/misc_lab) "aPs" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/gps/science,/turf/simulated/floor/engine,/area/toxins/misc_lab) "aPt" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/pipe_dispenser,/turf/simulated/floor/engine,/area/toxins/misc_lab) "aPu" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/simulated/floor/engine,/area/toxins/misc_lab) "aPv" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_y = 0},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_y = 0},/turf/simulated/floor/engine,/area/toxins/misc_lab) "aPw" = (/obj/machinery/door/airlock/glass_research{name = "research door"; req_one_access_txt = "47;29"},/turf/simulated/floor/plating,/area/toxins/misc_lab) -"aPx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/toxins/misc_lab) -"aPy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/toxins/misc_lab) +"aPx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/toxins/misc_lab) +"aPy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/toxins/misc_lab) "aPz" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aPA" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aPB" = (/obj/structure/girder/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -2177,11 +2177,11 @@ "aPS" = (/obj/structure/table,/obj/item/weapon/storage/box/prisoner{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/hug,/turf/simulated/floor/plasteel,/area/security/brig) "aPT" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/fire{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aPU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aPV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aPV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aPW" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aPX" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aPX" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aPY" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aPZ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"aPZ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "aQa" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "aQb" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "aQc" = (/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) @@ -2200,16 +2200,16 @@ "aQp" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aQq" = (/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aQr" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"aQs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"aQt" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"aQu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"aQv" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"aQs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"aQt" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) +"aQu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) +"aQv" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aQw" = (/obj/structure/closet/secure_closet/security,/obj/item/clothing/glasses/hud/security,/turf/simulated/floor/plasteel/black,/area/security/warden) "aQx" = (/turf/simulated/floor/plasteel/black,/area/security/warden) -"aQy" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"aQz" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 5; pixel_y = -5},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"aQA" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"aQB" = (/obj/structure/rack,/obj/item/weapon/gun/projectile/automatic/wt550{pixel_x = -5; pixel_y = 5},/obj/item/weapon/gun/projectile/automatic/wt550,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) +"aQy" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/security/warden) +"aQz" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 5; pixel_y = -5},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/security/warden) +"aQA" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/security/warden) +"aQB" = (/obj/structure/rack,/obj/item/weapon/gun/projectile/automatic/wt550{pixel_x = -5; pixel_y = 5},/obj/item/weapon/gun/projectile/automatic/wt550,/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/security/warden) "aQC" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "aQD" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "aQE" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) @@ -2223,17 +2223,17 @@ "aQM" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plasteel/warnwhite/corner,/area/medical/medbay) "aQN" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite,/area/medical/medbay) "aQO" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"},/turf/simulated/floor/plasteel/warnwhite,/area/medical/medbay) -"aQP" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (NORTH)"; icon_state = "warnwhitecorner"; dir = 1},/area/medical/medbay) +"aQP" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 1},/area/medical/medbay) "aQQ" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aQR" = (/obj/machinery/door/airlock/research{name = "research door"; req_access_txt = "0"; req_one_access_txt = "47;29"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "aQS" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{name = "research door"; req_one_access_txt = "47;29"},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics shutter"; name = "robotics shutter"},/turf/simulated/floor/plasteel,/area/medical/robotics) "aQT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northright{name = "research door"; req_one_access_txt = "47;29"},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics shutter"; name = "robotics shutter"},/turf/simulated/floor/plasteel,/area/medical/robotics) "aQU" = (/obj/machinery/door/airlock/research{name = "research door"; req_access_txt = "0"; req_one_access_txt = "47;29"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/medical/robotics) -"aQV" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aQW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (WEST)"; icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aQV" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aQW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aQX" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aQY" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aQZ" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/misc_lab) +"aQZ" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/toxins/misc_lab) "aRa" = (/obj/machinery/computer/rdconsole/experiment,/turf/simulated/floor/engine,/area/toxins/misc_lab) "aRb" = (/obj/machinery/r_n_d/experimentor,/turf/simulated/floor/engine,/area/toxins/misc_lab) "aRc" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/misc_lab) @@ -2243,15 +2243,15 @@ "aRg" = (/obj/structure/closet{name = "chemical locker"},/obj/item/weapon/reagent_containers/glass/bottle/formaldehyde,/obj/item/weapon/reagent_containers/glass/bottle/diethylamine,/obj/item/weapon/reagent_containers/glass/bottle/curare,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aRh" = (/obj/structure/table,/obj/item/weapon/scalpel,/obj/item/weapon/retractor{pixel_x = 0; pixel_y = 5},/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) "aRi" = (/turf/simulated/floor/plasteel/warning,/area/maintenance/fore{name = "Security Maintenance"}) -"aRj" = (/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/maintenance/fore{name = "Security Maintenance"}) +"aRj" = (/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 1},/area/maintenance/fore{name = "Security Maintenance"}) "aRk" = (/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aRl" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aRm" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aRn" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aRo" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"aRp" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/security/warden) -"aRq" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/security/warden) -"aRr" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/security/warden) +"aRp" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/security/warden) +"aRq" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/security/warden) +"aRr" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/security/warden) "aRs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/warden) "aRt" = (/obj/structure/table,/obj/item/weapon/storage/box/teargas,/obj/item/weapon/storage/box/teargas{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "aRu" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) @@ -2265,18 +2265,18 @@ "aRC" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aRD" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aRE" = (/obj/structure/table,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/masks{pixel_x = 5; pixel_y = 5},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aRF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (EAST)"; icon_state = "warnwhite"; dir = 4},/area/medical/medbay) -"aRG" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (WEST)"; icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/medbay) -"aRH" = (/obj/machinery/sleeper{dir = 4; icon_state = "sleeper-open"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/medbay) -"aRI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/medbay) -"aRJ" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aRK" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"aRL" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=2-CSE"; location = "1-medbay"; name = "bot patrol navigation beacon"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aRF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 4},/area/medical/medbay) +"aRG" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/medbay) +"aRH" = (/obj/machinery/sleeper{dir = 4; icon_state = "sleeper-open"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/medbay) +"aRI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/medical/medbay) +"aRJ" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aRK" = (/obj/machinery/door/airlock/glass{name = "glass door"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"aRL" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=2-CSE"; location = "1-medbay"; name = "bot patrol navigation beacon"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aRM" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aRN" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aRO" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aRP" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aRQ" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aRN" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 8},/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aRO" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aRP" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aRQ" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aRR" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aRS" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aRT" = (/obj/machinery/door/poddoor/shutters{id = "charge shutter"; name = "recharging room shutter"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/medical/robotics) @@ -2287,7 +2287,7 @@ "aRY" = (/obj/item/clothing/head/cone,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aRZ" = (/obj/item/clothing/head/cone,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aSa" = (/obj/machinery/power/apc{dir = 8; name = "Testing Lab APC"; pixel_x = -24},/obj/structure/cable/cyan,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aSb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) +"aSb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) "aSc" = (/obj/item/device/assembly/igniter,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aSd" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aSe" = (/obj/item/device/assembly/voice,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) @@ -2297,7 +2297,7 @@ "aSi" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) "aSj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aSk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"aSl" = (/obj/structure/dispenser/oxygen{layer = 2.9; pixel_x = -1; pixel_y = 2},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/black,/area/security/warden) +"aSl" = (/obj/structure/dispenser/oxygen{layer = 2.9; pixel_x = -1; pixel_y = 2},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel/black,/area/security/warden) "aSm" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/plasteel/black,/area/security/warden) "aSn" = (/obj/machinery/door/airlock/glass_security{name = "armory door"; req_access_txt = "3"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/warden) "aSo" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/warden) @@ -2312,96 +2312,96 @@ "aSx" = (/obj/effect/decal/cleanable/blood/old,/obj/machinery/flasher{id = "permaflash"; pixel_y = 28},/turf/simulated/floor/plasteel,/area/security/brig) "aSy" = (/obj/machinery/computer/arcade/orion_trail,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/security/brig) "aSz" = (/obj/structure/table,/obj/item/toy/carpplushie{attack_verb = list("bitten","pecked","wing slapped"); desc = "An adorable stuffed toy that resembles a parrot."; icon = 'icons/mob/animal.dmi'; icon_state = "parrot_sit"; name = "parrot plushie"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/security/brig) -"aSA" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_y = 7},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/item/clothing/tie/stethoscope,/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aSB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (EAST)"; icon_state = "warnwhite"; dir = 4},/area/medical/medbay) +"aSA" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_y = 7},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/item/clothing/tie/stethoscope,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aSB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 4},/area/medical/medbay) "aSC" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/medbay) "aSD" = (/obj/machinery/sleeper{dir = 4; icon_state = "sleeper-open"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/medbay) -"aSE" = (/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/medical/medbay) +"aSE" = (/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/medical/medbay) "aSF" = (/obj/machinery/door/airlock/glass{name = "glass door"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "aSG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/bot/medbot{auto_patrol = 1; name = "Medibird"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aSH" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aSH" = (/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 8},/area/hallway/primary/aft{name = "\improper South Hallway"}) "aSI" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aSJ" = (/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aSK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aSL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aSK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aSL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aSM" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aSN" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aSO" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aSP" = (/obj/machinery/door/poddoor/shutters{id = "charge shutter"; name = "recharging room shutter"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/medical/robotics) -"aSQ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/medical/robotics) -"aSR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/medical/robotics) -"aSS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/wall,/area/maintenance/asmaint2) -"aST" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aSN" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aSO" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aSP" = (/obj/machinery/door/poddoor/shutters{id = "charge shutter"; name = "recharging room shutter"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/medical/robotics) +"aSQ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/medical/robotics) +"aSR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 8},/turf/simulated/floor/plasteel,/area/medical/robotics) +"aSS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 8},/turf/simulated/wall,/area/maintenance/asmaint2) +"aST" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "aSU" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aSV" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aSW" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aSX" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel/warning/corner,/area/toxins/misc_lab) "aSY" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/magnetic_controller{autolink = 1},/turf/simulated/floor/plating,/area/toxins/misc_lab) -"aSZ" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/area/toxins/misc_lab) -"aTa" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/area/toxins/misc_lab) -"aTb" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/toxins/xenobiology) -"aTc" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/toxins/xenobiology) +"aSZ" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 9},/area/toxins/misc_lab) +"aTa" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 5},/area/toxins/misc_lab) +"aTb" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/toxins/xenobiology) +"aTc" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 8},/area/toxins/xenobiology) "aTd" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aTe" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aTe" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) "aTf" = (/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) -"aTg" = (/obj/structure/easel,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/maintenance/fore{name = "Security Maintenance"}) +"aTg" = (/obj/structure/easel,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/maintenance/fore{name = "Security Maintenance"}) "aTh" = (/obj/machinery/light{dir = 1},/obj/structure/easel,/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aTi" = (/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXnineteen,/obj/item/weapon/canvas/twentythreeXnineteen,/obj/item/weapon/canvas/twentythreeXnineteen,/obj/item/weapon/canvas/nineteenXnineteen,/obj/item/weapon/canvas/nineteenXnineteen,/obj/item/weapon/canvas/nineteenXnineteen,/obj/item/weapon/canvas,/obj/item/weapon/canvas,/obj/item/weapon/canvas,/obj/item/toy/crayon/rainbow,/obj/item/toy/crayon/rainbow,/obj/item/toy/crayon/rainbow,/obj/structure/closet/crate/trashcart{desc = "A heavy, metal cart with wheels."; name = "paint cart"},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"aTj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"aTk" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"aTj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) +"aTk" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aTl" = (/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel/black,/area/security/warden) "aTm" = (/obj/structure/closet{name = "Evidence Locker"},/turf/simulated/floor/plasteel/black,/area/security/warden) "aTn" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/warning,/area/security/warden) "aTo" = (/turf/simulated/floor/plasteel/warning,/area/security/warden) -"aTp" = (/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/security/warden) +"aTp" = (/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 1},/area/security/warden) "aTq" = (/turf/simulated/floor/plasteel,/area/security/warden) "aTr" = (/obj/structure/table/reinforced,/obj/item/key/security,/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plating,/area/security/warden) -"aTs" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"aTs" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "aTt" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "aTu" = (/obj/structure/table,/obj/machinery/button/door{id = "brig window shutter"; name = "brig window shutter button"},/obj/machinery/button/door{id = "security lockdown"; name = "brig blast door button"; pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "aTv" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig) "aTw" = (/obj/structure/cable/cyan{icon_state = "4-8"},/mob/living/carbon/monkey{name = "Crimelord Pon Pon"; unique_name = 0},/turf/simulated/floor/plasteel,/area/security/brig) "aTx" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/security/brig) "aTy" = (/obj/structure/bed,/turf/simulated/floor/plasteel,/area/security/brig) -"aTz" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aTA" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (WEST)"; icon_state = "warnwhitecorner"; dir = 8},/area/medical/medbay) -"aTB" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/medical/medbay) -"aTC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/medical/medbay) -"aTD" = (/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (EAST)"; icon_state = "warnwhitecorner"; dir = 4},/area/medical/medbay) +"aTz" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aTA" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 8},/area/medical/medbay) +"aTB" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/medical/medbay) +"aTC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/medical/medbay) +"aTD" = (/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 4},/area/medical/medbay) "aTE" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aTF" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aTG" = (/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1; tag = "icon-plant-04"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aTG" = (/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/black,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aTH" = (/turf/simulated/floor/plasteel/black,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aTI" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aTJ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1; tag = "icon-plant-04"},/turf/simulated/floor/plasteel/black,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aTJ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aTK" = (/turf/simulated/wall,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aTL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aTM" = (/obj/machinery/door/airlock/research{name = "research door"; req_access_txt = "0"; req_one_access_txt = "47;29"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aTN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"aTL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aTM" = (/obj/machinery/door/airlock/research{name = "research door"; req_access_txt = "0"; req_one_access_txt = "47;29"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"aTN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aTO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aTP" = (/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aTQ" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/misc_lab) -"aTR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/toxins/misc_lab) -"aTS" = (/obj/machinery/camera/autoname{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aTT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) -"aTU" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aTP" = (/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"aTQ" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/toxins/misc_lab) +"aTR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/toxins/misc_lab) +"aTS" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"aTT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) +"aTU" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aTV" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aTW" = (/obj/machinery/light,/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (WEST)"; icon_state = "warnwhite"; dir = 8},/area/toxins/xenobiology) -"aTX" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) -"aTY" = (/obj/machinery/light{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1; tag = "icon-plant-06"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) -"aTZ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1; tag = "icon-plant-06"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) -"aUa" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/maintenance/fore{name = "Security Maintenance"}) +"aTW" = (/obj/machinery/light,/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 8},/area/toxins/xenobiology) +"aTX" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/turf/simulated/floor/plasteel/white,/area/toxins/xenobiology) +"aTY" = (/obj/machinery/light{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aTZ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aUa" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/maintenance/fore{name = "Security Maintenance"}) "aUb" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aUc" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aUd" = (/obj/structure/closet/wardrobe/red,/obj/machinery/light,/obj/item/clothing/under/blueskirt/redskirt,/obj/item/clothing/under/plaid_skirt,/turf/simulated/floor/plasteel/black,/area/security/warden) -"aUe" = (/obj/structure/rack,/obj/item/clothing/suit/armor/laserproof,/obj/item/weapon/gun/energy/ionrifle,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) -"aUf" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot,/turf/simulated/floor/plasteel/vault{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"aUg" = (/obj/structure/table,/obj/item/weapon/storage/lockbox/loyalty,/obj/item/weapon/storage/box/firingpins{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/firingpins{pixel_x = 5; pixel_y = 5},/obj/machinery/light,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/security/warden) +"aUe" = (/obj/structure/rack,/obj/item/clothing/suit/armor/laserproof,/obj/item/weapon/gun/energy/ionrifle,/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 4},/area/security/warden) +"aUf" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot,/turf/simulated/floor/plasteel/vault{icon_state = "vault"; dir = 1},/area/security/warden) +"aUg" = (/obj/structure/table,/obj/item/weapon/storage/lockbox/loyalty,/obj/item/weapon/storage/box/firingpins{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/firingpins{pixel_x = 5; pixel_y = 5},/obj/machinery/light,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/security/warden) "aUh" = (/obj/structure/closet/secure_closet{name = "special weapons locker"; req_access_txt = "3"},/obj/item/weapon/gun/energy/gun/dragnet,/obj/effect/spawner/lootdrop/armory_contraband,/obj/effect/spawner/lootdrop{loot = list(/obj/item/weapon/grenade/chem_grenade/teargas = 10, /obj/item/weapon/grenade/clusterbuster/teargas = 1); lootcount = 3; name = "teargas clusterbuster spawner"},/obj/item/weapon/gun/energy/gun/hos,/turf/simulated/floor/plasteel,/area/security/warden) "aUi" = (/obj/machinery/door/airlock/glass_security{name = "central security door"; req_one_access_txt = "1;2;4"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"aUj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/newscaster/security_unit{pixel_x = -28},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/security/brig) +"aUj" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/newscaster/security_unit{pixel_x = -28},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel,/area/security/brig) "aUk" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/brig) -"aUl" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) +"aUl" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "aUm" = (/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aUn" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aUo" = (/obj/machinery/power/apc{name = "Medbay APC"; pixel_y = -24},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) @@ -2416,7 +2416,7 @@ "aUx" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel/bot,/area/toxins/misc_lab) "aUy" = (/obj/machinery/chem_master,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aUz" = (/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aUA" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/misc_lab) +"aUA" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/toxins/misc_lab) "aUB" = (/turf/simulated/floor/plating,/area/toxins/misc_lab) "aUC" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/misc_lab) "aUD" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) @@ -2424,9 +2424,9 @@ "aUF" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aUG" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aUH" = (/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "4-8"},/turf/space,/area/space) -"aUI" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aUI" = (/obj/structure/flora/kirbyplants{icon_state = "plant-22"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) "aUJ" = (/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) -"aUK" = (/obj/machinery/autolathe{name = "maint autolathe"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/maintenance/fore{name = "Security Maintenance"}) +"aUK" = (/obj/machinery/autolathe{name = "maint autolathe"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/maintenance/fore{name = "Security Maintenance"}) "aUL" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/device/flashlight,/obj/structure/closet/crate,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/fore{name = "Security Maintenance"}) "aUM" = (/obj/machinery/deployable/barrier,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/warden) "aUN" = (/obj/machinery/deployable/barrier,/turf/simulated/floor/plasteel/black,/area/security/warden) @@ -2447,38 +2447,38 @@ "aVc" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/simulated/floor/plasteel/bot,/area/toxins/misc_lab) "aVd" = (/obj/machinery/chem_dispenser/constructable,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aVe" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aVf" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) +"aVf" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) "aVg" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/recharger,/obj/item/weapon/gun/energy/laser/practice,/obj/item/weapon/gun/energy/laser/practice,/obj/item/weapon/gun/energy/laser/practice,/obj/item/weapon/gun/energy/laser/practice,/turf/simulated/floor/plating,/area/toxins/misc_lab) -"aVh" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/toxins/misc_lab) -"aVi" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/area/toxins/misc_lab) +"aVh" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 10},/area/toxins/misc_lab) +"aVi" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 6},/area/toxins/misc_lab) "aVj" = (/obj/structure/grille,/turf/space,/area/space) -"aVk" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aVk" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) "aVl" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aVm" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"aVn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"aVo" = (/obj/machinery/door/airlock/maintenance{name = "security maintenance door"; req_one_access_txt = "12;63"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"aVp" = (/obj/effect/spawner/lootdrop/crate_spawner,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) +"aVn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"aVo" = (/obj/machinery/door/airlock/maintenance{name = "security maintenance door"; req_one_access_txt = "12;63"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) +"aVp" = (/obj/effect/spawner/lootdrop/crate_spawner,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aVq" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/fire{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/plasteel/white,/area/security/warden) "aVr" = (/obj/structure/closet/wardrobe/white/medical,/obj/item/weapon/storage/box/bodybags,/turf/simulated/floor/plasteel/white,/area/security/warden) "aVs" = (/obj/structure/closet{name = "chem implant closet"},/obj/item/weapon/reagent_containers/glass/bottle/cyanide,/obj/item/weapon/reagent_containers/glass/bottle/initropidril,/obj/item/weapon/reagent_containers/glass/bottle/coniine,/obj/item/weapon/reagent_containers/glass/bottle/sodium_thiopental,/obj/item/weapon/storage/box/chemimp,/obj/item/weapon/storage/box/trackimp,/obj/item/weapon/gun/syringe,/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/plasteel/white,/area/security/warden) -"aVt" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHEAST)"; icon_state = "camera"; dir = 6},/obj/item/clothing/gloves/color/latex/nitrile,/turf/simulated/floor/plasteel/white,/area/security/warden) +"aVt" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/camera/autoname{icon_state = "camera"; dir = 6},/obj/item/clothing/gloves/color/latex/nitrile,/turf/simulated/floor/plasteel/white,/area/security/warden) "aVu" = (/obj/structure/window/reinforced,/obj/machinery/flasher/portable,/turf/simulated/floor/plasteel/black,/area/security/warden) "aVv" = (/obj/machinery/button/flasher{id = "permaflash"; name = "perma flasher button"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/plasteel,/area/security/brig) "aVw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "perma shutter"; name = "perma brig window shutter"},/turf/simulated/floor/plating,/area/security/brig) -"aVx" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (EAST)"; icon_state = "warnwhite"; dir = 4},/area/medical/medbay) +"aVx" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 4},/area/medical/medbay) "aVy" = (/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel,/area/medical/medbay) "aVz" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aVA" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/cyan,/turf/simulated/floor/plasteel,/area/medical/robotics) "aVB" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/cyan,/turf/simulated/floor/plasteel,/area/medical/robotics) "aVC" = (/obj/item/weapon/coin/iron,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aVD" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/toxins/misc_lab) -"aVE" = (/obj/machinery/light{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) -"aVF" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aVE" = (/obj/machinery/light{dir = 8},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aVF" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) "aVG" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) "aVH" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aVI" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel/warning,/area/maintenance/fore{name = "Security Maintenance"}) "aVJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning,/area/maintenance/fore{name = "Security Maintenance"}) -"aVK" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/maintenance/fore{name = "Security Maintenance"}) +"aVK" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 1},/area/maintenance/fore{name = "Security Maintenance"}) "aVL" = (/obj/machinery/door/airlock/maintenance{name = "security maintenance door"; req_one_access_txt = "12;63"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aVM" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aVN" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) @@ -2492,11 +2492,11 @@ "aVV" = (/turf/simulated/wall,/area/medical/virology) "aVW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "viro shutter"; name = "viro shutter"},/turf/simulated/floor/plating,/area/medical/virology) "aVX" = (/turf/simulated/wall/r_wall,/area/medical/medbay) -"aVY" = (/obj/machinery/camera/autoname{tag = "icon-camera (SOUTHWEST)"; icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aVY" = (/obj/machinery/camera/autoname{icon_state = "camera"; dir = 10},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aVZ" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aWa" = (/obj/structure/flora/ausbushes/pointybush{layer = 4.1; name = "tree"; pixel_x = -8; pixel_y = 11},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/hallway/primary/aft{name = "\improper South Hallway"}) "aWb" = (/turf/simulated/wall/mineral/sandstone,/area/maintenance/asmaint2) -"aWc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"aWc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aWd" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning/corner,/area/toxins/misc_lab) "aWe" = (/obj/machinery/camera/autoname,/turf/simulated/floor/engine,/area/toxins/misc_lab) "aWf" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine,/area/toxins/misc_lab) @@ -2504,8 +2504,8 @@ "aWh" = (/obj/structure/table,/obj/machinery/recharger,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/maintenance/asmaint2) "aWi" = (/obj/structure/table,/obj/item/device/flashlight/seclite,/obj/item/clothing/suit/armor/vest,/obj/machinery/light{dir = 1},/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/maintenance/asmaint2) "aWj" = (/obj/item/weapon/circuitboard/security,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aWk" = (/obj/structure/window/reinforced,/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) -"aWl" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/area/maintenance/fore{name = "Security Maintenance"}) +"aWk" = (/obj/structure/window/reinforced,/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/turf/simulated/floor/plasteel/whitebot,/area/maintenance/fore{name = "Security Maintenance"}) +"aWl" = (/obj/machinery/vending/assist,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 10},/area/maintenance/fore{name = "Security Maintenance"}) "aWm" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow/fake,/obj/item/clothing/gloves/color/yellow/fake,/obj/item/clothing/gloves/color/yellow/fake,/turf/simulated/floor/plasteel/warning,/area/maintenance/fore{name = "Security Maintenance"}) "aWn" = (/obj/machinery/power/apc{dir = 4; name = "Security Maintenance APC"; pixel_x = 24},/obj/structure/cable/cyan,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "aWo" = (/obj/structure/table,/obj/item/weapon/cautery,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw{pixel_y = 9},/turf/simulated/floor/plasteel/white,/area/security/warden) @@ -2520,14 +2520,14 @@ "aWx" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/clothing/mask/breath/medical,/obj/item/weapon/tank/internals/anesthetic,/obj/item/clothing/mask/muzzle,/obj/item/clothing/glasses/sunglasses/blindfold,/turf/simulated/floor/plasteel,/area/security/brig) "aWy" = (/obj/structure/table,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel/white,/area/medical/virology) "aWz" = (/obj/structure/bed,/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aWA" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (EAST)"; icon_state = "warnwhite"; dir = 4},/area/medical/medbay) +"aWA" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 4},/area/medical/medbay) "aWB" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/medical/medbay) "aWC" = (/obj/machinery/door/airlock/medical{name = "surgery airlock"; req_one_access_txt = "5;45"},/turf/simulated/floor/plasteel/white,/area/medical/medbay) -"aWD" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"aWE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aWD" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"aWE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aWF" = (/turf/simulated/floor/plating/asteroid{name = "dirt"},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/arrival) -"aWG" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/shuttle/arrival) -"aWH" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/shuttle/arrival) +"aWG" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/arrival) +"aWH" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/arrival) "aWI" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/arrival) "aWJ" = (/turf/simulated/floor/plating/asteroid{name = "dirt"},/turf/simulated/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/shuttle/arrival) "aWK" = (/turf/simulated/floor/plating{icon_plating = "asteroidplating"; icon_state = "asteroidplating"},/area/maintenance/asmaint2) @@ -2535,7 +2535,7 @@ "aWM" = (/turf/simulated/floor/plasteel{icon_state = "asteroidfloor"},/area/maintenance/asmaint2) "aWN" = (/obj/structure/table,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aWO" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aWP" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/toxins/misc_lab) +"aWP" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/toxins/misc_lab) "aWQ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/engine,/area/toxins/misc_lab) "aWR" = (/obj/machinery/telepad,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/item/device/gps/science,/turf/simulated/floor/engine,/area/toxins/misc_lab) "aWS" = (/obj/item/device/radio/beacon,/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/engine,/area/toxins/misc_lab) @@ -2546,15 +2546,15 @@ "aWX" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) "aWY" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) "aWZ" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) -"aXa" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"aXa" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aXb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "interro shutter"; name = "interrogation shutter"},/turf/simulated/floor/plating,/area/security/warden) "aXc" = (/obj/machinery/door/airlock/security{name = "central security door"; req_one_access_txt = "1;2;4"},/turf/simulated/floor/plasteel/black,/area/security/warden) -"aXd" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel,/area/security/brig) +"aXd" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/turf/simulated/floor/plasteel,/area/security/brig) "aXe" = (/obj/structure/closet/wardrobe/orange,/turf/simulated/floor/plasteel,/area/security/brig) "aXf" = (/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aXg" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite/corner{tag = "icon-warnwhitecorner (WEST)"; icon_state = "warnwhitecorner"; dir = 8},/area/medical/medbay) -"aXh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel/warnwhite{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/medical/medbay) -"aXi" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/arrival) +"aXg" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warnwhite/corner{icon_state = "warnwhitecorner"; dir = 8},/area/medical/medbay) +"aXh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 0},/turf/simulated/floor/plasteel/warnwhite{icon_state = "warnwhite"; dir = 1},/area/medical/medbay) +"aXi" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/arrival) "aXj" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "aXk" = (/obj/machinery/vending/clothing,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "aXl" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) @@ -2566,9 +2566,9 @@ "aXr" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aXs" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "aXt" = (/obj/machinery/computer/telescience,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) -"aXu" = (/obj/item/device/multitool,/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) +"aXu" = (/obj/item/device/multitool,/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) "aXv" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aXw" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/area/maintenance/asmaint2) +"aXw" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 4},/area/maintenance/asmaint2) "aXx" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/maintenance/asmaint2) "aXy" = (/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aXz" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) @@ -2583,7 +2583,7 @@ "aXI" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aXJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aXK" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"aXL" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel/black,/area/security/warden) +"aXL" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel/black,/area/security/warden) "aXM" = (/obj/structure/closet{name = "truth incentive tool locker"},/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/obj/item/device/laser_pointer,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/obj/item/clothing/head/rabbitears,/obj/item/toy/carpplushie{attack_verb = list("bitten","pecked","wing slapped"); desc = "An adorable stuffed toy that resembles a parrot."; icon = 'icons/mob/animal.dmi'; icon_state = "parrot_sit"; name = "parrot plushie"},/obj/item/weapon/bikehorn/rubberducky,/obj/item/weapon/bikehorn/airhorn,/turf/simulated/floor/plasteel/black,/area/security/warden) "aXN" = (/obj/machinery/door/airlock/security{name = "central security door"; req_one_access_txt = "1;2;4"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/wood,/area/security/brig) "aXO" = (/obj/machinery/door/airlock/glass_virology{name = "virology airlock"; req_access_txt = "39"},/turf/simulated/floor/plasteel/white,/area/medical/virology) @@ -2596,9 +2596,9 @@ "aXV" = (/obj/item/device/flashlight/seclite{name = "dusty seclite"; on = 1},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/maintenance/asmaint2) "aXW" = (/obj/item/weapon/circuitboard/card,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/maintenance/asmaint2) "aXX" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/maintenance/asmaint2) -"aXY" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) +"aXY" = (/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) "aXZ" = (/turf/simulated/floor/plasteel/bot,/area/maintenance/fore{name = "Security Maintenance"}) -"aYa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"aYa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "aYb" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/black,/area/security/warden) "aYc" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/simulated/floor/plasteel/black,/area/security/warden) "aYd" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/black,/area/security/warden) @@ -2619,10 +2619,10 @@ "aYs" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "aYt" = (/obj/structure/statue/sandstone/assistant{anchored = 1},/turf/simulated/floor/plating{icon_plating = "asteroidplating"; icon_state = "asteroidplating"},/area/maintenance/asmaint2) "aYu" = (/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plating/asteroid{name = "dirt"},/area/maintenance/asmaint2) -"aYv" = (/obj/item/clothing/head/cone,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/maintenance/asmaint2) +"aYv" = (/obj/item/clothing/head/cone,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/maintenance/asmaint2) "aYw" = (/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aYx" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"aYy" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/maintenance/asmaint2) +"aYy" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plasteel/warning/corner{icon_state = "warningcorner"; dir = 8},/area/maintenance/asmaint2) "aYz" = (/obj/item/clothing/shoes/jackboots,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/maintenance/asmaint2) "aYA" = (/obj/item/stack/sheet/glass,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aYB" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) @@ -2635,16 +2635,16 @@ "aYI" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/simulated/floor/wood,/area/security/brig) "aYJ" = (/obj/structure/table,/obj/item/weapon/storage/box/syringes,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/simulated/floor/plasteel/white,/area/medical/virology) "aYK" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel/white,/area/medical/virology) -"aYL" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/white,/area/medical/medbay) +"aYL" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aYM" = (/obj/structure/closet/secure_closet/medical2,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/apron/surgical,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aYN" = (/obj/machinery/light,/turf/simulated/floor/plasteel/white,/area/medical/medbay) "aYO" = (/obj/effect/landmark{name = "JoinLate"},/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"aYP" = (/obj/item/clothing/head/cone,/turf/simulated/floor/plasteel/warning{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/area/maintenance/asmaint2) -"aYQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (EAST)"; icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aYR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/bot,/area/maintenance/asmaint2) -"aYS" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=8"; freq = 1400; location = "Science Maint"; name = "navigation beacon"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/delivery,/area/maintenance/asmaint2) -"aYT" = (/obj/structure/closet/cardboard,/obj/item/weapon/coin/iron,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aYU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aYP" = (/obj/item/clothing/head/cone,/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 8},/area/maintenance/asmaint2) +"aYQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aYR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/bot,/area/maintenance/asmaint2) +"aYS" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=8"; freq = 1400; location = "Science Maint"; name = "navigation beacon"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel/delivery,/area/maintenance/asmaint2) +"aYT" = (/obj/structure/closet/cardboard,/obj/item/weapon/coin/iron,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aYU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aYV" = (/obj/structure/bed,/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aYW" = (/obj/machinery/flasher/portable,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aYX" = (/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) @@ -2656,7 +2656,7 @@ "aZd" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) "aZe" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/item/weapon/reagent_containers/spray/plantbgone,/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) "aZf" = (/obj/structure/closet/crate/secure/hydrosec{req_access_txt = "35"},/obj/item/seeds/kudzuseed{potency = 0; production = 8},/obj/item/seeds/chilighost,/obj/item/seeds/deathberryseed,/obj/item/device/gps,/turf/simulated/floor/plasteel/white,/area/maintenance/fore{name = "Security Maintenance"}) -"aZg" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/wood,/area/security/brig) +"aZg" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 5},/turf/simulated/floor/wood,/area/security/brig) "aZh" = (/obj/structure/closet/secure_closet/detective,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detective's camera"; pictures_left = 30},/turf/simulated/floor/wood,/area/security/brig) "aZi" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/security/brig) "aZj" = (/obj/machinery/computer/pandemic{layer = 2.5; pixel_x = -4},/turf/simulated/floor/plasteel/white,/area/medical/virology) @@ -2675,7 +2675,7 @@ "aZw" = (/obj/effect/spider/stickyweb,/turf/simulated/floor/plating{icon_plating = "asteroidplating"; icon_state = "asteroidplating"},/area/maintenance/asmaint2) "aZx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/wall,/area/maintenance/asmaint2) "aZy" = (/obj/machinery/door/airlock/maintenance{name = "science maintenance door"; req_one_access_txt = "47;12;29"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aZz" = (/turf/simulated/floor/wood{tag = "icon-wood-broken"; icon_state = "wood-broken"},/area/maintenance/fore{name = "Security Maintenance"}) +"aZz" = (/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/maintenance/fore{name = "Security Maintenance"}) "aZA" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) "aZB" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) "aZC" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) @@ -2695,7 +2695,7 @@ "aZQ" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "aZR" = (/turf/simulated/floor/plating/asteroid{name = "dirt"},/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/arrival) "aZS" = (/obj/item/device/soulstone/anybody,/turf/simulated/floor/plating{icon_plating = "asteroidplating"; icon_state = "asteroidplating"},/area/maintenance/asmaint2) -"aZT" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aZT" = (/obj/structure/flora/kirbyplants{icon_state = "plant-17"; layer = 4.1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aZU" = (/obj/item/weapon/stock_parts/cell/high,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aZV" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aZW" = (/obj/machinery/power/emitter,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -2724,8 +2724,8 @@ "bat" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/medical/morgue) "bau" = (/turf/simulated/wall,/area/medical/morgue) "bav" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"baw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"bax" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"baw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"bax" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "bay" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/aft{name = "\improper South Hallway"}) "baz" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/aft{name = "\improper South Hallway"}) "baA" = (/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/plating{icon_plating = "asteroidplating"; icon_state = "asteroidplating"},/area/maintenance/asmaint2) @@ -2735,26 +2735,26 @@ "baE" = (/obj/structure/cable/cyan{icon_state = "0-2"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "baF" = (/obj/structure/cable/cyan{icon_state = "0-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "baG" = (/obj/structure/cable/cyan{icon_state = "0-8"},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"baI" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (WEST)"; icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"baH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"baI" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "baJ" = (/obj/effect/decal/cleanable/vomit/old,/obj/item/trash/can,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) "baK" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) "baL" = (/obj/item/weapon/paper/crumpled,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) -"baM" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"baN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"baO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"baP" = (/obj/item/weapon/shovel/spade,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"baQ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"baM" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"baN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"baO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"baP" = (/obj/item/weapon/shovel/spade,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"baQ" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "baR" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/cardboard,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "baS" = (/turf/simulated/floor/plating,/area/maintenance/asmaint) "baT" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) "baU" = (/obj/machinery/door/airlock/medical{name = "medbay airlock"; req_access_txt = "5"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint) "baV" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/plasteel/black,/area/medical/morgue) "baW" = (/obj/machinery/power/apc{dir = 4; name = "Morgue APC"; pixel_x = 24},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plasteel/black,/area/medical/morgue) -"baX" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"baX" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "baY" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"baZ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) -"bba" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (WEST)"; icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"baZ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) +"bba" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "bbb" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "bbc" = (/obj/machinery/camera/autoname{dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/aft{name = "\improper South Hallway"}) "bbd" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/aft{name = "\improper South Hallway"}) @@ -2767,10 +2767,10 @@ "bbk" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bbl" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) "bbm" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) -"bbn" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/maintenance/fore{name = "Security Maintenance"}) +"bbn" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/maintenance/fore{name = "Security Maintenance"}) "bbo" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) "bbp" = (/obj/structure/cable/cyan{icon_state = "1-4"},/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"bbq" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{tag = "icon-vent_map (NORTH)"; icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) +"bbq" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "bbr" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) "bbs" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "bbt" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint) @@ -2783,22 +2783,22 @@ "bbA" = (/obj/structure/grille,/obj/structure/cable/cyan{icon_state = "0-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bbB" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bbC" = (/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bbD" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/wood{tag = "icon-wood-broken"; icon_state = "wood-broken"},/area/maintenance/fore{name = "Security Maintenance"}) +"bbD" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/maintenance/fore{name = "Security Maintenance"}) "bbE" = (/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/wood,/area/maintenance/fore{name = "Security Maintenance"}) "bbF" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "bbG" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) "bbH" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"bbI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) -"bbJ" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"bbK" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"bbL" = (/obj/machinery/door/airlock/maintenance{name = "security maintenance door"; req_one_access_txt = "12;63"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) -"bbM" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbN" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bbO" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"bbP" = (/obj/machinery/door/airlock/maintenance{name = "medbay maintenance door"; req_one_access_txt = "12;5;9;39;33"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) +"bbI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fore{name = "Security Maintenance"}) +"bbJ" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"bbK" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"bbL" = (/obj/machinery/door/airlock/maintenance{name = "security maintenance door"; req_one_access_txt = "12;63"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/fore{name = "Security Maintenance"}) +"bbM" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bbN" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bbO" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) +"bbP" = (/obj/machinery/door/airlock/maintenance{name = "medbay maintenance door"; req_one_access_txt = "12;5;9;39;33"},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) "bbQ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"bbR" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"bbS" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera/autoname{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/obj/structure/table,/obj/item/weapon/storage/box/gloves,/turf/simulated/floor/plasteel/black,/area/medical/morgue) +"bbR" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) +"bbS" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera/autoname{icon_state = "camera"; dir = 4},/obj/structure/table,/obj/item/weapon/storage/box/gloves,/turf/simulated/floor/plasteel/black,/area/medical/morgue) "bbT" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/black,/area/medical/morgue) "bbU" = (/obj/machinery/navbeacon{codes = ""; codes_txt = "delivery;dir=2"; freq = 1400; location = "Arrivals Building Area"; name = "navigation beacon"},/turf/simulated/floor/plasteel/delivery,/area/maintenance/asmaint2) "bbV" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) @@ -2821,7 +2821,7 @@ "bcm" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "bcn" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "bco" = (/obj/structure/closet/cardboard,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcp" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1; tag = "icon-plant-05"},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"bcp" = (/obj/structure/flora/kirbyplants{icon_state = "plant-02"; layer = 4.1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) "bcq" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bcr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) "bcs" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -2833,20 +2833,20 @@ "bcy" = (/obj/machinery/door/airlock/maintenance{name = "medbay maintenance door"; req_one_access_txt = "12;5;9;39;33"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bcz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{icon_state = "vent_map"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bcA" = (/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcB" = (/turf/simulated/floor/plasteel/warning{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/area/maintenance/asmaint2) +"bcB" = (/turf/simulated/floor/plasteel/warning{icon_state = "warning"; dir = 1},/area/maintenance/asmaint2) "bcC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/simulated/mineral,/area/space) "bcD" = (/obj/structure/lattice/catwalk,/obj/structure/cable/cyan{icon_state = "1-4"},/turf/space,/area/space) -"bcE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"bcF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) -"bcG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bcH" = (/obj/machinery/door/airlock/maintenance{name = "medbay maintenance door"; req_one_access_txt = "12;5;9;39;33"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"bcE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) +"bcF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint) +"bcG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bcH" = (/obj/machinery/door/airlock/maintenance{name = "medbay maintenance door"; req_one_access_txt = "12;5;9;39;33"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bcI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcJ" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) -"bcK" = (/obj/machinery/shieldwallgen{req_access = null},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcL" = (/obj/machinery/power/emitter,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/mineral,/area/space) -"bcN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/mineral,/area/space) -"bcO" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) +"bcJ" = (/obj/machinery/door/airlock/maintenance{name = "maintenance door"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel,/area/maintenance/asmaint2) +"bcK" = (/obj/machinery/shieldwallgen{req_access = null},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"bcL" = (/obj/machinery/power/emitter,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"bcM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 4},/turf/simulated/mineral,/area/space) +"bcN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 9},/turf/simulated/mineral,/area/space) +"bcO" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) "bcP" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/transport) "bcQ" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating,/area/shuttle/transport) "bcR" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/transport) @@ -2872,7 +2872,7 @@ "bdl" = (/obj/machinery/washing_machine,/turf/simulated/floor/plasteel/white,/area/maintenance/asmaint) "bdm" = (/obj/item/weapon/watertank/janitor,/obj/structure/mirror{pixel_y = 28},/obj/structure/closet/crate,/turf/simulated/floor/plasteel/white,/area/maintenance/asmaint) "bdn" = (/obj/structure/lattice,/obj/effect/landmark{name = "ninjaspawn"},/turf/space,/area/space) -"bdo" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) +"bdo" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) "bdp" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f10"},/area/shuttle/transport) "bdq" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "bdr" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) diff --git a/_maps/map_files/DiscStation/z4.dmm b/_maps/map_files/DiscStation/z4.dmm index fec3df337ae..09fbfa06c00 100644 --- a/_maps/map_files/DiscStation/z4.dmm +++ b/_maps/map_files/DiscStation/z4.dmm @@ -4,8 +4,8 @@ "ad" = (/turf/simulated/floor/plating/airless,/area/djstation/solars) "ae" = (/turf/simulated/floor/plating/airless,/area/space) "af" = (/obj/structure/lattice,/turf/space,/area/space) -"ag" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/space) -"ah" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/space) +"ag" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/space) +"ah" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/space) "ai" = (/turf/simulated/wall,/area/derelict/medical/chapel) "aj" = (/turf/simulated/wall,/area/djstation) "ak" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/djstation) @@ -30,19 +30,19 @@ "aD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/medical/chapel) "aE" = (/obj/item/weapon/extinguisher,/turf/simulated/floor/plating/airless,/area/djstation) "aF" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/turf/simulated/floor/plating/airless,/area/djstation) -"aG" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/crew_quarters) +"aG" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/crew_quarters) "aH" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "aI" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/derelict/medical/chapel) "aJ" = (/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/derelict/medical/chapel) "aK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/djstation) -"aL" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/crew_quarters) +"aL" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/crew_quarters) "aM" = (/obj/structure/closet/coffin,/obj/machinery/door/window/eastleft{dir = 8; name = "Coffin Storage"; req_access_txt = "22"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "aN" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/turf/simulated/floor/plating/airless,/area/djstation) "aO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/storage/box/lights/mixed,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating/airless,/area/djstation) "aP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/djstation) "aQ" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/orange,/obj/item/clothing/head/helmet/space/syndicate/orange,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating/airless,/area/djstation) "aR" = (/turf/simulated/floor/plating/airless,/area/derelict/crew_quarters) -"aS" = (/obj/machinery/power/apc{dir = 4; name = "Worn-out APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating/airless,/area/space) +"aS" = (/obj/machinery/power/apc{dir = 4; name = "Worn-out APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor/plating/airless,/area/space) "aT" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "aU" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating/airless,/area/djstation) "aV" = (/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) @@ -59,10 +59,10 @@ "bg" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) "bh" = (/turf/simulated/wall,/area/derelict/crew_quarters) "bi" = (/turf/simulated/wall,/area/space) -"bj" = (/obj/machinery/power/apc{cell_type = 2500; dir = 2; name = "Worn-out APC"; pixel_y = -24},/obj/structure/cable{tag = "icon-0-4"; icon_state = "0-4"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/space) -"bk" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/space) -"bl" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/space) -"bm" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/space) +"bj" = (/obj/machinery/power/apc{cell_type = 2500; dir = 2; name = "Worn-out APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/space) +"bk" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/space) +"bl" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/space) +"bm" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/space) "bn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/djstation) "bo" = (/obj/machinery/vending/snack,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/djstation) "bp" = (/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/djstation) @@ -75,10 +75,10 @@ "bw" = (/turf/simulated/floor/plasteel/airless{icon_state = "L10"},/area/derelict/hallway/primary) "bx" = (/turf/simulated/floor/plasteel/airless{icon_state = "L12"},/area/derelict/hallway/primary) "by" = (/turf/simulated/floor/plasteel/airless{desc = ""; icon_state = "L14"},/area/derelict/hallway/primary) -"bz" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/crew_quarters) +"bz" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/crew_quarters) "bA" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/crew_quarters) "bB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/turf/simulated/floor/plasteel/airless{icon_state = "hydrofloor"},/area/derelict/crew_quarters) -"bC" = (/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/medical/chapel) +"bC" = (/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/medical/chapel) "bD" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "bE" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/djstation) "bF" = (/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/djstation) @@ -95,7 +95,7 @@ "bQ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/crew_quarters) "bR" = (/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/crew_quarters) "bS" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/crew_quarters) -"bT" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelict/medical/chapel) +"bT" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelict/medical/chapel) "bU" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/derelict/medical/chapel) "bV" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/derelict/medical/chapel) "bW" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/medical/chapel) @@ -123,7 +123,7 @@ "cs" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plating/airless,/area/derelict/crew_quarters) "ct" = (/turf/simulated/floor/plasteel/airless{dir = 1; icon_state = "green"},/area/derelict/crew_quarters) "cu" = (/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "green"},/area/derelict/crew_quarters) -"cv" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/derelict/medical/chapel) +"cv" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/derelict/medical/chapel) "cw" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/derelict/medical/chapel) "cx" = (/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "cy" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/space) @@ -160,9 +160,9 @@ "dd" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/derelict/crew_quarters) "de" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/derelict/crew_quarters) "df" = (/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) -"dg" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/space) -"dh" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/space) -"di" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/derelict/medical/chapel) +"dg" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/space) +"dh" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/space) +"di" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/derelict/medical/chapel) "dj" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "dk" = (/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "dl" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/derelict/medical/chapel) @@ -183,8 +183,8 @@ "dA" = (/turf/simulated/floor/plasteel/airless{icon_state = "green"; dir = 8},/area/derelict/crew_quarters) "dB" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) "dC" = (/obj/machinery/biogenerator,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) -"dD" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/space) -"dE" = (/obj/structure/bed/stool,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/derelict/medical/chapel) +"dD" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/space) +"dE" = (/obj/structure/bed/stool,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/derelict/medical/chapel) "dF" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/derelict/medical/chapel) "dG" = (/obj/machinery/vending/cola,/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/hallway/primary) "dH" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/hallway/primary) @@ -209,7 +209,7 @@ "ea" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) "eb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) "ec" = (/turf/simulated/floor/plasteel/airless{icon_state = "green"; dir = 4},/area/derelict/crew_quarters) -"ed" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/space) +"ed" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/space) "ee" = (/obj/effect/decal/cleanable/blood/gibs/old,/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "ef" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/derelict/medical/chapel) "eg" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/hallway/primary) @@ -251,14 +251,14 @@ "eQ" = (/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_y = -25},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/derelict/bridge) "eR" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Worn-out APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/derelict/bridge) "eS" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/derelict/bridge) -"eT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel,/area/derelict/bridge) +"eT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/derelict/bridge) "eU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel,/area/derelict/bridge) "eV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{icon_state = "delivery"; name = "floor"},/area/derelict/bridge) "eW" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel,/area/derelict/bridge) "eX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{icon_state = "blue"; dir = 8},/area/derelict/hallway/primary) "eY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "eZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) -"fa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) +"fa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "fb" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) "fc" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating/airless,/area/derelict/crew_quarters) "fd" = (/obj/machinery/door/window/southright{name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) @@ -281,7 +281,7 @@ "fu" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{icon_state = "blue"; dir = 10},/area/derelict/hallway/primary) "fv" = (/turf/simulated/floor/plasteel/airless{dir = 0; icon_state = "blue"},/area/derelict/hallway/primary) "fw" = (/obj/machinery/light,/turf/simulated/floor/plasteel/airless{dir = 0; icon_state = "blue"},/area/derelict/hallway/primary) -"fx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) +"fx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "fy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) "fz" = (/obj/machinery/light,/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/derelict/crew_quarters) "fA" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) @@ -289,19 +289,19 @@ "fC" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel/airless{dir = 1; icon_state = "green"},/area/derelict/crew_quarters) "fD" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/airless,/area/derelict/crew_quarters) "fE" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) -"fF" = (/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"; tag = "icon-2-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"fG" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"fH" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) -"fI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/hallway/primary) -"fJ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/space) -"fK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/medical/chapel) -"fL" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/medical/chapel) +"fF" = (/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) +"fG" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) +"fH" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) +"fI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/hallway/primary) +"fJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/space) +"fK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/medical/chapel) +"fL" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "fM" = (/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "fN" = (/turf/simulated/floor/plasteel/airless{dir = 8; icon_state = "escape"},/area/derelict/hallway/primary) "fO" = (/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "warning"},/area/derelict/hallway/primary) "fP" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/derelict/bridge) "fQ" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) -"fR" = (/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/bridge) +"fR" = (/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/bridge) "fS" = (/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) "fT" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) "fU" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/turf/simulated/floor/wood,/area/derelict/bridge) @@ -316,16 +316,16 @@ "gd" = (/turf/simulated/floor/carpet{icon_state = "carpetsymbol"},/area/derelict/medical/chapel) "ge" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "gf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) -"gg" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood{icon_state = "wood-broken4"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken4"; temperature = 2.7},/area/derelict/bridge) -"gh" = (/turf/simulated/floor/wood{icon_state = "wood-broken"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken"; temperature = 2.7},/area/derelict/bridge) -"gi" = (/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken3"; temperature = 2.7},/area/derelict/bridge) +"gg" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood{icon_state = "wood-broken4"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gh" = (/turf/simulated/floor/wood{icon_state = "wood-broken"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gi" = (/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) "gj" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) "gk" = (/obj/structure/table,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) "gl" = (/obj/structure/table,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) -"gm" = (/turf/simulated/floor/wood{icon_state = "wood-broken2"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken2"; temperature = 2.7},/area/derelict/bridge) -"gn" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken3"; temperature = 2.7},/area/derelict/bridge) -"go" = (/obj/machinery/status_display{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken3"; temperature = 2.7},/area/derelict/bridge) -"gp" = (/turf/simulated/floor/wood{icon_state = "wood-broken4"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken4"; temperature = 2.7},/area/derelict/bridge) +"gm" = (/turf/simulated/floor/wood{icon_state = "wood-broken2"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gn" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"go" = (/obj/machinery/status_display{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gp" = (/turf/simulated/floor/wood{icon_state = "wood-broken4"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) "gq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/simulated/floor/plasteel,/area/derelict/crew_quarters) "gr" = (/obj/structure/sign/barsign,/turf/simulated/wall,/area/derelict/crew_quarters) "gs" = (/turf/simulated/floor/plasteel/airless{dir = 1; icon_state = "whitecorner"},/area/derelict/hallway/primary) @@ -334,18 +334,18 @@ "gv" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/space) "gw" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/medical/chapel) "gx" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"gy" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken3"; temperature = 2.7},/area/derelict/bridge) +"gy" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) "gz" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/quarantine,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) "gA" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) -"gB" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken3"; temperature = 2.7},/area/derelict/bridge) -"gC" = (/obj/structure/table/wood,/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken3"; temperature = 2.7},/area/derelict/bridge) -"gD" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken3"; temperature = 2.7},/area/derelict/bridge) -"gE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary) -"gF" = (/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 28; tag = "icon-direction_evac (EAST)"},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary) +"gB" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gC" = (/obj/structure/table/wood,/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gD" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/wood{icon_state = "wood-broken3"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary) +"gF" = (/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 28},/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary) "gG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/derelict/hallway/primary) "gH" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{icon_state = "damaged1"},/area/derelict/hallway/primary) "gI" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/hallway/primary) -"gJ" = (/turf/simulated/floor/plasteel/airless{tag = "icon-damaged4"; icon_state = "damaged4"},/area/derelict/hallway/primary) +"gJ" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/hallway/primary) "gK" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "gL" = (/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "gM" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/hallway/primary) @@ -354,26 +354,26 @@ "gP" = (/turf/simulated/floor/plasteel/airless{icon_state = "redcorner"; dir = 1},/area/derelict/hallway/primary) "gQ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "warning"},/area/derelict/hallway/primary) "gR" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"gS" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood{icon_state = "wood-broken"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken"; temperature = 2.7},/area/derelict/bridge) -"gT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/airless{tag = "icon-damaged4"; icon_state = "damaged4"},/area/derelict/hallway/primary) -"gU" = (/turf/simulated/floor/plasteel/airless{tag = "icon-damaged1"; icon_state = "damaged1"},/area/derelict/hallway/primary) -"gV" = (/turf/simulated/floor/plasteel/airless{tag = "icon-damaged3"; icon_state = "damaged3"},/area/derelict/hallway/primary) +"gS" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood{icon_state = "wood-broken"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) +"gT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/hallway/primary) +"gU" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged1"},/area/derelict/hallway/primary) +"gV" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/hallway/primary) "gW" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched2"},/area/derelict/hallway/primary) "gX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"gY" = (/turf/simulated/floor/plasteel/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/hallway/primary) -"gZ" = (/turf/simulated/floor/plating/airless,/turf/simulated/floor/plasteel/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/derelict/hallway/primary) +"gY" = (/turf/simulated/floor/plasteel/airless{icon_state = "platingdmg3"},/area/derelict/hallway/primary) +"gZ" = (/turf/simulated/floor/plating/airless,/turf/simulated/floor/plasteel/airless{icon_state = "platingdmg2"},/area/derelict/hallway/primary) "ha" = (/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "hb" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) "hc" = (/obj/machinery/light,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) "hd" = (/obj/structure/table,/obj/machinery/door/window{base_state = "left"; dir = 8; icon_state = "left"; name = "High-Risk Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge) -"he" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"hf" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = -24; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 32; pixel_y = -32; tag = "icon-direction_sci (EAST)"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) +"he" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) +"hf" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 32; pixel_y = -32},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "hg" = (/obj/machinery/light,/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "hh" = (/obj/machinery/light,/turf/simulated/floor/plasteel/airless{dir = 8; icon_state = "bluecorner"},/area/derelict/hallway/primary) "hi" = (/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "whitecorner"},/area/derelict/hallway/primary) "hj" = (/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 2},/area/derelict/hallway/primary) "hk" = (/turf/simulated/floor/plasteel/airless{dir = 8; icon_state = "whitecorner"},/area/derelict/hallway/primary) -"hl" = (/turf/simulated/floor/plasteel/airless{tag = "icon-damaged2"; icon_state = "damaged2"},/area/derelict/hallway/primary) +"hl" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary) "hm" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) "hn" = (/obj/item/ammo_casing/c45,/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) "ho" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) @@ -403,7 +403,7 @@ "hM" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "escape"},/area/derelict/hallway/primary) "hN" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/airless{icon_state = "warning"},/area/derelict/hallway/primary) "hO" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/airless{dir = 6; icon_state = "warning"},/area/derelict/hallway/primary) -"hP" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood{icon_state = "wood-broken4"; name = "old wood"; nitrogen = 0; oxygen = 0; tag = "icon-wood-broken4"; temperature = 2.7},/area/derelict/bridge) +"hP" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood{icon_state = "wood-broken4"; name = "old wood"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/bridge) "hQ" = (/obj/structure/closet/secure_closet/chemical,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "hR" = (/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "hS" = (/turf/simulated/floor/plating/airless,/area/derelict/medical) @@ -414,7 +414,7 @@ "hX" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/medical) "hY" = (/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/medical) "hZ" = (/obj/machinery/door/airlock{name = "Starboard Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"ia" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/storage/equipment) +"ia" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/storage/equipment) "ib" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel,/area/derelict/hallway/primary) "ic" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/hallway/primary) "id" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) @@ -465,10 +465,10 @@ "iW" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "iX" = (/obj/machinery/space_heater,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "iY" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) -"iZ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/storage/equipment) -"ja" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/storage/equipment) -"jb" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/secret) -"jc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/secret) +"iZ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/storage/equipment) +"ja" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/storage/equipment) +"jb" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/secret) +"jc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/secret) "jd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/secret) "je" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/secret) "jf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) @@ -486,10 +486,10 @@ "jr" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "js" = (/obj/item/clothing/head/culthood,/turf/simulated/floor/engine/cult,/area/derelict/medical/chapel) "jt" = (/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 8},/area/derelict/medical) -"ju" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/storage/equipment) -"jv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/storage/equipment) -"jw" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/secret) -"jx" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/secret) +"ju" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/storage/equipment) +"jv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/storage/equipment) +"jw" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/secret) +"jx" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/secret) "jy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/secret) "jz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/secret) "jA" = (/obj/structure/table,/turf/simulated/floor/plasteel/airless{dir = 1; icon_state = "warning"},/area/derelict/secret) @@ -537,7 +537,7 @@ "kq" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "kr" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6;5"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/medical) "ks" = (/turf/simulated/wall/r_wall,/area/derelict/medical) -"kt" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/secret) +"kt" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/secret) "ku" = (/obj/structure/table,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "kv" = (/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/plasteel/airless{icon_state = "bot"},/area/derelict/secret) "kw" = (/turf/simulated/floor/plasteel/airless{icon_state = "warnwhite"; dir = 1},/area/derelict/secret) @@ -559,7 +559,7 @@ "kM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "kN" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "kO" = (/obj/structure/girder,/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) -"kP" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/storage/equipment) +"kP" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/storage/equipment) "kQ" = (/obj/structure/table,/turf/simulated/floor/plasteel/airless,/area/derelict/secret) "kR" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/simulated/floor/plating/airless,/area/derelict/secret) "kS" = (/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "whitecorner"},/area/derelict/secret) @@ -611,7 +611,7 @@ "lM" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/secret) "lN" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "lO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) -"lP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/secret) +"lP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/secret) "lQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "lR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "lS" = (/obj/machinery/door/airlock/maintenance{name = "Experimentation Lab Maintenance"; req_access_txt = "7"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/derelict/secret) @@ -619,10 +619,10 @@ "lU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/simulated/floor/plating,/area/derelict/storage/equipment) "lV" = (/turf/simulated/floor/plating,/area/derelict/storage/equipment) "lW" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel,/area/derelict/teleporter) -"lX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/derelict/teleporter) +"lX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/derelict/teleporter) "lY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/derelict/teleporter) "lZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "blue"; dir = 8},/area/derelict/hallway/primary) -"ma" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) +"ma" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "mb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor"; name = "Genetics"; req_access_txt = "5; 9"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "mc" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/secret) "md" = (/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) @@ -635,7 +635,7 @@ "mk" = (/turf/simulated/floor/plasteel/warning,/area/derelict/teleporter) "ml" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/derelict/teleporter) "mm" = (/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/derelict/teleporter) -"mn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/derelict/teleporter) +"mn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/derelict/teleporter) "mo" = (/obj/structure/closet/wardrobe/white,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "mp" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "mq" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) @@ -653,8 +653,8 @@ "mC" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel/airless,/area/derelict/medical) "mD" = (/obj/structure/table,/turf/simulated/floor/plasteel/airless,/area/derelict/medical) "mE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) -"mF" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/secret) -"mG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/secret) +"mF" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/secret) +"mG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/secret) "mH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "mI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "mJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) @@ -680,7 +680,7 @@ "nd" = (/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "warnwhite"},/area/derelict/secret) "ne" = (/turf/simulated/wall/r_wall,/area/derelict/storage/equipment) "nf" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8},/turf/simulated/floor/plating,/area/derelict/storage/equipment) -"ng" = (/turf/simulated/floor/plasteel/airless{tag = "icon-damaged5"; icon_state = "damaged5"},/area/derelict/hallway/primary) +"ng" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/hallway/primary) "nh" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel/airless,/area/derelict/medical) "ni" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/simulated/floor/plasteel/airless,/area/derelict/medical) "nj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/structure/girder,/turf/simulated/floor/plasteel/airless,/area/derelict/medical) @@ -696,10 +696,10 @@ "nt" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 5},/area/derelict/secret) "nu" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/derelict/secret) "nv" = (/obj/structure/rack,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "warnwhite"},/area/derelict/secret) -"nw" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/hallway/primary) -"nx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/hallway/primary) -"ny" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/hallway/primary) -"nz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) +"nw" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/hallway/primary) +"nx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/hallway/primary) +"ny" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/hallway/primary) +"nz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "nA" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/airless,/area/derelict/medical) "nB" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light,/turf/simulated/floor/plasteel/airless,/area/derelict/medical) "nC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/airless,/area/derelict/medical) @@ -711,9 +711,9 @@ "nI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "nJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{dir = 9; icon_state = "whitehall"},/area/derelict/secret) "nK" = (/obj/machinery/door/airlock/glass_command{name = "Research Director"; req_access_txt = "30"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "cafeteria"},/area/derelict/secret) -"nL" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/hallway/primary) -"nM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/hallway/primary) -"nN" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/hallway/primary) +"nL" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/hallway/primary) +"nM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/hallway/primary) +"nN" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/hallway/primary) "nO" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "nP" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "nQ" = (/turf/simulated/floor/plasteel/airless{icon_state = "red"; dir = 10},/area/derelict/secret) @@ -724,14 +724,14 @@ "nV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating,/area/derelict/storage/equipment) "nW" = (/turf/simulated/wall,/area/derelict/storage/engine_storage) "nX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel/airless{dir = 8; icon_state = "cautioncorner"},/area/derelict/storage/engine_storage) -"nY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/derelict/storage/engine_storage) +"nY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/derelict/storage/engine_storage) "nZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "yellowcorner"},/area/derelict/storage/engine_storage) "oa" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/simulated/floor/plasteel,/area/derelict/storage/engine_storage) "ob" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "oc" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/storage/engine_storage) "od" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/storage/engine_storage) "oe" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/storage/engine_storage) -"of" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/derelict/storage/equipment) +"of" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/derelict/storage/equipment) "og" = (/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) "oh" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "oi" = (/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/plasteel/airless{dir = 9; icon_state = "whitehall"},/area/derelict/secret) @@ -742,12 +742,12 @@ "on" = (/obj/structure/table,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "oo" = (/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "op" = (/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) -"oq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) +"oq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) "or" = (/obj/structure/closet/jcloset,/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) "os" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) "ot" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) "ou" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) -"ov" = (/turf/simulated/floor/plasteel/airless{tag = "icon-engine"; icon_state = "engine"},/area/derelict/secret) +"ov" = (/turf/simulated/floor/plasteel/airless{icon_state = "engine"},/area/derelict/secret) "ow" = (/turf/simulated/floor/plasteel/airless{icon_state = "delivery"; name = "floor"},/area/derelict/secret) "ox" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel/airless{icon_state = "delivery"; name = "floor"},/area/derelict/secret) "oy" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/derelict/secret) @@ -758,13 +758,13 @@ "oD" = (/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "warnwhite"},/area/space) "oE" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "warnwhite"},/area/space) "oF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) -"oG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) +"oG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "oH" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) "oI" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/airless,/area/derelict/storage/engine_storage) "oJ" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "oK" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "oL" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) -"oM" = (/obj/effect/decal/cleanable/xenoblood/xsplatter,/turf/simulated/floor/plasteel/airless{tag = "icon-engine"; icon_state = "engine"},/area/derelict/secret) +"oM" = (/obj/effect/decal/cleanable/xenoblood/xsplatter,/turf/simulated/floor/plasteel/airless{icon_state = "engine"},/area/derelict/secret) "oN" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/derelict/secret) "oO" = (/obj/effect/decal/cleanable/oil,/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/derelict/secret) "oP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/derelict/secret) @@ -789,7 +789,7 @@ "pi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/derelict/secret) "pj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/derelict/secret) "pk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) -"pl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) +"pl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "pm" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "pn" = (/obj/item/clothing/suit/hooded/chaplain_hoodie,/obj/effect/decal/remains/human,/turf/simulated/floor/carpet,/area/derelict/medical/chapel) "po" = (/obj/structure/sign/securearea{pixel_x = -32},/turf/simulated/floor/plasteel,/area/derelict/secret) @@ -807,7 +807,7 @@ "pA" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel/airless{icon_state = "bot"},/area/derelict/secret) "pB" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/derelict/secret) "pC" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) -"pD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) +"pD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "pE" = (/turf/simulated/floor/plasteel/airless{dir = 10; icon_state = "warnwhite"},/area/derelict/secret) "pF" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "pG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room Access"; req_access_txt = "8"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) @@ -820,7 +820,7 @@ "pN" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/powermonitor{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/stationalert{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "pO" = (/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "pP" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) -"pQ" = (/obj/structure/grille,/turf/simulated/floor/plasteel/airless{tag = "icon-engine"; icon_state = "engine"},/area/derelict/secret) +"pQ" = (/obj/structure/grille,/turf/simulated/floor/plasteel/airless{icon_state = "engine"},/area/derelict/secret) "pR" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plasteel/airless{icon_state = "bot"},/area/derelict/secret) "pS" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/derelict/secret) "pT" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) @@ -836,7 +836,7 @@ "qd" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "qe" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) "qf" = (/obj/machinery/meter,/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) -"qg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) +"qg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "qh" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Worn-out APC"; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/derelict/medical) "qi" = (/obj/machinery/vending/wallmed{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "qj" = (/obj/machinery/door/airlock/medical{name = "Patient Room 2"; req_access_txt = "5"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) @@ -846,7 +846,7 @@ "qn" = (/obj/item/clothing/mask/gas,/turf/simulated/floor/plasteel/airless{dir = 2; icon_state = "warning"},/area/derelict/secret) "qo" = (/obj/structure/sign/biohazard,/turf/simulated/wall,/area/derelict/secret) "qp" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/plasteel/airless{dir = 5; icon_state = "whitehall"},/area/derelict/secret) -"qq" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) +"qq" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "qr" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = 30; pixel_y = 0},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel/airless{icon_state = "bar"},/area/derelict/crew_quarters) "qs" = (/obj/structure/sign/fire,/turf/simulated/wall,/area/derelict/secret) "qt" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) @@ -872,7 +872,7 @@ "qN" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "qO" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/engine/vacuum,/area/derelict/secret) "qP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/derelict/secret) -"qQ" = (/obj/structure/cable{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/plating,/area/derelict/medical/chapel) +"qQ" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/derelict/medical/chapel) "qR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/derelict/secret) "qS" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/derelict/secret) "qT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = -24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel/airless{dir = 1; icon_state = "warnwhitecorner"},/area/derelict/secret) @@ -907,7 +907,7 @@ "rw" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "rx" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "ry" = (/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 1},/area/derelict/secret) -"rz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 1},/area/derelict/secret) +"rz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless{icon_state = "whitehall"; dir = 1},/area/derelict/secret) "rA" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/derelict/secret) "rB" = (/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/engine,/area/derelict/secret) "rC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = -25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = -25; pixel_y = -5},/turf/simulated/floor/plasteel/airless{dir = 4; icon_state = "warnwhitecorner"},/area/derelict/secret) @@ -924,7 +924,7 @@ "rN" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "rO" = (/obj/structure/table,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) "rP" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/secret) -"rQ" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plasteel,/area/derelict/secret) +"rQ" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/derelict/secret) "rR" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "rS" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "rT" = (/obj/structure/cable,/turf/simulated/floor/plating/airless,/area/derelict/storage/engine_storage) @@ -935,15 +935,15 @@ "rY" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "rZ" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel/airless{icon_state = "warnwhite"; dir = 1},/area/derelict/secret) "sa" = (/obj/machinery/door/firedoor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel/airless{icon_state = "warnwhite"; dir = 1},/area/derelict/secret) -"sb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/secret) -"sc" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/derelict/secret) +"sb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/secret) +"sc" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/derelict/secret) "sd" = (/obj/structure/rack,/turf/simulated/floor/plating,/area/derelict/storage/equipment) -"se" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/storage/engine_storage) +"se" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/storage/engine_storage) "sf" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "sg" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "sh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "si" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Monkey Pen"; req_access_txt = "39"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) -"sj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/secret) +"sj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/secret) "sk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/derelict/storage/equipment) "sl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/derelict/storage/equipment) "sm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Break Room"; req_access_txt = "39"},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) @@ -974,40 +974,40 @@ "sL" = (/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "sM" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "sN" = (/obj/structure/closet/crate,/obj/item/clothing/under/color/lightpurple,/obj/item/stack/spacecash/c200,/turf/simulated/floor/plating,/area/derelict/storage/equipment) -"sO" = (/turf/simulated/floor/plating/airless{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/derelict/singularity_engine) +"sO" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelict/singularity_engine) "sP" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "sQ" = (/obj/structure/closet/l3closet/virology,/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "sR" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plasteel{icon_state = "white"},/area/derelict/medical) "sS" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "sT" = (/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/item/weapon/wrench,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/derelict/medical) -"sU" = (/obj/machinery/atmospherics/components/binary/valve/open{tag = "icon-mvalve_map (EAST)"; icon_state = "mvalve_map"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/derelict/medical) +"sU" = (/obj/machinery/atmospherics/components/binary/valve/open{icon_state = "mvalve_map"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/derelict/medical) "sV" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/derelict/medical) "sW" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "sX" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "sY" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "sZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) -"ta" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) -"tb" = (/obj/structure/bed/stool{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/derelict/medical) +"ta" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) +"tb" = (/obj/structure/bed/stool{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/derelict/medical) "tc" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/derelict/medical) "td" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/derelict/medical) -"te" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/derelict/secret) +"te" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/derelict/secret) "tf" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tg" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/simulated/floor/plating,/area/derelict/storage/equipment) "th" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelict/storage/equipment) -"ti" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/derelict/singularity_engine) -"tj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) +"ti" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/derelict/singularity_engine) +"tj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tk" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/simulated/floor/plating/airless,/area/derelict/medical) -"tl" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/derelict/singularity_engine) +"tl" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/derelict/singularity_engine) "tm" = (/obj/structure/bed/stool,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tn" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "to" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/derelict/storage/equipment) -"tp" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/derelict/singularity_engine) +"tp" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/derelict/singularity_engine) "tq" = (/obj/structure/table,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tr" = (/obj/structure/table,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "ts" = (/obj/machinery/power/apc{dir = 2; name = "Incinerator APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "tt" = (/obj/structure/sign/fire{pixel_x = 0; pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) -"tu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating/airless{icon_state = "warnplate"},/area/derelict/storage/equipment) -"tv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) +"tu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating/airless{icon_state = "warnplate"},/area/derelict/storage/equipment) +"tv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tw" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "tx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "ty" = (/turf/simulated/wall/r_wall,/area/derelict/singularity_engine) @@ -1017,24 +1017,24 @@ "tC" = (/turf/simulated/floor/plasteel/airless{icon_state = "yellow"},/area/derelict/singularity_engine) "tD" = (/turf/simulated/floor/plasteel/airless{dir = 6; icon_state = "yellow"},/area/derelict/singularity_engine) "tE" = (/turf/simulated/wall,/area/derelict/atmospherics) -"tF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/atmos{name = "Turbine Access"; req_access_txt = "32"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) +"tF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/atmos{name = "Turbine Access"; req_access_txt = "32"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "tG" = (/obj/structure/closet,/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tH" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tI" = (/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/singularity_engine) "tJ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/singularity_engine) "tK" = (/turf/simulated/wall,/area/derelict/singularity_engine) "tL" = (/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/turf/simulated/floor/plasteel,/area/derelict/singularity_engine) -"tM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/wall,/area/derelict/atmospherics) +"tM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 5},/turf/simulated/wall,/area/derelict/atmospherics) "tN" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall,/area/derelict/atmospherics) "tO" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "atmospherics mix pump"},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) -"tP" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) +"tP" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "tQ" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 26},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "tR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "tS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) -"tT" = (/obj/machinery/power/smes{capacity = 9e+006; charge = 10000},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) +"tT" = (/obj/machinery/power/smes{capacity = 9e+006; charge = 10000},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "tU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tV" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) -"tW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) +"tW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tX" = (/obj/machinery/door/airlock/maintenance{name = "Research Delivery access"; req_access_txt = "12"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "tY" = (/obj/machinery/light/small{dir = 1},/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "tZ" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/lighter,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/singularity_engine) @@ -1057,7 +1057,7 @@ "uq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "ur" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) "us" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/derelict/atmospherics) -"ut" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) +"ut" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "uu" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "uv" = (/obj/structure/rack{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/derelict/storage/equipment) "uw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelict/storage/equipment) @@ -1163,9 +1163,9 @@ "ws" = (/obj/machinery/power/solar_control{id = "starboardsolar"; name = "Aft Starboard Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/derelict/solar_control) "wt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/derelict/solar_control) "wu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating/airless,/area/derelict/solar_control) -"wv" = (/turf/simulated/floor/plasteel/airless{tag = "icon-yellow (NORTH)"; icon_state = "yellow"; dir = 1},/area/derelict/singularity_engine) -"ww" = (/turf/simulated/floor/plasteel/airless{tag = "icon-yellowcorner (NORTH)"; icon_state = "yellowcorner"; dir = 1},/area/derelict/singularity_engine) -"wx" = (/turf/simulated/floor/plasteel/airless{tag = "icon-yellowcorner (EAST)"; icon_state = "yellowcorner"; dir = 4},/area/derelict/singularity_engine) +"wv" = (/turf/simulated/floor/plasteel/airless{icon_state = "yellow"; dir = 1},/area/derelict/singularity_engine) +"ww" = (/turf/simulated/floor/plasteel/airless{icon_state = "yellowcorner"; dir = 1},/area/derelict/singularity_engine) +"wx" = (/turf/simulated/floor/plasteel/airless{icon_state = "yellowcorner"; dir = 4},/area/derelict/singularity_engine) "wy" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/derelict/singularity_engine) "wz" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/derelict/singularity_engine) "wA" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/derelict/singularity_engine) @@ -1218,12 +1218,12 @@ "xv" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "xw" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating/airless,/area/derelict/singularity_engine) "xx" = (/turf/simulated/floor/plasteel,/area/derelict/singularity_engine) -"xy" = (/obj/structure/transit_tube{tag = "icon-Block"; icon_state = "Block"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/derelict/singularity_engine) +"xy" = (/obj/structure/transit_tube{icon_state = "Block"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/derelict/singularity_engine) "xz" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/structure/sign/securearea{name = "EXTERNAL AIRLOCK"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; pixel_x = 32; pixel_y = 32},/turf/simulated/floor/plating/airless,/area/derelict/storage/equipment) "xA" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/derelict/se_solar) "xB" = (/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "xC" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/turf/simulated/floor/plasteel,/area/derelict/singularity_engine) -"xD" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/obj/structure/transit_tube_pod,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/derelict/singularity_engine) +"xD" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1},/obj/structure/transit_tube_pod,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/derelict/singularity_engine) "xE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "xF" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "xG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) @@ -1243,13 +1243,13 @@ "xU" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/space,/area/derelict/singularity_engine) "xV" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating/airless,/area/derelict/singularity_engine) "xW" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/derelict/singularity_engine) -"xX" = (/obj/structure/transit_tube{tag = "icon-N-SE"; icon_state = "N-SE"},/turf/space,/area/space) +"xX" = (/obj/structure/transit_tube{icon_state = "N-SE"},/turf/space,/area/space) "xY" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/space,/area/space) "xZ" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) -"ya" = (/obj/structure/transit_tube{tag = "icon-E-NW"; icon_state = "E-NW"},/turf/space,/area/space) +"ya" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/space,/area/space) "yb" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/space,/area/space) "yc" = (/obj/structure/transit_tube,/turf/space,/area/space) -"yd" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/space,/area/space) +"yd" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/turf/space,/area/space) "ye" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/space,/area/space) "yf" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/lattice,/turf/space,/area/space) "yg" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) @@ -1261,15 +1261,15 @@ "ym" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) "yn" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "yo" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/turf/space,/area/derelict/singularity_engine) -"yp" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/space,/area/space) -"yq" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) +"yp" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) +"yq" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) "yr" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/space,/area/space) "ys" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "yt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "yu" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/space,/area/derelict/se_solar) "yv" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/derelict/singularity_engine) "yw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/derelict/singularity_engine) -"yx" = (/obj/structure/transit_tube{tag = "icon-S-NW"; icon_state = "S-NW"},/obj/structure/lattice,/turf/space,/area/space) +"yx" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/lattice,/turf/space,/area/space) "yy" = (/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) "yz" = (/turf/simulated/wall,/area/derelict/bridge/ai_upload) "yA" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) @@ -1277,9 +1277,9 @@ "yC" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/derelict/singularity_engine) "yD" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "yE" = (/turf/simulated/floor/plating/airless{icon_state = "warnplate"; dir = 4},/area/derelict/bridge/ai_upload) -"yF" = (/obj/structure/transit_tube/station{dir = 4; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) +"yF" = (/obj/structure/transit_tube/station{dir = 4; icon_state = "closed"; reverse_launch = 1},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "yG" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/derelict/se_solar) -"yH" = (/obj/structure/transit_tube{dir = 1; icon_state = "Block"; tag = "icon-Block (NORTH)"},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) +"yH" = (/obj/structure/transit_tube{dir = 1; icon_state = "Block"},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "yI" = (/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13"},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "yJ" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area/derelict/bridge/ai_upload) "yK" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) @@ -1292,9 +1292,9 @@ "yR" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) "yS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/derelict/bridge/ai_upload) "yT" = (/obj/structure/lattice,/obj/structure/window/reinforced,/obj/structure/grille,/turf/space,/area/derelict/bridge/ai_upload) -"yU" = (/turf/simulated/floor/plasteel/airless{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/derelict/bridge/ai_upload) +"yU" = (/turf/simulated/floor/plasteel/airless{icon_state = "darkbluecorners"; dir = 8},/area/derelict/bridge/ai_upload) "yV" = (/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) -"yW" = (/turf/simulated/floor/plasteel/airless{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/derelict/bridge/ai_upload) +"yW" = (/turf/simulated/floor/plasteel/airless{icon_state = "darkbluecorners"},/area/derelict/bridge/ai_upload) "yX" = (/turf/simulated/floor/plasteel/airless{icon_state = "vault"; dir = 8},/area/derelict/bridge/ai_upload) "yY" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/window/reinforced,/turf/space,/area/derelict/bridge/ai_upload) "yZ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/derelict/bridge/ai_upload) @@ -1310,7 +1310,7 @@ "zj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/space,/area/space) "zk" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "zl" = (/obj/machinery/porta_turret{ai = 1; dir = 1},/obj/machinery/light/small,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) -"zm" = (/turf/simulated/floor/plasteel/airless{tag = "icon-darkblue"; icon_state = "darkblue"},/area/derelict/bridge/ai_upload) +"zm" = (/turf/simulated/floor/plasteel/airless{icon_state = "darkblue"},/area/derelict/bridge/ai_upload) "zn" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "zo" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/space,/area/space) "zp" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/derelict/bridge/ai_upload) @@ -1321,11 +1321,11 @@ "zu" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zv" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zw" = (/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) -"zx" = (/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) -"zy" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) -"zz" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) -"zA" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) -"zB" = (/obj/structure/AIcore/deactivated,/turf/simulated/floor/plasteel/airless{tag = "icon-bcircuit (NORTH)"; icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) +"zx" = (/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) +"zy" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) +"zz" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) +"zA" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) +"zB" = (/obj/structure/AIcore/deactivated,/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; dir = 1},/area/derelict/bridge/ai_upload) "zC" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = 24},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zD" = (/obj/machinery/light,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) @@ -1343,11 +1343,11 @@ "zQ" = (/obj/structure/rack,/obj/item/weapon/crowbar/red,/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "zR" = (/obj/structure/window/reinforced,/turf/space,/area/space) "zS" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/space) -"zT" = (/turf/simulated/floor/plasteel/airless{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/derelict/bridge/ai_upload) -"zU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 1},/turf/simulated/floor/plasteel/airless{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/derelict/bridge/ai_upload) +"zT" = (/turf/simulated/floor/plasteel/airless{icon_state = "warndark"; dir = 1},/area/derelict/bridge/ai_upload) +"zU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 1},/turf/simulated/floor/plasteel/airless{icon_state = "warndark"; dir = 5},/area/derelict/bridge/ai_upload) "zV" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/simulated/floor/plating/airless{icon_state = "warnplate"},/area/derelict/bridge/ai_upload) -"zW" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/airless{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/derelict/bridge/ai_upload) -"zX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/derelict/bridge/ai_upload) +"zW" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/airless{icon_state = "warndark"; dir = 9},/area/derelict/bridge/ai_upload) +"zX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless{icon_state = "warndark"; dir = 1},/area/derelict/bridge/ai_upload) "zY" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "zZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) "Aa" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable,/turf/simulated/floor/plasteel/airless{icon_state = "dark"},/area/derelict/bridge/ai_upload) diff --git a/_maps/map_files/DreamStation/dreamstation04.dmm b/_maps/map_files/DreamStation/dreamstation04.dmm index e7c428b64e2..c1a19e0ad25 100644 --- a/_maps/map_files/DreamStation/dreamstation04.dmm +++ b/_maps/map_files/DreamStation/dreamstation04.dmm @@ -308,7 +308,7 @@ "afV" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "afW" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "afX" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30; tag = "s"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) -"afY" = (/obj/machinery/nuclearbomb{tag = "syndienuke"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"afY" = (/obj/machinery/nuclearbomb/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "afZ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) "aga" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) "agb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) diff --git a/_maps/map_files/DreamStation/z5.dmm b/_maps/map_files/DreamStation/z5.dmm index de025efb81a..b93d52cbd67 100644 --- a/_maps/map_files/DreamStation/z5.dmm +++ b/_maps/map_files/DreamStation/z5.dmm @@ -91,9 +91,9 @@ "bM" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating/airless,/area/mine/abandoned) "bN" = (/obj/structure/alien/resin/membrane,/obj/structure/alien/weeds,/turf/simulated/floor/plating/airless,/area/mine/abandoned) "bO" = (/obj/item/clothing/mask/facehugger{icon_state = "facehugger_dead"; stat = 2},/obj/structure/alien/weeds,/turf/simulated/floor/plasteel/airless,/area/mine/abandoned) -"bP" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/mine/north_outpost) +"bP" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 1},/area/mine/north_outpost) "bQ" = (/obj/structure/table,/obj/item/weapon/pickaxe,/turf/simulated/floor/plasteel/brown{dir = 9},/area/mine/north_outpost) -"bR" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)"; icon_state = "brown"; dir = 5},/area/mine/north_outpost) +"bR" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 5},/area/mine/north_outpost) "bS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/north_outpost) "bT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/mine/north_outpost) "bU" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/alarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/mine/north_outpost) @@ -109,9 +109,9 @@ "ce" = (/obj/structure/alien/weeds,/obj/structure/alien/weeds,/turf/simulated/floor/plasteel/airless,/area/mine/abandoned) "cf" = (/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel/airless,/area/mine/abandoned) "cg" = (/obj/effect/decal/remains/xeno,/obj/structure/alien/weeds,/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/mine/abandoned) -"ch" = (/obj/structure/table,/obj/item/weapon/shovel,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/mine/north_outpost) +"ch" = (/obj/structure/table,/obj/item/weapon/shovel,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 8},/area/mine/north_outpost) "ci" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel/purple/corner,/area/mine/north_outpost) -"cj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/north_outpost) +"cj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/north_outpost) "ck" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/mine/north_outpost) "cl" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Mining North Outpost APC"; pixel_x = 26; pixel_y = 0},/obj/machinery/conveyor_switch{id = "mining_north"},/obj/machinery/camera{c_tag = "North Outpost"; dir = 8; network = list("MINE")},/turf/simulated/floor/plasteel/purple/corner,/area/mine/north_outpost) "cm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/mine/north_outpost) @@ -120,13 +120,13 @@ "cp" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/mine/north_outpost) "cq" = (/turf/simulated/floor/plasteel{icon_state = "damaged3"},/area/mine/abandoned) "cr" = (/obj/structure/ore_box,/turf/simulated/floor/plating/asteroid/airless,/area/mine/explored) -"cs" = (/obj/structure/table,/obj/item/weapon/storage/backpack/satchel,/obj/item/clothing/glasses/meson,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/north_outpost) +"cs" = (/obj/structure/table,/obj/item/weapon/storage/backpack/satchel,/obj/item/clothing/glasses/meson,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/north_outpost) "ct" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.4; on = 1},/turf/simulated/floor/plasteel,/area/mine/north_outpost) -"cu" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/north_outpost) +"cu" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/north_outpost) "cv" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/door/airlock/glass_mining{name = "Break Room"; req_access_txt = "54"},/turf/simulated/floor/plasteel,/area/mine/north_outpost) "cw" = (/obj/machinery/atmospherics/pipe/manifold{dir = 4},/turf/simulated/floor/plasteel,/area/mine/north_outpost) -"cx" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/north_outpost) -"cy" = (/obj/machinery/disposal/deliveryChute{dir = 8; pixel_x = 8; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/mine/north_outpost) +"cx" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/north_outpost) +"cy" = (/obj/machinery/disposal/deliveryChute{dir = 8; pixel_x = 8; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 5},/area/mine/north_outpost) "cz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/mine/north_outpost) "cA" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/mine/explored) "cB" = (/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 1},/area/mine/north_outpost) @@ -137,10 +137,10 @@ "cG" = (/obj/structure/alien/weeds,/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/mine/abandoned) "cH" = (/obj/structure/alien/resin/wall,/turf/simulated/floor/plating/airless,/area/mine/abandoned) "cI" = (/obj/effect/decal/remains/xeno,/turf/simulated/floor/plasteel/airless,/area/mine/abandoned) -"cJ" = (/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; dir = 4},/area/mine/north_outpost) -"cK" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/mine/north_outpost) +"cJ" = (/turf/simulated/floor/plasteel/brown/corner{icon_state = "browncorner"; dir = 4},/area/mine/north_outpost) +"cK" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 8},/area/mine/north_outpost) "cL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/mine/north_outpost) -"cM" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/north_outpost) +"cM" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/north_outpost) "cN" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/mine/north_outpost) "cO" = (/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/mine/abandoned) "cP" = (/obj/structure/alien/weeds,/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/mine/abandoned) @@ -148,8 +148,8 @@ "cR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/shard,/turf/simulated/floor/plating/airless,/area/mine/abandoned) "cS" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel/airless{icon_state = "asteroidfloor"},/area/mine/abandoned) "cT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/mine/abandoned) -"cU" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/north_outpost) -"cV" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/north_outpost) +"cU" = (/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/north_outpost) +"cV" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/north_outpost) "cW" = (/turf/simulated/floor/plasteel/purple/side,/area/mine/north_outpost) "cX" = (/obj/effect/decal/remains/human,/obj/structure/alien/weeds,/turf/simulated/floor/plasteel/airless,/area/mine/abandoned) "cY" = (/obj/structure/alien/weeds/node,/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/mine/abandoned) @@ -167,8 +167,8 @@ "dk" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/airless{icon_state = "asteroidfloor"},/area/mine/north_outpost) "dl" = (/turf/simulated/floor/mech_bay_recharge_floor/airless,/area/mine/north_outpost) "dm" = (/obj/machinery/computer/mech_bay_power_console,/turf/simulated/floor/plasteel/airless{icon_state = "asteroidfloor"},/area/mine/north_outpost) -"dn" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/mine/north_outpost) -"do" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/mine/north_outpost) +"dn" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 10},/area/mine/north_outpost) +"do" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 6},/area/mine/north_outpost) "dp" = (/turf/simulated/wall/r_wall,/area/mine/laborcamp) "dq" = (/obj/structure/alien/resin/wall,/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/mine/abandoned) "dr" = (/turf/simulated/floor/plasteel/airless{icon_state = "floorgrime"},/area/mine/abandoned) @@ -177,8 +177,8 @@ "du" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel/airless,/area/mine/explored) "dv" = (/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/north_outpost) "dw" = (/turf/simulated/floor/plasteel/purple/corner,/area/mine/north_outpost) -"dx" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/mine/north_outpost) -"dy" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/north_outpost) +"dx" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 10},/area/mine/north_outpost) +"dy" = (/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/north_outpost) "dz" = (/obj/structure/rack{dir = 1},/obj/item/clothing/glasses/meson,/obj/item/device/flashlight,/obj/item/weapon/storage/bag/ore,/obj/item/weapon/shovel{attack_verb = list("ineffectively hit"); desc = "A large tool for digging and moving dirt. Was modified with extra safety, making it ineffective as a weapon."; force = 1; name = "safety shovel"; pixel_x = -5; throwforce = 1},/obj/item/weapon/pickaxe{attack_verb = list("ineffectively hit"); desc = "A pickaxe designed to be only effective at digging rock and ore, very ineffective as a weapon."; force = 1; name = "safety pickaxe"; pixel_x = 5; throwforce = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "dA" = (/obj/structure/rack{dir = 1},/obj/item/clothing/glasses/meson,/obj/item/device/flashlight,/obj/item/weapon/storage/bag/ore,/obj/item/weapon/shovel{attack_verb = list("ineffectively hit"); desc = "A large tool for digging and moving dirt. Was modified with extra safety, making it ineffective as a weapon."; force = 1; name = "safety shovel"; pixel_x = -5; throwforce = 1},/obj/item/weapon/pickaxe{attack_verb = list("ineffectively hit"); desc = "A pickaxe designed to be only effective at digging rock and ore, very ineffective as a weapon."; force = 1; name = "safety pickaxe"; pixel_x = 5; throwforce = 1},/obj/machinery/camera{c_tag = "Labor Camp Storage"; dir = 8; network = list("Labor")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "dB" = (/turf/simulated/mineral/random/labormineral,/area/mine/explored) @@ -209,7 +209,7 @@ "ea" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/item/weapon/shard,/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "eb" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "ec" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=1-Storage"; location = "Sleeper"},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) -"ed" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/obj/structure/bed/roller,/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (EAST)"; icon_state = "bulb-construct-stage1"; dir = 4},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) +"ed" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/obj/structure/bed/roller,/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 4},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "ee" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/closet/crate/internals,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "ef" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/light_construct/small,/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "eg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=2-NMine"; location = "1-Storage"},/turf/simulated/floor/plasteel{icon_state = "asteroidfloor"},/area/mine/laborcamp) @@ -234,7 +234,7 @@ "ez" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/weapon/kitchen/fork,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "eA" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "eB" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"eC" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/light_construct{tag = "icon-tube-construct-stage1 (NORTH)"; icon_state = "tube-construct-stage1"; dir = 1},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) +"eC" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 1},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "eD" = (/obj/machinery/atmospherics/pipe/simple,/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "eE" = (/turf/simulated/floor/plasteel{icon_state = "asteroidfloor"},/area/mine/explored) "eF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/stack/rods,/obj/item/weapon/shard,/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/abandoned) @@ -252,37 +252,37 @@ "eR" = (/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 2},/area/mine/unexplored) "eS" = (/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 6},/area/mine/unexplored) "eT" = (/obj/machinery/vending/sustenance,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"eU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.4; on = 1},/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (EAST)"; icon_state = "bulb-construct-stage1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) +"eU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.4; on = 1},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "eV" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/wall,/area/mine/laborcamp) "eW" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "eX" = (/obj/machinery/atmospherics/pipe/manifold{dir = 4},/turf/simulated/wall,/area/mine/laborcamp) "eY" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/conveyor_switch/oneway{id = "gulag"},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) -"eZ" = (/obj/machinery/light_construct{tag = "icon-tube-construct-stage1 (WEST)"; icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning"; icon_state = "asteroidwarning"},/area/mine/laborcamp) -"fa" = (/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning"; icon_state = "asteroidwarning"},/area/mine/explored) +"eZ" = (/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"},/area/mine/laborcamp) +"fa" = (/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"},/area/mine/explored) "fb" = (/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/unexplored) -"fc" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/light_construct{tag = "icon-tube-construct-stage1 (WEST)"; icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) +"fc" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "fd" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fe" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "ff" = (/obj/machinery/conveyor{dir = 2; id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fg" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"fh" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/turf/simulated/floor/plasteel{tag = "icon-asteroidplating"; icon_state = "asteroidplating"},/area/mine/laborcamp) -"fi" = (/obj/machinery/mineral/unloading_machine{dir = 1; input_dir = 4; output_dir = 8},/turf/simulated/floor/plasteel{tag = "icon-asteroidplating"; icon_state = "asteroidplating"},/area/mine/laborcamp) -"fj" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning (WEST)"; icon_state = "asteroidwarning"; dir = 8},/area/mine/explored) +"fh" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "asteroidplating"},/area/mine/laborcamp) +"fi" = (/obj/machinery/mineral/unloading_machine{dir = 1; input_dir = 4; output_dir = 8},/turf/simulated/floor/plasteel{icon_state = "asteroidplating"},/area/mine/laborcamp) +"fj" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"; dir = 8},/area/mine/explored) "fk" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plating/asteroid,/area/mine/explored) "fl" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/explored) "fm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/explored) "fn" = (/obj/machinery/door/airlock/glass_security{name = "Labor Camp Shuttle Security Airlock"; req_access_txt = "2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"fo" = (/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (NORTH)"; icon_state = "bulb-construct-stage1"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) +"fo" = (/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fp" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/door/poddoor/preopen{id = "Labor"; name = "labor camp blast door"},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "fq" = (/turf/simulated/floor/plasteel,/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp) "fr" = (/obj/machinery/mineral/processing_unit_console{machinedir = 6},/turf/simulated/wall,/area/mine/laborcamp) "fs" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 2; id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"ft" = (/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning (NORTH)"; icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) -"fu" = (/obj/machinery/conveyor_switch/oneway{id = "gulag"},/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning (NORTH)"; icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) +"ft" = (/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) +"fu" = (/obj/machinery/conveyor_switch/oneway{id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) "fv" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating/asteroid,/area/mine/explored) "fw" = (/obj/machinery/mineral/stacking_unit_console{machinedir = 2},/turf/simulated/wall,/area/mine/laborcamp) "fx" = (/obj/machinery/mineral/processing_unit{dir = 1; output_dir = 2},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"fy" = (/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (EAST)"; icon_state = "bulb-construct-stage1"; dir = 4},/turf/simulated/floor/plating/asteroid,/area/mine/laborcamp) +"fy" = (/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 4},/turf/simulated/floor/plating/asteroid,/area/mine/laborcamp) "fz" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=6-Vending"; location = "5-Central"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fA" = (/obj/machinery/mineral/stacking_machine{dir = 1; input_dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fB" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) @@ -291,7 +291,7 @@ "fE" = (/obj/item/stack/sheet/metal{amount = 5},/obj/structure/closet/crate,/turf/simulated/floor/plasteel{icon_state = "asteroidfloor"},/area/mine/explored) "fF" = (/turf/simulated/wall/r_wall,/area/mine/laborcamp/security) "fG" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp/security) -"fH" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/light_construct{tag = "icon-tube-construct-stage1 (EAST)"; icon_state = "tube-construct-stage1"; dir = 4},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp/security) +"fH" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 4},/turf/simulated/floor/plasteel/sandeffect,/area/mine/laborcamp/security) "fI" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/mine/laborcamp/security) "fJ" = (/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/mine/laborcamp/security) "fK" = (/turf/simulated/wall,/area/mine/laborcamp/security) @@ -301,7 +301,7 @@ "fO" = (/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp/security) "fP" = (/obj/machinery/atmospherics/pipe/manifold,/obj/machinery/door/airlock/glass_security{name = "Labor Camp Backroom"; req_access_txt = "2"},/turf/simulated/floor/plating,/area/mine/laborcamp/security) "fQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/mine/laborcamp/security) -"fR" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (NORTH)"; icon_state = "bulb-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/mine/laborcamp/security) +"fR" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/mine/laborcamp/security) "fS" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/mine/laborcamp/security) "fT" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=5-Central"; location = "4-Maint"},/turf/simulated/floor/plating,/area/mine/laborcamp) "fU" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/mine/laborcamp/security) @@ -310,7 +310,7 @@ "fX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/mine/laborcamp/security) "fY" = (/obj/machinery/door/airlock/maintenance{name = "Labor Camp Maintenance"; req_access_txt = "2"},/turf/simulated/floor/plating,/area/mine/laborcamp/security) "fZ" = (/obj/structure/plasticflaps/mining,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plating,/area/mine/laborcamp/security) -"ga" = (/obj/machinery/light_construct{tag = "icon-tube-construct-stage1 (WEST)"; icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "asteroidfloor"},/area/mine/explored) +"ga" = (/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "asteroidfloor"},/area/mine/explored) "gb" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) "gc" = (/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) "gd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) @@ -318,7 +318,7 @@ "gf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) "gg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall,/area/mine/laborcamp/security) "gh" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/mine/laborcamp/security) -"gi" = (/obj/item/weapon/storage/box/lights/mixed,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_construct/small{tag = "icon-bulb-construct-stage1 (NORTH)"; icon_state = "bulb-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/mine/laborcamp/security) +"gi" = (/obj/item/weapon/storage/box/lights/mixed,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/mine/laborcamp/security) "gj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/mine/laborcamp/security) "gk" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/mine/laborcamp/security) "gl" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plating,/area/mine/laborcamp/security) @@ -328,7 +328,7 @@ "gp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/closet/crate,/turf/simulated/floor/plating/asteroid,/area/mine/explored) "gq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/explored) "gr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/mine/laborcamp/security) -"gs" = (/obj/machinery/light_construct{tag = "icon-tube-construct-stage1 (WEST)"; icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) +"gs" = (/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 8},/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) "gt" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) "gu" = (/obj/machinery/button/door{id = "Labor"; name = "Labor Camp Lockdown"; pixel_x = 28; pixel_y = 7; req_access_txt = "2"},/obj/machinery/button/flasher{id = "Labor"; pixel_x = 26; pixel_y = -3},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/mine/laborcamp/security) "gv" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/mine/laborcamp/security) @@ -416,15 +416,15 @@ "hZ" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/mine/living_quarters) "ia" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "miningdorm3"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet,/area/mine/living_quarters) "ib" = (/turf/simulated/floor/plasteel/brown,/area/mine/north_outpost) -"ic" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/north_outpost) -"id" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/north_outpost) -"ie" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/mine/north_outpost) +"ic" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/north_outpost) +"id" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/north_outpost) +"ie" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 1},/area/mine/north_outpost) "if" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/mine/west_outpost) "ig" = (/obj/structure/rack,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/mine/west_outpost) "ih" = (/obj/structure/rack,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/mine/west_outpost) "ii" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32},/turf/simulated/floor/plasteel/purple/corner,/area/mine/north_outpost) "ij" = (/turf/simulated/floor/plasteel,/area/mine/west_outpost) -"ik" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/north_outpost) +"ik" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/north_outpost) "il" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/west_outpost) "im" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/mine/living_quarters) "in" = (/turf/simulated/floor/plasteel{icon_state = "bar"},/area/mine/living_quarters) @@ -439,8 +439,8 @@ "iw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/eva) "ix" = (/turf/simulated/wall,/area/mine/eva) "iy" = (/obj/structure/table,/obj/item/weapon/pickaxe,/turf/simulated/floor/plasteel/brown{dir = 9},/area/mine/west_outpost) -"iz" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)"; icon_state = "brown"; dir = 5},/area/mine/west_outpost) -"iA" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/mine/west_outpost) +"iz" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 5},/area/mine/west_outpost) +"iA" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 1},/area/mine/west_outpost) "iB" = (/obj/machinery/recharge_station,/turf/simulated/floor/plasteel/brown{dir = 9},/area/mine/west_outpost) "iC" = (/obj/machinery/door/airlock/external{name = "Mining West Outpost Airlock"; req_access_txt = "54"},/turf/simulated/floor/plasteel,/area/mine/west_outpost) "iD" = (/obj/machinery/door/airlock/external{name = "Mining West Outpost Airlock"; req_access_txt = "54"},/turf/simulated/floor/plasteel/airless{icon_state = "asteroidfloor"},/area/mine/west_outpost) @@ -453,35 +453,35 @@ "iK" = (/turf/simulated/floor/plasteel,/area/mine/living_quarters) "iL" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "iM" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute{pixel_y = 5},/turf/simulated/floor/plasteel/purple/corner,/area/mine/west_outpost) -"iN" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/west_outpost) +"iN" = (/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/west_outpost) "iO" = (/turf/simulated/floor/plasteel/purple/corner,/area/mine/west_outpost) "iP" = (/obj/machinery/light,/turf/simulated/floor/plating/asteroid/airless,/area/mine/explored) -"iQ" = (/obj/structure/table,/obj/item/weapon/shovel,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/mine/west_outpost) +"iQ" = (/obj/structure/table,/obj/item/weapon/shovel,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 8},/area/mine/west_outpost) "iR" = (/obj/machinery/door/airlock/glass_mining{name = "Break Room"; req_access_txt = "54"},/turf/simulated/floor/plasteel,/area/mine/west_outpost) "iS" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel/purple/corner,/area/mine/west_outpost) -"iT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/west_outpost) -"iU" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/west_outpost) +"iT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/west_outpost) +"iU" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/west_outpost) "iV" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/mine/living_quarters) "iW" = (/obj/machinery/camera{c_tag = "Crew Area"; dir = 1; network = list("MINE")},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/mine/living_quarters) -"iX" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/west_outpost) -"iY" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/table,/obj/item/weapon/pickaxe,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTHWEST)"; icon_state = "purple"; dir = 9},/area/mine/eva) -"iZ" = (/obj/machinery/suit_storage_unit/mining,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/mine/eva) +"iX" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/west_outpost) +"iY" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/table,/obj/item/weapon/pickaxe,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 9},/area/mine/eva) +"iZ" = (/obj/machinery/suit_storage_unit/mining,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 1},/area/mine/eva) "ja" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/mine/living_quarters) -"jb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/suit_storage_unit/mining,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/mine/eva) +"jb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/suit_storage_unit/mining,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 1},/area/mine/eva) "jc" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/plasteel,/area/mine/living_quarters) "jd" = (/obj/machinery/camera{c_tag = "Storage Room"; dir = 1; network = list("MINE")},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "je" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel,/area/mine/living_quarters) "jf" = (/turf/simulated/wall,/area/mine/production) "jg" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/mine/production) "jh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/production) -"ji" = (/obj/machinery/suit_storage_unit/mining,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTHEAST)"; icon_state = "purple"; dir = 5},/area/mine/eva) +"ji" = (/obj/machinery/suit_storage_unit/mining,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 5},/area/mine/eva) "jj" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/mine/eva) "jk" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel,/area/mine/eva) -"jl" = (/obj/structure/table,/obj/item/weapon/storage/backpack/satchel,/obj/item/clothing/glasses/meson,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/west_outpost) -"jm" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/west_outpost) -"jn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/west_outpost) +"jl" = (/obj/structure/table,/obj/item/weapon/storage/backpack/satchel,/obj/item/clothing/glasses/meson,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/west_outpost) +"jm" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/west_outpost) +"jn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/west_outpost) "jo" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/west_outpost) -"jp" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/west_outpost) +"jp" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/west_outpost) "jq" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel,/area/mine/west_outpost) "jr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/mine/west_outpost) "js" = (/obj/machinery/conveyor_switch{id = "mining_west"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/mine/west_outpost) @@ -490,18 +490,18 @@ "jv" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/door/airlock/mining{name = "Mining Station Storage"; req_access_txt = "48"},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "jw" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "jx" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/mine/living_quarters) -"jy" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/mine/living_quarters) +"jy" = (/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 1},/area/mine/living_quarters) "jz" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/eva) -"jA" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; dir = 4},/area/mine/living_quarters) +"jA" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel/brown/corner{icon_state = "browncorner"; dir = 4},/area/mine/living_quarters) "jB" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/mine/eva) "jC" = (/turf/simulated/floor/plasteel,/area/mine/eva) "jD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel,/area/mine/living_quarters) -"jE" = (/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (NORTH)"; icon_state = "browncorner"; dir = 1},/area/mine/living_quarters) +"jE" = (/turf/simulated/floor/plasteel/brown/corner{icon_state = "browncorner"; dir = 1},/area/mine/living_quarters) "jF" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/brown,/area/mine/living_quarters) "jG" = (/turf/simulated/floor/plasteel/purple/corner,/area/mine/living_quarters) -"jH" = (/obj/machinery/atmospherics/pipe/simple{dir = 6},/obj/machinery/camera{c_tag = "EVA"; dir = 4; network = list("MINE")},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/table,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/eva) -"jI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/eva) -"jJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/mine/west_outpost) +"jH" = (/obj/machinery/atmospherics/pipe/simple{dir = 6},/obj/machinery/camera{c_tag = "EVA"; dir = 4; network = list("MINE")},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/table,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/obj/item/device/gps/mining,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/eva) +"jI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/eva) +"jJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 8},/area/mine/west_outpost) "jK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/mine/west_outpost) "jL" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/mine/west_outpost) "jM" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/mine/west_outpost) @@ -512,72 +512,72 @@ "jR" = (/obj/structure/toilet{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/mine/living_quarters) "jS" = (/obj/structure/sink{pixel_y = 30},/obj/machinery/light/small,/obj/structure/mirror{pixel_y = -32},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/mine/living_quarters) "jT" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/mine/living_quarters) -"jU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/west_outpost) -"jV" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/west_outpost) -"jW" = (/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/mine/living_quarters) +"jU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.4; on = 1},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/west_outpost) +"jV" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/west_outpost) +"jW" = (/turf/simulated/floor/plasteel/brown/corner{icon_state = "browncorner"; dir = 8},/area/mine/living_quarters) "jX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/purple/corner,/area/mine/living_quarters) "jY" = (/obj/structure/window/reinforced,/obj/structure/lattice,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/space,/area/mine/living_quarters) "jZ" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/mine/living_quarters) "ka" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/mine/production) -"kb" = (/obj/machinery/disposal/deliveryChute{pixel_y = 5},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/mine/production) +"kb" = (/obj/machinery/disposal/deliveryChute{pixel_y = 5},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 1},/area/mine/production) "kc" = (/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/simulated/floor/plasteel/purple/corner,/area/mine/production) -"kd" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/mine/production) -"ke" = (/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/eva) +"kd" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 1},/area/mine/production) +"ke" = (/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/eva) "kf" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel/purple/corner,/area/mine/eva) "kg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/purple/corner,/area/mine/eva) "kh" = (/obj/machinery/door/airlock/external{name = "Mining External Airlock"; req_access_txt = "54"},/turf/simulated/floor/plasteel,/area/mine/eva) -"ki" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/eva) -"kj" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/mine/west_outpost) +"ki" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/eva) +"kj" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 10},/area/mine/west_outpost) "kk" = (/obj/machinery/door/airlock/external{name = "Mining External Airlock"; req_access_txt = "54"},/turf/simulated/floor/plasteel/airless{icon_state = "asteroidfloor"},/area/mine/eva) "kl" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/mine/west_outpost) "km" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/mine/west_outpost) "kn" = (/obj/machinery/door/airlock/maintenance{name = "Mining Station Maintenance"; req_access_txt = "54"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/mine/west_outpost) "ko" = (/obj/machinery/conveyor{backwards = 2; dir = 2; forwards = 1; id = "mining_west"},/obj/structure/plasticflaps/mining,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/mine/west_outpost) "kp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/mine/west_outpost) -"kq" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/mine/west_outpost) +"kq" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 6},/area/mine/west_outpost) "kr" = (/turf/simulated/floor/plasteel/purple/side,/area/mine/west_outpost) -"ks" = (/obj/machinery/power/apc{dir = 2; name = "Mining West Outpost APC"; pixel_x = 1; pixel_y = -23},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHWEST)"; icon_state = "brown"; dir = 10},/area/mine/west_outpost) -"kt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera{c_tag = "West Outpost"; dir = 1; network = list("MINE")},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/west_outpost) +"ks" = (/obj/machinery/power/apc{dir = 2; name = "Mining West Outpost APC"; pixel_x = 1; pixel_y = -23},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 10},/area/mine/west_outpost) +"kt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/camera{c_tag = "West Outpost"; dir = 1; network = list("MINE")},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/west_outpost) "ku" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "kv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "kw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel,/area/mine/living_quarters) -"kx" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (WEST)"; icon_state = "purple"; dir = 8},/area/mine/living_quarters) +"kx" = (/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 8},/area/mine/living_quarters) "ky" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/glass_mining{name = "Mining Station Bridge"; req_access_txt = "48"},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "kz" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/mine/living_quarters) "kA" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/mine/production) "kB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/glass_mining{name = "Mining Station Bridge"; req_access_txt = "48"},/turf/simulated/floor/plasteel,/area/mine/production) -"kC" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (EAST)"; icon_state = "browncorner"; dir = 4},/area/mine/living_quarters) +"kC" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/brown/corner{icon_state = "browncorner"; dir = 4},/area/mine/living_quarters) "kD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; layer = 2.4; on = 1},/turf/simulated/floor/plasteel,/area/mine/production) "kE" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel,/area/mine/production) -"kF" = (/obj/machinery/power/apc{dir = 1; name = "Mining Station Port Wing APC"; pixel_x = 1; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/mine/living_quarters) -"kG" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/mine/living_quarters) +"kF" = (/obj/machinery/power/apc{dir = 1; name = "Mining Station Port Wing APC"; pixel_x = 1; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 1},/area/mine/living_quarters) +"kG" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 1},/area/mine/living_quarters) "kH" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/mine/eva) "kI" = (/turf/simulated/floor/mech_bay_recharge_floor,/area/mine/eva) -"kJ" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/mine/living_quarters) -"kK" = (/obj/machinery/camera{c_tag = "Crew Area Hallway"; network = list("MINE")},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (NORTH)"; icon_state = "purple"; dir = 1},/area/mine/living_quarters) -"kL" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTH)"; icon_state = "brown"; dir = 1},/area/mine/living_quarters) +"kJ" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 1},/area/mine/living_quarters) +"kK" = (/obj/machinery/camera{c_tag = "Crew Area Hallway"; network = list("MINE")},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 1},/area/mine/living_quarters) +"kL" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 1},/area/mine/living_quarters) "kM" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter,/turf/simulated/floor/plating,/area/mine/west_outpost) "kN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/mine/west_outpost) "kO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/mine/west_outpost) "kP" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/item/weapon/storage/box/lights/bulbs,/turf/simulated/floor/plating,/area/mine/west_outpost) "kQ" = (/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 1},/area/mine/west_outpost) "kR" = (/obj/machinery/conveyor_switch{id = "mining_west"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 1},/area/mine/west_outpost) -"kS" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/living_quarters) -"kT" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/living_quarters) -"kU" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/production) +"kS" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/living_quarters) +"kT" = (/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/living_quarters) +"kU" = (/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/production) "kV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel,/area/mine/living_quarters) -"kW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) +"kW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) "kX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/mine/production) -"kY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/eva) +"kY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/eva) "kZ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/living_quarters) "la" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/space,/area/mine/living_quarters) "lb" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/space,/area/mine/production) "lc" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/light{dir = 4},/turf/space,/area/mine/production) "ld" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/production) "le" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/glass_mining{name = "Mining Station EVA"; req_access_txt = "54"},/turf/simulated/floor/plasteel,/area/mine/eva) -"lf" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/eva) +"lf" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/eva) "lg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel,/area/mine/production) -"lh" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/eva) +"lh" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/eva) "li" = (/obj/machinery/camera{c_tag = "Production Line External"; dir = 4; network = list("MINE")},/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 2},/area/mine/production) "lj" = (/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 2},/area/mine/production) "lk" = (/obj/machinery/conveyor_switch{id = "mining_external"},/turf/simulated/floor/plasteel/airless{icon_state = "asteroidwarning"; dir = 2},/area/mine/production) @@ -591,12 +591,12 @@ "ls" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance{name = "Mining Station Maintenance"; req_access_txt = "48"},/turf/simulated/floor/plating,/area/mine/living_quarters) "lt" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/wall,/area/mine/living_quarters) "lu" = (/obj/machinery/door/airlock/external{name = "Mining External Airlock"; req_access_txt = "54"},/turf/simulated/floor/plasteel,/area/mine/living_quarters) -"lv" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/living_quarters) +"lv" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/living_quarters) "lw" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/mine/production) -"lx" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel,/area/mine/living_quarters) +"lx" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel,/area/mine/living_quarters) "ly" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Closet"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/mine/production) "lz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/mine/production) -"lA" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/mine/production) +"lA" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/mine/production) "lB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/mine/production) "lC" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/mine/production) "lD" = (/obj/machinery/conveyor{dir = 4; id = "mining_external"},/turf/simulated/floor/plating,/area/mine/production) @@ -612,13 +612,13 @@ "lN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/mine/living_quarters) "lO" = (/obj/machinery/atmospherics/pipe/simple,/obj/item/weapon/storage/box/lights,/turf/simulated/floor/plating,/area/mine/living_quarters) "lP" = (/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plating,/area/mine/living_quarters) -"lQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/living_quarters) -"lR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/living_quarters) -"lS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) +"lQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/living_quarters) +"lR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/living_quarters) +"lS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) "lT" = (/obj/structure/sign/xeno_warning_mining,/turf/simulated/wall,/area/mine/living_quarters) "lU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/mine/production) "lV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel,/area/mine/production) -"lW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/production) +"lW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/production) "lX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/production) "lY" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/simulated/floor/plasteel{icon_state = "white"},/area/mine/living_quarters) "lZ" = (/obj/machinery/iv_drip,/turf/simulated/floor/plasteel{icon_state = "white"},/area/mine/living_quarters) @@ -628,13 +628,13 @@ "md" = (/turf/simulated/floor/plating,/area/mine/living_quarters) "me" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/machinery/meter,/turf/simulated/floor/plating,/area/mine/living_quarters) "mf" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/plating,/area/mine/living_quarters) -"mg" = (/obj/machinery/atmospherics/pipe/manifold{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/production) -"mh" = (/obj/machinery/power/apc{dir = 2; name = "Mining EVA APC"; pixel_x = 1; pixel_y = -23},/obj/structure/cable,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/eva) -"mi" = (/obj/machinery/computer/mech_bay_power_console,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/eva) -"mj" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/eva) +"mg" = (/obj/machinery/atmospherics/pipe/manifold{dir = 4},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/production) +"mh" = (/obj/machinery/power/apc{dir = 2; name = "Mining EVA APC"; pixel_x = 1; pixel_y = -23},/obj/structure/cable,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/eva) +"mi" = (/obj/machinery/computer/mech_bay_power_console,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/eva) +"mj" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/eva) "mk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/mine/production) -"ml" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/eva) -"mm" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/living_quarters) +"ml" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/eva) +"mm" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/living_quarters) "mn" = (/obj/machinery/mineral/mint{input_dir = 4},/turf/simulated/floor/plasteel,/area/mine/production) "mo" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/mine/production) "mp" = (/obj/machinery/alarm{pixel_y = 28},/obj/structure/closet/crate,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/mine/production) @@ -657,7 +657,7 @@ "mG" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/mine/production) "mH" = (/obj/machinery/atmospherics/pipe/manifold,/turf/simulated/floor/plasteel/purple/side,/area/mine/living_quarters) "mI" = (/obj/machinery/atmospherics/pipe/manifold,/turf/simulated/floor/plasteel/brown,/area/mine/living_quarters) -"mJ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown/corner{tag = "icon-browncorner (WEST)"; icon_state = "browncorner"; dir = 8},/area/mine/living_quarters) +"mJ" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown/corner{icon_state = "browncorner"; dir = 8},/area/mine/living_quarters) "mK" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/mine/production) "mL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/mine/production) "mM" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel/purple/side,/area/mine/living_quarters) @@ -671,71 +671,71 @@ "mU" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown,/area/mine/living_quarters) "mV" = (/obj/machinery/conveyor{dir = 2; id = "mining_internal"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/mine/production) "mW" = (/obj/effect/decal/remains/human{desc = "Seems to be all that remains of a poor miner that didn't heed the warning signs."},/turf/simulated/floor/plating/asteroid/airless,/area/mine/explored) -"mX" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/living_quarters) +"mX" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/living_quarters) "mY" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel,/area/mine/production) "mZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/mine/production) -"na" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/plasteel,/area/mine/production) -"nb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/production) -"nc" = (/obj/machinery/atmospherics/pipe/manifold{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) -"nd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/mine/production) -"ne" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/living_quarters) +"na" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel,/area/mine/production) +"nb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/production) +"nc" = (/obj/machinery/atmospherics/pipe/manifold{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) +"nd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 4},/area/mine/production) +"ne" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/living_quarters) "nf" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/mine/production) -"ng" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/living_quarters) +"ng" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/living_quarters) "nh" = (/obj/machinery/mineral/processing_unit_console,/turf/simulated/wall/r_wall,/area/mine/production) "ni" = (/obj/machinery/mineral/processing_unit{dir = 1; output_dir = 2},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/mine/production) "nj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/mine/production) -"nk" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/production) -"nl" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) +"nk" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/production) +"nl" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) "nm" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel/purple/corner,/area/mine/living_quarters) -"nn" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/living_quarters) +"nn" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/living_quarters) "no" = (/turf/simulated/floor/plasteel/brown,/area/mine/living_quarters) "np" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/space,/area/space) -"nq" = (/obj/machinery/power/apc{dir = 8; name = "Mining Station Starboard Wing APC"; pixel_x = -27; pixel_y = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/production) -"nr" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/production) -"ns" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (NORTHEAST)"; icon_state = "brown"; dir = 5},/area/mine/production) -"nt" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/production) +"nq" = (/obj/machinery/power/apc{dir = 8; name = "Mining Station Starboard Wing APC"; pixel_x = -27; pixel_y = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/production) +"nr" = (/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/production) +"ns" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 5},/area/mine/production) +"nt" = (/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/production) "nu" = (/obj/machinery/mineral/stacking_unit_console,/turf/simulated/wall/r_wall,/area/mine/production) "nv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/mine/explored) "nw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/mine/explored) "nx" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/space,/area/space) "ny" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/space,/area/space) -"nz" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/mine/production) -"nA" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (WEST)"; icon_state = "purplecorner"; dir = 8},/area/mine/production) -"nB" = (/obj/machinery/computer/shuttle/mining{req_access = "0"},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Shuttle Docking Foyer"; dir = 8; network = list("MINE")},/obj/machinery/newscaster{pixel_x = 30; pixel_y = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) -"nC" = (/obj/machinery/camera{c_tag = "Processing Area Room"; dir = 8; network = list("MINE")},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = 28},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) +"nz" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 4},/area/mine/production) +"nA" = (/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 8},/area/mine/production) +"nB" = (/obj/machinery/computer/shuttle/mining{req_access = "0"},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Shuttle Docking Foyer"; dir = 8; network = list("MINE")},/obj/machinery/newscaster{pixel_x = 30; pixel_y = 1},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) +"nC" = (/obj/machinery/camera{c_tag = "Processing Area Room"; dir = 8; network = list("MINE")},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = 28},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) "nD" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/obj/structure/plasticflaps,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/mine/production) "nE" = (/obj/machinery/mineral/stacking_machine{dir = 1; input_dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/mine/production) "nF" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/mine/production) -"nG" = (/obj/machinery/conveyor{icon_state = "conveyor0"; dir = 10; id = "mining_internal"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/mine/production) +"nG" = (/obj/machinery/conveyor{icon_state = "conveyor0"; dir = 10; id = "mining_internal"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 4},/area/mine/production) "nH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/mine/explored) "nI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/mine/production) "nJ" = (/obj/structure/disposaloutlet{dir = 1; eject_range = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/mine/production) "nK" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_z5"; name = "south of asteroid"; turf_type = /turf/space; width = 18},/turf/space,/area/space) "nL" = (/turf/simulated/wall,/area/space) "nM" = (/obj/machinery/door/airlock/external{name = "Mining Shuttle Airlock"; req_access_txt = "0"},/turf/simulated/floor/plasteel,/area/mine/production) -"nN" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/production) +"nN" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/production) "nO" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/mine/production) "nP" = (/turf/simulated/floor/plasteel/purple/corner,/area/mine/production) -"nQ" = (/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; name = "mining conveyor"},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (EAST)"; icon_state = "purple"; dir = 4},/area/mine/production) +"nQ" = (/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; name = "mining conveyor"},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 4},/area/mine/production) "nR" = (/obj/machinery/door/airlock/glass_mining{name = "Processing Area"; req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/mine/production) -"nS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) -"nT" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/production) -"nU" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) +"nS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) +"nT" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/production) +"nU" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) "nV" = (/obj/machinery/door/airlock/glass_mining{name = "Processing Area"; req_access_txt = "48"},/turf/simulated/floor/plasteel,/area/mine/production) -"nW" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/mine/production) -"nX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/production) -"nY" = (/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (SOUTHEAST)"; icon_state = "purple"; dir = 6},/area/mine/production) +"nW" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/mine/production) +"nX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/production) +"nY" = (/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 6},/area/mine/production) "nZ" = (/turf/simulated/floor/plasteel/brown,/area/mine/production) -"oa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (WEST)"; icon_state = "brown"; dir = 8},/area/mine/production) +"oa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 8},/area/mine/production) "ob" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/mine/production) -"oc" = (/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (EAST)"; icon_state = "purplecorner"; dir = 4},/area/mine/production) -"od" = (/turf/simulated/floor/plasteel/brown{tag = "icon-brown (EAST)"; icon_state = "brown"; dir = 4},/area/space) -"oe" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/purple/corner{tag = "icon-purplecorner (NORTH)"; icon_state = "purplecorner"; dir = 1},/area/mine/production) -"of" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute{dir = 1; pixel_y = -1},/turf/simulated/floor/plasteel/purple/side{tag = "icon-purple (SOUTHWEST)"; icon_state = "purple"; dir = 10},/area/mine/production) +"oc" = (/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 4},/area/mine/production) +"od" = (/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 4},/area/space) +"oe" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel/purple/corner{icon_state = "purplecorner"; dir = 1},/area/mine/production) +"of" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute{dir = 1; pixel_y = -1},/turf/simulated/floor/plasteel/purple/side{icon_state = "purple"; dir = 10},/area/mine/production) "og" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/purple/side,/area/mine/production) "oh" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/machinery/light,/turf/simulated/floor/plasteel/brown,/area/mine/production) -"oi" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plasteel/brown{tag = "icon-brown (SOUTHEAST)"; icon_state = "brown"; dir = 6},/area/mine/production) -"oj" = (/turf/simulated/floor/plasteel/loadingarea{tag = "icon-loadingarea (WEST)"; icon_state = "loadingarea"; dir = 8},/area/mine/production) +"oi" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plasteel/brown{icon_state = "brown"; dir = 6},/area/mine/production) +"oj" = (/turf/simulated/floor/plasteel/loadingarea{icon_state = "loadingarea"; dir = 8},/area/mine/production) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/map_files/MetaStation/MetaStation.v41H.dmm b/_maps/map_files/MetaStation/MetaStation.v41H.dmm index 742d24d2c17..2bda1abcf3d 100644 --- a/_maps/map_files/MetaStation/MetaStation.v41H.dmm +++ b/_maps/map_files/MetaStation/MetaStation.v41H.dmm @@ -8,16 +8,16 @@ "aah" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/auxport) "aai" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/lattice,/turf/space,/area/space) "aaj" = (/obj/structure/grille,/turf/space,/area/space) -"aak" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"aak" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) "aal" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) "aam" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aan" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aao" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"aan" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"aao" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) "aap" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) "aaq" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) "aar" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aas" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aat" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"aas" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"aat" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) "aau" = (/obj/structure/cable,/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) "aav" = (/obj/effect/landmark{name = "Marauder Entry"},/turf/space,/area/space) "aaw" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) @@ -25,8 +25,8 @@ "aay" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/prison) "aaz" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) "aaA" = (/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"aaB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1; tag = "icon-plant-03"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"aaC" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/security/prison) +"aaB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"aaC" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/security/prison) "aaD" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/flora/kirbyplants{layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aaE" = (/obj/machinery/biogenerator,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Prison Hydroponics"; network = list("SS13","Prison")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aaF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/prison) @@ -36,9 +36,9 @@ "aaJ" = (/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aaK" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/glowshroom,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aaL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/prison) -"aaM" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/shuttle/pod_2) +"aaM" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/pod_2) "aaN" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_2) -"aaO" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/shuttle/pod_2) +"aaO" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/pod_2) "aaP" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/auxstarboard) "aaQ" = (/turf/space,/area/security/prison) "aaR" = (/obj/machinery/hydroponics/constructable,/obj/item/weapon/cultivator,/obj/item/seeds/carrotseed,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -47,10 +47,10 @@ "aaU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aaV" = (/obj/machinery/hydroponics/constructable,/obj/item/device/analyzer/plant_analyzer,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aaW" = (/turf/space,/turf/simulated/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/space) -"aaX" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/pod_2) +"aaX" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/pod_2) "aaY" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) "aaZ" = (/turf/space,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/space) -"aba" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"aba" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) "abb" = (/turf/simulated/wall/r_wall,/area/prison/solitary{name = "Prisoner Education Chamber"}) "abc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/security/prison) "abd" = (/obj/machinery/door/airlock/glass{id_tag = "permahydro"; name = "Hydroponics Module"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -61,24 +61,24 @@ "abi" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "SecJusticeChamber"; name = "Justice Vent"; opacity = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"}) "abj" = (/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/shower{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) "abk" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) -"abl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/flora/kirbyplants{tag = "icon-plant-13"; icon_state = "plant-13"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"abl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/flora/kirbyplants{icon_state = "plant-13"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abm" = (/obj/structure/table,/obj/item/weapon/folder,/obj/item/weapon/paper/hydroponics,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abn" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abo" = (/obj/machinery/computer/arcade,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abp" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel,/area/security/prison) "abq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"abs" = (/obj/structure/holohoop{pixel_y = 29},/obj/item/toy/beach_ball{icon = 'icons/obj/basketball.dmi'; icon_state = "basketball"; item_state = "basketball"; name = "basket ball"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/security/prison) +"abs" = (/obj/structure/holohoop{pixel_y = 29},/obj/item/toy/beach_ball{icon = 'icons/obj/basketball.dmi'; icon_state = "basketball"; item_state = "basketball"; name = "basket ball"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/security/prison) "abt" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/security/prison) "abu" = (/obj/machinery/washing_machine,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/security/prison) -"abv" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_2) +"abv" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_2) "abw" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod2"; name = "escape pod 2"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) -"abx" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_2) +"abx" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_2) "aby" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) "abz" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"abA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"abB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"abC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"abA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 9},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"abB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"abC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 5},/area/prison/solitary{name = "Prisoner Education Chamber"}) "abD" = (/obj/machinery/shower{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) "abE" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Unisex Showers"; req_access_txt = "0"},/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) "abF" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -92,17 +92,17 @@ "abN" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/security/prison) "abO" = (/turf/simulated/floor/plating,/area/security/prison) "abP" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/security/prison) -"abQ" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/security/prison) -"abR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"abS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abQ" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/security/prison) +"abR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) "abT" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) "abU" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) "abV" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"abW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"abX" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"abY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/sparker{dir = 2; id = "executionburn"; pixel_x = -25},/turf/simulated/floor/plasteel{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"abW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abX" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) +"abY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/sparker{dir = 2; id = "executionburn"; pixel_x = -25},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 8},/area/prison/solitary{name = "Prisoner Education Chamber"}) "abZ" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark{name = "revenantspawn"},/obj/item/device/electropack,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"aca" = (/obj/machinery/flasher{id = "justiceflash"; name = "mounted justice flash"; pixel_x = 28},/turf/simulated/floor/plasteel{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"aca" = (/obj/machinery/flasher{id = "justiceflash"; name = "mounted justice flash"; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 4},/area/prison/solitary{name = "Prisoner Education Chamber"}) "acb" = (/obj/machinery/door/airlock{name = "Unisex Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) "acc" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/item/clothing/head/chefhat,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "acd" = (/obj/structure/table,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/toy/cards/deck,/obj/item/toy/cards/deck,/turf/simulated/floor/plasteel,/area/security/prison) @@ -111,17 +111,17 @@ "acg" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "ach" = (/obj/machinery/vending/sustenance{desc = "A vending machine normally reserved for work camps."; name = "\improper sustenance vendor"; product_slogans = "Enjoy your meal.;Enough calories to support any worker."},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aci" = (/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/security/prison) -"acj" = (/obj/machinery/light/small,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/security/prison) +"acj" = (/obj/machinery/light/small,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/security/prison) "ack" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/security/prison) "acl" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/security/prison) "acm" = (/obj/machinery/light/small{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; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/security/prison) "acn" = (/obj/structure/lattice/catwalk,/turf/space,/area/space) "aco" = (/obj/structure/cable,/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) -"acp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"acq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{tag = "icon-warndark"; icon_state = "warndark"; dir = 2},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"acr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2; name = "justice injector"},/turf/simulated/floor/plasteel{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 10},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 2},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2; name = "justice injector"},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 6},/area/prison/solitary{name = "Prisoner Education Chamber"}) "acs" = (/obj/machinery/light/small{dir = 4},/obj/structure/toilet{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) -"act" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 2; pixel_y = 1},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/security/prison) +"act" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 2; pixel_y = 1},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/security/prison) "acu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "acv" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/security/prison) "acw" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -131,11 +131,11 @@ "acA" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "acB" = (/obj/machinery/door/airlock/external{name = "Escape Pod Two"},/turf/simulated/floor/plating,/area/security/prison) "acC" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"acD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"; tag = "icon-whitehall (WEST)"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"acE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"; tag = "icon-whitehall (WEST)"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"acF" = (/obj/machinery/door/window/brigdoor{dir = 2; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/brigdoor{dir = 1; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"; tag = "icon-whitehall (WEST)"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"acG" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/security/prison) -"acH" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/security/prison) +"acD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acF" = (/obj/machinery/door/window/brigdoor{dir = 2; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/brigdoor{dir = 1; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredfull"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acG" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/security/prison) +"acH" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/security/prison) "acI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/security/prison) "acJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "acK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = -28; prison_radio = 1},/obj/machinery/camera{c_tag = "Prison Chamber"; dir = 1; network = list("SS13","Prison")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -149,14 +149,14 @@ "acS" = (/turf/simulated/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "acT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "acU" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_y = 6},/obj/machinery/camera{c_tag = "Prison Sanitarium"; dir = 2; network = list("SS13","Prison"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitered"},/area/security/prison) -"acV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"acW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) +"acW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) "acX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"acY" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = -4; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 5; pixel_y = 1},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle"; pixel_x = -3; pixel_y = 6},/obj/item/weapon/reagent_containers/syringe{pixel_y = 5},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 4; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = -24; req_access = "0"; req_one_access = "0"},/obj/machinery/button/ignition{id = "executionburn"; name = "Justice Ignition Switch"; pixel_x = -25; pixel_y = 36},/obj/machinery/button/door{id = "executionfireblast"; name = "Justice Area Lockdown"; pixel_x = -25; pixel_y = 26; req_access_txt = "2"},/obj/item/device/assembly/signaler{pixel_x = -3; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/flasher{id = "justiceflash"; name = "Justice Flash Control"; pixel_x = -36; pixel_y = 36; req_access_txt = "1"},/obj/machinery/button/door{dir = 2; id = "SecJusticeChamber"; layer = 4; name = "Justice Vent Control"; pixel_x = -36; pixel_y = 26; req_access_txt = "3"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"acZ" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/device/taperecorder{pixel_x = -3; pixel_y = 0},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/device/assembly/flash/handheld,/obj/item/weapon/reagent_containers/spray/pepper,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"ada" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"adb" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"adc" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Prisoner Education Chamber APC"; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/closet/secure_closet/injection{name = "educational injections"; pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acY" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = -4; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 5; pixel_y = 1},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle"; pixel_x = -3; pixel_y = 6},/obj/item/weapon/reagent_containers/syringe{pixel_y = 5},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/alarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 4; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = -24; req_access = "0"; req_one_access = "0"},/obj/machinery/button/ignition{id = "executionburn"; name = "Justice Ignition Switch"; pixel_x = -25; pixel_y = 36},/obj/machinery/button/door{id = "executionfireblast"; name = "Justice Area Lockdown"; pixel_x = -25; pixel_y = 26; req_access_txt = "2"},/obj/item/device/assembly/signaler{pixel_x = -3; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/flasher{id = "justiceflash"; name = "Justice Flash Control"; pixel_x = -36; pixel_y = 36; req_access_txt = "1"},/obj/machinery/button/door{dir = 2; id = "SecJusticeChamber"; layer = 4; name = "Justice Vent Control"; pixel_x = -36; pixel_y = 26; req_access_txt = "3"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"acZ" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/device/taperecorder{pixel_x = -3; pixel_y = 0},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/device/assembly/flash/handheld,/obj/item/weapon/reagent_containers/spray/pepper,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"ada" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"adb" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"adc" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Prisoner Education Chamber APC"; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/closet/secure_closet/injection{name = "educational injections"; pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) "add" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/security/prison) "ade" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "permacell3"; name = "Cell Shutters"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt3"; name = "Cell 3"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "adf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/security/prison) @@ -180,10 +180,10 @@ "adx" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt3"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "ady" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2"; network = list("SS13","Prison")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "adz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"adA" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/security/prison) +"adA" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/security/prison) "adB" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 1"; network = list("SS13","Prison")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "adC" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"adD" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/security/prison) +"adD" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/security/prison) "adE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/prison) "adF" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/prison) "adG" = (/obj/machinery/flasher{id = "insaneflash"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/prison) @@ -193,12 +193,12 @@ "adK" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) "adL" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_3) "adM" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_3) -"adN" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 0},/obj/structure/table,/obj/item/weapon/storage/backpack/dufflebag/sec{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical); desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools."; name = "dufflebag"; pixel_y = 5},/obj/item/clothing/mask/balaclava,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"adO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"adP" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"adQ" = (/obj/machinery/button/door{id = "prisonereducation"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"adR" = (/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"; tag = "icon-darkblue"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"adS" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 3"; pixel_x = -28},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/security/prison) +"adN" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 0},/obj/structure/table,/obj/item/weapon/storage/backpack/dufflebag/sec{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical); desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools."; name = "dufflebag"; pixel_y = 5},/obj/item/clothing/mask/balaclava,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"adO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"adP" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"adQ" = (/obj/machinery/button/door{id = "prisonereducation"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"adR" = (/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkred"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"adS" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 3"; pixel_x = -28},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/security/prison) "adT" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "adU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/wall,/area/security/prison) "adV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -217,7 +217,7 @@ "aei" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_3) "aej" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/pod_3) "aek" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"ael" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"ael" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) "aem" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/prison/solitary{name = "Prisoner Education Chamber"}) "aen" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/obj/machinery/door/window/westleft{base_state = "left"; dir = 1; icon_state = "left"; name = "gas ports"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/prison/solitary{name = "Prisoner Education Chamber"}) "aeo" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "justice gas pump"},/obj/machinery/door/window/westleft{base_state = "right"; dir = 1; icon_state = "right"; name = "gas ports"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/prison/solitary{name = "Prisoner Education Chamber"}) @@ -229,13 +229,13 @@ "aeu" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1"; req_access_txt = "2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aev" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Sanitarium"; req_access_txt = "2"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/prison) "aew" = (/turf/space,/area/security/warden) -"aex" = (/obj/structure/closet/ammunitionlocker,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"aey" = (/obj/machinery/button/door{id = "tac"; name = "Tactical Gear Shutter Control"; pixel_x = -28; pixel_y = -4},/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) +"aex" = (/obj/structure/closet/ammunitionlocker,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/ammo_casing/shotgun/rubbershot,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) +"aey" = (/obj/machinery/button/door{id = "tac"; name = "Tactical Gear Shutter Control"; pixel_x = -28; pixel_y = -4},/obj/structure/bed/chair/janicart/secway,/obj/item/key/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) "aez" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = 32},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 23},/obj/machinery/button/door{id = "hosspace"; name = "Space Shutters Control"; pixel_x = -26; pixel_y = 34},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "aeA" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "aeB" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "aeC" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) -"aeD" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 29},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) +"aeD" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 29},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) "aeE" = (/turf/simulated/wall,/area/security/range) "aeF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/range) "aeG" = (/obj/machinery/door/airlock/external{name = "Escape Pod Three"},/turf/simulated/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) @@ -244,10 +244,10 @@ "aeJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/effect/landmark{name = "Syndicate Breach Area"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aeK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aeL" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) -"aeM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarport) -"aeN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"aeO" = (/obj/item/weapon/tank/internals/oxygen/red{pixel_x = -4; pixel_y = -1},/obj/item/weapon/tank/internals/oxygen/red{pixel_x = 4; pixel_y = -1},/obj/item/weapon/tank/internals/anesthetic{pixel_x = 2},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/weapon/wrench,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/prison/solitary{name = "Prisoner Education Chamber"}) -"aeP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"aeM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarport) +"aeN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"aeO" = (/obj/item/weapon/tank/internals/oxygen/red{pixel_x = -4; pixel_y = -1},/obj/item/weapon/tank/internals/oxygen/red{pixel_x = 4; pixel_y = -1},/obj/item/weapon/tank/internals/anesthetic{pixel_x = 2},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/weapon/wrench,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/prison/solitary{name = "Prisoner Education Chamber"}) +"aeP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/prison/solitary{name = "Prisoner Education Chamber"}) "aeQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/prison) "aeR" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/securearea{desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any NanoTrasen employee or silicon will suffer if violating this rule."; name = "WARNING: Do Not Enter When Red Light Shows"; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/prison) "aeS" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/prison) @@ -265,9 +265,9 @@ "afe" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/prison) "aff" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/sign/pods{pixel_y = 30},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/prison) "afg" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/flasher{id = "insaneflash"; pixel_y = 26},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/prison) -"afh" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/item/weapon/storage/secure/safe{name = "armory safe A"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"afi" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/weapon/gun/projectile/automatic/pistol = 5, /obj/item/weapon/gun/projectile/shotgun/automatic/combat = 5, /obj/item/weapon/gun/projectile/revolver/mateba, /obj/item/weapon/gun/projectile/automatic/pistol/deagle, /obj/item/weapon/storage/box/throwing_stars = 3)},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) -"afj" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/item/weapon/storage/secure/safe{name = "armory safe B"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"afh" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/item/weapon/storage/secure/safe{name = "armory safe A"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) +"afi" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/weapon/gun/projectile/automatic/pistol = 5, /obj/item/weapon/gun/projectile/shotgun/automatic/combat = 5, /obj/item/weapon/gun/projectile/revolver/mateba, /obj/item/weapon/gun/projectile/automatic/pistol/deagle, /obj/item/weapon/storage/box/throwing_stars = 3)},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) +"afj" = (/obj/machinery/flasher/portable,/obj/machinery/flasher/portable,/obj/item/weapon/storage/secure/safe{name = "armory safe B"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "afk" = (/obj/structure/table/wood,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 0; pixel_y = 30},/obj/machinery/computer/med_data/laptop,/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 36; pixel_y = 28},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "afl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/warden) "afm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/warden) @@ -282,20 +282,20 @@ "afv" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/security/range) "afw" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/security/range) "afx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/security/range) -"afy" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "shower"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afz" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = -5; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup,/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afy" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "shower"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afz" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = -5; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup,/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "afB" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afC" = (/obj/structure/closet/masks,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afD" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afE" = (/obj/structure/closet/boxinggloves,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afF" = (/obj/structure/closet/emcloset,/obj/structure/sign/pods{pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afG" = (/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"afH" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afC" = (/obj/structure/closet/masks,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afD" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afE" = (/obj/structure/closet/boxinggloves,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afF" = (/obj/structure/closet/emcloset,/obj/structure/sign/pods{pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afG" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"afH" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "afI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "afJ" = (/turf/simulated/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) -"afK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"afL" = (/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1; tag = "icon-applebush"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/security/prison) +"afK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"afL" = (/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/security/prison) "afM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/prison) "afN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/prison) "afO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/prison) @@ -313,13 +313,13 @@ "aga" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/prison) "agb" = (/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/prison) "agc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/security/prison) -"agd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within."; name = "WARNING: Criminally Insane Inmates"; pixel_y = 32},/turf/simulated/floor/plasteel,/area/security/prison) +"agd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within."; name = "WARNING: Criminally Insane Inmates"; pixel_y = 32},/turf/simulated/floor/plasteel,/area/security/prison) "age" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/warden) -"agf" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"agg" = (/obj/machinery/door/poddoor/shutters{id = "tac"; name = "Tactical Equipment"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"agh" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"agf" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) +"agg" = (/obj/machinery/door/poddoor/shutters{id = "tac"; name = "Tactical Equipment"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"agh" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "agi" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/warden) -"agj" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) +"agj" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) "agk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/security/hos) "agl" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{pixel_x = -2},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/cartridge/detective,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "agm" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) @@ -344,25 +344,25 @@ "agF" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "agG" = (/turf/simulated/wall/r_wall,/area/maintenance/auxsolarport) "agH" = (/obj/machinery/power/solar_control{id = "foreport"; name = "Fore Port Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"agI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarport) -"agJ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/auxsolarport) -"agK" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4; pixel_y = 2},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/prison) -"agL" = (/obj/structure/rack,/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/flash/handheld,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/prison) -"agM" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 4; pixel_y = 2},/obj/item/weapon/pen,/obj/item/weapon/storage/box/prisoner,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/prison) -"agN" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/prison) -"agO" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/prison) +"agI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarport) +"agJ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/auxsolarport) +"agK" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/prison) +"agL" = (/obj/structure/rack,/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/flash/handheld,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/prison) +"agM" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 4; pixel_y = 2},/obj/item/weapon/pen,/obj/item/weapon/storage/box/prisoner,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/prison) +"agN" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/prison) +"agO" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/prison) "agP" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/security/prison) "agQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "1"},/turf/simulated/floor/plasteel,/area/security/prison) "agR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/prison) "agS" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "1"},/turf/simulated/floor/plasteel,/area/security/prison) "agT" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'WARNING: Dangerous Inmates'."; name = "\improper WARNING: Dangerous Inmates"},/turf/simulated/wall,/area/security/prison) -"agU" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/prison) -"agV" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/prison) +"agU" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/prison) +"agV" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/prison) "agW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/warden) -"agX" = (/turf/simulated/floor/plasteel{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/security/warden) +"agX" = (/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 8},/area/security/warden) "agY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/warden) -"agZ" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) -"aha" = (/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle{pin = /obj/item/device/firing_pin},/obj/item/clothing/suit/armor/laserproof,/obj/machinery/firealarm{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"agZ" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) +"aha" = (/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle{pin = /obj/item/device/firing_pin},/obj/item/clothing/suit/armor/laserproof,/obj/machinery/firealarm{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "ahb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/security/hos) "ahc" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) "ahd" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/hos) @@ -386,33 +386,33 @@ "ahv" = (/turf/simulated/wall,/area/maintenance/disposal) "ahw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/disposal) "ahx" = (/obj/structure/bed/stool{pixel_y = 8},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"ahy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) +"ahy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) "ahz" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) "ahA" = (/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/brig) -"ahB" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) +"ahB" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/brig) "ahC" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/brig) "ahD" = (/turf/simulated/wall,/area/security/brig) "ahE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Prison Gate"; name = "Security Blast Door"; opacity = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/security/brig) "ahF" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Prison Gate"; name = "Security Blast Door"; opacity = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/security/brig) "ahG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Prison Gate"; name = "Security Blast Door"; opacity = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/security/brig) "ahH" = (/turf/simulated/wall,/area/security/warden) -"ahI" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/obj/machinery/camera/motion{c_tag = "Armory - Tactical Gear"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"ahJ" = (/obj/machinery/bot/secbot{health = 35; name = "Securitron #359"; on = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"ahK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/warden) -"ahL" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Armory APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/light,/obj/machinery/camera/motion{c_tag = "Armory - Internal"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/warden) -"ahM" = (/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/warden) -"ahN" = (/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHWEST)"; icon_state = "vault"; dir = 10},/area/security/warden) -"ahO" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) -"ahP" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/machinery/light_switch{pixel_x = -24; pixel_y = -20},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching certain areas."; dir = 1; name = "Head of Security's Monitor"; network = list("Prison","MiniSat","tcomm"); pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/hos) -"ahQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/hos) +"ahI" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/obj/machinery/camera/motion{c_tag = "Armory - Tactical Gear"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) +"ahJ" = (/obj/machinery/bot/secbot{health = 35; name = "Securitron #359"; on = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"ahK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/warden) +"ahL" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Armory APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/light,/obj/machinery/camera/motion{c_tag = "Armory - Internal"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/warden) +"ahM" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/warden) +"ahN" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 10},/area/security/warden) +"ahO" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) +"ahP" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/machinery/light_switch{pixel_x = -24; pixel_y = -20},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching certain areas."; dir = 1; name = "Head of Security's Monitor"; network = list("Prison","MiniSat","tcomm"); pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/hos) +"ahQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/hos) "ahR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/security/hos) "ahS" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/security/hos) "ahT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet,/area/security/hos) -"ahU" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/hos) -"ahV" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"ahU" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/hos) +"ahV" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "ahW" = (/obj/item/clothing/head/festive,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/fore) "ahX" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/fore) -"ahY" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fore) +"ahY" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) "ahZ" = (/obj/structure/table,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fore) "aia" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fore) "aib" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) @@ -429,23 +429,23 @@ "aim" = (/obj/machinery/mass_driver{dir = 8; id = "trash"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/disposal) "ain" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "garbage"; name = "disposal coveyor"},/turf/simulated/floor/plating,/area/maintenance/disposal) "aio" = (/turf/simulated/floor/plating,/area/maintenance/disposal) -"aip" = (/obj/item/weapon/vending_refill/coffee,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/disposal) +"aip" = (/obj/item/weapon/vending_refill/coffee,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal) "aiq" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"air" = (/obj/machinery/power/apc{dir = 8; name = "Fore Port Solar APC"; pixel_x = -25; pixel_y = 3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/auxsolarport) -"ais" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/maintenance/auxsolarport) +"air" = (/obj/machinery/power/apc{dir = 8; name = "Fore Port Solar APC"; pixel_x = -25; pixel_y = 3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/auxsolarport) +"ais" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/auxsolarport) "ait" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) "aiu" = (/turf/simulated/wall/r_wall,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aiv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aiw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) -"aix" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) -"aiy" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Security - EVA Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/brig) +"aix" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/brig) +"aiy" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Security - EVA Storage"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/brig) "aiz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security E.V.A. Storage"; req_access_txt = "3"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/security/brig) "aiA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) "aiB" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) "aiC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "Prison Gate"; name = "Prison Wing Lockdown"; pixel_x = 26; pixel_y = 0; req_access_txt = "2"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) -"aiD" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 1"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"aiE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/light/small{dir = 1},/obj/effect/landmark{name = "blobstart"},/obj/machinery/camera{c_tag = "Evidence Storage"; dir = 2; network = list("SS13")},/obj/item/weapon/storage/secure/safe{name = "evidence safe"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"aiF" = (/obj/structure/closet/secure_closet{anchored = 1; name = "Secure Evidence Closet"; req_access_txt = "0"; req_one_access_txt = "3,4"},/obj/item/weapon/storage/secure/briefcase{name = "Secure Evidence Briefcase"; pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"aiD" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 1"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) +"aiE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/light/small{dir = 1},/obj/effect/landmark{name = "blobstart"},/obj/machinery/camera{c_tag = "Evidence Storage"; dir = 2; network = list("SS13")},/obj/item/weapon/storage/secure/safe{name = "evidence safe"; pixel_x = 6; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"aiF" = (/obj/structure/closet/secure_closet{anchored = 1; name = "Secure Evidence Closet"; req_access_txt = "0"; req_one_access_txt = "3,4"},/obj/item/weapon/storage/secure/briefcase{name = "Secure Evidence Briefcase"; pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "aiG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_access = null; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) "aiH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/warden) "aiI" = (/obj/machinery/door/poddoor/shutters{id = "armory"; name = "armory shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/warden) @@ -476,7 +476,7 @@ "ajh" = (/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "aji" = (/obj/machinery/conveyor{dir = 2; id = "garbage"; layer = 2.7},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit"; layer = 3.1; name = "disposal exit vent"},/turf/simulated/floor/plating,/area/maintenance/disposal) "ajj" = (/obj/machinery/button/door{id = "Disposal Exit"; name = "Disposal Vent Control"; pixel_x = -25; pixel_y = 4; req_access_txt = "12"},/obj/machinery/button/massdriver{id = "trash"; pixel_x = -26; pixel_y = -6},/obj/structure/bed/stool,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/disposal) -"ajk" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/disposal) +"ajk" = (/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal) "ajl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plating,/area/maintenance/disposal) "ajm" = (/obj/effect/decal/cleanable/oil,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/disposal) "ajn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Fore Port Solar Access"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) @@ -488,27 +488,27 @@ "ajt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) "aju" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/brig) "ajv" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "1"},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajw" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 2"},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"ajx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"ajy" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"ajz" = (/obj/structure/rack,/obj/item/weapon/gun/projectile/shotgun/riot{pixel_x = 3; pixel_y = 3},/obj/item/weapon/gun/projectile/shotgun/riot,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/security/warden) -"ajA" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"ajw" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 2"},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) +"ajx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"ajy" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"ajz" = (/obj/structure/rack,/obj/item/weapon/gun/projectile/shotgun/riot{pixel_x = 3; pixel_y = 3},/obj/item/weapon/gun/projectile/shotgun/riot,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/security/warden) +"ajA" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "ajB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/warden) "ajC" = (/obj/structure/closet/bombcloset,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/warden) "ajD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/warden) "ajE" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "ajF" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "ajG" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/alarm{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"ajH" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) -"ajI" = (/obj/machinery/computer/security,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) +"ajH" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) +"ajI" = (/obj/machinery/computer/security,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) "ajJ" = (/turf/simulated/wall,/area/security/main) -"ajK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) -"ajL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) -"ajM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) -"ajN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) -"ajO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) -"ajP" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) -"ajQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/main) +"ajK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) +"ajL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) +"ajM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) +"ajN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) +"ajO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/landmark{name = "secequipment"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) +"ajP" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) +"ajQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/main) "ajR" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/machinery/magnetic_controller{autolink = 1; pixel_y = 3},/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/security/range) "ajS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel,/area/security/range) "ajT" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light/small{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/range) @@ -530,13 +530,13 @@ "akj" = (/turf/space,/area/maintenance/auxsolarstarboard) "akk" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/space,/area/maintenance/auxsolarstarboard) "akl" = (/obj/machinery/conveyor{dir = 2; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"akm" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"akm" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/helmet/alt,/obj/item/weapon/gun/projectile/automatic/wt550,/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "akn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/disposal) "ako" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/disposal) "akp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/disposal) -"akq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"; tag = "icon-warnplatecorner"},/area/maintenance/disposal) +"akq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{dir = 1; icon_state = "warnplatecorner"},/area/maintenance/disposal) "akr" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aks" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aks" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "akt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aku" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "akv" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/mop,/obj/item/weapon/bikehorn/rubberducky,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/weapon/grenade/empgrenade,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -550,8 +550,8 @@ "akD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/brig) "akE" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) "akF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/pods{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/brig) -"akG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHEAST)"; icon_state = "vault"; dir = 6},/area/security/warden) -"akH" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 4"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"akG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 6},/area/security/warden) +"akH" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 4"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "akI" = (/obj/machinery/deployable/barrier,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/camera{c_tag = "Security - Secure Gear Storage"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/warden) "akJ" = (/obj/machinery/deployable/barrier,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/warden) "akK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/warden) @@ -577,7 +577,7 @@ "ale" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/range) "alf" = (/obj/structure/rack{pixel_y = 2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = 2; pixel_y = -2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = -3; pixel_y = 3},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Firing Range"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/range) "alg" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/fore) -"alh" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fore) +"alh" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore) "ali" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fore) "alj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore) "alk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fore) @@ -598,7 +598,7 @@ "alz" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) "alA" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) "alB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"alC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"alC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "alD" = (/obj/machinery/conveyor{dir = 2; id = "garbage"},/obj/structure/sign/vacuum{pixel_x = -32},/turf/simulated/floor/plating,/area/maintenance/disposal) "alE" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; layer = 3},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/disposal) "alF" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/machinery/door/window/eastright{base_state = "left"; dir = 1; icon_state = "left"; name = "Danger: Conveyor Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/disposal) @@ -608,7 +608,7 @@ "alJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "alK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "alL" = (/obj/machinery/door/airlock/maintenance{name = "Secure Storage Room"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"alM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"alM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "alN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/weapon/bucket_sensor,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "alO" = (/obj/item/weapon/grown/log,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "alP" = (/obj/machinery/light_construct/small{dir = 4},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/disk/data,/obj/item/weapon/grenade/flashbang,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/grenade/smokebomb,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -617,14 +617,14 @@ "alS" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/syringe,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitered"},/area/security/brig) "alT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteredcorner"},/area/security/brig) "alU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/brig) -"alV" = (/obj/machinery/door/window/westleft{base_state = "left"; dir = 4; icon_state = "left"; name = "Infirmary"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitered"; tag = "icon-whitehall (WEST)"},/area/security/brig) +"alV" = (/obj/machinery/door/window/westleft{base_state = "left"; dir = 4; icon_state = "left"; name = "Infirmary"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitered"},/area/security/brig) "alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/brig) "alX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/security/brig) "alY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/security/brig) -"alZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = null; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"ama" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"amb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) -"amc" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = null; req_access_txt = "3"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/security/warden) +"alZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = null; req_access_txt = "0"; req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"ama" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"amb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) +"amc" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = null; req_access_txt = "3"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/warden) "amd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/warden) "ame" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/security/warden) "amf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/security/warden) @@ -649,7 +649,7 @@ "amy" = (/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/structure/closet/crate/secure{desc = "A secure crate containing various materials for building a customised test-site."; name = "Firing Range Gear Crate"; req_access_txt = "1"},/obj/machinery/power/apc{cell_type = 2500; dir = 4; name = "Shooting Range APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/range) "amz" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fore) "amA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/fore) -"amB" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"amB" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "amC" = (/obj/structure/window/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "amD" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "amE" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) @@ -667,14 +667,14 @@ "amQ" = (/obj/machinery/gravity_generator/main/station,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/engine/gravity_generator) "amR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/engine/gravity_generator) "amS" = (/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) -"amT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarstarboard) +"amT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarstarboard) "amU" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor{dir = 2; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) "amV" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) "amW" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 4; icon_state = "left"; name = "Danger: Conveyor Access"; req_access_txt = "12"},/obj/machinery/conveyor{dir = 9; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) "amX" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/disposal) "amY" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "amZ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"ana" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"ana" = (/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "anb" = (/obj/structure/table/reinforced,/obj/machinery/light_construct/small{dir = 8},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/window/reinforced,/obj/item/weapon/poster/legit,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "anc" = (/obj/structure/table/reinforced,/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/door/window/westleft{base_state = "right"; dir = 2; icon_state = "right"; name = "windoor"; req_access_txt = "0"},/obj/item/weapon/book/manual/wiki/engineering_hacking,/obj/item/device/tape/random,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "and" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/stock_parts/cell/crap,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -684,15 +684,15 @@ "anh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/fore) "ani" = (/obj/machinery/door/airlock/glass_security{name = "N2O Storage"; req_access_txt = "3"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/fore) "anj" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/brig) -"ank" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitered"; tag = "icon-whitehall (WEST)"},/area/security/brig) +"ank" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitered"},/area/security/brig) "anl" = (/obj/structure/bed/roller,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/security/brig) -"anm" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Infirmary"; req_access_txt = "0"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitered"; tag = "icon-whitehall (WEST)"},/area/security/brig) +"anm" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Infirmary"; req_access_txt = "0"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitered"},/area/security/brig) "ann" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/brig) "ano" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/security/brig) "anp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/security/brig) -"anq" = (/obj/structure/table,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHEAST)"; icon_state = "vault"; dir = 6},/area/security/warden) -"anr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/warden) -"ans" = (/obj/structure/filingcabinet/security{pixel_x = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHWEST)"; icon_state = "vault"; dir = 10},/area/security/warden) +"anq" = (/obj/structure/table,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 6},/area/security/warden) +"anr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/warden) +"ans" = (/obj/structure/filingcabinet/security{pixel_x = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 10},/area/security/warden) "ant" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/item/weapon/storage/lockbox/loyalty,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/warden) "anu" = (/obj/structure/rack,/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/warden) "anv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/warden) @@ -706,7 +706,7 @@ "anD" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel,/area/security/main) "anE" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/blue{pixel_x = -2; pixel_y = 3},/turf/simulated/floor/plasteel,/area/security/main) "anF" = (/obj/structure/table/reinforced,/obj/item/weapon/paper,/turf/simulated/floor/plasteel,/area/security/main) -"anG" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/security/warden) +"anG" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 8},/area/security/warden) "anH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/security/main) "anI" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plasteel,/area/security/main) "anJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/main) @@ -734,13 +734,13 @@ "aof" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/recycler,/turf/simulated/floor/plating,/area/maintenance/disposal) "aog" = (/obj/machinery/door/window/eastright{dir = 4; name = "Danger: Conveyor Access"; req_access_txt = "12"},/obj/machinery/conveyor{dir = 10; icon_state = "conveyor0"; id = "garbage"},/turf/simulated/floor/plating,/area/maintenance/disposal) "aoh" = (/obj/machinery/power/apc{dir = 2; name = "Disposal APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable/yellow,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/disposal) -"aoi" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aoi" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aoj" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aok" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aol" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aom" = (/obj/machinery/space_heater,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aon" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aoo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aoo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aop" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aoq" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/item/weapon/tank/internals/air,/turf/simulated/floor/plating,/area/maintenance/fore) "aor" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fore) @@ -773,11 +773,11 @@ "aoS" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Security"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/main) "aoT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/maintenance/fore) "aoU" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aoV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fore) +"aoV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore) "aoW" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fore) "aoX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) "aoY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fore) -"aoZ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fore) +"aoZ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore) "apa" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "1;4;38;12"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) "apb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "apc" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) @@ -791,7 +791,7 @@ "apk" = (/turf/simulated/floor/plating,/area/maintenance/starboard) "apl" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/starboard) "apm" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt{desc = "Can hold quite a lot of stuff."; name = "mutli-belt"},/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plating,/area/maintenance/starboard) -"apn" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboard) +"apn" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) "apo" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb2,/obj/item/weapon/reagent_containers/food/drinks/beer{desc = "Takes you to a whole new level of thinking."; name = "Meta-Cider"},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) "app" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/engine/gravity_generator) "apq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/engine/gravity_generator) @@ -800,7 +800,7 @@ "apt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/engine/gravity_generator) "apu" = (/turf/simulated/wall/r_wall,/area/maintenance/auxsolarstarboard) "apv" = (/obj/machinery/power/solar_control{id = "forestarboard"; name = "Fore Starboard Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"apw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarstarboard) +"apw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/auxsolarstarboard) "apx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "apy" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/space) "apz" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Disposals"},/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 2; id = "garbage"},/obj/machinery/door/window/northright{dir = 2; name = "delivery door"; pixel_y = 0; req_access_txt = "31"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/disposal) @@ -809,7 +809,7 @@ "apC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "apD" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "apE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"apF" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"apF" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "apG" = (/obj/machinery/light_construct/small{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "apH" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "apI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -835,43 +835,43 @@ "aqc" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/storage/secure/briefcase,/turf/simulated/floor/plasteel,/area/security/main) "aqd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/security/main) "aqe" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/plasteel,/area/security/main) -"aqf" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/box/teargas,/obj/machinery/button/door{id = "armory"; name = "Armory Shutters"; pixel_x = 28; pixel_y = 0; req_access_txt = "3"},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"aqf" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/box/teargas,/obj/machinery/button/door{id = "armory"; name = "Armory Shutters"; pixel_x = 28; pixel_y = 0; req_access_txt = "3"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "aqg" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel,/area/security/main) "aqh" = (/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/camera{c_tag = "Security - Office - Starboard"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/main) "aqi" = (/turf/simulated/wall/r_wall,/area/security/main) "aqj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fore) -"aqk" = (/obj/structure/closet/lasertag/red,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"aql" = (/obj/structure/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/tie/red,/obj/item/clothing/head/soft/red,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"aqm" = (/obj/structure/rack,/obj/item/clothing/under/color/blue,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/tie/blue,/obj/item/clothing/head/soft/blue,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"aqn" = (/obj/structure/closet/lasertag/blue,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aqk" = (/obj/structure/closet/lasertag/red,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aql" = (/obj/structure/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/tie/red,/obj/item/clothing/head/soft/red,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aqm" = (/obj/structure/rack,/obj/item/clothing/under/color/blue,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/tie/blue,/obj/item/clothing/head/soft/blue,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aqn" = (/obj/structure/closet/lasertag/blue,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aqo" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aqp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aqq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"aqr" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -26},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room - Aft"; dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"aqs" = (/obj/machinery/vending/coffee,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"aqt" = (/obj/machinery/light,/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) -"aqu" = (/obj/machinery/vending/cigarette,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aqr" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -26},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room - Aft"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aqs" = (/obj/machinery/vending/coffee,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aqt" = (/obj/machinery/light,/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) +"aqu" = (/obj/machinery/vending/cigarette,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aqv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aqw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"}) "aqy" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/starboard) -"aqz" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) +"aqz" = (/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) "aqA" = (/obj/item/device/mmi{name = "man-machine interface"},/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) "aqB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/gravity_generator) -"aqC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) -"aqD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) -"aqE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) -"aqF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) +"aqC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4; initialize_directions = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) +"aqD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) +"aqE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) +"aqF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) "aqG" = (/obj/structure/bed/stool{pixel_y = 8},/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) -"aqH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) +"aqH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "aqI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "aqJ" = (/obj/structure/lattice,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/space,/area/space) "aqK" = (/obj/machinery/space_heater,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aqL" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aqM" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aqN" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aqO" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHEAST)"; icon_state = "warnplate"; dir = 5},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aqP" = (/obj/machinery/space_heater,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aqL" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aqM" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aqN" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aqO" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aqP" = (/obj/machinery/space_heater,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aqQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{dir = 1; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aqR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 1; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aqS" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -881,7 +881,7 @@ "aqW" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aqX" = (/obj/machinery/light_construct/small,/obj/item/weapon/toolbox_tiles_sensor,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aqY" = (/obj/item/weapon/vending_refill/cigarette,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aqZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aqZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "ara" = (/obj/structure/closet/crate,/obj/item/clothing/gloves/color/fyellow,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "arb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "arc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -916,18 +916,18 @@ "arF" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/main) "arG" = (/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in."; pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table/wood,/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/main) "arH" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/turf/simulated/floor/plating,/area/maintenance/fore) -"arI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fore) +"arI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) "arJ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fore) "arK" = (/turf/simulated/wall,/area/crew_quarters/sleep) "arL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area"; req_access_txt = "0"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "arM" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 5; health = 120; icon_state = "twindow"; reinf = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/crew_quarters/sleep) "arN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "arO" = (/obj/structure/closet,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"arP" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboard) +"arP" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) "arQ" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) "arR" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) "arS" = (/obj/structure/rack,/obj/item/clothing/suit/poncho,/obj/item/clothing/head/sombrero,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) -"arT" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"arT" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "arU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/starboard) "arV" = (/obj/structure/rack,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/starboard) "arW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) @@ -935,22 +935,22 @@ "arY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) "arZ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) "asa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/power/terminal,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/gravity_generator) -"asb" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/bed/chair/office/light,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/gravity_generator) -"asc" = (/obj/machinery/power/apc{dir = 8; name = "Fore Starboard Solar APC"; pixel_x = -25; pixel_y = 3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/auxsolarstarboard) -"asd" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/maintenance/auxsolarstarboard) +"asb" = (/obj/machinery/firealarm{dir = 4; pixel_x = 28},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/bed/chair/office/light,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/gravity_generator) +"asc" = (/obj/machinery/power/apc{dir = 8; name = "Fore Starboard Solar APC"; pixel_x = -25; pixel_y = 3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/auxsolarstarboard) +"asd" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/auxsolarstarboard) "ase" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "asf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "asg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/light,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "ash" = (/obj/machinery/door/airlock/glass{name = "space-bridge access"},/obj/machinery/button/door{id = "supplybridge"; name = "Shuttle Bay Space Bridge Control"; pixel_x = 0; pixel_y = 27; req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"asi" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"asi" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "asj" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "ask" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"asl" = (/obj/machinery/door/airlock/glass{name = "space-bridge access"},/obj/machinery/button/door{id = "supplybridge"; name = "Shuttle Bay Space Bridge Control"; pixel_x = 0; pixel_y = 27; req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"asm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/light,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"asl" = (/obj/machinery/door/airlock/glass{name = "space-bridge access"},/obj/machinery/button/door{id = "supplybridge"; name = "Shuttle Bay Space Bridge Control"; pixel_x = 0; pixel_y = 27; req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"asm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/light,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "asn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aso" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Supply Bay Bridge Access"; req_access_txt = "0"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "asp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"asq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"asq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "asr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "ass" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "ast" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -987,7 +987,7 @@ "asY" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/table/wood,/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1424; listening = 1; name = "Interrogation Intercom"; pixel_x = 0; pixel_y = -31},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/main) "asZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fore) "ata" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fore) -"atb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/maintenance/fore) +"atb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/fore) "atc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fore) "atd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/item/weapon/lighter,/turf/simulated/floor/wood,/area/crew_quarters/sleep) "ate" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{pixel_y = 23},/obj/item/clothing/under/assistantformal,/turf/simulated/floor/wood,/area/crew_quarters/sleep) @@ -999,21 +999,21 @@ "atk" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/machinery/button/door{id = "Cabin4"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "atl" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/alarm{pixel_y = 23},/obj/item/clothing/under/suit_jacket/burgundy,/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "atm" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"atn" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"atn" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "ato" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/starboard) "atp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "atq" = (/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Room"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) "atr" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) -"ats" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) -"att" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"ats" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) +"att" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "atu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Fore Starboard Solar Access"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "atv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/auxsolarstarboard) "atw" = (/turf/simulated/wall/r_wall,/area/maintenance/starboard) "atx" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/starboard) "aty" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance_hatch{name = "Supply Bay Bridge Access"; req_access_txt = "0"; req_one_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"atz" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"atA" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"atB" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"atz" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"atA" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"atB" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "atC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "atD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "atE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -1024,7 +1024,7 @@ "atJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore) "atK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fore) "atL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;63"},/turf/simulated/floor/plating,/area/maintenance/fore) -"atM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/maintenance/fore) +"atM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/fore) "atN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) "atO" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) "atP" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/fore) @@ -1050,9 +1050,9 @@ "auj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/main) "auk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/main) "aul" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 5; health = 120; icon_state = "twindow"; reinf = 0},/turf/simulated/floor/plating,/area/security/main) -"aum" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fore) +"aum" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore) "aun" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"auo" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fore) +"auo" = (/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore) "aup" = (/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep) "auq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/sleep) "aur" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/wood,/area/crew_quarters/sleep) @@ -1064,7 +1064,7 @@ "aux" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "auy" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "auz" = (/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"auA" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) +"auA" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) "auB" = (/obj/structure/closet/crate/hydroponics,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) "auC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/starboard) "auD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -1082,13 +1082,13 @@ "auP" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "auQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "auR" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"auS" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"auS" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "auT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "auU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "auV" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 5; health = 120; icon_state = "twindow"; reinf = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"auW" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"auW" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "auX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"auY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"auY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "auZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/fore) "ava" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/fore) "avb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/fore) @@ -1099,7 +1099,7 @@ "avg" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/security/brig) "avh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plasteel,/area/security/brig) "avi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/security/brig) -"avj" = (/obj/machinery/photocopier,/obj/machinery/power/apc{dir = 4; name = "Head of Security's Office APC"; pixel_x = 24},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/button/door{id = "hosprivacy"; name = "Privacy Shutters Control"; pixel_x = 26; pixel_y = -26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/security/hos) +"avj" = (/obj/machinery/photocopier,/obj/machinery/power/apc{dir = 4; name = "Head of Security's Office APC"; pixel_x = 24},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/button/door{id = "hosprivacy"; name = "Privacy Shutters Control"; pixel_x = 26; pixel_y = -26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/security/hos) "avk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/security/brig) "avl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/security/brig) "avm" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/security/brig) @@ -1119,7 +1119,7 @@ "avA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) "avB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/sleep) "avC" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/starboard) -"avD" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"avD" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "avE" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/starboard) "avF" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) "avG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; dir = 1; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/starboard) @@ -1130,23 +1130,23 @@ "avL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/starboard) "avM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; dir = 1; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) "avN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) -"avO" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) -"avP" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) -"avQ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"avO" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) +"avP" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) +"avQ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "avR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/starboard) "avS" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/starboard) "avT" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/starboard) "avU" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plating/airless,/area/space) "avV" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"avW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"avX" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"avY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"avW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"avX" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"avY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "avZ" = (/obj/item/hand_labeler_refill,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "awa" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "awb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "awc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;50"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "awd" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"awe" = (/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"awe" = (/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "awf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "awg" = (/obj/structure/grille,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/labor) "awh" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) @@ -1160,7 +1160,7 @@ "awp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/turf/simulated/floor/plasteel,/area/security/brig) "awq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "awr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) -"aws" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/plasteel,/area/security/brig) +"aws" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel,/area/security/brig) "awt" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "awu" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "awv" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; health = 45; maxhealth = 45; name = "Officer Beepsky"},/turf/simulated/floor/plasteel,/area/security/brig) @@ -1190,7 +1190,7 @@ "awT" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "Cabin5"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/sleep) "awU" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/table/wood,/obj/item/weapon/paper,/turf/simulated/floor/wood,/area/crew_quarters/sleep) "awV" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"awW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"awW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "awX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Foyer"; req_access_txt = "10"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/gravity_generator) "awY" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/starboard) "awZ" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -1249,23 +1249,23 @@ "aya" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/crew_quarters/sleep) "ayb" = (/obj/item/weapon/caution,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) "ayc" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/starboard) -"ayd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"ayd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "aye" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "ayf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) -"ayg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"ayg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "ayh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) "ayi" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/starboard) "ayj" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Engineering"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/starboard) "ayk" = (/obj/machinery/door/window/southright{dir = 4; name = "Engineering Deliveries"; req_access_txt = "10"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "ayl" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) "aym" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"ayn" = (/obj/machinery/light_switch{pixel_x = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (WEST)"},/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) +"ayn" = (/obj/machinery/light_switch{pixel_x = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"},/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) "ayo" = (/turf/simulated/wall/r_wall,/area/engine/engineering) "ayp" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engine/engineering) -"ayq" = (/obj/structure/grille,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"ayr" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"ays" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"ayt" = (/obj/structure/grille,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"ayq" = (/obj/structure/grille,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"ayr" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"ays" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"ayt" = (/obj/structure/grille,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) "ayu" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) "ayv" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass{amount = 10},/obj/item/stack/rods,/turf/simulated/floor/plating/airless,/area/space) "ayw" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/mining) @@ -1299,9 +1299,9 @@ "ayY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access = null; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel,/area/security/detectives_office) "ayZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "detective_shutters"; name = "detective's office shutters"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/detectives_office) "aza" = (/turf/simulated/wall,/area/security/detectives_office) -"azb" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) +"azb" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "azc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/alarm{pixel_y = 26},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) -"azd" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) +"azd" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "aze" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "azf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "azg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/sleep) @@ -1311,14 +1311,14 @@ "azk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engineering) "azl" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) "azm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) -"azn" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) -"azo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/light/small{dir = 2},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) -"azp" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"azn" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/engine/engineering) +"azo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/light/small{dir = 2},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) +"azp" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) "azq" = (/turf/simulated/floor/plating/airless,/area/engine/engineering) "azr" = (/obj/structure/cable,/obj/machinery/power/emitter{anchored = 1; state = 2},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"azs" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"azt" = (/obj/structure/grille,/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"azu" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"azs" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"azt" = (/obj/structure/grille,/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"azu" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) "azv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/engine/engineering) "azw" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/space) "azx" = (/obj/item/stack/cable_coil,/turf/simulated/floor/plating/airless,/area/space) @@ -1365,19 +1365,19 @@ "aAm" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/safe{pixel_x = 32},/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/item/weapon/restraints/handcuffs,/obj/machinery/button/door{id = "detective_shutters"; name = "detective's office shutters control"; pixel_x = 0; pixel_y = 26; req_access_txt = "4"},/turf/simulated/floor/carpet,/area/security/detectives_office) "aAn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fore) "aAo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aAp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fore) +"aAp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore) "aAq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aAr" = (/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) +"aAr" = (/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "aAs" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) -"aAt" = (/obj/structure/mirror{pixel_x = 28},/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) +"aAt" = (/obj/structure/mirror{pixel_x = 28},/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "aAu" = (/obj/machinery/washing_machine,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/sleep) "aAv" = (/obj/structure/table,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2; pixel_y = 0},/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 28},/obj/item/clothing/tie/waistcoat,/obj/item/clothing/suit/toggle/lawyer/black,/obj/item/clothing/under/suit_jacket/red,/obj/item/clothing/tie/black,/obj/item/clothing/under/lawyer/blacksuit,/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/sleep) "aAw" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/sleep) -"aAx" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) +"aAx" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "aAy" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "aAz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "aAA" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) -"aAB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"aAB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "aAC" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "aAD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) "aAE" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -1403,7 +1403,7 @@ "aAY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Shaft Miner"},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"}) "aAZ" = (/obj/machinery/button/door{id = "qm_mine_warehouse"; name = "Warehouse Door Control"; pixel_x = 24; pixel_y = 28; req_access_txt = "48"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "brown"},/area/quartermaster/miningdock{name = "\improper Mining Office"}) "aBa" = (/obj/machinery/door/poddoor/shutters{id = "qm_mine_warehouse"; name = "Warehouse Shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/miningdock{name = "\improper Mining Office"}) -"aBb" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/door{id = "qm_mine_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; pixel_y = 28; req_access_txt = "48"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/sorting{name = "\improper Warehouse"}) +"aBb" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/door{id = "qm_mine_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; pixel_y = 28; req_access_txt = "48"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/quartermaster/sorting{name = "\improper Warehouse"}) "aBc" = (/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) "aBd" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) "aBe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) @@ -1438,9 +1438,9 @@ "aBH" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fore) "aBI" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/fore) "aBJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fore) -"aBK" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) +"aBK" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "aBL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) -"aBM" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) +"aBM" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "aBN" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "aBO" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "aBP" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small{dir = 1},/obj/machinery/power/apc{dir = 1; name = "Dormitories APC"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/sleep) @@ -1448,7 +1448,7 @@ "aBR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "aBS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/pods{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "aBT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"aBU" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/flora/kirbyplants{icon_state = "plant-20"; layer = 4.1; pixel_y = 3; tag = "icon-plant-20"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) +"aBU" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/flora/kirbyplants{icon_state = "plant-20"; layer = 4.1; pixel_y = 3},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) "aBV" = (/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) "aBW" = (/obj/structure/dispenser,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) "aBX" = (/obj/machinery/camera{c_tag = "Engineering - Storage"; dir = 2; network = list("SS13")},/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) @@ -1456,11 +1456,11 @@ "aBZ" = (/turf/simulated/wall,/area/engine/engineering) "aCa" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) "aCb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"aCc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/engine/engineering) +"aCc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/engine/engineering) "aCd" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) "aCe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) -"aCf" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) -"aCg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) +"aCf" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) +"aCg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) "aCh" = (/obj/machinery/camera/emp_proof{c_tag = "Fore Arm - Near"; dir = 4; network = list("Singulo")},/turf/space,/area/space) "aCi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aCj" = (/obj/item/weapon/ore/silver,/obj/item/weapon/ore/silver,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/quartermaster/miningdock{name = "\improper Mining Office"}) @@ -1518,10 +1518,10 @@ "aDj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) "aDk" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) "aDl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aDm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aDn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) -"aDo" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) -"aDp" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) +"aDm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aDn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) +"aDo" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) +"aDp" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) "aDq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) "aDr" = (/turf/simulated/wall,/area/construction) "aDs" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plating,/area/construction) @@ -1565,7 +1565,7 @@ "aEe" = (/obj/machinery/light/small,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -26},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) "aEf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) "aEg" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"aEh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fore) +"aEh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) "aEi" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/machinery/button/door{id = "Toilet3"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "aEj" = (/obj/machinery/door/airlock{id_tag = "Toilet3"; name = "Unit 3"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) "aEk" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) @@ -1592,12 +1592,12 @@ "aEF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Storage"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) "aEG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engineering) "aEH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aEI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"; tag = "icon-warningcorner (EAST)"},/area/engine/engineering) +"aEI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"},/area/engine/engineering) "aEJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) -"aEK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) -"aEL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/engineering) +"aEK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) +"aEL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/engineering) "aEM" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/construction) -"aEN" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aEN" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aEO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aEP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aEQ" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/mining) @@ -1614,7 +1614,7 @@ "aFb" = (/obj/structure/closet/crate/internals,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) "aFc" = (/obj/machinery/power/apc{dir = 4; name = "Warehouse APC"; pixel_x = 27; pixel_y = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/sorting{name = "\improper Warehouse"}) "aFd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) -"aFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/construction/Storage{name = "Storage Wing"}) +"aFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/construction/Storage{name = "Storage Wing"}) "aFf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) "aFg" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) "aFh" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) @@ -1661,12 +1661,12 @@ "aFW" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aFX" = (/obj/structure/closet/wardrobe/engineering_yellow,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aFY" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"aFZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) -"aGa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/crowbar,/obj/item/weapon/wirecutters,/obj/item/stack/cable_coil,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) +"aFZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) +"aGa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/crowbar,/obj/item/weapon/wirecutters,/obj/item/stack/cable_coil,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aGb" = (/obj/machinery/field/generator{anchored = 1; state = 2},/turf/simulated/floor/plating/airless,/area/space) "aGc" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/space) "aGd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/construction) -"aGe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aGe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aGf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aGg" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Mining"; departmentType = 0; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{dir = 10; icon_state = "brown"},/area/quartermaster/miningdock{name = "\improper Mining Office"}) "aGh" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plasteel{dir = 2; icon_state = "brown"},/area/quartermaster/miningdock{name = "\improper Mining Office"}) @@ -1680,7 +1680,7 @@ "aGp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) "aGq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) "aGr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) -"aGs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Vault Storage"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTHEAST)"; icon_state = "vault"; dir = 5},/area/construction/Storage{name = "Storage Wing"}) +"aGs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Vault Storage"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/construction/Storage{name = "Storage Wing"}) "aGt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) "aGu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) "aGv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/construction/Storage{name = "Storage Wing"}) @@ -1739,14 +1739,14 @@ "aHw" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engineering) "aHx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plasteel,/area/engine/engineering) "aHy" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = 23},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"aHz" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) +"aHz" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) "aHA" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engine/engineering) "aHB" = (/obj/item/weapon/wirecutters,/obj/structure/lattice,/turf/space,/area/space) -"aHC" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/construction) +"aHC" = (/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/construction) "aHD" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel,/area/construction) "aHE" = (/obj/machinery/light_construct{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel,/area/construction) "aHF" = (/turf/simulated/floor/plating,/area/construction) -"aHG" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/construction) +"aHG" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/construction) "aHH" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel,/area/construction) "aHI" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plasteel,/area/construction) "aHJ" = (/obj/structure/closet/toolcloset,/obj/machinery/light_construct{dir = 1},/turf/simulated/floor/plasteel,/area/construction) @@ -1777,7 +1777,7 @@ "aIi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/hallway/primary/fore) "aIj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) "aIk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/hallway/primary/fore) -"aIl" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_sec (NORTH)"},/turf/simulated/wall,/area/crew_quarters/courtroom) +"aIl" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8},/turf/simulated/wall,/area/crew_quarters/courtroom) "aIm" = (/turf/simulated/wall,/area/crew_quarters/courtroom) "aIn" = (/turf/simulated/wall/r_wall,/area/crew_quarters/courtroom) "aIo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Court Cell"; req_access = null; req_access_txt = "63"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) @@ -1790,38 +1790,38 @@ "aIv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central"; location = "14.8-Dorms-Lockers"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/sleep) "aIw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "aIx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/sleep) -"aIy" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/sleep) -"aIz" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/sleep) -"aIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/sleep) +"aIy" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/sleep) +"aIz" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/sleep) +"aIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/sleep) "aIB" = (/obj/machinery/button/door{id = "Cabin7"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/sleep) "aIC" = (/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep) "aID" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 29; pixel_y = 1},/obj/item/weapon/paper,/turf/simulated/floor/wood,/area/crew_quarters/sleep) "aIE" = (/obj/structure/closet,/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"aIF" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboard) +"aIF" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) "aIG" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engineering) "aIH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) "aII" = (/obj/structure/table,/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = 25; pixel_y = 0; req_access_txt = "11"},/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aIJ" = (/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "11"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/engine/engineering) -"aIK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"aIL" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"aIM" = (/obj/machinery/camera/emp_proof{c_tag = "Engineering - Particle Accelerator"; dir = 2; network = list("Singulo","SS13")},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"aIN" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHEAST)"; icon_state = "warnplate"; dir = 5},/area/engine/engineering) +"aIK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"aIL" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"aIM" = (/obj/machinery/camera/emp_proof{c_tag = "Engineering - Particle Accelerator"; dir = 2; network = list("Singulo","SS13")},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"aIN" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/engine/engineering) "aIO" = (/turf/simulated/floor/plasteel,/area/construction) "aIP" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/simulated/floor/plasteel,/area/construction) "aIQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/storage) "aIR" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 23},/obj/machinery/status_display{density = 0; pixel_x = 0; pixel_y = 32; supply_display = 1},/obj/machinery/conveyor{dir = 1; id = "QMLoad2"; movedir = 2},/turf/simulated/floor/plating,/area/quartermaster/storage) -"aIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"aIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/quartermaster/storage) "aIT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aIU" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aIV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Cargo Bay - Fore"; dir = 2; network = list("SS13")},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/quartermaster/storage) "aIW" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/quartermaster/storage) "aIX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aIY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"; tag = "icon-warningcorner (EAST)"},/area/quartermaster/storage) +"aIY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"},/area/quartermaster/storage) "aIZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/quartermaster/storage) -"aJa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/quartermaster/storage) +"aJa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/quartermaster/storage) "aJb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_mining{glass = 0; name = "Cargo Bay"; opacity = 1; req_access_txt = "0"; req_one_access_txt = "48;50"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/construction/Storage{name = "Storage Wing"}) "aJc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/construction/Storage{name = "Storage Wing"}) -"aJd" = (/obj/machinery/camera{c_tag = "Cargo Bay - Storage Wing Entrance"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/construction/Storage{name = "Storage Wing"}) +"aJd" = (/obj/machinery/camera{c_tag = "Cargo Bay - Storage Wing Entrance"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/construction/Storage{name = "Storage Wing"}) "aJe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/power/apc{dir = 2; name = "Storage Wing APC"; pixel_x = 0; pixel_y = -27},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "browncorner"},/area/construction/Storage{name = "Storage Wing"}) "aJf" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "browncorner"},/area/construction/Storage{name = "Storage Wing"}) "aJg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "browncorner"},/area/construction/Storage{name = "Storage Wing"}) @@ -1851,7 +1851,7 @@ "aJE" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/requests_console{department = "Law office"; pixel_x = 0; pixel_y = 32},/obj/machinery/newscaster{pixel_x = -31; pixel_y = 0},/turf/simulated/floor/wood,/area/lawoffice) "aJF" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/pen/red,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/lawoffice) "aJG" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/wood,/area/lawoffice) -"aJH" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Law Office APC"; pixel_y = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/wood,/area/lawoffice) +"aJH" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Law Office APC"; pixel_y = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/simulated/floor/wood,/area/lawoffice) "aJI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/lawoffice) "aJJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/fore) "aJK" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/effect/landmark{name = "blobstart"},/obj/machinery/button/door{id = "Toilet1"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"}) @@ -1868,11 +1868,11 @@ "aJV" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Engineering - Secure Storage"; dir = 2; network = list("SS13")},/turf/simulated/floor/plating,/area/engine/engineering) "aJW" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engine/engineering) "aJX" = (/obj/structure/table,/obj/item/weapon/airlock_painter,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"aJY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/engine/engineering) +"aJY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/engine/engineering) "aJZ" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) "aKa" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) -"aKb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) -"aKc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) +"aKb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) +"aKc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/engine/engineering) "aKd" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plating,/area/engine/engineering) "aKe" = (/turf/simulated/floor/plating,/area/engine/engineering) "aKf" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) @@ -1883,7 +1883,7 @@ "aKk" = (/obj/item/weapon/crowbar,/turf/space,/area/space) "aKl" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel,/area/construction) "aKm" = (/obj/machinery/door/airlock/engineering{name = "Arrivals Expansion Area"; req_access_txt = "32"},/turf/simulated/floor/plating,/area/construction) -"aKn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aKn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aKo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/quartermaster/storage) "aKp" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/conveyor{dir = 1; id = "QMLoad2"; movedir = 2},/turf/simulated/floor/plating,/area/quartermaster/storage) "aKq" = (/obj/machinery/conveyor_switch/oneway{convdir = 1; id = "QMLoad2"; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/quartermaster/storage) @@ -1891,8 +1891,8 @@ "aKs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aKt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aKu" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aKv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/quartermaster/storage) -"aKw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"aKv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/quartermaster/storage) +"aKw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/storage) "aKx" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #1"},/obj/machinery/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window/northleft,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) "aKy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;63;48;50"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aKz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;63;48;50"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -1912,7 +1912,7 @@ "aKN" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) "aKO" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) "aKP" = (/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 5},/area/crew_quarters/courtroom) -"aKQ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) +"aKQ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) "aKR" = (/obj/machinery/door/window/southleft{name = "Court Cell"; req_access_txt = "2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) "aKS" = (/obj/effect/landmark/start{name = "Lawyer"},/obj/structure/bed/chair/office/dark{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/wood,/area/lawoffice) "aKT" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/turf/simulated/floor/wood,/area/lawoffice) @@ -1935,11 +1935,11 @@ "aLk" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plating,/area/engine/engineering) "aLl" = (/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plating,/area/engine/engineering) "aLm" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "Secure Storage"},/turf/simulated/floor/plating,/area/engine/engineering) -"aLn" = (/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/engine/engineering) +"aLn" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/engine/engineering) "aLo" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) "aLp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/engine/engineering) "aLq" = (/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the singularity engine safely."; dir = 8; name = "Singularity Monitor"; network = list("Singulo"); pixel_x = 32; pixel_y = 0},/obj/machinery/camera{c_tag = "Engineering - Central"; dir = 8; network = list("SS13")},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) -"aLr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/light{dir = 8},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) +"aLr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light{dir = 8},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) "aLs" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) "aLt" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) "aLu" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) @@ -1950,7 +1950,7 @@ "aLz" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) "aLA" = (/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/construction) "aLB" = (/obj/item/weapon/crowbar/red,/turf/simulated/floor/plating,/area/construction) -"aLC" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/construction) +"aLC" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/construction) "aLD" = (/obj/machinery/light_construct{dir = 4},/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/plasteel,/area/construction) "aLE" = (/obj/machinery/door/poddoor{density = 1; icon_state = "closed"; id = "QMLoaddoor2"; name = "Supply Dock Loading Door"; opacity = 1},/obj/machinery/conveyor{dir = 4; id = "QMLoad2"; movedir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) "aLF" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad2"; movedir = 8},/turf/simulated/floor/plating,/area/quartermaster/storage) @@ -1962,20 +1962,20 @@ "aLL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) "aLM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) "aLN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aLO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"aLO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/storage) "aLP" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #2"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) "aLQ" = (/obj/machinery/door/window/northleft{dir = 8; name = "MuleBot Supply Access"; req_access_txt = "50"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aLR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTHWEST)"; icon_state = "warnplate"; dir = 9},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aLR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aLS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"aLU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aLU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aLV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aLW" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/device/gps{gpstag = "AUX0"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "brown"},/area/storage/primary) "aLX" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) "aLY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) "aLZ" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 5},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) "aMa" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) -"aMb" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 1},/obj/structure/sign/poster{icon_state = "poster9"; pixel_y = 31; tag = "icon-poster9"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) +"aMb" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 1},/obj/structure/sign/poster{icon_state = "poster9"; pixel_y = 31},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) "aMc" = (/obj/machinery/vending/tool,/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) "aMd" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 5; icon_state = "brown"},/area/storage/primary) "aMe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/storage/primary) @@ -1983,7 +1983,7 @@ "aMg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) "aMh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/porta_turret{ai = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "aMi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/flasher{pixel_x = 0; pixel_y = 24; id = "AI"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"aMj" = (/obj/structure/sign/kiddieplaque{pixel_y = 32},/obj/structure/table,/obj/machinery/camera/motion{c_tag = "AI Upload Chamber - Fore"; network = list("SS13","RD","AIUpload")},/obj/structure/flora/kirbyplants{icon_state = "plant-07"; name = "Photosynthetic Potted plant"; pixel_y = 10; tag = "icon-plant-07"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"aMj" = (/obj/structure/sign/kiddieplaque{pixel_y = 32},/obj/structure/table,/obj/machinery/camera/motion{c_tag = "AI Upload Chamber - Fore"; network = list("SS13","RD","AIUpload")},/obj/structure/flora/kirbyplants{icon_state = "plant-07"; name = "Photosynthetic Potted plant"; pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "aMk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "aMl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/porta_turret{ai = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "aMm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) @@ -1998,10 +1998,10 @@ "aMv" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/clothing/glasses/sunglasses/big,/turf/simulated/floor/wood,/area/lawoffice) "aMw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/lawoffice) "aMx" = (/obj/machinery/photocopier,/obj/machinery/camera{c_tag = "Law Office"; dir = 8; network = list("SS13")},/turf/simulated/floor/wood,/area/lawoffice) -"aMy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aMz" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aMA" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light/small{dir = 1},/obj/item/clothing/under/assistantformal,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aMB" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) +"aMy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aMz" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aMA" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light/small{dir = 1},/obj/item/clothing/under/assistantformal,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aMB" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) "aMC" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aMD" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aME" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/locker) @@ -2017,16 +2017,16 @@ "aMO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 5},/area/hallway/secondary/construction{name = "\improper Garden"}) "aMP" = (/obj/machinery/door/firedoor/border_only{density = 1; dir = 8; icon_state = "door_closed"; name = "Animal Pen A"; opacity = 1},/turf/simulated/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) "aMQ" = (/turf/simulated/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aMR" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"aMR" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "aMS" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engine/engineering) "aMT" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/engine/engineering) -"aMU" = (/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/engine/engineering) -"aMV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aMW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"; tag = "icon-warningcorner (EAST)"},/area/engine/engineering) -"aMX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/engineering) -"aMY" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) -"aMZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) -"aNa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) +"aMU" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/engine/engineering) +"aMV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/engine/engineering) +"aMW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"},/area/engine/engineering) +"aMX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/engineering) +"aMY" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) +"aMZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) +"aNa" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating,/area/engine/engineering) "aNb" = (/obj/machinery/particle_accelerator/control_box,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/engine/engineering) "aNc" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/engine/engineering) "aNd" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) @@ -2037,14 +2037,14 @@ "aNi" = (/obj/structure/window/reinforced,/turf/space,/area/space) "aNj" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/space) "aNk" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plating,/area/construction) -"aNl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aNl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aNm" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/quartermaster/storage) "aNn" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/quartermaster/storage) "aNo" = (/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/storage) "aNp" = (/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aNq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "aNr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"aNs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"aNs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/storage) "aNt" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #3"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/bot/mulebot{home_destination = "QM #3"; suffix = "#3"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) "aNu" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "brown"},/area/storage/primary) "aNv" = (/turf/simulated/floor/plasteel,/area/storage/primary) @@ -2074,7 +2074,7 @@ "aNT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aNU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aNV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) -"aNW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) +"aNW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aNX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aNY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aNZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.5-Recreation"; location = "14.3-Lockers-Dorms"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/crew_quarters/locker) @@ -2091,20 +2091,20 @@ "aOk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aOl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engineering) "aOm" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3; pixel_y = 4},/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_x = -2; pixel_y = 3},/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = 25; pixel_y = 0; req_access_txt = "11"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"aOn" = (/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "11"},/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/engine/engineering) -"aOo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/engine/engineering) +"aOn" = (/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "11"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/engine/engineering) +"aOo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/engine/engineering) "aOp" = (/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/engine/engineering) -"aOq" = (/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/engine/engineering) +"aOq" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/engine/engineering) "aOr" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) "aOs" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aOt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aOu" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"aOv" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/security/warden) +"aOv" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/security/warden) "aOw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aOx" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/space,/area/space) -"aOy" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/shuttle/pod_1) +"aOy" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/pod_1) "aOz" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_1) -"aOA" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/shuttle/pod_1) +"aOA" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/pod_1) "aOB" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/construction) "aOC" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/construction) "aOD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/construction) @@ -2116,8 +2116,8 @@ "aOJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) "aOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) "aOL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"aOM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"; tag = "icon-warningcorner (EAST)"},/area/quartermaster/storage) -"aON" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"aOM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"},/area/quartermaster/storage) +"aON" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/storage) "aOO" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window/southleft,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) "aOP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/qm) "aOQ" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "brown"},/area/quartermaster/qm) @@ -2183,7 +2183,7 @@ "aPY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/turf/space,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aPZ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/space,/area/space) "aQa" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"aQb" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/pod_1) +"aQb" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/pod_1) "aQc" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) "aQd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/construction) "aQe" = (/obj/machinery/light_construct{dir = 4},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plasteel,/area/construction) @@ -2231,20 +2231,20 @@ "aQU" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) "aQV" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) "aQW" = (/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) -"aQX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) -"aQY" = (/obj/machinery/computer/atmos_alert,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/engineering) -"aQZ" = (/obj/machinery/computer/station_alert,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/engineering) -"aRa" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/monitor{name = "Engineering Power Monitoring Console"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/engineering) +"aQX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) +"aQY" = (/obj/machinery/computer/atmos_alert,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/engineering) +"aQZ" = (/obj/machinery/computer/station_alert,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/engineering) +"aRa" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/monitor{name = "Engineering Power Monitoring Console"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/engineering) "aRb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/engine/engineering) "aRc" = (/obj/machinery/vending/engivend,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aRd" = (/obj/machinery/vending/tool,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aRe" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aRf" = (/obj/structure/closet/radiation,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aRg" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/black,/obj/item/weapon/extinguisher{pixel_x = 8},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) -"aRh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) -"aRi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/crowbar,/obj/item/stack/cable_coil,/obj/item/weapon/screwdriver,/obj/item/weapon/weldingtool,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) +"aRh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) +"aRi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/crowbar,/obj/item/stack/cable_coil,/obj/item/weapon/screwdriver,/obj/item/weapon/weldingtool,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aRj" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"aRk" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/construction) +"aRk" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/construction) "aRl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/construction) "aRm" = (/obj/structure/table,/obj/item/stack/cable_coil{amount = 5},/obj/item/device/flashlight,/turf/simulated/floor/plasteel,/area/construction) "aRn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -2279,7 +2279,7 @@ "aRQ" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) "aRR" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) "aRS" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"aRT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1; tag = "icon-plant-03"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) +"aRT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aRU" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aRV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aRW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/crew_quarters/locker) @@ -2304,27 +2304,27 @@ "aSp" = (/obj/machinery/door/firedoor/border_only{density = 1; dir = 8; icon_state = "door_closed"; name = "Animal Pen B"; opacity = 1},/turf/simulated/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) "aSq" = (/mob/living/simple_animal/cow{name = "Betsy"; real_name = "Betsy"},/turf/simulated/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) "aSr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/starboard) -"aSs" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/light{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -31},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) -"aSt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"aSu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) -"aSv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating,/area/engine/engineering) -"aSw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) -"aSx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"aSy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/engine/engineering) +"aSs" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/light{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -31},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) +"aSt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) +"aSu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) +"aSv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/engine/engineering) +"aSw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) +"aSx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) +"aSy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/engine/engineering) "aSz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) -"aSA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/disposalpipe/sortjunction{sortType = 5},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/engine/engineering) +"aSA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/disposalpipe/sortjunction{sortType = 5},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/engine/engineering) "aSB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) "aSC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"aSD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"aSE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) -"aSF" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/item/weapon/tank/internals/plasma,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) +"aSD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) +"aSE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) +"aSF" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/item/weapon/tank/internals/plasma,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) "aSG" = (/obj/machinery/camera/emp_proof{c_tag = "Aft Arm - Near"; dir = 4; network = list("Singulo")},/turf/space,/area/space) "aSH" = (/turf/simulated/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aSJ" = (/turf/simulated/wall,/area/hallway/secondary/entry{name = "Arrivals"}) -"aSK" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_1) +"aSK" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_1) "aSL" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod1"; name = "escape pod 1"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) -"aSM" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_1) +"aSM" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/pod_1) "aSN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/construction) "aSO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/construction) "aSP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/construction) @@ -2364,10 +2364,10 @@ "aTx" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/construction{name = "\improper Garden"}) "aTy" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/structure/table,/obj/machinery/light,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/construction{name = "\improper Garden"}) "aTz" = (/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_x = 0; pixel_y = 3},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) -"aTA" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/engine/engineering) +"aTA" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/engine/engineering) "aTB" = (/obj/machinery/power/terminal,/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) "aTC" = (/obj/machinery/power/terminal,/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/engineering) -"aTD" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/glass_engineering{name = "Power Monitoring"; req_access_txt = "32"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) +"aTD" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/glass_engineering{name = "Power Monitoring"; req_access_txt = "32"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) "aTE" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engineering) "aTF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) "aTG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -2375,14 +2375,14 @@ "aTI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) "aTJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) "aTK" = (/turf/simulated/floor/plasteel,/area/engine/engineering) -"aTL" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"aTM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) +"aTL" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) +"aTM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) "aTN" = (/obj/item/weapon/screwdriver,/obj/structure/lattice,/turf/space,/area/space) "aTO" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) "aTP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aTQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aTR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/space,/area/space) -"aTS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/hallway/secondary/entry{name = "Arrivals"}) +"aTS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/hallway/secondary/entry{name = "Arrivals"}) "aTT" = (/obj/machinery/light/small,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) "aTU" = (/turf/simulated/floor/plating{icon_state = "warnplate"},/area/hallway/secondary/entry{name = "Arrivals"}) "aTV" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"}) @@ -2434,8 +2434,8 @@ "aUP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aUQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aUR" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aUS" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/engineering) -"aUT" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/engineering) +"aUS" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/engineering) +"aUT" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/engineering,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/engineering) "aUU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/engine/engineering) "aUV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) "aUW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) @@ -2443,10 +2443,10 @@ "aUY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) "aUZ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) "aVa" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/camera{c_tag = "Engineering - Aft"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) -"aVb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/engine/engineering) +"aVb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/engine/engineering) "aVc" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) "aVd" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engineering) -"aVe" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/engine/engineering) +"aVe" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/engine/engineering) "aVf" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/space,/area/space) "aVg" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window{dir = 2; name = "MiniSat Walkway Access"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "aVh" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore Port"; dir = 8; network = list("MiniSat")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) @@ -2486,14 +2486,14 @@ "aVP" = (/turf/simulated/wall/r_wall,/area/hallway/primary/central) "aVQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/hallway/primary/central) "aVR" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"aVS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; icon_state = "control_stun"; name = "AI Upload turret control"; pixel_x = 0; pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_x = -24; pixel_y = 24},/obj/effect/landmark/start{name = "Cyborg"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "AI Upload Access APC"; pixel_x = 0; pixel_y = -27},/obj/machinery/light/small{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the AI Upload."; dir = 4; name = "AI Upload Monitor"; network = list("AIUpload"); pixel_x = -29; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHEAST)"; icon_state = "vault"; dir = 6},/area/turret_protected/ai_upload_foyer) -"aVT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/turret_protected/ai_upload_foyer) -"aVU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching areas on the MiniSat."; dir = 8; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 29; pixel_y = 0},/obj/machinery/camera/motion{c_tag = "AI Upload Foyer"; network = list("SS13","RD","AIUpload")},/obj/machinery/alarm{pixel_y = 26},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHWEST)"; icon_state = "vault"; dir = 10},/area/turret_protected/ai_upload_foyer) -"aVV" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0; tag = "icon-direction_eng (EAST)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (EAST)"},/turf/simulated/wall/r_wall,/area/hallway/primary/fore) +"aVS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; icon_state = "control_stun"; name = "AI Upload turret control"; pixel_x = 0; pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_x = -24; pixel_y = 24},/obj/effect/landmark/start{name = "Cyborg"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "AI Upload Access APC"; pixel_x = 0; pixel_y = -27},/obj/machinery/light/small{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the AI Upload."; dir = 4; name = "AI Upload Monitor"; network = list("AIUpload"); pixel_x = -29; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 6},/area/turret_protected/ai_upload_foyer) +"aVT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/turret_protected/ai_upload_foyer) +"aVU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching areas on the MiniSat."; dir = 8; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 29; pixel_y = 0},/obj/machinery/camera/motion{c_tag = "AI Upload Foyer"; network = list("SS13","RD","AIUpload")},/obj/machinery/alarm{pixel_y = 26},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 10},/area/turret_protected/ai_upload_foyer) +"aVV" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/turf/simulated/wall/r_wall,/area/hallway/primary/fore) "aVW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fore Primary Hallway"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/hallway/primary/fore) "aVX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fore Primary Hallway"},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) "aVY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fore Primary Hallway"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/hallway/primary/fore) -"aVZ" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"; tag = "icon-direction_evac"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8; tag = "icon-direction_med"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci"},/turf/simulated/wall,/area/crew_quarters/courtroom) +"aVZ" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8},/turf/simulated/wall,/area/crew_quarters/courtroom) "aWa" = (/obj/machinery/power/apc{cell_type = 2500; dir = 2; name = "Courtroom APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) "aWb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) "aWc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) @@ -2501,16 +2501,16 @@ "aWe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aWf" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/crew_quarters/locker) "aWg" = (/turf/simulated/wall,/area/crew_quarters/locker) -"aWh" = (/obj/structure/closet/wardrobe/black,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aWi" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aWj" = (/obj/structure/closet/wardrobe/white,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aWk" = (/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aWl" = (/obj/structure/closet/wardrobe/green,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aWm" = (/obj/machinery/vending/clothing,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) -"aWn" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/crew_quarters/locker) +"aWh" = (/obj/structure/closet/wardrobe/black,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aWi" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aWj" = (/obj/structure/closet/wardrobe/white,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aWk" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aWl" = (/obj/structure/closet/wardrobe/green,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aWm" = (/obj/machinery/vending/clothing,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) +"aWn" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/crew_quarters/locker) "aWo" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/starboard) "aWp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) -"aWq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboard) +"aWq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) "aWr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) "aWs" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aWt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/engineering) @@ -2527,13 +2527,13 @@ "aWE" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) "aWF" = (/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "aWG" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"aWH" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"aWH" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "aWI" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"aWJ" = (/obj/machinery/camera{c_tag = "AI Chamber - Fore"; dir = 2; network = list("RD")},/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"aWJ" = (/obj/machinery/camera{c_tag = "AI Chamber - Fore"; dir = 2; network = list("RD")},/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "aWK" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "aWL" = (/obj/machinery/porta_turret{ai = 1; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "aWM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"aWN" = (/obj/structure/flora/kirbyplants{icon_state = "plant-13"; layer = 4.1; tag = "icon-plant-13"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) +"aWN" = (/obj/structure/flora/kirbyplants{icon_state = "plant-13"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "aWO" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "aWP" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/obj/structure/bed/chair,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "aWQ" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) @@ -2544,7 +2544,7 @@ "aWV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "aWW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "aWX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"aWY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) +"aWY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) "aWZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitecorner"},/area/hallway/secondary/entry{name = "Arrivals"}) "aXa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "aXb" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{icon_state = "arrival"; dir = 5},/area/hallway/secondary/entry{name = "Arrivals"}) @@ -2562,13 +2562,13 @@ "aXn" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/primary) "aXo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) "aXp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/storage/primary) -"aXq" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) -"aXr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) -"aXs" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) +"aXq" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) +"aXr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) +"aXs" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) "aXt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"aXu" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Network Access"; req_access_txt = "19"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/turret_protected/ai_upload_foyer) +"aXu" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Network Access"; req_access_txt = "19"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/turret_protected/ai_upload_foyer) "aXv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"aXw" = (/obj/machinery/alarm{pixel_y = 23},/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1; tag = "icon-applebush"},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/hallway/primary/central) +"aXw" = (/obj/machinery/alarm{pixel_y = 23},/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/hallway/primary/central) "aXx" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/primary/central) "aXy" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/primary/central) "aXz" = (/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/hallway/primary/central) @@ -2578,22 +2578,22 @@ "aXD" = (/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/hallway/primary/central) "aXE" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/primary/central) "aXF" = (/obj/machinery/light{dir = 1},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/primary/central) -"aXG" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{dir = 5; icon_state = "neutral"},/area/hallway/primary/central) +"aXG" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{dir = 5; icon_state = "neutral"},/area/hallway/primary/central) "aXH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Courtroom"; opacity = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) "aXI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Crew Quarters Access"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aXJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Crew Quarters Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aXK" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/crew_quarters/locker) -"aXL" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) -"aXM" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) -"aXN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) +"aXL" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) +"aXM" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) +"aXN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) "aXO" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/starboard) "aXP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) "aXQ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/starboard) "aXR" = (/turf/simulated/wall,/area/storage/tech) "aXS" = (/turf/simulated/wall/r_wall,/area/engine/chiefs_office) -"aXT" = (/obj/structure/bookcase/manuals/engineering,/obj/machinery/keycard_auth{pixel_x = -25; pixel_y = 25},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/chiefs_office) -"aXU" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = 0; pixel_y = 32},/obj/machinery/computer/card/minor/ce,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/chiefs_office) -"aXV" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/engine/chiefs_office) +"aXT" = (/obj/structure/bookcase/manuals/engineering,/obj/machinery/keycard_auth{pixel_x = -25; pixel_y = 25},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/chiefs_office) +"aXU" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = 0; pixel_y = 32},/obj/machinery/computer/card/minor/ce,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/chiefs_office) +"aXV" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/computer/station_alert,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/engine/chiefs_office) "aXW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/chiefs_office) "aXX" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access_txt = "56"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/engine/chiefs_office) "aXY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/engine/engineering) @@ -2601,27 +2601,27 @@ "aYa" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/engine/engineering) "aYb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/engine/engineering) "aYc" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/engine/engineering) -"aYd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) -"aYe" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"aYd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) +"aYe" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/engine/engineering) "aYf" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/emitter{anchored = 1; dir = 1; state = 2},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aYg" = (/obj/machinery/light,/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"aYg" = (/obj/machinery/light,/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/engine/engineering) "aYh" = (/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aYi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aYj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aYk" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"aYl" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"aYl" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aYm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aYn" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/ai_status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aYo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"}) "aYp" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "aYq" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "aYr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"aYs" = (/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) +"aYs" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) "aYt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) "aYu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) -"aYv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner"; icon_state = "warningcorner"; dir = 2},/area/hallway/secondary/entry{name = "Arrivals"}) +"aYv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 2},/area/hallway/secondary/entry{name = "Arrivals"}) "aYw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"aYx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) +"aYx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) "aYy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) "aYz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) "aYA" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/camera{c_tag = "Arrivals - Fore Arm"; dir = 8; network = list("SS13")},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) @@ -2638,7 +2638,7 @@ "aYL" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Security Post - Cargo"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/supply{name = "Security Post - Cargo"}) "aYM" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/newscaster{hitstaken = 1; pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/supply{name = "Security Post - Cargo"}) "aYN" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint/supply{name = "Security Post - Cargo"}) -"aYO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"aYO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aYP" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/trash/popcorn,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aYQ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "aYR" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;63;48;50"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -2651,11 +2651,11 @@ "aYY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "aYZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "aZa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) -"aZb" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore - AI Upload"; dir = 2; network = list("SS13")},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'."; name = "\improper HIGH-POWER TURRETS AHEAD"; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) +"aZb" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore - AI Upload"; dir = 2; network = list("SS13")},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'."; name = "\improper HIGH-POWER TURRETS AHEAD"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) "aZc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/central) "aZd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/central) "aZe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/central) -"aZf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) +"aZf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) "aZg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central) "aZi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central) @@ -2674,7 +2674,7 @@ "aZv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "aZw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "aZx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"aZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"aZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "aZz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/starboard) "aZA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) "aZB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -2695,34 +2695,34 @@ "aZQ" = (/obj/structure/closet/radiation,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 32},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engineering) "aZR" = (/turf/simulated/wall,/area/security/checkpoint/engineering) "aZS" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/engine/engineering) -"aZT" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/plating/airless,/area/engine/engineering) -"aZU" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"aZT" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/engine/engineering) +"aZU" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/engine/engineering) "aZV" = (/obj/machinery/camera{c_tag = "AI Chamber - Port"; dir = 4; network = list("RD")},/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 4; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = -9; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/ai) -"aZW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"aZW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aZX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "AI Core shutters"; name = "AI core shutters"},/turf/simulated/floor/plating,/area/turret_protected/ai) -"aZY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"aZY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "aZZ" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/turret_protected/ai) "baa" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/wall,/area/hallway/secondary/entry{name = "Arrivals"}) "bab" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"}) "bac" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bad" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bae" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1; tag = "icon-plant-05"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) +"bae" = (/obj/structure/flora/kirbyplants{icon_state = "plant-05"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "baf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bag" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) +"bag" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) "bah" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bai" = (/obj/machinery/light_switch{pixel_x = -38},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) -"baj" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/storage) +"bai" = (/obj/machinery/light_switch{pixel_x = -38},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"},/area/quartermaster/storage) +"baj" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"},/area/quartermaster/storage) "bak" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/quartermaster/storage) "bal" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bam" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"ban" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"; tag = "icon-warningcorner (EAST)"},/area/quartermaster/storage) +"ban" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warningcorner"},/area/quartermaster/storage) "bao" = (/obj/machinery/camera{c_tag = "Cargo Bay - Aft"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/quartermaster/storage) "bap" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/quartermaster/storage) -"baq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/quartermaster/storage) +"baq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/quartermaster/storage) "bar" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/supply{name = "Security Post - Cargo"}) "bas" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;63;48;50"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bat" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bau" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bau" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bav" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "baw" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bax" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=3-Central-Port"; location = "2.2-Leaving-Storage"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) @@ -2750,10 +2750,10 @@ "baT" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/tools) "baU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/starboard) "baV" = (/turf/simulated/wall/r_wall,/area/storage/tech) -"baW" = (/obj/machinery/power/apc{dir = 8; name = "Tech Storage APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"baX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"baY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"baZ" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) +"baW" = (/obj/machinery/power/apc{dir = 8; name = "Tech Storage APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"baX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"baY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"baZ" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) "bba" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bbb" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -5; req_access_txt = "10"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 5; req_access_txt = "24"},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/engine/chiefs_office) "bbc" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/engine/chiefs_office) @@ -2761,21 +2761,21 @@ "bbe" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/paper/monitorkey,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/engine/chiefs_office) "bbf" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/engine/chiefs_office) "bbg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/engine/chiefs_office) -"bbh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) +"bbh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engineering) "bbi" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"bbj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) +"bbj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engineering) "bbk" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 30},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/checkpoint/engineering) "bbl" = (/obj/structure/table,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 29},/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/engineering) "bbm" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 5},/obj/item/weapon/pen,/obj/machinery/newscaster/security_unit{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/engineering) "bbn" = (/obj/machinery/door/airlock/external{name = "South Containment Arm Access"},/turf/simulated/floor/plating,/area/engine/engineering) -"bbo" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/engine/engineering) +"bbo" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/engine/engineering) "bbp" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = -10; pixel_y = 22},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = 0},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = -10; pixel_y = -25},/obj/machinery/door/window{base_state = "rightsecure"; dir = 4; health = 300; icon_state = "rightsecure"; layer = 4.1; name = "Secondary AI Core Access"; pixel_x = 4; req_access_txt = "16"},/turf/simulated/floor/greengrid,/area/turret_protected/ai) "bbq" = (/obj/machinery/hologram/holopad,/obj/machinery/flasher{id = "AI"; pixel_x = -25; pixel_y = -25},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/ai) -"bbr" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bbs" = (/obj/machinery/turretid{icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23},/obj/machinery/door/window{base_state = "leftsecure"; dir = 8; health = 300; icon_state = "leftsecure"; name = "Primary AI Core Access"; req_access_txt = "16"},/obj/machinery/newscaster/security_unit{pixel_x = 3; pixel_y = 33},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHEAST)"; icon_state = "vault"; dir = 6},/area/turret_protected/ai) -"bbt" = (/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 30; pixel_y = 30},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/flasher{id = "AI"; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/turret_protected/ai) -"bbu" = (/obj/machinery/door/window{base_state = "rightsecure"; dir = 4; health = 300; icon_state = "rightsecure"; name = "Primary AI Core Access"; req_access_txt = "16"},/obj/machinery/camera{c_tag = "AI Chamber - Core"; dir = 2; network = list("RD")},/turf/simulated/floor/plasteel{tag = "icon-vault (SOUTHWEST)"; icon_state = "vault"; dir = 10},/area/turret_protected/ai) -"bbv" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"bbr" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"bbs" = (/obj/machinery/turretid{icon_state = "control_stun"; name = "AI Chamber turret control"; pixel_x = 3; pixel_y = -23},/obj/machinery/door/window{base_state = "leftsecure"; dir = 8; health = 300; icon_state = "leftsecure"; name = "Primary AI Core Access"; req_access_txt = "16"},/obj/machinery/newscaster/security_unit{pixel_x = 3; pixel_y = 33},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 6},/area/turret_protected/ai) +"bbt" = (/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 30; pixel_y = 30},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/flasher{id = "AI"; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/turret_protected/ai) +"bbu" = (/obj/machinery/door/window{base_state = "rightsecure"; dir = 4; health = 300; icon_state = "rightsecure"; name = "Primary AI Core Access"; req_access_txt = "16"},/obj/machinery/camera{c_tag = "AI Chamber - Core"; dir = 2; network = list("RD")},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 10},/area/turret_protected/ai) +"bbv" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "bbw" = (/obj/machinery/hologram/holopad,/obj/machinery/flasher{id = "AI"; pixel_x = 25; pixel_y = 25},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/turret_protected/ai) "bbx" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1; freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 10; pixel_y = 22},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = 27; pixel_y = 0},/obj/item/device/radio/intercom{anyai = 1; broadcasting = 0; freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 10; pixel_y = -25},/obj/machinery/door/window{base_state = "leftsecure"; dir = 8; health = 300; icon_state = "leftsecure"; layer = 4.1; name = "Tertiary AI Core Access"; pixel_x = -3; req_access_txt = "16"},/turf/simulated/floor/greengrid,/area/turret_protected/ai) "bby" = (/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/hallway/secondary/entry{name = "Arrivals"}) @@ -2785,9 +2785,9 @@ "bbC" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bbD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bbE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;48;50;1"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bbF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bbF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bbG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bbH" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bbH" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bbI" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bbJ" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "0"; req_one_access_txt = "48;50"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/quartermaster/storage) "bbK" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/storage) @@ -2797,13 +2797,13 @@ "bbO" = (/obj/structure/rack,/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/quartermaster/storage) "bbP" = (/obj/structure/rack,/obj/machinery/power/apc{dir = 2; name = "Cargo Bay APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow,/obj/machinery/light,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/quartermaster/storage) "bbQ" = (/obj/structure/closet/wardrobe/cargotech,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/quartermaster/storage) -"bbR" = (/obj/structure/closet/wardrobe/cargotech,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/quartermaster/storage) +"bbR" = (/obj/structure/closet/wardrobe/cargotech,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/quartermaster/storage) "bbS" = (/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) "bbT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{glass = 0; name = "Cargo Bay"; opacity = 1; req_access_txt = "0"; req_one_access_txt = "48;50"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/office{name = "\improper Cargo Office"}) "bbU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{glass = 0; name = "Cargo Bay"; opacity = 1; req_access_txt = "0"; req_one_access_txt = "48;50"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/quartermaster/office{name = "\improper Cargo Office"}) "bbV" = (/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table/reinforced,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = 32},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 9; icon_state = "brown"},/area/quartermaster/office{name = "\improper Cargo Office"}) "bbW" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/red,/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 5; icon_state = "brown"},/area/quartermaster/office{name = "\improper Cargo Office"}) -"bbX" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the Cargo department is."; icon_state = "direction_supply"; name = "cargo department"; pixel_y = -5; tag = "icon-direction_supply"},/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) +"bbX" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the Cargo department is."; icon_state = "direction_supply"; name = "cargo department"; pixel_y = -5},/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) "bbY" = (/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/primary/port) "bbZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/status_display{density = 0; pixel_x = 0; pixel_y = 32; supply_display = 1},/obj/structure/table,/obj/item/weapon/folder/yellow,/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/hallway/primary/port) "bca" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/hallway/primary/port) @@ -2840,14 +2840,14 @@ "bcF" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/storage/tools) "bcG" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "bcH" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) -"bcI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"bcI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "bcJ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/borgupload{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/storage/tech) "bcK" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 8},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bcL" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bcM" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/message_monitor{pixel_y = -5},/obj/item/weapon/circuitboard/arcade/battle{pixel_x = -4; pixel_y = 2},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bcN" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/mining,/obj/item/weapon/circuitboard/autolathe{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bcO" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/pandemic{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/rdserver{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/destructive_analyzer,/obj/item/weapon/circuitboard/protolathe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) -"bcP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) +"bcP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) "bcQ" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bcR" = (/obj/machinery/button/door{id = "transittube"; name = "Transit Tube Lockdown"; pixel_x = -24; pixel_y = -5; req_access_txt = "24"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; pixel_y = 5; req_access_txt = "11"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/engine/chiefs_office) "bcS" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/weapon/cartridge/atmos,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/engine/chiefs_office) @@ -2862,9 +2862,9 @@ "bdb" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/engineering,/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) "bdc" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/light{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/engineering) "bdd" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/engine/engineering) -"bde" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/engine/engineering) -"bdf" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/engine/engineering) -"bdg" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/engine/engineering) +"bde" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/engine/engineering) +"bdf" = (/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/engine/engineering) +"bdg" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/engine/engineering) "bdh" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "bdi" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/engine/engineering) "bdj" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 4; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = -9; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/ai) @@ -2876,7 +2876,7 @@ "bdp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bdq" = (/obj/item/stack/sheet/cardboard,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bdr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"}) -"bds" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/conveyor{backwards = 1; dir = 2; forwards = 2; id = "packageSort2"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/office{name = "\improper Cargo Office"}) +"bds" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/conveyor{backwards = 1; dir = 2; forwards = 2; id = "packageSort2"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"},/area/quartermaster/office{name = "\improper Cargo Office"}) "bdt" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) "bdu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light_switch{pixel_x = -25; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "brown"},/area/quartermaster/office{name = "\improper Cargo Office"}) "bdv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "brown"},/area/quartermaster/office{name = "\improper Cargo Office"}) @@ -2909,15 +2909,15 @@ "bdW" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/starboard) "bdX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/starboard) "bdY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/storage/tech) -"bdZ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/communications{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"bea" = (/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"beb" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"bec" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"bed" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"bee" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"bef" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"beg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) -"beh" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/obj/item/device/multitool,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) +"bdZ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/communications{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"bea" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"beb" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"bec" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"bed" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"bee" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"bef" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"beg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) +"beh" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/obj/item/device/multitool,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) "bei" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/engine/chiefs_office) "bej" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/engine/chiefs_office) "bek" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/engine/chiefs_office) @@ -2928,15 +2928,15 @@ "bep" = (/obj/machinery/power/apc{dir = 8; name = "Engineering Security APC"; pixel_x = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/engineering) "beq" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) "ber" = (/obj/machinery/computer/secure_data,/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the singularity engine safely."; dir = 8; name = "Singularity Monitor"; network = list("Singulo"); pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/engineering) -"bes" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/engine/engineering) +"bes" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/engine/engineering) "bet" = (/obj/machinery/light{dir = 8},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "beu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) -"bev" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s6"; icon_state = "swall_s6"; dir = 2},/area/shuttle/arrival) -"bew" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/shuttle/arrival) +"bev" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/arrival) +"bew" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/arrival) "bex" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bey" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/arrival) -"bez" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"; dir = 2},/area/shuttle/arrival) -"beA" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/shuttle/arrival) +"bez" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/arrival) +"beA" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/arrival) "beB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "beC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/security/checkpoint2{name = "Customs"}) "beD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1; initialize_directions = 11},/obj/structure/table/reinforced,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/checkpoint2{name = "Customs"}) @@ -2945,7 +2945,7 @@ "beG" = (/obj/machinery/computer/card,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/camera{c_tag = "Customs Checkpoint"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint2{name = "Customs"}) "beH" = (/obj/machinery/computer/secure_data,/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint2{name = "Customs"}) "beI" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 30},/obj/structure/closet/secure_closet/security,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint2{name = "Customs"}) -"beJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"beJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "beK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "beL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) "beM" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"}) @@ -2997,7 +2997,7 @@ "bfG" = (/obj/structure/table,/obj/item/device/analyzer/plant_analyzer,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bfH" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/camera/autoname{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bfI" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) -"bfJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) +"bfJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) "bfK" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 0},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/storage/tech) "bfL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/engine/chiefs_office) "bfM" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -29},/obj/machinery/suit_storage_unit/ce,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/engine/chiefs_office) @@ -3014,7 +3014,7 @@ "bfX" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/space,/area/space) "bfY" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bfZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Port Fore"; dir = 8; network = list("MiniSat")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bga" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"bga" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "bgb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "bgc" = (/obj/machinery/porta_turret{ai = 1; dir = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/ai) "bgd" = (/obj/machinery/power/apc{aidisabled = 0; dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) @@ -3022,7 +3022,7 @@ "bgf" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Starboard Fore"; dir = 4; network = list("MiniSat")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bgg" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bgh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bgi" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"; dir = 2},/area/shuttle/arrival) +"bgi" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/arrival) "bgj" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bgk" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bgl" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) @@ -3031,8 +3031,8 @@ "bgo" = (/obj/structure/closet/wardrobe/mixed,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bgp" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bgq" = (/obj/machinery/camera{c_tag = "Arrivals Shuttle"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bgr" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"; dir = 2},/area/shuttle/arrival) -"bgs" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_r (WEST)"; icon_state = "burst_r"; dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) +"bgr" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/arrival) +"bgs" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) "bgt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/checkpoint2{name = "Customs"}) "bgu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint2{name = "Customs"}) "bgv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/security/checkpoint2{name = "Customs"}) @@ -3041,7 +3041,7 @@ "bgy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/security/checkpoint2{name = "Customs"}) "bgz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint2{name = "Customs"}) "bgA" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/security/checkpoint2{name = "Customs"}) -"bgB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bgB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bgC" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bgD" = (/obj/machinery/door/airlock/maintenance{name = "Mailroom Maintenance"; req_access_txt = "50"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"}) "bgE" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/quartermaster/office{name = "\improper Cargo Office"}) @@ -3074,36 +3074,36 @@ "bhf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/simulated/floor/plating,/area/bridge) "bhg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/bridge) "bhh" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = -30; pixel_y = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"bhi" = (/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed/chair/comfy/brown{tag = "icon-comfychair (WEST)"; icon_state = "comfychair"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"bhi" = (/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed/chair/comfy/brown{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bhj" = (/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bhk" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bhl" = (/obj/machinery/door/window/westright,/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bhm" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/effect/landmark/start{name = "Captain"},/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 8; network = list("SS13")},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bhn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/central) -"bhp" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0; tag = "icon-direction_eng (EAST)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (EAST)"},/turf/simulated/wall/r_wall,/area/storage/tools) +"bhp" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/turf/simulated/wall/r_wall,/area/storage/tools) "bhq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tools) "bhr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/turf/simulated/floor/plasteel,/area/storage/tools) "bhs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tools) -"bht" = (/obj/structure/closet/emcloset,/obj/structure/sign/map/left{icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/starboard) -"bhu" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; icon_state = "map-right-MS"; pixel_y = 32},/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/starboard) +"bht" = (/obj/structure/closet/emcloset,/obj/structure/sign/map/left{icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/starboard) +"bhu" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; icon_state = "map-right-MS"; pixel_y = 32},/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/starboard) "bhv" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/starboard) "bhw" = (/turf/simulated/wall,/area/hallway/primary/starboard) "bhx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/storage/tech) -"bhy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "0"; req_one_access_txt = "23;30"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/storage/tech) +"bhy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "0"; req_one_access_txt = "23;30"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/storage/tech) "bhz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/engine/chiefs_office) "bhA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/engine/chiefs_office) -"bhB" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Engineering"; name = "Engineering Security Doors"; opacity = 0},/obj/structure/sign/poster{icon_state = "poster19_legit"; pixel_y = 31; tag = "icon-poster19_legit"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/break_room) +"bhB" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Engineering"; name = "Engineering Security Doors"; opacity = 0},/obj/structure/sign/poster{icon_state = "poster19_legit"; pixel_y = 31},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/break_room) "bhC" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Engineering"; name = "Engineering Security Doors"; opacity = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/break_room) -"bhD" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Engineering"; name = "Engineering Security Doors"; opacity = 0},/obj/structure/sign/poster{icon_state = "poster20_legit"; pixel_y = 31; tag = "icon-poster20_legit"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/break_room) +"bhD" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "Engineering"; name = "Engineering Security Doors"; opacity = 0},/obj/structure/sign/poster{icon_state = "poster20_legit"; pixel_y = 31},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/break_room) "bhE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/security/checkpoint/engineering) "bhF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Engineering Security Post"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/security/checkpoint/engineering) "bhG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/security/checkpoint/engineering) "bhH" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engine/break_room) "bhI" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/engine/break_room) -"bhJ" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_4) -"bhK" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/shuttle/pod_4) -"bhL" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s10"; icon_state = "swall_s10"; dir = 2},/area/shuttle/pod_4) +"bhJ" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/pod_4) +"bhK" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/pod_4) +"bhL" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/pod_4) "bhM" = (/obj/machinery/door/airlock/hatch{icon_state = "door_closed"; name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/turf/simulated/floor/plating,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bhN" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bhO" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) @@ -3111,20 +3111,20 @@ "bhQ" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "MiniSat Airlock Access"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bhR" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "bhS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"bhT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bhU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bhV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"bhT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"bhU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) +"bhV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) "bhW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "bhX" = (/obj/structure/table/reinforced,/obj/item/weapon/phone{pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) "bhY" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) "bhZ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/space,/area/space) "bia" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/arrival) "bib" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bic" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/arrival) +"bic" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/arrival) "bid" = (/obj/structure/bed/chair{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bie" = (/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bif" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (EAST)"; icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) -"big" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) +"bif" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) +"big" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) "bih" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bii" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet,/obj/item/weapon/crowbar,/obj/item/device/assembly/flash/handheld,/obj/item/device/radio,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/checkpoint2{name = "Customs"}) "bij" = (/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint2{name = "Customs"}) @@ -3137,7 +3137,7 @@ "biq" = (/obj/structure/disposalpipe/wrapsortjunction{dir = 1},/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) "bir" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"}) "bis" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/window/eastleft{name = "Mail"; req_access_txt = "50"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/office{name = "\improper Cargo Office"}) -"bit" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/office{name = "\improper Cargo Office"}) +"bit" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/quartermaster/office{name = "\improper Cargo Office"}) "biu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"}) "biv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"}) "biw" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"}) @@ -3171,9 +3171,9 @@ "biY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbrown"},/area/bridge) "biZ" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbrown"},/area/bridge) "bja" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -1; pixel_y = 4},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbrown"},/area/bridge) -"bjb" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"; tag = "icon-darkblue"},/area/bridge) -"bjc" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"; tag = "icon-darkblue"},/area/bridge) -"bjd" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkred"; tag = "icon-darkblue"},/area/bridge) +"bjb" = (/obj/machinery/computer/security,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"},/area/bridge) +"bjc" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkred"},/area/bridge) +"bjd" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/computer/prisoner,/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkred"},/area/bridge) "bje" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/bridge) "bjf" = (/obj/structure/table/wood,/obj/item/weapon/storage/photo_album{pixel_y = -4},/obj/item/device/camera{pixel_y = 4},/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Captain)"; pixel_x = -28},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bjg" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/weapon/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -3206,7 +3206,7 @@ "bjH" = (/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = -4; pixel_y = 0},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) "bjI" = (/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) "bjJ" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) -"bjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2"; icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) +"bjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) "bjL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) "bjM" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) "bjN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellow"},/area/engine/break_room) @@ -3238,7 +3238,7 @@ "bkn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;48;50;1"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bko" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bkp" = (/obj/machinery/door/window/eastleft{base_state = "right"; icon_state = "right"; name = "Deliveries"; req_access_txt = "50"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/office{name = "\improper Cargo Office"}) -"bkq" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "packageExternal"; pixel_y = 18},/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"; tag = "loading"},/area/quartermaster/office{name = "\improper Cargo Office"}) +"bkq" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "packageExternal"; pixel_y = 18},/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/quartermaster/office{name = "\improper Cargo Office"}) "bkr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"}) "bks" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"}) "bkt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"}) @@ -3265,7 +3265,7 @@ "bkO" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bkP" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bkQ" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bkR" = (/obj/item/weapon/folder/red{pixel_y = 3},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/table/glass,/obj/item/weapon/folder/red{pixel_y = 3},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkred"; tag = "icon-darkblue"},/area/bridge) +"bkR" = (/obj/item/weapon/folder/red{pixel_y = 3},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/table/glass,/obj/item/weapon/folder/red{pixel_y = 3},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkred"},/area/bridge) "bkS" = (/turf/simulated/wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bkT" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/light_switch{pixel_x = -28; pixel_y = 0},/obj/item/weapon/card/id/captains_spare,/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bkU" = (/obj/machinery/door/window{dir = 1; name = "Captain's Bedroom"; req_access_txt = "20"},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -3281,7 +3281,7 @@ "ble" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "blf" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "blg" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"blh" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"blh" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j1"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bli" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "blj" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "blk" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) @@ -3299,8 +3299,8 @@ "blw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel,/area/engine/break_room) "blx" = (/turf/simulated/floor/plasteel,/area/engine/break_room) "bly" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Escape Pod Four"; req_access = null; req_access_txt = "32"},/turf/simulated/floor/plasteel,/area/engine/break_room) -"blz" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_4) -"blA" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area/shuttle/pod_4) +"blz" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/pod_4) +"blA" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/pod_4) "blB" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/space,/area/space) "blC" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "blD" = (/turf/simulated/wall/r_wall,/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) @@ -3343,13 +3343,13 @@ "bmo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/tank/internals/air,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "bmp" = (/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "bmq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/filingcabinet/chestdrawer{pixel_y = 3},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "darkblue"},/area/bridge) -"bmr" = (/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 29},/obj/machinery/computer/teleporter,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bms" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkgreencorners"; tag = "icon-greencorner (NORTH)"},/area/bridge) +"bmr" = (/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 29},/obj/machinery/computer/teleporter,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) +"bms" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkgreencorners"},/area/bridge) "bmt" = (/obj/item/device/radio/beacon,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bmu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 3},/obj/item/weapon/restraints/handcuffs{pixel_y = 3},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkredcorners"},/area/bridge) -"bmv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/computer/security/mining,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bmv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/computer/security/mining,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) "bmw" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 32; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/computer/ordercomp,/turf/simulated/floor/plasteel{dir = 5; icon_state = "darkblue"},/area/bridge) -"bmx" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/door/window/westright{dir = 4},/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"bmx" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/door/window/westright{dir = 4},/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bmy" = (/obj/structure/mirror{pixel_y = 28},/obj/structure/sink{pixel_y = 17},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bmz" = (/obj/structure/toilet{pixel_y = 13},/obj/machinery/light{dir = 2; icon_state = "tube1"},/obj/effect/landmark/start{name = "Captain"},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bmA" = (/obj/machinery/door/airlock/silver{name = "Bathroom"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -3386,11 +3386,11 @@ "bnf" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel,/area/engine/break_room) "bng" = (/obj/structure/sign/pods,/turf/simulated/wall,/area/engine/break_room) "bnh" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/maintenance/disposal) -"bni" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/obj/structure/lattice,/turf/space,/area/space) -"bnj" = (/obj/structure/transit_tube{tag = "icon-E-SW"; icon_state = "E-SW"},/obj/structure/lattice,/turf/space,/area/space) -"bnk" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) -"bnl" = (/obj/structure/transit_tube{tag = "icon-W-SE"; icon_state = "W-SE"},/turf/space,/area/space) -"bnm" = (/obj/structure/window/reinforced,/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/turf/space,/area/space) +"bni" = (/obj/structure/transit_tube{icon_state = "D-SE"},/obj/structure/lattice,/turf/space,/area/space) +"bnj" = (/obj/structure/transit_tube{icon_state = "E-SW"},/obj/structure/lattice,/turf/space,/area/space) +"bnk" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) +"bnl" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/space,/area/space) +"bnm" = (/obj/structure/window/reinforced,/obj/structure/transit_tube{icon_state = "D-SW"},/turf/space,/area/space) "bnn" = (/turf/simulated/wall,/area/space) "bno" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/space,/area/space) "bnp" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) @@ -3399,21 +3399,21 @@ "bns" = (/obj/machinery/teleport/station,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) "bnt" = (/obj/machinery/teleport/hub,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) "bnu" = (/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 32},/obj/machinery/porta_turret{ai = 1; dir = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/turret_protected/aisat_interior) -"bnv" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/turret_protected/aisat_interior) +"bnv" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) "bnw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"bnx" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) +"bnx" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) "bny" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/porta_turret{ai = 1; dir = 2},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/turret_protected/aisat_interior) "bnz" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) "bnA" = (/obj/machinery/recharge_station,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) "bnB" = (/obj/machinery/alarm{pixel_y = 26},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 2; name = "Auxiliary MiniSat Distribution Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) "bnC" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) -"bnD" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s5"; icon_state = "swall_s5"; dir = 2},/area/shuttle/arrival) +"bnD" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/arrival) "bnE" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bnF" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bnG" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = -32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bnH" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = -32},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "bnI" = (/obj/machinery/requests_console{department = "Arrival shuttle"; pixel_y = -30},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) -"bnJ" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-burst_l (WEST)"; icon_state = "burst_l"; dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) +"bnJ" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 8},/turf/simulated/floor/plating,/area/shuttle/arrival) "bnK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) "bnL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bnM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/port) @@ -3430,10 +3430,10 @@ "bnX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"}) "bnY" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/quartermaster/office{name = "\improper Cargo Office"}) "bnZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"}) -"boa" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the Suuply department is."; dir = 1; icon_state = "direction_supply"; name = "cargo department"; pixel_y = 8; tag = "icon-direction_supply"},/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) +"boa" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the Suuply department is."; dir = 1; icon_state = "direction_supply"; name = "cargo department"; pixel_y = 8},/turf/simulated/wall,/area/quartermaster/office{name = "\improper Cargo Office"}) "bob" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "brown"},/area/hallway/primary/port) "boc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "brown"},/area/hallway/primary/port) -"bod" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0; tag = "icon-direction_eng (EAST)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (EAST)"},/turf/simulated/wall/r_wall,/area/hallway/primary/port) +"bod" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 2; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/turf/simulated/wall/r_wall,/area/hallway/primary/port) "boe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/central) "bof" = (/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 0; pixel_y = 25; req_access_txt = "28"},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/heads) "bog" = (/obj/machinery/light{dir = 1},/obj/item/weapon/storage/secure/briefcase,/obj/structure/table/wood,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/heads) @@ -3443,22 +3443,22 @@ "bok" = (/obj/item/device/radio/off,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/maintcentral{name = "Central Maintenance"}) "bol" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Bridge"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/maintcentral{name = "Central Maintenance"}) "bom" = (/obj/machinery/door/window/westleft{dir = 4; name = "Bridge Deliveries"; req_access_txt = "19"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/bridge) -"bon" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bon" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkblue"},/area/bridge) "boo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bop" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 1; scrub_Toxins = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "boq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bor" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bos" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bot" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/window/brigdoor{dir = 2; name = "Command Desk"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bou" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bov" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"bor" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) +"bos" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"},/area/bridge) +"bot" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/window/brigdoor{dir = 2; name = "Command Desk"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"},/area/bridge) +"bou" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"},/area/bridge) +"bov" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkbluecorners"},/area/bridge) "bow" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "box" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"boy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/camera{c_tag = "Bridge - Starboard"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"boy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/camera{c_tag = "Bridge - Starboard"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkblue"},/area/bridge) "boz" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "boA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = -32; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "boB" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellowcorner"},/area/hallway/primary/central) -"boC" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"; tag = "icon-direction_evac"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8; tag = "icon-direction_med"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci"},/turf/simulated/wall,/area/storage/art) +"boC" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8},/turf/simulated/wall,/area/storage/art) "boD" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/storage/art) "boE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Art Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/storage/art) "boF" = (/turf/simulated/wall,/area/storage/art) @@ -3467,7 +3467,7 @@ "boI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/starboard) "boJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{name = "Starboard Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/maintenance/starboard) "boK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;25;46"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"boL" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 8; tag = "icon-direction_eng (EAST)"},/turf/simulated/wall,/area/maintenance/starboard) +"boL" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 8},/turf/simulated/wall,/area/maintenance/starboard) "boM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/starboard) "boN" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "boO" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "cautioncorner"},/area/hallway/primary/starboard) @@ -3487,34 +3487,34 @@ "bpc" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bpd" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bpe" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bpf" = (/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/turf/space,/area/space) -"bpg" = (/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/turf/space,/area/space) -"bph" = (/obj/structure/transit_tube{tag = "icon-NE-SW"; icon_state = "NE-SW"},/turf/space,/area/space) -"bpi" = (/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/turf/space,/area/space) -"bpj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/space,/area/space) -"bpk" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube{tag = "icon-S-NW"; icon_state = "S-NW"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bpl" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{pixel_y = 28},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bpm" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bpn" = (/obj/machinery/door/window{dir = 1; name = "MiniSat Walkway Access"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bpo" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bpp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"bpf" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/space,/area/space) +"bpg" = (/obj/structure/transit_tube{icon_state = "D-SE"},/turf/space,/area/space) +"bph" = (/obj/structure/transit_tube{icon_state = "NE-SW"},/turf/space,/area/space) +"bpi" = (/obj/structure/transit_tube{icon_state = "D-NW"},/turf/space,/area/space) +"bpj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) +"bpk" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube{icon_state = "S-NW"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"bpl" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/alarm{pixel_y = 28},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"bpm" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"bpn" = (/obj/machinery/door/window{dir = 1; name = "MiniSat Walkway Access"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"bpo" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"bpp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bpq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bpr" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 4; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = -9; pixel_y = 2},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) -"bps" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) -"bpt" = (/obj/machinery/turretid{control_area = "\improper AI Satellite Antechamber"; enabled = 1; icon_state = "control_standby"; name = "Antechamber Turret Control"; pixel_x = 30; pixel_y = 0; req_access = list(65)},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) +"bpr" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 4; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = -9; pixel_y = 2},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) +"bps" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) +"bpt" = (/obj/machinery/turretid{control_area = "\improper AI Satellite Antechamber"; enabled = 1; icon_state = "control_standby"; name = "Antechamber Turret Control"; pixel_x = 30; pixel_y = 0; req_access = list(65)},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) "bpu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior) -"bpv" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat - Antechamber"; dir = 4; network = list("MiniSat")},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/turret_protected/aisat_interior) -"bpw" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/turret_protected/aisat_interior) +"bpv" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat - Antechamber"; dir = 4; network = list("MiniSat")},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"bpw" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) "bpx" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"bpy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) -"bpz" = (/obj/machinery/power/apc{aidisabled = 0; cell_type = 2500; dir = 4; name = "MiniSat Antechamber APC"; pixel_x = 29; pixel_y = 0},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) -"bpA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) -"bpB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) -"bpC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) -"bpD" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) +"bpy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) +"bpz" = (/obj/machinery/power/apc{aidisabled = 0; cell_type = 2500; dir = 4; name = "MiniSat Antechamber APC"; pixel_x = 29; pixel_y = 0},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 4},/area/turret_protected/aisat_interior) +"bpA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) +"bpB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) +"bpC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) +"bpD" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) "bpE" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/obj/docking_port/mobile{dwidth = 5; height = 7; id = "arrival"; name = "arrival shuttle"; travelDir = -90; width = 15},/obj/docking_port/stationary{dwidth = 5; height = 7; id = "arrival_home"; name = "port bay 1"; width = 15},/turf/simulated/floor/plating,/area/shuttle/arrival) -"bpF" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"; dir = 2},/area/shuttle/arrival) -"bpG" = (/turf/simulated/wall/shuttle{tag = "icon-swall_s9"; icon_state = "swall_s9"; dir = 2},/area/shuttle/arrival) +"bpF" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/arrival) +"bpG" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/arrival) "bpH" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/camera{c_tag = "Arrivals - Station Entrance"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bpI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) "bpJ" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) @@ -3524,7 +3524,7 @@ "bpN" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/hallway/primary/port) "bpO" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/port) "bpP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/hallway/primary/port) -"bpQ" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/port) +"bpQ" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/port) "bpR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/port) "bpS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/port) "bpT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/port) @@ -3546,19 +3546,19 @@ "bqj" = (/obj/item/weapon/folder/blue,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/wood,/obj/item/device/assembly/flash/handheld,/turf/simulated/floor/wood,/area/crew_quarters/heads) "bqk" = (/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/crew_quarters/heads) "bql" = (/obj/machinery/newscaster/security_unit{pixel_x = 32; pixel_y = 0},/obj/machinery/computer/security/mining,/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bqm" = (/obj/machinery/power/apc{cell_type = 10000; dir = 8; name = "Bridge APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable/yellow,/obj/machinery/camera{c_tag = "Bridge - Port"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bqm" = (/obj/machinery/power/apc{cell_type = 10000; dir = 8; name = "Bridge APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable/yellow,/obj/machinery/camera{c_tag = "Bridge - Port"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkblue"},/area/bridge) "bqn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bqo" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bqp" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bqo" = (/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) +"bqp" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"},/area/bridge) "bqq" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/bridge) "bqr" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/recharger,/obj/item/weapon/restraints/handcuffs,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bqs" = (/obj/machinery/computer/communications,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bqt" = (/obj/machinery/computer/security/wooden_tv{pixel_x = 1; pixel_y = 6},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bqu" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/item/weapon/folder/blue{pixel_y = 2},/obj/item/weapon/folder/blue{pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bqv" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/bridge) -"bqw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"bqw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "darkbluecorners"},/area/bridge) "bqx" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bqy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bqy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "darkblue"},/area/bridge) "bqz" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bqA" = (/obj/structure/displaycase/captain{pixel_y = 5},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bqB" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -3579,19 +3579,19 @@ "bqQ" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Bar Delivery"; req_access_txt = "25"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/bar) "bqR" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/crew_quarters/bar) "bqS" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) -"bqT" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"bqT" = (/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "bqU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) "bqV" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/starboard) "bqW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/starboard) "bqX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) -"bqY" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"bqY" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "bqZ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) "bra" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/starboard) "brb" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "brc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "cautioncorner"},/area/hallway/primary/starboard) "brd" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/engine/break_room) "bre" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/engine/break_room) -"brf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/engine/break_room) +"brf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/engine/break_room) "brg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/engine/break_room) "brh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel,/area/engine/break_room) "bri" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) @@ -3604,15 +3604,15 @@ "brp" = (/obj/structure/window/reinforced,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore"; dir = 1; network = list("MiniSat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "brq" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/closet/wardrobe/red,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint2{name = "Customs"}) "brr" = (/turf/simulated/wall/r_wall,/area/space) -"brs" = (/obj/structure/transit_tube/station{reverse_launch = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/engine/break_room) +"brs" = (/obj/structure/transit_tube/station{reverse_launch = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 4},/area/engine/break_room) "brt" = (/obj/structure/transit_tube,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) -"bru" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) +"bru" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) "brv" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) -"brw" = (/obj/structure/transit_tube{tag = "icon-W-NE-SE"; icon_state = "W-NE-SE"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) -"brx" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/transit_tube{tag = "icon-D-SW"; icon_state = "D-SW"},/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) +"brw" = (/obj/structure/transit_tube{icon_state = "W-NE-SE"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) +"brx" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/transit_tube{icon_state = "D-NW"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) "bry" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) "brz" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/space,/area/space) -"brA" = (/obj/structure/transit_tube/station{tag = "icon-closed (EAST)"; icon_state = "closed"; dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"brA" = (/obj/structure/transit_tube/station{icon_state = "closed"; dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "brB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "brC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "brD" = (/obj/machinery/hologram/holopad,/obj/structure/cable/yellow{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) @@ -3667,21 +3667,21 @@ "bsA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window{dir = 2; name = "HoP's Desk"; pixel_y = 0; req_access_txt = "57"},/turf/simulated/floor/wood,/area/crew_quarters/heads) "bsB" = (/obj/structure/window/reinforced,/obj/machinery/computer/ordercomp,/turf/simulated/floor/wood,/area/crew_quarters/heads) "bsC" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"bsD" = (/obj/structure/transit_tube{dir = 4; icon_state = "Block"; tag = "icon-Block"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/engine/break_room) +"bsD" = (/obj/structure/transit_tube{dir = 4; icon_state = "Block"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 4},/area/engine/break_room) "bsE" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/obj/structure/transit_tube{icon_state = "D-SW"},/turf/space,/area/space) "bsF" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/turf/simulated/floor/wood,/area/crew_quarters/heads) "bsG" = (/turf/simulated/wall,/area/crew_quarters/heads) -"bsH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bsI" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/rack,/obj/item/weapon/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bsJ" = (/obj/structure/rack,/obj/item/device/aicard,/obj/item/device/radio/off,/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bsH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"},/area/bridge) +"bsI" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/rack,/obj/item/weapon/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) +"bsJ" = (/obj/structure/rack,/obj/item/device/aicard,/obj/item/device/radio/off,/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) "bsK" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/cell_charger{pixel_y = 4},/obj/structure/table/glass,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bsL" = (/turf/simulated/floor/carpet,/area/bridge) "bsM" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/bridge) "bsN" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bsO" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -29},/obj/structure/rack,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bsP" = (/obj/machinery/light,/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency{pixel_x = -2; pixel_y = -3},/obj/item/weapon/wrench,/obj/item/device/multitool,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bsO" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -29},/obj/structure/rack,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) +"bsP" = (/obj/machinery/light,/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency{pixel_x = -2; pixel_y = -3},/obj/item/weapon/wrench,/obj/item/device/multitool,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) "bsQ" = (/obj/machinery/light_switch{pixel_x = 8; pixel_y = -26},/turf/simulated/floor/plasteel{dir = 10; icon_state = "darkblue"},/area/bridge) -"bsR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bsR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "darkblue"},/area/bridge) "bsS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 6; icon_state = "darkblue"},/area/bridge) "bsT" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 7},/obj/item/weapon/pen{pixel_y = 3},/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bsU" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/power/apc{dir = 8; name = "Captain's Quarters APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small{dir = 8},/obj/item/weapon/paper{info = "Congratulations,

Your station has been selected to carry out the Gateway Project.

The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.

--Nanotrasen Blue Space Research"; name = "Confidential Correspondence, Pg 1"; pixel_x = 0; pixel_y = 0},/obj/item/weapon/coin/plasma,/obj/item/weapon/melee/chainofcommand,/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -3706,7 +3706,7 @@ "btn" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j1s"; sortType = 19},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1; initialize_directions = 11},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/starboard) "bto" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;25;46"},/turf/simulated/floor/plating,/area/maintenance/starboard) "btp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) -"btq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"btq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "btr" = (/obj/item/device/assembly/prox_sensor,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/turf/simulated/floor/plating,/area/maintenance/starboard) "bts" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/starboard) "btt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/starboard) @@ -3715,40 +3715,40 @@ "btw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/starboard) "btx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bty" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "blackcorner"},/area/hallway/primary/starboard) -"btz" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/engine/break_room) -"btA" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -30},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/engine/break_room) -"btB" = (/obj/machinery/microwave{pixel_x = 0; pixel_y = 4},/obj/machinery/camera{c_tag = "Engineering - Foyer - Port"; dir = 1; network = list("SS13")},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/engine/break_room) -"btC" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/engine/break_room) +"btz" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/engine/break_room) +"btA" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -30},/obj/machinery/vending/cigarette,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/engine/break_room) +"btB" = (/obj/machinery/microwave{pixel_x = 0; pixel_y = 4},/obj/machinery/camera{c_tag = "Engineering - Foyer - Port"; dir = 1; network = list("SS13")},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/engine/break_room) +"btC" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/engine/break_room) "btD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/break_room) "btE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 2; name = "Engineering Foyer APC"; pixel_x = -1; pixel_y = -26},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/engine/break_room) "btF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel,/area/engine/break_room) "btG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) "btH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/break_room) -"btI" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/transit_tube{icon_state = "W-SE"},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (EAST)"; icon_state = "darkbluecorners"; dir = 4},/area/engine/break_room) +"btI" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/transit_tube{icon_state = "W-SE"},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 4},/area/engine/break_room) "btJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Access"; req_one_access_txt = "32;19"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) "btK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) -"btL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube{tag = "icon-E-NW"; icon_state = "E-NW"},/turf/space,/area/space) -"btM" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/table/glass,/obj/item/weapon/phone{pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) +"btL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube{icon_state = "E-NW"},/turf/space,/area/space) +"btM" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/table/glass,/obj/item/weapon/phone{pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) "btN" = (/obj/structure/transit_tube,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/transit_tube_pod{dir = 4},/turf/space,/area/space) -"btO" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/space,/area/space) -"btP" = (/obj/structure/transit_tube{tag = "icon-NW-SE"; icon_state = "NW-SE"},/turf/space,/area/space) -"btQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/transit_tube{tag = "icon-D-SE"; icon_state = "D-SE"},/turf/space,/area/space) -"btR" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube{tag = "icon-N-SW"; icon_state = "N-SW"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"btS" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior Access"; dir = 1; network = list("MiniSat")},/obj/machinery/power/apc{aidisabled = 0; dir = 2; name = "MiniSat Exterior APC"; pixel_y = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"btT" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"btU" = (/obj/machinery/door/window{dir = 2; name = "MiniSat Walkway Access"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"btV" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"btW" = (/obj/structure/window/reinforced,/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"btO" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) +"btP" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/space,/area/space) +"btQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/transit_tube{icon_state = "D-SE"},/turf/space,/area/space) +"btR" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube{icon_state = "N-SW"},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"btS" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior Access"; dir = 1; network = list("MiniSat")},/obj/machinery/power/apc{aidisabled = 0; dir = 2; name = "MiniSat Exterior APC"; pixel_y = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"btT" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"btU" = (/obj/machinery/door/window{dir = 2; name = "MiniSat Walkway Access"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"btV" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) +"btW" = (/obj/structure/window/reinforced,/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "btX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"btY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) -"btZ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) -"bua" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{aidisabled = 0; cell_type = 5000; dir = 2; name = "MiniSat Foyer APC"; pixel_x = 0; pixel_y = -29},/obj/structure/cable/yellow,/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; dir = 8; network = list("MiniSat")},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) +"btY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) +"btZ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) +"bua" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{aidisabled = 0; cell_type = 5000; dir = 2; name = "MiniSat Foyer APC"; pixel_x = 0; pixel_y = -29},/obj/structure/cable/yellow,/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; dir = 8; network = list("MiniSat")},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"}) "bub" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/aisat_interior) -"buc" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/bot/floorbot,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) -"bud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) +"buc" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/bot/floorbot,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) +"bud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) "bue" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"buf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) -"bug" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/bot/cleanbot,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"buf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"bug" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/bot/cleanbot,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) "buh" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/machinery/power/apc{dir = 8; name = "MiniSat Maint APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow,/obj/item/stack/sheet/mineral/plasma{amount = 35; layer = 3.1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) "bui" = (/obj/machinery/computer/station_alert,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) "buj" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/monitor,/obj/structure/cable/yellow,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"}) @@ -3788,16 +3788,16 @@ "buR" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/structure/bed/dogbed{anchored = 1; desc = "Ian's bed! Looks comfy."; name = "Ian's bed"; pixel_y = 2},/turf/simulated/floor/wood,/area/crew_quarters/heads) "buS" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads) "buT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"buU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"buV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"buU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) +"buV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) "buW" = (/turf/simulated/wall,/area/bridge) "buX" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/vending/cola{pixel_x = 2},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "buY" = (/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "19"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 1; scrub_Toxins = 1},/obj/machinery/button/door{id = "council blast"; name = "Council Chamber Blast Door Control"; pixel_x = -1; pixel_y = -34; req_access_txt = "19"},/obj/machinery/camera{c_tag = "Bridge - Command Chair"; dir = 1; network = list("SS13")},/turf/simulated/floor/carpet,/area/bridge) "buZ" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/bridge) "bva" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/button/door{id = "evashutter"; name = "E.V.A. Storage Shutter Control"; pixel_x = 0; pixel_y = -24; req_access_txt = "19"},/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_x = 0; pixel_y = -34; req_access_txt = "19"},/turf/simulated/floor/carpet,/area/bridge) "bvb" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/machinery/vending/snack{pixel_x = -2},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bvc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) -"bvd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"; tag = "icon-darkbluecorners (WEST)"},/area/bridge) +"bvc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) +"bvd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkblue"},/area/bridge) "bve" = (/obj/structure/table/wood,/obj/structure/window/reinforced,/obj/machinery/light_switch{pixel_x = -28; pixel_y = 0},/obj/item/weapon/storage/secure/briefcase{pixel_x = -2; pixel_y = 4},/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bvf" = (/obj/machinery/door/window{name = "Captain's Desk"; req_access_txt = "20"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bvg" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/window/reinforced,/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -3815,10 +3815,10 @@ "bvs" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/closet/gmcloset,/obj/item/weapon/wrench,/obj/item/stack/cable_coil/white,/turf/simulated/floor/wood,/area/crew_quarters/bar) "bvt" = (/obj/machinery/chem_master/condimaster{desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; name = "HoochMaster Deluxe"; pixel_x = -4},/turf/simulated/floor/wood,/area/crew_quarters/bar) "bvu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/starboard) -"bvv" = (/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) +"bvv" = (/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) "bvw" = (/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/starboard) "bvx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/starboard) -"bvy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboard) +"bvy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) "bvz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/hallway/primary/starboard) "bvA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/starboard) "bvB" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Foyer Maintenance"; req_access_txt = "0"; req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/break_room) @@ -3826,38 +3826,38 @@ "bvD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) "bvE" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/simulated/floor/wood,/area/crew_quarters/heads) "bvF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/break_room) -"bvG" = (/obj/effect/landmark{name = "revenantspawn"},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/engine/break_room) +"bvG" = (/obj/effect/landmark{name = "revenantspawn"},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/engine/break_room) "bvH" = (/obj/machinery/alarm{dir = 4; locked = 0; pixel_x = -23; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) -"bvI" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/table/glass,/obj/item/weapon/folder/blue{pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/pen,/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/engine/break_room) +"bvI" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/table/glass,/obj/item/weapon/folder/blue{pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/pen,/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/engine/break_room) "bvJ" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Head of Personnel APC"; pixel_y = 24},/turf/simulated/floor/carpet,/area/crew_quarters/heads) -"bvK" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) -"bvL" = (/obj/structure/transit_tube{tag = "icon-E-NW"; icon_state = "E-NW"},/obj/structure/lattice,/turf/space,/area/space) -"bvM" = (/obj/structure/transit_tube{tag = "icon-W-NE"; icon_state = "W-NE"},/obj/structure/lattice,/turf/space,/area/space) -"bvN" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/transit_tube{tag = "icon-D-NW"; icon_state = "D-NW"},/obj/structure/lattice,/turf/space,/area/space) +"bvK" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) +"bvL" = (/obj/structure/transit_tube{icon_state = "E-NW"},/obj/structure/lattice,/turf/space,/area/space) +"bvM" = (/obj/structure/transit_tube{icon_state = "W-NE"},/obj/structure/lattice,/turf/space,/area/space) +"bvN" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/transit_tube{icon_state = "D-NW"},/obj/structure/lattice,/turf/space,/area/space) "bvO" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bvP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bvQ" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Control Room"; req_one_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bvR" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bvS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bvT" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bvU" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1; tag = "icon-plant-18"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) +"bvU" = (/obj/structure/flora/kirbyplants{icon_state = "plant-18"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bvV" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bvW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) -"bvX" = (/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/hallway/primary/port) +"bvW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) +"bvX" = (/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/hallway/primary/port) "bvY" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/hallway/primary/port) -"bvZ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1; tag = "icon-plant-03"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/hallway/primary/port) +"bvZ" = (/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/hallway/primary/port) "bwa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera{c_tag = "Port Primary Hallway - Port"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/port) "bwb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/hallway/primary/port) "bwc" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bwd" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/port) -"bwe" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/port) -"bwf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/port) +"bwd" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/port) +"bwe" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/port) +"bwf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/port) "bwg" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;27;37"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bwh" = (/turf/simulated/wall,/area/library) "bwi" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/library) "bwj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/turf/simulated/floor/wood,/area/library) "bwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/turf/simulated/floor/wood,/area/library) -"bwl" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"; tag = "icon-direction_evac"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8; tag = "icon-direction_med"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci"},/turf/simulated/wall,/area/library) +"bwl" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8},/turf/simulated/wall,/area/library) "bwm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bwn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; sortType = 15},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bwo" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/central) @@ -3870,22 +3870,22 @@ "bwv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "bww" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads) "bwx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/heads) -"bwy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) +"bwy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) "bwz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bwA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/bridge) "bwB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bookcase,/turf/simulated/floor/wood,/area/bridge) "bwC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/bridge) -"bwD" = (/obj/machinery/door/airlock/command{name = "Command Desk"; req_access = null; req_access_txt = "19"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/bridge) +"bwD" = (/obj/machinery/door/airlock/command{name = "Command Desk"; req_access = null; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) "bwE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/bridge) "bwF" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/bridge) -"bwG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) +"bwG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) "bwH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bwI" = (/obj/machinery/vending/boozeomat,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bwJ" = (/obj/machinery/hologram/holopad{pixel_x = 9; pixel_y = -9},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bwK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bwL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bwM" = (/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8; network = list("SS13")},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"bwN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "Captain's Office - Emergency Escape"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/maintcentral{name = "Central Maintenance"}) +"bwN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "Captain's Office - Emergency Escape"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/maintcentral{name = "Central Maintenance"}) "bwO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bwP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "bwQ" = (/obj/machinery/vending/boozeomat,/turf/simulated/wall,/area/crew_quarters/bar) @@ -3896,7 +3896,7 @@ "bwV" = (/obj/machinery/disposal/bin{pixel_x = 2; pixel_y = 2},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/crew_quarters/bar) "bwW" = (/obj/machinery/computer/arcade,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/bar) "bwX" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/starboard) -"bwY" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) +"bwY" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) "bwZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/starboard) "bxa" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/starboard) "bxb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;25;46"},/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -3905,10 +3905,10 @@ "bxe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/starboard) "bxf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "bxg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) -"bxh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) +"bxh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) "bxi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) "bxj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"bxk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"bxk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "bxl" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/engine/break_room) "bxm" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/break_room) "bxn" = (/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/break_room) @@ -3916,26 +3916,26 @@ "bxp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/break_room) "bxq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "caution"},/area/engine/break_room) "bxr" = (/obj/structure/table/glass,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) -"bxs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Engineering - Transit Tube Access"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warndarkcorners"; tag = "icon-warndarkcorners (EAST)"},/area/engine/break_room) +"bxs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Engineering - Transit Tube Access"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warndarkcorners"},/area/engine/break_room) "bxt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/engine/break_room) "bxu" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) "bxv" = (/obj/machinery/door/airlock/hatch{icon_state = "door_closed"; name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/break_room) "bxw" = (/turf/simulated/wall,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bxx" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/off{pixel_y = 4},/obj/item/weapon/screwdriver{pixel_y = 10},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) -"bxy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/break_room) +"bxy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 4},/area/engine/break_room) "bxz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bxA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bxB" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 28},/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 0; pixel_y = 20},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bxC" = (/obj/structure/table/wood,/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 31},/obj/item/device/flashlight/lamp,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bxD" = (/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecoms)"; pixel_x = 0; pixel_y = 30},/obj/structure/table/wood,/obj/item/weapon/phone{pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) -"bxE" = (/obj/structure/flora/kirbyplants{icon_state = "plant-20"; layer = 4.1; tag = "icon-plant-20"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) +"bxE" = (/obj/structure/flora/kirbyplants{icon_state = "plant-20"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bxF" = (/obj/structure/bed/chair,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bxG" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bxH" = (/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) +"bxH" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) "bxI" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) -"bxJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/secondary/entry{name = "Arrivals"}) +"bxJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/hallway/secondary/entry{name = "Arrivals"}) "bxK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bxL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) +"bxL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/entry{name = "Arrivals"}) "bxM" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) "bxN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) "bxO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"}) @@ -3958,8 +3958,8 @@ "byf" = (/turf/simulated/floor/carpet,/area/library) "byg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/carpet,/area/library) "byh" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/wood,/area/library) -"byi" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"byj" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/item/weapon/folder,/obj/item/weapon/folder,/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"byi" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) +"byj" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/item/weapon/folder,/obj/item/weapon/folder,/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) "byk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "byl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/heads) "bym" = (/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/heads) @@ -3969,23 +3969,23 @@ "byq" = (/obj/machinery/computer/card,/turf/simulated/floor/wood,/area/crew_quarters/heads) "byr" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -35},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = 25; pixel_y = -36; req_access_txt = "28"},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 25; pixel_y = -26; req_access_txt = "28"},/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 38; pixel_y = -25},/turf/simulated/floor/wood,/area/crew_quarters/heads) "bys" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/weapon/stamp/hop{pixel_x = -4; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads) -"byt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"byu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Bridge - Port Access"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"byt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) +"byu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Bridge - Port Access"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/bridge) "byv" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "byw" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_y = 3},/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "byx" = (/obj/machinery/hologram/holopad,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "byy" = (/obj/machinery/camera{c_tag = "Council Chamber"; dir = 2; network = list("SS13")},/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "byz" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/machinery/firealarm{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "byA" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"byB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "Bridge - Starboard Access"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"byC" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"byB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "Bridge - Starboard Access"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) +"byC" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/bridge) "byD" = (/obj/machinery/vending/cigarette{pixel_y = 2; products = list(/obj/item/weapon/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/weapon/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/lighter/greyscale = 4, /obj/item/weapon/storage/fancy/rollingpapers = 5)},/turf/simulated/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "byE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"byF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/bed/chair/comfy/brown{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"byF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/bed/chair/comfy/brown{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "byG" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"byH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/bed/chair/comfy/brown{tag = "icon-comfychair (WEST)"; icon_state = "comfychair"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"byH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/bed/chair/comfy/brown{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "byI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"byJ" = (/obj/machinery/door/airlock/command{name = "Emergency Escape"; req_access = null; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"byJ" = (/obj/machinery/door/airlock/command{name = "Emergency Escape"; req_access = null; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "byK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/maintcentral{name = "Central Maintenance"}) "byL" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/central) "byM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) @@ -4017,7 +4017,7 @@ "bzm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/atmos) "bzn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) "bzo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/atmos) -"bzp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/engine/break_room) +"bzp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 4},/area/engine/break_room) "bzq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bzr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bzs" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) @@ -4032,7 +4032,7 @@ "bzB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bzC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bzD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals - Middle Arm"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bzE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) +"bzE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) "bzF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bluecorner"},/area/hallway/secondary/entry{name = "Arrivals"}) "bzG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bzH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) @@ -4054,14 +4054,14 @@ "bzX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bzY" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) "bzZ" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/wood,/area/library) -"bAa" = (/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bAb" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bAa" = (/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) +"bAb" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) "bAc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bAd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/crew_quarters/heads) "bAe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/crew_quarters/heads) "bAf" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; icon_state = "left"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "hop"; layer = 3.1; name = "privacy shutters"; opacity = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/heads) -"bAg" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bAh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"bAg" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) +"bAh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/bridge) "bAi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Council Chamber"; req_access = null; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bAj" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet,/area/bridge) "bAk" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/carpet,/area/bridge) @@ -4070,15 +4070,15 @@ "bAn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge) "bAo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bAp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Council Chamber"; req_access = null; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bAq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/bridge) -"bAr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"bAq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/bridge) +"bAr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/bridge) "bAs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bAt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"bAu" = (/obj/structure/bed/chair/comfy/brown{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"bAu" = (/obj/structure/bed/chair/comfy/brown{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bAv" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"bAw" = (/obj/structure/bed/chair/comfy/brown{tag = "icon-comfychair (WEST)"; icon_state = "comfychair"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"bAw" = (/obj/structure/bed/chair/comfy/brown{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bAx" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) -"bAy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/maintcentral{name = "Central Maintenance"}) +"bAy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/maintcentral{name = "Central Maintenance"}) "bAz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bAA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "bAB" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) @@ -4112,12 +4112,12 @@ "bBd" = (/obj/machinery/space_heater,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/atmos) "bBe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) "bBf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter{frequency = 1443; id = "wloop_atm_meter"; name = "Waste Loop"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) -"bBg" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"; on = 0; tag = ""},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) +"bBg" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"; on = 0},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) "bBh" = (/obj/machinery/meter{frequency = 1443; id = "dloop_atm_meter"; name = "Distribution Loop"},/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) -"bBi" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1; tag = "icon-manifold-b (NORTH)"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) +"bBi" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) "bBj" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Air to Distro"; on = 1; target_pressure = 101},/obj/machinery/alarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Distro Loop"; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) "bBk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) -"bBl" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 2; on = 1; tag = ""},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) +"bBl" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "caution"},/area/atmos) "bBm" = (/obj/structure/lattice,/obj/structure/grille,/turf/simulated/wall/r_wall,/area/space) "bBn" = (/obj/structure/grille,/obj/structure/lattice,/turf/simulated/wall/r_wall,/area/space) "bBo" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) @@ -4142,8 +4142,8 @@ "bBH" = (/obj/machinery/photocopier{pixel_y = 3},/turf/simulated/floor/wood,/area/library) "bBI" = (/turf/simulated/floor/wood,/area/library) "bBJ" = (/obj/machinery/light{dir = 4},/obj/machinery/camera/autoname{dir = 8; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/simulated/floor/carpet,/area/library) -"bBK" = (/obj/machinery/door/morgue{name = "Study #1"; req_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bBL" = (/obj/machinery/door/morgue{name = "Study #2"; req_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bBK" = (/obj/machinery/door/morgue{name = "Study #1"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) +"bBL" = (/obj/machinery/door/morgue{name = "Study #2"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) "bBM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{freerange = 1; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -30},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Central Primary Hallway - Port"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bBN" = (/turf/simulated/wall,/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bBO" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) @@ -4154,16 +4154,16 @@ "bBT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/flasher{id = "hopflash"; pixel_x = 28; pixel_y = -28},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bBU" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bBV" = (/turf/simulated/wall/r_wall,/area/bridge/meeting_room{name = "\improper Command Hallway"}) -"bBW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = 24; pixel_y = -24; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"bBW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = 24; pixel_y = -24; req_access_txt = "19"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/bridge) "bBX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 1; scrub_Toxins = 1},/obj/machinery/vending/coffee{pixel_x = -3},/obj/machinery/button/door{id = "council blast"; name = "Council Chamber Blast Door Control"; pixel_x = -28; pixel_y = 0; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bBY" = (/obj/structure/bed/chair/comfy/teal{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet,/area/bridge) +"bBY" = (/obj/structure/bed/chair/comfy/teal{icon_state = "comfychair"; dir = 4},/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet,/area/bridge) "bBZ" = (/obj/structure/table/wood,/obj/item/weapon/folder/white,/turf/simulated/floor/carpet,/area/bridge) "bCa" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/lighter,/turf/simulated/floor/carpet,/area/bridge) "bCb" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/turf/simulated/floor/carpet,/area/bridge) "bCc" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet,/area/bridge) "bCd" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/vending/cigarette{pixel_x = 2},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) "bCe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = -24; pixel_y = -24; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/bridge) -"bCf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"; tag = "icon-darkbluecorners"},/area/bridge) +"bCf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "darkbluecorners"},/area/bridge) "bCg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bCh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bCi" = (/obj/machinery/light,/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat","tcomm"); pixel_x = 0; pixel_y = -29},/mob/living/simple_animal/pet/fox/Renault,/turf/simulated/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) @@ -4199,8 +4199,8 @@ "bCM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/atmos) "bCN" = (/obj/machinery/space_heater,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/atmos) "bCO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel,/area/atmos) -"bCP" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 2; on = 1; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) -"bCQ" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 1; on = 1; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) +"bCP" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bCQ" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/atmos) "bCR" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Distro"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) "bCS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/atmos) "bCT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8; initialize_directions = 11},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) @@ -4238,25 +4238,25 @@ "bDz" = (/obj/structure/bed/chair/comfy/black,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/wood,/area/library) "bDA" = (/obj/machinery/vending/coffee,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library) "bDB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/library) -"bDC" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/wood,/area/library) -"bDD" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 4; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (EAST)"},/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0; tag = "icon-direction_eng (EAST)"},/turf/simulated/wall,/area/bridge/meeting_room{name = "\improper Command Hallway"}) +"bDC" = (/obj/structure/flora/kirbyplants{icon_state = "plant-22"},/turf/simulated/floor/wood,/area/library) +"bDD" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 4; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0},/turf/simulated/wall,/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bDE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge/meeting_room{name = "\improper Command Hallway"}) -"bDF" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"; tag = "loading"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) +"bDF" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "loadingarea"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bDG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/bridge/meeting_room{name = "\improper Command Hallway"}) -"bDH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"; tag = "loading"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) -"bDI" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 1; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (NORTH)"},/turf/simulated/wall/r_wall,/area/bridge/meeting_room{name = "\improper Command Hallway"}) -"bDJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/bridge) -"bDK" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/bridge) -"bDL" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster depicting the logo of Nanotrasen."; icon_state = "poster2_legit"; name = "poster - NanoTrasen logo"; tag = "icon-poster2_legit"},/turf/simulated/wall/r_wall,/area/bridge) +"bDH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) +"bDI" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 1; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/turf/simulated/wall/r_wall,/area/bridge/meeting_room{name = "\improper Command Hallway"}) +"bDJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"bDK" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"bDL" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster depicting the logo of Nanotrasen."; icon_state = "poster2_legit"; name = "poster - NanoTrasen logo"},/turf/simulated/wall/r_wall,/area/bridge) "bDM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "council blast"; layer = 2.9; name = "Council Blast Doors"; opacity = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) "bDN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "council blast"; layer = 2.9; name = "Council Blast Doors"; opacity = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/bridge) "bDO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "council blast"; layer = 2.9; name = "Council Blast Doors"; opacity = 0},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) "bDP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "council blast"; layer = 2.9; name = "Council Blast Doors"; opacity = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) "bDQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "council blast"; layer = 2.9; name = "Council Blast Doors"; opacity = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/bridge) -"bDR" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/bridge) -"bDS" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 1; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (NORTH)"},/turf/simulated/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) +"bDR" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access"; req_access_txt = "19"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/bridge) +"bDS" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 1; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/turf/simulated/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"}) "bDT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "20;12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) -"bDU" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0; tag = "icon-direction_eng (EAST)"},/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 8; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (EAST)"},/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Maintenance"}) +"bDU" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0},/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 8; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Maintenance"}) "bDV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bDW" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=12-Central-Starboard"; location = "11.1-Command-Starboard"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bDX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/bar) @@ -4283,9 +4283,9 @@ "bEs" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/atmos) "bEt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bEu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bEv" = (/obj/machinery/space_heater,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/atmos) +"bEv" = (/obj/machinery/space_heater,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/atmos) "bEw" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Waste to Filter"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bEx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"; dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/turf/simulated/floor/plasteel,/area/atmos) +"bEx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"; dir = 5; icon_state = "intact"},/turf/simulated/floor/plasteel,/area/atmos) "bEy" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{color = "purple"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) "bEz" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{color = "purple"},/turf/simulated/floor/plasteel,/area/atmos) "bEA" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) @@ -4302,7 +4302,7 @@ "bEL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"}) "bEM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bEN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bEO" = (/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bEO" = (/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bEP" = (/obj/item/weapon/tank/internals/air,/obj/item/weapon/tank/internals/air,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bEQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/security/vacantoffice) "bER" = (/obj/structure/table/wood,/turf/simulated/floor/wood,/area/security/vacantoffice) @@ -4316,7 +4316,7 @@ "bEZ" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) "bFa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/library) "bFb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bFc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bFc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j1"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bFd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "bFe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Command Hallway"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bFf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) @@ -4369,10 +4369,10 @@ "bGa" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/atmos) "bGb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) "bGc" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Filter"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) -"bGd" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{color = "purple"; dir = 4; tag = "icon-manifold-y (EAST)"},/turf/simulated/floor/plasteel,/area/atmos) -"bGe" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact-g (SOUTHEAST)"; dir = 6},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/plasteel,/area/atmos) -"bGf" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1; tag = "icon-manifold-g (NORTH)"},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) -"bGg" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{tag = "icon-manifold-g (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bGd" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{color = "purple"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bGe" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/plasteel,/area/atmos) +"bGf" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) +"bGg" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bGh" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "waste_in"; name = "Gas Mix Tank Control"; output_tag = "waste_out"; sensors = list("waste_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/atmos) "bGi" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "waste_sensor"; output = 63},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) "bGj" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) @@ -4384,7 +4384,7 @@ "bGp" = (/obj/machinery/telecomms/processor/preset_three,/obj/machinery/camera{c_tag = "Telecoms - Server Room - Fore-Starboard"; dir = 2; network = list("SS13","tcomm")},/turf/simulated/floor/bluegrid{icon_state = "gcircuit"; name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "bGq" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) "bGr" = (/obj/machinery/door/airlock/external{name = "Transport Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"}) -"bGs" = (/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/hallway/secondary/entry{name = "Arrivals"}) +"bGs" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/hallway/secondary/entry{name = "Arrivals"}) "bGt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bGu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bGv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -4457,7 +4457,7 @@ "bHK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bHL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/hallway/primary/starboard) "bHM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Atmospherics"},/obj/machinery/door/poddoor{density = 0; icon_state = "open"; id = "atmos"; name = "Atmos Blast Door"; opacity = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/atmos) -"bHN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"; tag = "loading"},/area/atmos) +"bHN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "loadingarea"},/area/atmos) "bHO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bHP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/atmos) "bHQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "blackcorner"},/area/atmos) @@ -4469,9 +4469,9 @@ "bHW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop"; req_access_txt = "24"},/turf/simulated/floor/plasteel,/area/atmos) "bHX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) "bHY" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"; dir = 6},/turf/simulated/floor/plasteel,/area/atmos) -"bHZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"; dir = 9; tag = "icon-intact-y (NORTHWEST)"},/turf/simulated/floor/plasteel,/area/atmos) +"bHZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"; dir = 9},/turf/simulated/floor/plasteel,/area/atmos) "bIa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bIb" = (/obj/machinery/atmospherics/pipe/simple/green/visible{tag = "icon-intact-g (NORTHEAST)"; dir = 5; initialize_directions = 12},/turf/simulated/floor/plasteel,/area/atmos) +"bIb" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5; initialize_directions = 12},/turf/simulated/floor/plasteel,/area/atmos) "bIc" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Unfiltered & Air to Mix"; on = 1},/turf/simulated/floor/plasteel,/area/atmos) "bId" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/atmos) "bIe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plating,/area/atmos) @@ -4488,7 +4488,7 @@ "bIp" = (/obj/structure/table/wood,/obj/item/weapon/folder,/turf/simulated/floor/wood,/area/security/vacantoffice) "bIq" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/security/vacantoffice) "bIr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/wood,/area/security/vacantoffice) -"bIs" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/button/door{id = "AuxShower"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) +"bIs" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/button/door{id = "AuxShower"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) "bIt" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) "bIu" = (/turf/simulated/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) "bIv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -4496,11 +4496,11 @@ "bIx" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "0"; req_one_access_txt = "12;37"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bIy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/carpet,/area/library) "bIz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/wood,/area/library) -"bIA" = (/turf/simulated/floor/wood{tag = "icon-wood-broken7"; icon_state = "wood-broken7"},/area/library) +"bIA" = (/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/library) "bIB" = (/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/library) "bIC" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bID" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bIE" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8; tag = "icon-direction_med"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"; tag = "icon-direction_evac"},/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bIE" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"},/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bIF" = (/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bIG" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bIH" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) @@ -4519,11 +4519,11 @@ "bIU" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/gateway) "bIV" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/gateway) "bIW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/gateway) -"bIX" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/gateway) -"bIY" = (/obj/machinery/vending/cigarette,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/gateway) -"bIZ" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/gateway) +"bIX" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/gateway) +"bIY" = (/obj/machinery/vending/cigarette,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/gateway) +"bIZ" = (/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/gateway) "bJa" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;17"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) -"bJb" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"; tag = "icon-direction_evac"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8; tag = "icon-direction_med"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci"},/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Maintenance"}) +"bJb" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; icon_state = "direction_med"; name = "medical department"; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; name = "research department"; pixel_y = -8},/turf/simulated/wall,/area/maintenance/maintcentral{name = "Central Maintenance"}) "bJc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bJd" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bJe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/central) @@ -4564,11 +4564,11 @@ "bJN" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "bJO" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/hallway/secondary/entry{name = "Arrivals"}) "bJP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bJQ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bJQ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bJR" = (/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3; pixel_y = 5},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/security/vacantoffice) "bJS" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet,/area/security/vacantoffice) "bJT" = (/obj/item/weapon/folder/white,/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/security/vacantoffice) -"bJU" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/blood/gibs/limb,/obj/machinery/light/small,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) +"bJU" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/blood/gibs/limb,/obj/machinery/light/small,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) "bJV" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) "bJW" = (/obj/machinery/door/airlock{id_tag = "AuxToilet3"; name = "Unit 3"},/turf/simulated/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) "bJX" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet3"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -32},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"}) @@ -4580,16 +4580,16 @@ "bKd" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/structure/table/wood,/turf/simulated/floor/wood,/area/library) "bKe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bKf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bKg" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bKg" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bKh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bKi" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bKj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bKk" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light_switch{pixel_x = -8; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bKk" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light_switch{pixel_x = -8; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bKl" = (/turf/simulated/wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bKm" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/item/device/radio/beacon,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) -"bKn" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) -"bKo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/teleporter{name = "\improper Teleporter Room"}) -"bKp" = (/obj/structure/closet/crate{icon_state = "crate"; opened = 0},/obj/item/stack/cable_coil,/obj/item/weapon/crowbar,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/power/apc{dir = 4; name = "Teleporter APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) +"bKm" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/item/device/radio/beacon,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) +"bKn" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) +"bKo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/teleporter{name = "\improper Teleporter Room"}) +"bKp" = (/obj/structure/closet/crate{icon_state = "crate"; opened = 0},/obj/item/stack/cable_coil,/obj/item/weapon/crowbar,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/power/apc{dir = 4; name = "Teleporter APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) "bKq" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bKr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bKs" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) @@ -4612,10 +4612,10 @@ "bKJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/theatre) "bKK" = (/obj/structure/table/wood,/obj/machinery/light/small,/obj/item/clothing/glasses/regular/hipster{name = "Hipster Glasses"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "bKL" = (/obj/item/device/instrument/violin,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bKM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) +"bKM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) "bKN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 10; icon_state = "yellow"},/area/hallway/primary/starboard) "bKO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellow"},/area/hallway/primary/starboard) -"bKP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/hallway/primary/starboard) +"bKP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/kirbyplants{icon_state = "plant-22"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "yellow"},/area/hallway/primary/starboard) "bKQ" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) "bKR" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) "bKS" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/atmos) @@ -4641,7 +4641,7 @@ "bLm" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/lattice,/obj/structure/lattice,/turf/simulated/wall/r_wall,/area/space) "bLn" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/lattice,/turf/simulated/wall/r_wall,/area/space) "bLo" = (/obj/machinery/message_server,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"bLp" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) +"bLp" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bLq" = (/obj/machinery/light/small,/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/camera{c_tag = "Telecoms - Control Room"; dir = 1; network = list("SS13","tcomm")},/obj/structure/table/wood,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/tcommsat/computer{name = "\improper Telecoms Control Room"}) "bLr" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;27;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bLs" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) @@ -4650,7 +4650,7 @@ "bLv" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "bLw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bLx" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;27;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bLy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bLy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bLz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bLA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bLB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/turf/simulated/floor/wood,/area/security/vacantoffice) @@ -4659,21 +4659,21 @@ "bLE" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet,/area/security/vacantoffice) "bLF" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/security/vacantoffice) "bLG" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/library) -"bLH" = (/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/library) +"bLH" = (/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/library) "bLI" = (/obj/machinery/door/window/northright{base_state = "left"; dir = 8; icon_state = "left"; name = "Library Desk Door"; pixel_x = 3; req_access_txt = "37"},/turf/simulated/floor/wood,/area/library) "bLJ" = (/obj/effect/landmark/start{name = "Librarian"},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) "bLK" = (/obj/structure/table/wood,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = 0},/obj/machinery/computer/libraryconsole/bookmanagement,/turf/simulated/floor/wood,/area/library) "bLL" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/library) "bLM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bLN" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bLN" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bLO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bLP" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/multitool,/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bLQ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bLR" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bLS" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) +"bLR" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bLS" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) "bLT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) "bLU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) -"bLV" = (/obj/structure/closet/crate{icon_state = "crate"; opened = 0},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) +"bLV" = (/obj/structure/closet/crate{icon_state = "crate"; opened = 0},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) "bLW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/teleporter{name = "\improper Teleporter Room"}) "bLX" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) "bLY" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/bridge/meeting_room{name = "\improper Command Hallway"}) @@ -4686,18 +4686,18 @@ "bMf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/gateway) "bMg" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/gateway) "bMh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/gateway) -"bMi" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) -"bMj" = (/obj/machinery/gateway{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"bMk" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) -"bMl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/maintcentral{name = "Central Maintenance"}) +"bMi" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/gateway) +"bMj" = (/obj/machinery/gateway{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) +"bMk" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/gateway) +"bMl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/maintcentral{name = "Central Maintenance"}) "bMm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bMn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/central) "bMo" = (/turf/simulated/wall,/area/crew_quarters/kitchen) -"bMp" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bMq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bMp" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bMq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bMr" = (/obj/machinery/computer/security/telescreen/entertainment,/turf/simulated/wall,/area/crew_quarters/kitchen) -"bMs" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bMt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bMs" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bMt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bMu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bMv" = (/obj/machinery/vending/snack,/obj/machinery/newscaster{pixel_y = -29},/turf/simulated/floor/carpet,/area/crew_quarters/bar) "bMw" = (/obj/machinery/vending/coffee,/turf/simulated/floor/carpet,/area/crew_quarters/bar) @@ -4710,7 +4710,7 @@ "bMD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Telecoms Storage"; req_access_txt = "61"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/maintenance/atmos_control{name = "Telecoms Storage"}) "bME" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/atmos) "bMF" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "External Waste Ports to Filter"; on = 1},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/atmos) -"bMG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{tag = "icon-manifold-r (EAST)"; dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) +"bMG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) "bMH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 2},/turf/simulated/floor/plasteel,/area/atmos) "bMI" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/atmos) "bMJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 1; scrub_Toxins = 1},/turf/simulated/floor/plasteel,/area/atmos) @@ -4732,12 +4732,12 @@ "bMZ" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "bNa" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bNb" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/door/window{base_state = "right"; dir = 2; icon_state = "right"; name = "MiniSat Walkway Access"; req_access_txt = "0"},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft Starboard"; dir = 4; network = list("MiniSat")},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bNc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1; tag = "icon-plant-06"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) +"bNc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-06"; level = 4.1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bNd" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bNe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bNf" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bNg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Arrivals - Aft Arm"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bNh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bNh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bNi" = (/obj/machinery/power/apc{dir = 8; name = "Vacant Office APC"; pixel_x = -25},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/wood,/area/security/vacantoffice) "bNj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/security/vacantoffice) "bNk" = (/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) @@ -4754,15 +4754,15 @@ "bNv" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) "bNw" = (/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) "bNx" = (/obj/structure/closet/emcloset,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/library) -"bNy" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/power/apc{dir = 8; name = "E.V.A. Storage APC"; pixel_x = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bNy" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/power/apc{dir = 8; name = "E.V.A. Storage APC"; pixel_x = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bNz" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bNA" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bNB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bNC" = (/obj/machinery/door/window/northleft{dir = 8; name = "Magboot Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots{pixel_x = 0; pixel_y = 0},/obj/item/clothing/shoes/magboots{pixel_x = 4; pixel_y = -3},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bNC" = (/obj/machinery/door/window/northleft{dir = 8; name = "Magboot Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots{pixel_x = 0; pixel_y = 0},/obj/item/clothing/shoes/magboots{pixel_x = 4; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bND" = (/obj/machinery/teleport/hub,/turf/simulated/floor/plating,/area/teleporter{name = "\improper Teleporter Room"}) "bNE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 1; scrub_Toxins = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) "bNF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) -"bNG" = (/obj/machinery/door/window/northleft{dir = 8; name = "Disposals Chute"; pixel_x = -1; pixel_y = 0; req_access_txt = "0"},/obj/machinery/disposal/deliveryChute{dir = 8; name = "disposals chute"; pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) +"bNG" = (/obj/machinery/door/window/northleft{dir = 8; name = "Disposals Chute"; pixel_x = -1; pixel_y = 0; req_access_txt = "0"},/obj/machinery/disposal/deliveryChute{dir = 8; name = "disposals chute"; pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) "bNH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy"; name = "showroom shutters"},/turf/simulated/floor/plating,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bNI" = (/turf/simulated/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bNJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) @@ -4771,19 +4771,19 @@ "bNM" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/gateway) "bNN" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/gateway) "bNO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/gateway) -"bNP" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"bNP" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) "bNQ" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/gateway) -"bNR" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) +"bNR" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) "bNS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/cigbutt,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "bNT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = -32; pixel_y = 0},/obj/machinery/camera{c_tag = "Central Primary Hallway - Starboard - Kitchen"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bNU" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/button/door{id = "kitchenwindow"; name = "Window Shutter Control"; pixel_x = -26; pixel_y = 0; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bNV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/button/door{id = "kitchen"; name = "Kitchen Shutters Control"; pixel_x = -4; pixel_y = 26; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 6; pixel_y = 26},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bNW" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bNX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bNY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bNZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bOa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sink/kitchen{pixel_y = 28},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bOb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bNW" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bNX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bNY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bNZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bOa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sink/kitchen{pixel_y = 28},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bOb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bOc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -26; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "bOd" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "bOe" = (/obj/machinery/vending/autodrobe,/turf/simulated/floor/wood,/area/crew_quarters/theatre) @@ -4817,15 +4817,15 @@ "bOG" = (/obj/machinery/camera{c_tag = "Arrivals - Aft Arm - Far"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bOH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) "bOI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bOJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) +"bOJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/entry{name = "Arrivals"}) "bOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bluecorner"},/area/hallway/secondary/entry{name = "Arrivals"}) "bOL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) "bOM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = -32},/turf/simulated/floor/plasteel{dir = 2; icon_state = "arrival"},/area/hallway/secondary/entry{name = "Arrivals"}) -"bON" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = -32},/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1; tag = "icon-plant-03"},/turf/simulated/floor/plasteel{icon_state = "arrival"; dir = 6},/area/hallway/secondary/entry{name = "Arrivals"}) +"bON" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = -32},/obj/structure/flora/kirbyplants{icon_state = "plant-03"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "arrival"; dir = 6},/area/hallway/secondary/entry{name = "Arrivals"}) "bOO" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood,/area/security/vacantoffice) "bOP" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/wood,/area/security/vacantoffice) "bOQ" = (/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/black,/obj/item/weapon/lipstick/jade{pixel_x = 2; pixel_y = 2},/obj/item/weapon/lipstick/purple{pixel_x = -2; pixel_y = -2},/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bOR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bOR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bOS" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/rack_parts,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bOT" = (/obj/machinery/light/small,/obj/machinery/power/apc{dir = 8; name = "Library APC"; pixel_x = -25},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/wood,/area/library) "bOU" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/library) @@ -4836,24 +4836,24 @@ "bOZ" = (/obj/machinery/light/small,/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) "bPa" = (/obj/machinery/light_switch{pixel_y = -28},/turf/simulated/floor/wood,/area/library) "bPb" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) -"bPc" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/library) +"bPc" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/library) "bPd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bPe" = (/obj/structure/closet/crate/rcd{pixel_y = 4},/obj/machinery/door/window/northleft{dir = 4; name = "RCD Storage"; pixel_x = 1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bPe" = (/obj/structure/closet/crate/rcd{pixel_y = 4},/obj/machinery/door/window/northleft{dir = 4; name = "RCD Storage"; pixel_x = 1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bPf" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bPg" = (/obj/structure/dispenser/oxygen{layer = 2.9; pixel_x = -1; pixel_y = 2},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bPh" = (/obj/machinery/camera/motion{c_tag = "E.V.A. Storage"; dir = 8},/obj/machinery/requests_console{department = "EVA"; pixel_x = 32; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bPi" = (/obj/machinery/teleport/station,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/teleporter{name = "\improper Teleporter Room"}) "bPj" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) "bPk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) -"bPl" = (/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 8; network = list("SS13")},/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 27; pixel_y = 0},/obj/structure/rack,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) +"bPl" = (/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 8; network = list("SS13")},/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 27; pixel_y = 0},/obj/structure/rack,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) "bPm" = (/obj/structure/window/reinforced,/obj/structure/showcase{desc = "A stand with an retired construction mech bolted to it. The clamps are rated at 9300PSI. It seems to be falling apart."; icon = 'icons/mecha/mecha.dmi'; icon_state = "firefighter"; name = "construction mech exhibit"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPn" = (/obj/structure/sign/atmosplaque{desc = "A guide to the exhibit, detailing the constructive and destructive applications of modern mech appliances, as well as the development of the uncorruptable cyborg servants of tomorrow, available today."; icon_state = "kiddieplaque"; name = "\improper 'Perfect Machine' sign"; pixel_x = 0; pixel_y = 32},/obj/structure/showcase{desc = "This cyborg looks frighteningly robust, with cold unseeing eyes. Signs praise the incorruptible nature of synthetics."; dir = 2; icon = 'icons/mob/robots.dmi'; icon_state = "Security"; name = "'Perfect Machine' cyborg exhibit"; pixel_y = 3},/obj/structure/window/reinforced,/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPo" = (/obj/structure/showcase{desc = "A stand with an empty old NanoTrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees."; icon = 'icons/mecha/mecha.dmi'; icon_state = "marauder"; name = "combat mech exhibit"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) -"bPp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bookcase{name = "bookcase"},/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster instructing the viewer to report suspicious activity to the security force."; icon_state = "poster21_legit"; name = "poster - Report"; pixel_y = 31; tag = "icon-poster21_legit"},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) +"bPp" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bookcase{name = "bookcase"},/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster instructing the viewer to report suspicious activity to the security force."; icon_state = "poster21_legit"; name = "poster - Report"; pixel_y = 31},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPq" = (/obj/structure/table/wood,/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in."; pixel_x = -3; pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPs" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/item/clothing/shoes/laceup,/obj/item/clothing/under/suit_jacket/really_black,/obj/item/clothing/glasses/sunglasses,/obj/machinery/camera{c_tag = "Corporate Showroom"; dir = 2; network = list("SS13")},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) -"bPt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bookcase{name = "bookcase"},/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. Enlist in the Nanotrasen Deathsquadron reserves today!"; icon_state = "poster29_legit"; name = "poster - Enlist"; pixel_y = 31; tag = "icon-poster29_legit"},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) +"bPt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bookcase{name = "bookcase"},/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. Enlist in the Nanotrasen Deathsquadron reserves today!"; icon_state = "poster29_legit"; name = "poster - Enlist"; pixel_y = 31},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPu" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced,/obj/structure/showcase{desc = "Signs describe how cloning pods like these ensure that every NanoTrasen employee can carry out their contracts in full, even in the unlikely event of their catastrophic death. Hopefully they aren't all made of cardboard, like this one."; icon = 'icons/obj/cloning.dmi'; icon_state = "pod_0"; layer = 4; name = "cloning pod exhibit"; pixel_x = 2; pixel_y = 5},/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPv" = (/obj/structure/showcase{desc = "A stand with a model of the perfect Nanotrasen Employee bolted to it. Signs indicate it is robustly genetically engineered, as well as being ruthlessly loyal."; name = "'Perfect Man' employee exhibit"},/obj/structure/sign/atmosplaque{desc = "A guide to the exhibit, explaining how recent developments in loyalty implant and cloning technologies by NanoTrasen Corporation have led to the development and the effective immortality of the 'perfect man', the loyal Nanotrasen Employee."; icon_state = "kiddieplaque"; name = "\improper 'Perfect Man' sign"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced,/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bPw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced,/obj/effect/decal/cleanable/cobweb2,/obj/structure/showcase{desc = "A flimsy model of a standard NanoTrasen automated loyalty implant machine. With secure positioning harnesses and a robotic surgical injector, brain damage and other serious medical anomalies are now up to 60% less likely!"; icon = 'icons/obj/machines/implantchair.dmi'; icon_state = "implantchair"; layer = 2.7; name = "NanoTrasen automated loyalty implanter exhibit"; pixel_x = 0; pixel_y = 4},/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) @@ -4861,19 +4861,19 @@ "bPy" = (/obj/structure/bed/roller,/obj/machinery/vending/wallmed{pixel_x = -28; pixel_y = 0},/obj/machinery/camera{c_tag = "Gateway - Atrium"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/gateway) "bPz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/gateway) "bPA" = (/obj/structure/dispenser/oxygen{pixel_x = -1; pixel_y = 2},/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 29; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/gateway) -"bPB" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/gateway) -"bPC" = (/obj/machinery/gateway,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/gateway) -"bPD" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/gateway) +"bPB" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/gateway) +"bPC" = (/obj/machinery/gateway,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) +"bPD" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/gateway) "bPE" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "bPF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bPG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/central) "bPH" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenwindow"; name = "kitchen shutters"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bPI" = (/obj/structure/rack,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bPJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bPK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bPL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bPM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bPN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bPI" = (/obj/structure/rack,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bPJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bPK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bPL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bPM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bPN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bPO" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/vending/dinnerware,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bPP" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bPQ" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) @@ -4882,7 +4882,7 @@ "bPT" = (/obj/machinery/light/small{dir = 8},/obj/item/clothing/mask/pig,/obj/item/weapon/bikehorn,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/crew_quarters/theatre) "bPU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "bPV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bPW" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/sign/poster{icon_state = "poster6"; pixel_x = 31; tag = "icon-poster6"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) +"bPW" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/sign/poster{icon_state = "poster6"; pixel_x = 31},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "bPX" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{dir = 8; name = "Telecoms Storage APC"; pixel_x = -28; pixel_y = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/atmos_control{name = "Telecoms Storage"}) "bPY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/atmos_control{name = "Telecoms Storage"}) "bPZ" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/maintenance/atmos_control{name = "Telecoms Storage"}) @@ -4910,16 +4910,16 @@ "bQv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bQw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Quiet Room"; opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/library) "bQx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Quiet Room"; opacity = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/wood,/area/library) -"bQy" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bQy" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) "bQz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bQA" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bQA" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bQB" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bQC" = (/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bQD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bQE" = (/obj/machinery/door/window/northleft{dir = 8; name = "Jetpack Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 4; pixel_y = -1},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 0; pixel_y = 0},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = -4; pixel_y = 1},/turf/simulated/floor/plasteel{tag = "icon-vault (WEST)"; icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) +"bQE" = (/obj/machinery/door/window/northleft{dir = 8; name = "Jetpack Storage"; pixel_x = -1; pixel_y = 0; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 4; pixel_y = -1},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 0; pixel_y = 0},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = -4; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bQF" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plating,/area/teleporter{name = "\improper Teleporter Room"}) "bQG" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) -"bQH" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/weapon/tank/internals/oxygen,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) +"bQH" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/weapon/tank/internals/oxygen,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) "bQI" = (/turf/simulated/wall,/area/teleporter{name = "\improper Teleporter Room"}) "bQJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bQK" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) @@ -4927,26 +4927,26 @@ "bQM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bQN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bQO" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) -"bQP" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/assembly/showroom{name = "\improper Corporate Showroom"}) +"bQP" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bQQ" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bQR" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Nanotrasen Corporate Showroom APC"; pixel_x = 28; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/item/weapon/cigbutt,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bQS" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/item/weapon/reagent_containers/syringe/charcoal,/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = -1; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/gateway) -"bQT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/gateway) +"bQT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/gateway) "bQU" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/gateway) "bQV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/gateway) -"bQW" = (/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/gateway) -"bQX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/gateway) -"bQY" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/gateway) -"bQZ" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/maintcentral{name = "Central Maintenance"}) +"bQW" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/gateway) +"bQX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/gateway) +"bQY" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/gateway) +"bQZ" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/maintcentral{name = "Central Maintenance"}) "bRa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bRb" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/preopen{id = "kitchenwindow"; name = "kitchen shutters"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bRc" = (/obj/machinery/food_cart,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bRc" = (/obj/machinery/food_cart,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bRd" = (/obj/effect/landmark/start{name = "Cook"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bRe" = (/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRf" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bRi" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bRe" = (/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bRf" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bRh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bRi" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bRj" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bRk" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bRl" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) @@ -4979,7 +4979,7 @@ "bRM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/hallway/secondary/entry{name = "Arrivals"}) "bRN" = (/turf/space,/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) "bRO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bRP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bRP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bRQ" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/poster/legit,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bRR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bRS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -4988,7 +4988,7 @@ "bRV" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/horsehead,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bRW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bRX" = (/obj/structure/rack,/obj/item/weapon/storage/box,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bRY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bRY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bRZ" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bSa" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/library) "bSb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/wood,/area/library) @@ -4997,20 +4997,20 @@ "bSe" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/wood,/area/library) "bSf" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/simulated/floor/wood,/area/library) "bSg" = (/obj/structure/table/wood,/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/turf/simulated/floor/wood,/area/library) -"bSh" = (/obj/structure/cult/tome,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/obj/item/clothing/under/suit_jacket/red,/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bSi" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bSj" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/light/small{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bSh" = (/obj/structure/cult/tome,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/obj/item/clothing/under/suit_jacket/red,/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) +"bSi" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) +"bSj" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/light/small{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) "bSk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "bSl" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bSm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 1; scrub_Toxins = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bSn" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) +"bSn" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) "bSo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) "bSp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) -"bSq" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) +"bSq" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) "bSr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/robot_parts/chest{name = "cyborg torso"; pixel_x = -2; pixel_y = 2},/obj/item/robot_parts/head{name = "cyborg head"; pixel_x = 3; pixel_y = 2},/obj/structure/table/wood,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bSs" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bSt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) -"bSu" = (/turf/simulated/floor/wood{tag = "icon-wood-broken3"; icon_state = "wood-broken3"},/area/assembly/showroom{name = "\improper Corporate Showroom"}) +"bSu" = (/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bSv" = (/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/crap{name = "\improper NanoTrasen-brand rechargable AA battery"},/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bSw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bSx" = (/obj/structure/table/wood,/obj/item/toy/carpplushie{color = "red"; name = "NanoTrasen wildlife department space carp plushie"},/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) @@ -5028,13 +5028,13 @@ "bSJ" = (/obj/machinery/door/airlock/maintenance{name = "Gateway Maintenance"; req_access_txt = "17"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/gateway) "bSK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/maintcentral{name = "Central Maintenance"}) "bSL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bSM" = (/obj/structure/rack,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bSS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSM" = (/obj/structure/rack,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bSS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bST" = (/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_x = 30; pixel_y = 0},/obj/machinery/processor,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bSU" = (/obj/structure/closet/crate{desc = "It's a storage unit for kitchen clothes and equipment."; name = "Kitchen Crate"},/obj/item/clothing/head/chefhat,/obj/item/clothing/under/rank/chef,/obj/item/weapon/storage/box/mousetraps{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/mousetraps,/obj/item/clothing/under/waiter,/obj/item/clothing/under/waiter,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bSV" = (/obj/effect/landmark/start{name = "Chef"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) @@ -5063,19 +5063,19 @@ "bTs" = (/obj/machinery/hologram/holopad,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/wood,/area/library) "bTt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/library) "bTu" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood,/area/library) -"bTv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/wood{tag = "icon-wood-broken"; icon_state = "wood-broken"},/area/library) +"bTv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/library) "bTw" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) -"bTx" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bTy" = (/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/item/device/radio/intercom{pixel_y = -25},/obj/structure/table/wood,/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) -"bTz" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/library) +"bTx" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) +"bTy" = (/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/item/device/radio/intercom{pixel_y = -25},/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) +"bTz" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/library) "bTA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "bTB" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bTC" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) "bTD" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"}) -"bTE" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{tag = "icon-vault (EAST)"; icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) +"bTE" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/teleporter{name = "\improper Teleporter Room"}) "bTF" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) "bTG" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/teleporter{name = "\improper Teleporter Room"}) -"bTH" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{tag = "icon-vault (NORTH)"; icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) +"bTH" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/teleporter{name = "\improper Teleporter Room"}) "bTI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/wood,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/item/weapon/folder/blue,/obj/item/clothing/head/collectable/HoS{desc = "It's your turn to demand excessive paperwork, signatures, stamps, and hire more clowns! Papers, please!"; icon_state = "hopcap"; name = "novelty HoP hat"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bTJ" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{desc = "A large briefcase with a digital locking system, and the NanoTrasen logo emblazoned on the sides."; name = "NanoTrasen-brand secure briefcase exhibit"; pixel_y = 2},/turf/simulated/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bTK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) @@ -5097,21 +5097,21 @@ "bUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bUb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/power/apc{dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable/yellow,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) "bUc" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bUd" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/button/door{id = "kitchenhydro"; name = "Service Shutter Control"; pixel_x = 0; pixel_y = -24; req_access_txt = "28"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUd" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/button/door{id = "kitchenhydro"; name = "Service Shutter Control"; pixel_x = 0; pixel_y = -24; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bUe" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/device/radio/intercom{pixel_y = -25},/obj/item/weapon/kitchen/rollingpin,/obj/machinery/camera{c_tag = "Kitchen"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 2},/area/crew_quarters/kitchen) -"bUf" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bUg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bUh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUf" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) +"bUh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) "bUi" = (/obj/machinery/door/airlock{name = "Kitchen Cold Room"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bUj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bUk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Kitchen - Coldroom"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bUl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -26},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bUm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "bUn" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bUo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"bUo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "bUp" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area/maintenance/starboard) "bUq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"bUr" = (/obj/item/weapon/crowbar,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"bUr" = (/obj/item/weapon/crowbar,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "bUs" = (/obj/structure/fireaxecabinet{pixel_x = -32; pixel_y = 0},/obj/machinery/camera{c_tag = "Atmospherics - Port"; dir = 4; network = list("SS13")},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "caution"},/area/atmos) "bUt" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/atmos) "bUu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/obj/item/weapon/wrench,/turf/simulated/floor/plasteel,/area/atmos) @@ -5125,8 +5125,8 @@ "bUC" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bUD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bUE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bUF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bUG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bUF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bUG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bUH" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bUI" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bUJ" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/wood,/area/library) @@ -5141,24 +5141,24 @@ "bUS" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Access Shutter"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/teleporter{name = "\improper Teleporter Room"}) "bUT" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Access Shutter"},/obj/machinery/button/door{id = "teleshutter"; name = "Teleporter Shutter Control"; pixel_x = 30; pixel_y = 5; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/teleporter{name = "\improper Teleporter Room"}) "bUU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy"; name = "showroom shutters"},/turf/simulated/floor/plating,/area/assembly/showroom{name = "\improper Corporate Showroom"}) -"bUV" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster encouraging you to work for your future - but what it is, no one is really sure."; icon_state = "poster17_legit"; name = "poster - Work for a Future"; tag = "icon-poster17_legit"},/turf/simulated/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"}) +"bUV" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster encouraging you to work for your future - but what it is, no one is really sure."; icon_state = "poster17_legit"; name = "poster - Work for a Future"},/turf/simulated/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bUW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) -"bUX" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster depicting the logo of Nanotrasen."; icon_state = "poster2_legit"; name = "poster - NanoTrasen logo"; tag = "icon-poster2_legit"},/turf/simulated/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"}) +"bUX" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster depicting the logo of Nanotrasen."; icon_state = "poster2_legit"; name = "poster - NanoTrasen logo"},/turf/simulated/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bUY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/simulated/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"}) -"bUZ" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster instructing the viewer to obey authority."; icon_state = "poster9_legit"; name = "poster - Obey"; tag = "icon-poster9_legit"},/turf/simulated/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"}) +"bUZ" = (/obj/structure/sign/poster{desc = "A large piece of space-resistant printed paper. A poster instructing the viewer to obey authority."; icon_state = "poster9_legit"; name = "poster - Obey"},/turf/simulated/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"}) "bVa" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "gateshutter"; name = "Gateway Access Shutter"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/gateway) "bVb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;17"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"}) "bVc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bVd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "greencorner"},/area/hallway/primary/central) "bVe" = (/turf/simulated/wall,/area/hallway/primary/central) "bVf" = (/turf/simulated/wall,/area/hydroponics) -"bVg" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenhydro"; name = "Service Shutter"},/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Service Door"; req_access_txt = "0"; req_one_access_txt = "35;28"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/hydroponics) +"bVg" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenhydro"; name = "Service Shutter"},/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Service Door"; req_access_txt = "0"; req_one_access_txt = "35;28"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/hydroponics) "bVh" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 1; name = "Kitchen Window"; req_access_txt = "28"; req_one_access_txt = "0"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/paper,/obj/machinery/door/window/eastleft{dir = 2; name = "Hydroponics Window"; req_access_txt = "0"; req_one_access_txt = "30;35"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/hydroponics) "bVi" = (/obj/machinery/smartfridge,/turf/simulated/wall,/area/hydroponics) "bVj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/crew_quarters/kitchen) "bVk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/crew_quarters/kitchen) "bVl" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bVm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) +"bVm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) "bVn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/starboard) "bVo" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Starboard Maintenance APC"; pixel_x = -1; pixel_y = 26},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) "bVp" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -5167,9 +5167,9 @@ "bVs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/simulated/floor/plating,/area/maintenance/starboard) "bVt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/starboard) "bVu" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/atmos) -"bVv" = (/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (WEST)"},/turf/simulated/floor/plasteel,/area/atmos) +"bVv" = (/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"},/turf/simulated/floor/plasteel,/area/atmos) "bVw" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Port to Filter"; on = 0},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics - Starboard"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/atmos) -"bVx" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) +"bVx" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) "bVy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/obj/structure/window/reinforced,/turf/space,/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bVz" = (/turf/simulated/wall,/area/maintenance/portsolar) "bVA" = (/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access"; req_access_txt = "10"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/portsolar) @@ -5186,17 +5186,17 @@ "bVL" = (/obj/structure/table/wood,/obj/item/weapon/paper,/obj/machinery/light,/turf/simulated/floor/wood,/area/library) "bVM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/library) "bVN" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "0"; req_one_access_txt = "12;37"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bVO" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bVO" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bVP" = (/obj/machinery/vending/snack,/obj/machinery/newscaster{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) "bVQ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=11-Command-Port"; location = "10.2-Aft-Port-Corner"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bVR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "bVS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bVT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) +"bVT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) "bVU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/central) -"bVV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) +"bVV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) "bVW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bVX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) -"bVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) +"bVX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) +"bVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) "bVZ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1; initialize_directions = 11},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 4; icon_state = "neutralcorner"},/area/hallway/primary/central) "bWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/primary/central) "bWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/primary/central) @@ -5208,8 +5208,8 @@ "bWh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1; initialize_directions = 11},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bWi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bWj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 21},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) -"bWk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_x = 0; pixel_y = 26; req_access_txt = "19"},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) -"bWl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) +"bWk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_x = 0; pixel_y = 26; req_access_txt = "19"},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/hallway/primary/central) +"bWl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) "bWm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bWn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/primary/central) "bWo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/botany{pixel_x = 32; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/hallway/primary/central) @@ -5228,28 +5228,28 @@ "bWB" = (/obj/structure/closet{name = "spare parts locker"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/rack_parts,/obj/item/weapon/rack_parts,/obj/item/weapon/wrench,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) "bWC" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastright{dir = 1; name = "Kitchen Delivery"; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) "bWD" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/crew_quarters/kitchen) -"bWE" = (/obj/structure/disposalpipe/sortjunction{dir = 2; sortType = 20},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) +"bWE" = (/obj/structure/disposalpipe/sortjunction{dir = 2; sortType = 20},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) "bWF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/starboard) "bWG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/starboard) -"bWH" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"bWH" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "bWI" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/starboard) "bWJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/starboard) "bWK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area/maintenance/starboard) "bWL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/atmos) "bWM" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/atmos) "bWN" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "warning"},/area/atmos) -"bWO" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 28},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/atmos) +"bWO" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 28},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/atmos) "bWP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) "bWQ" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel,/area/atmos) -"bWR" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 4; on = 1; tag = ""},/turf/simulated/floor/plasteel,/area/atmos) +"bWR" = (/obj/machinery/atmospherics/components/unary/heat_reservoir/heater{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/atmos) "bWS" = (/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,/turf/simulated/floor/plasteel,/area/atmos) -"bWT" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 to Pure"; on = 0},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/atmos) +"bWT" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 to Pure"; on = 0},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/atmos) "bWU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) "bWV" = (/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) "bWW" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "bWX" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "bWY" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"bWZ" = (/obj/machinery/power/apc{dir = 8; name = "Aft Port Solar APC"; pixel_x = -26; pixel_y = 3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/portsolar) +"bWZ" = (/obj/machinery/power/apc{dir = 8; name = "Aft Port Solar APC"; pixel_x = -26; pixel_y = 3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/portsolar) "bXa" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/portsolar) "bXb" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/maintenance/portsolar) "bXc" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2{name = "Port Maintenance"}) @@ -5279,7 +5279,7 @@ "bXA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=8-Central-to-Aft"; location = "7.5-Starboard-Aft-Corner"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bXB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/hallway/primary/central) "bXC" = (/turf/simulated/floor/plasteel{icon_state = "greenfull"},/area/hallway/primary/central) -"bXD" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Hydroponics Desk"; req_access_txt = "0"; req_one_access_txt = "30;35"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "greenfull"; tag = "icon-whitehall (WEST)"},/area/hydroponics) +"bXD" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Hydroponics Desk"; req_access_txt = "0"; req_one_access_txt = "30;35"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "greenfull"},/area/hydroponics) "bXE" = (/turf/simulated/floor/plasteel{dir = 9; icon_state = "green"},/area/hydroponics) "bXF" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "green"},/area/hydroponics) "bXG" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "green"},/area/hydroponics) @@ -5300,27 +5300,27 @@ "bXV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 2},/obj/machinery/meter,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/atmos) "bXW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bXX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Port to Fuel Pipe"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bXY" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/atmos) +"bXY" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/atmos) "bXZ" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "co2_sensor"},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) "bYa" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) "bYb" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) -"bYc" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/camera{c_tag = "Aft Port Solar Maintenance"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/portsolar) -"bYd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"bYc" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera{c_tag = "Aft Port Solar Maintenance"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"bYd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/portsolar) "bYe" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/simulated/floor/plating,/area/maintenance/portsolar) "bYf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bYg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bYg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bYh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) -"bYi" = (/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) -"bYj" = (/turf/simulated/floor/plating{tag = "icon-warnplatecorner (WEST)"; icon_state = "warnplatecorner"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"bYi" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"bYj" = (/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "bYk" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) -"bYl" = (/turf/simulated/floor/plating{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) +"bYl" = (/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "bYm" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "bYn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bYo" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bYp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bYq" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 16},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bYr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;5;39;37;25;28"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bYs" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) +"bYs" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) "bYt" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bYu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Central Primary Hallway - Aft-Port Corner"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) "bYv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/central) @@ -5350,7 +5350,7 @@ "bYT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "greencorner"},/area/hallway/primary/central) "bYU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/hallway/primary/central) "bYV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "greenfull"},/area/hallway/primary/central) -"bYW" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 4; name = "Hydroponics Desk"; req_access_txt = "0"; req_one_access_txt = "30;35"},/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/turf/simulated/floor/plasteel{dir = 4; icon_state = "greenfull"; tag = "icon-whitehall (WEST)"},/area/hydroponics) +"bYW" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 4; name = "Hydroponics Desk"; req_access_txt = "0"; req_one_access_txt = "30;35"},/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/turf/simulated/floor/plasteel{dir = 4; icon_state = "greenfull"},/area/hydroponics) "bYX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "green"},/area/hydroponics) "bYY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 6},/area/hydroponics) "bYZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/hydroponics) @@ -5363,9 +5363,9 @@ "bZg" = (/obj/machinery/seed_extractor,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hydroponics) "bZh" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/closet/wardrobe/botanist,/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "bZi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/machinery/firealarm{pixel_y = 29},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bZj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"bZj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "bZk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/starboard) -"bZl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/starboard) +"bZl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard) "bZm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "bZn" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/starboard) "bZo" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -5381,30 +5381,30 @@ "bZy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bZz" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{color = "#330000"},/obj/machinery/meter{color = ""},/turf/simulated/floor/plasteel,/area/atmos) "bZA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Pure to Fuel Pipe"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) -"bZB" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{tag = "icon-manifold-y (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/atmos) -"bZC" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = 3; on = 1},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/atmos) +"bZB" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) +"bZC" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = 3; on = 1},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/atmos) "bZD" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "co2_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) "bZE" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - CO2"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) "bZF" = (/obj/machinery/power/solar_control{id = "aftport"; name = "Aft Port Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/portsolar) -"bZG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/portsolar) +"bZG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/portsolar) "bZH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/portsolar) "bZI" = (/obj/structure/rack,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bZJ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bZK" = (/obj/structure/closet,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"bZL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"bZL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "bZM" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "bZN" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "bZO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"bZP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"bZP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "bZQ" = (/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "bZR" = (/obj/structure/girder,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "bZS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bZT" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bZU" = (/obj/structure/closet,/obj/item/clothing/tie/stethoscope,/obj/item/weapon/hemostat,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"}) -"bZV" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) +"bZV" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"}) "bZW" = (/turf/simulated/wall,/area/medical/medbay2{name = "Medbay Storage"}) "bZX" = (/turf/simulated/wall,/area/security/checkpoint/medical) -"bZY" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1; tag = "icon-applebush"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/central) +"bZY" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "applebush"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/central) "bZZ" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/central) "caa" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/central) "cab" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/central) @@ -5417,8 +5417,8 @@ "cai" = (/obj/machinery/camera{c_tag = "Central Primary Hallway - Aft-Starboard"; dir = 1; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/central) "caj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/central) "cak" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/central) -"cal" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1; tag = "icon-plant-10"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/central) -"cam" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/newscaster{pixel_y = -29},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) +"cal" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/central) +"cam" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/newscaster{pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) "can" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;35;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cao" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/hallway/primary/central) "cap" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics Storage"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hallway/primary/central) @@ -5432,7 +5432,7 @@ "cax" = (/obj/item/seeds/wheatseed,/obj/item/seeds/sugarcaneseed,/obj/item/seeds/potatoseed,/obj/item/seeds/appleseed,/obj/item/weapon/grown/corncob,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin{pixel_y = 5},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera/autoname{dir = 8; network = list("SS13")},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hydroponics) "cay" = (/obj/structure/closet/secure_closet/hydroponics,/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "caz" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"caA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2"; icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plating,/area/maintenance/starboard) +"caA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/plating,/area/maintenance/starboard) "caB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "caC" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/starboard) "caD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -5447,17 +5447,17 @@ "caM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/turf/simulated/floor/plasteel,/area/atmos) "caN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/atmos) "caO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/portsolar) -"caP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/portsolar) +"caP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/portsolar) "caQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "caR" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/weapon/poster/contraband,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "caS" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"caT" = (/obj/machinery/light_construct,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"caT" = (/obj/machinery/light_construct,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "caU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "caV" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "caW" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "caX" = (/turf/simulated/floor/mech_bay_recharge_floor,/area/maintenance/aft{name = "Aft Maintenance"}) "caY" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/bluegrid,/area/maintenance/aft{name = "Aft Maintenance"}) -"caZ" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"caZ" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) "cba" = (/obj/item/weapon/vending_refill/cola,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cbb" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cbc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;5;39;25;28"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -5472,17 +5472,17 @@ "cbl" = (/obj/item/weapon/pen,/obj/structure/table/reinforced,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/item/weapon/folder/red,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = 3; pixel_y = 4},/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/medical) "cbm" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/medbay{name = "Medbay Central"}) "cbn" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall,/area/medical/medbay{name = "Medbay Central"}) -"cbo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/medbay{name = "Medbay Central"}) -"cbp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/medbay{name = "Medbay Central"}) -"cbq" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0; tag = "icon-direction_eng (EAST)"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 1; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8; tag = "icon-direction_bridge (EAST)"},/turf/simulated/wall,/area/medical/medbay{name = "Medbay Central"}) +"cbo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"},/area/medical/medbay{name = "Medbay Central"}) +"cbp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"},/area/medical/medbay{name = "Medbay Central"}) +"cbq" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is."; dir = 1; icon_state = "direction_sec"; pixel_x = 0; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; icon_state = "direction_eng"; pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is."; dir = 1; icon_state = "direction_bridge"; name = "bridge"; pixel_y = -8},/turf/simulated/wall,/area/medical/medbay{name = "Medbay Central"}) "cbr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/aft) "cbs" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "cbt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass,/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/aft) -"cbu" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; dir = 8; icon_state = "direction_med"; name = "medical department"; pixel_y = 8; tag = "icon-direction_med"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"; tag = "icon-direction_evac"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = -8; tag = "icon-direction_sci"},/turf/simulated/wall,/area/medical/research{name = "Research Division"}) +"cbu" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is."; dir = 8; icon_state = "direction_med"; name = "medical department"; pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is."; dir = 4; icon_state = "direction_sci"; name = "research department"; pixel_y = -8},/turf/simulated/wall,/area/medical/research{name = "Research Division"}) "cbv" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) "cbw" = (/obj/structure/sign/science,/turf/simulated/wall,/area/medical/research{name = "Research Division"}) -"cbx" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/research{name = "Research Division"}) -"cby" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/research{name = "Research Division"}) +"cbx" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"cby" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cbz" = (/turf/simulated/wall,/area/medical/research{name = "Research Division"}) "cbA" = (/turf/simulated/wall,/area/security/checkpoint/science{name = "Security Post - Research Division"}) "cbB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) @@ -5494,9 +5494,9 @@ "cbH" = (/obj/machinery/biogenerator,/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hydroponics) "cbI" = (/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light_switch{pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "cbJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"cbK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/starboard) +"cbK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) "cbL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) -"cbM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboard) +"cbM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) "cbN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/starboard) "cbO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/incinerator) "cbP" = (/obj/machinery/door/airlock/maintenance{name = "Incinerator Access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/incinerator) @@ -5509,7 +5509,7 @@ "cbW" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/simulated/floor/plasteel,/area/atmos) "cbX" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plasteel,/area/atmos) "cbY" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "caution"},/area/atmos) -"cbZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/maintenance/portsolar) +"cbZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating/airless,/area/maintenance/portsolar) "cca" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "ccb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/maintenance/aft{name = "Aft Maintenance"}) "ccc" = (/turf/simulated/floor/bluegrid,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -5553,7 +5553,7 @@ "ccO" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light_switch{pixel_x = -27; pixel_y = 6},/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "ccP" = (/obj/structure/table,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/button/door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = 0; pixel_y = 7; req_access_txt = "47"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "ResearchFoyer"; name = "Research Door Button"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "ccQ" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/science{name = "Security Post - Research Division"}) -"ccR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"ccR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "ccS" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hallway/primary/central) "ccT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hallway/primary/central) "ccU" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hallway/primary/central) @@ -5568,7 +5568,7 @@ "cdd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "cde" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "cdf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hydroponics) -"cdg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{sortType = 21},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) +"cdg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{sortType = 21},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) "cdh" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) "cdi" = (/obj/structure/closet,/obj/item/stack/cable_coil/random,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/starboard) "cdj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/maintenance/incinerator) @@ -5590,13 +5590,13 @@ "cdz" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/atmos) "cdA" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/atmos) "cdB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cdC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cdC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "cdD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cdE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cdF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) -"cdG" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cdG" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "cdH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cdI" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cdI" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) "cdJ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cdK" = (/obj/machinery/mecha_part_fabricator{dir = 2; name = "counterfeit exosuit fabricator"; req_access = null},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cdL" = (/obj/structure/rack,/obj/item/stack/sheet/cardboard,/obj/item/device/radio/off,/obj/machinery/light_construct{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -5604,8 +5604,8 @@ "cdN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; sortType = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cdO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cdP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;5"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cdQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/hand_labeler_refill,/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) -"cdR" = (/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/trash/candy,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cdQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/hand_labeler_refill,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"cdR" = (/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/trash/candy,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "cdS" = (/obj/item/weapon/storage/box/lights/mixed,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cdT" = (/obj/item/weapon/tank/internals/air,/obj/item/weapon/tank/internals/air,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cdU" = (/obj/machinery/door/airlock{name = "Medbay Emergency Storage"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay2{name = "Medbay Storage"}) @@ -5627,8 +5627,8 @@ "cek" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cel" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cem" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) -"cen" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/medbay{name = "Medbay Central"}) -"ceo" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/research{name = "Research Division"}) +"cen" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitehall"},/area/medical/medbay{name = "Medbay Central"}) +"ceo" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cep" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "ceq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cer" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) @@ -5641,9 +5641,9 @@ "cey" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/depsec/science,/turf/simulated/floor/plasteel,/area/security/checkpoint/science{name = "Security Post - Research Division"}) "cez" = (/obj/machinery/computer/secure_data,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; dir = 8; name = "Research Monitor"; network = list("RD"); pixel_x = 28; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "ceA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"ceB" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) -"ceC" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/machinery/light,/obj/item/weapon/paper/hydroponics,/obj/machinery/camera{c_tag = "Hydroponics - Foyer"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{pixel_y = -25},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) -"ceD" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/primary/central) +"ceB" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) +"ceC" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/machinery/light,/obj/item/weapon/paper/hydroponics,/obj/machinery/camera{c_tag = "Hydroponics - Foyer"; dir = 1; network = list("SS13")},/obj/item/device/radio/intercom{pixel_y = -25},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) +"ceD" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/primary/central) "ceE" = (/obj/machinery/disposal/bin{pixel_x = -2; pixel_y = -2},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -28},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/hydroponics) "ceF" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/hydroponics) "ceG" = (/obj/machinery/hydroponics/constructable,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) @@ -5655,13 +5655,13 @@ "ceM" = (/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0; pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/weapon/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/grenade/chem_grenade/antiweed,/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hydroponics) "ceN" = (/obj/machinery/door/window/eastright{dir = 1; name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hydroponics) "ceO" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/hydroponics) -"ceP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) +"ceP" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/starboard) "ceQ" = (/obj/machinery/atmospherics/components/unary/tank/toxins{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ceR" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "plasma tank pump"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ceS" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ceT" = (/obj/machinery/light{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ceU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"ceV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) +"ceV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ceW" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000"; dir = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ceX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000"; dir = 4},/turf/simulated/wall/r_wall,/area/atmos) "ceY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/atmos) @@ -5683,7 +5683,7 @@ "cfo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cfp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cfq" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cfr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"cfr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "cfs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cft" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cfu" = (/obj/structure/closet,/obj/item/stack/sheet/glass{amount = 12},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -5701,15 +5701,15 @@ "cfG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/medbay2{name = "Medbay Storage"}) "cfH" = (/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/clothing/tie/stethoscope,/obj/item/clothing/tie/stethoscope,/obj/item/weapon/gun/syringe,/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteblue"},/area/medical/medbay2{name = "Medbay Storage"}) "cfI" = (/turf/simulated/wall,/area/medical/medbay{name = "Medbay Central"}) -"cfJ" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/medbay{name = "Medbay Central"}) -"cfK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (WEST)"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) +"cfJ" = (/obj/machinery/computer/crew,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/medbay{name = "Medbay Central"}) +"cfK" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cfL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cfM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cfN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/bot/medbot{auto_patrol = 1; desc = "A little medical robot, officially part of the NanoTrasen medical inspectorate. He looks somewhat underwhelmed."; name = "Inspector Johnson"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cfO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cfP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cfQ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) -"cfR" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/medbay{name = "Medbay Central"}) +"cfR" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitehall"},/area/medical/medbay{name = "Medbay Central"}) "cfS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/aft) "cfT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "cfU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/aft) @@ -5725,7 +5725,7 @@ "cge" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/structure/bed/chair{dir = 8},/obj/machinery/camera{c_tag = "Security Post - Research Division"; dir = 8; network = list("SS13","RD"); pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "cgf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cgg" = (/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"; req_one_access_txt = "0"},/turf/simulated/floor/plating,/area/hydroponics) -"cgh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/starboard) +"cgh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "cgi" = (/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/starboard) "cgj" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/starboard) "cgk" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/starboard) @@ -5741,7 +5741,7 @@ "cgu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plating,/area/atmos) "cgv" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) "cgw" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cgx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"cgx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "cgy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cgz" = (/obj/structure/girder,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cgA" = (/obj/structure/girder,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -5764,7 +5764,7 @@ "cgR" = (/obj/structure/bed/roller,/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; frequency = 1485; listening = 1; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/machinery/camera{c_tag = "Medbay Foyer"; dir = 1; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/medbay{name = "Medbay Central"}) "cgS" = (/obj/machinery/light,/obj/structure/bed/roller,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/medbay{name = "Medbay Central"}) "cgT" = (/obj/structure/bed/roller,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/medbay{name = "Medbay Central"}) -"cgU" = (/obj/structure/flora/kirbyplants{tag = "icon-plant-11"; icon_state = "plant-11"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/medbay{name = "Medbay Central"}) +"cgU" = (/obj/structure/flora/kirbyplants{icon_state = "plant-11"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/medbay{name = "Medbay Central"}) "cgV" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/medbay{name = "Medbay Central"}) "cgW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = 26; pixel_y = -26},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/medbay{name = "Medbay Central"}) "cgX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) @@ -5774,7 +5774,7 @@ "chb" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/potato,/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "chc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "chd" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"che" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -30},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1; tag = "icon-plant-08"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) +"che" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -30},/obj/structure/flora/kirbyplants{icon_state = "plant-08"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "chf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "chg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "chh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/science{name = "Security Post - Research Division"}) @@ -5782,15 +5782,15 @@ "chj" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "chk" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "chl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"chm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"chm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "chn" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cho" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) -"chp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"chp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "chq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"chr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"chr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "chs" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cht" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"chu" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"chu" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "chv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plating,/area/maintenance/starboard) "chw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/starboard) "chx" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) @@ -5809,16 +5809,16 @@ "chK" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/space,/area/space) "chL" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/space,/area/solar/port) "chM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"chN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"chN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "chO" = (/obj/item/trash/pistachios,/obj/structure/closet,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/extinguisher,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "chP" = (/obj/item/weapon/storage/box,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "chQ" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "chR" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"chS" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) -"chT" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) -"chU" = (/obj/machinery/computer/med_data,/obj/machinery/light{dir = 1},/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) -"chV" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/power/apc{dir = 1; name = "Sleeper Room APC"; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) -"chW" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 4},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 23},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) +"chS" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) +"chT" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) +"chU" = (/obj/machinery/computer/med_data,/obj/machinery/light{dir = 1},/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) +"chV" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/power/apc{dir = 1; name = "Sleeper Room APC"; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) +"chW" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 4},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/sleeper{name = "Sleepers"}) "chX" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/brute{pixel_x = -3; pixel_y = -3},/obj/machinery/power/apc{dir = 2; name = "Medbay Storage APC"; pixel_y = -24},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -26; pixel_y = 0},/obj/machinery/light/small,/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whiteblue"},/area/medical/medbay2{name = "Medbay Storage"}) "chY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/medbay2{name = "Medbay Storage"}) "chZ" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/bot/cleanbot{name = "Scrubs, MD"; on = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/medbay2{name = "Medbay Storage"}) @@ -5833,7 +5833,7 @@ "cii" = (/obj/structure/sign/chemistry,/turf/simulated/wall,/area/medical/chemistry) "cij" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/turf/simulated/floor/plating,/area/medical/chemistry) "cik" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/wall,/area/medical/chemistry) -"cil" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/machinery/door/window/northleft{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/item/weapon/folder/white,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"cil" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/machinery/door/window/northleft{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/item/weapon/folder/white,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) "cim" = (/turf/simulated/wall,/area/medical/chemistry) "cin" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/aft) "cio" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/aft) @@ -5847,12 +5847,12 @@ "ciw" = (/obj/structure/closet/secure_closet/security/science,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "cix" = (/obj/structure/filingcabinet,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "ciy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) -"ciz" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"ciz" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) "ciA" = (/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) "ciB" = (/obj/machinery/door/airlock/maintenance{name = "Research Maintenance"; req_access_txt = "47"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) "ciC" = (/turf/simulated/wall/r_wall,/area/toxins/explab) "ciD" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"ciE" = (/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"ciE" = (/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "ciF" = (/obj/machinery/power/apc{dir = 8; name = "Incinerator APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ciG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "ciH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) @@ -5879,7 +5879,7 @@ "cjc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/sleeper{name = "Sleepers"}) "cjd" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/sleeper{name = "Sleepers"}) "cje" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/sleeper{name = "Sleepers"}) -"cjf" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (WEST)"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteblue"},/area/medical/sleeper{name = "Sleepers"}) +"cjf" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteblue"},/area/medical/sleeper{name = "Sleepers"}) "cjg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "5"},/turf/simulated/floor/plasteel{icon_state = "whitebluefull"},/area/medical/medbay2{name = "Medbay Storage"}) "cjh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/medbay2{name = "Medbay Storage"}) "cji" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "5"},/turf/simulated/floor/plasteel{icon_state = "whitebluefull"},/area/medical/medbay2{name = "Medbay Storage"}) @@ -5888,26 +5888,26 @@ "cjl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{icon_state = "whitebluefull"},/area/medical/medbay{name = "Medbay Central"}) "cjm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor/plasteel{icon_state = "whitebluefull"},/area/medical/medbay{name = "Medbay Central"}) "cjn" = (/obj/machinery/chem_heater,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whiteyellow"},/area/medical/chemistry) -"cjo" = (/obj/machinery/disposal/bin{pixel_x = 0},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"cjp" = (/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"cjq" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"cjr" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/machinery/button/door{id = "chemistry_shutters"; name = "chemistry shutters control"; pixel_x = 24; pixel_y = 24; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"cjo" = (/obj/machinery/disposal/bin{pixel_x = 0},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteyellow"},/area/medical/chemistry) +"cjp" = (/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) +"cjq" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) +"cjr" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/machinery/button/door{id = "chemistry_shutters"; name = "chemistry shutters control"; pixel_x = 24; pixel_y = 24; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) "cjs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/aft) "cjt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/aft) "cju" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/clothing/mask/gas,/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/lab) "cjv" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitepurple"},/area/toxins/lab) "cjw" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) "cjx" = (/obj/structure/noticeboard{desc = "A board for pinning important notices upon."; name = "notice board"; pixel_x = 0; pixel_y = 31},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/lab) -"cjy" = (/obj/structure/bed/chair/office/light{dir = 1; pixel_y = 3},/obj/machinery/button/door{id = "research_shutters"; name = "research shutters control"; pixel_x = 28; pixel_y = 0; req_access_txt = "7"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitepurple"; tag = "icon-whitehall (WEST)"},/area/toxins/lab) +"cjy" = (/obj/structure/bed/chair/office/light{dir = 1; pixel_y = 3},/obj/machinery/button/door{id = "research_shutters"; name = "research shutters control"; pixel_x = 28; pixel_y = 0; req_access_txt = "7"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitepurple"},/area/toxins/lab) "cjz" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "cjA" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "cjB" = (/turf/simulated/wall/r_wall,/area/security/checkpoint/science{name = "Security Post - Research Division"}) "cjC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Post - Research Division"; req_access_txt = "63"},/turf/simulated/floor/plasteel{icon_state = "redfull"},/area/security/checkpoint/science{name = "Security Post - Research Division"}) "cjD" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;47"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cjE" = (/obj/item/weapon/paper,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cjF" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/structure/table/glass,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cjG" = (/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 32},/obj/structure/bed/stool,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cjH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cjE" = (/obj/item/weapon/paper,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cjF" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/structure/table/glass,/obj/item/device/radio/off,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cjG" = (/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 32},/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cjH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) "cjI" = (/obj/machinery/vending/cigarette,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cjJ" = (/turf/simulated/floor/engine,/area/toxins/explab) "cjK" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Experimentation Lab - Test Chamber"; dir = 2; network = list("SS13","RD")},/obj/machinery/light{dir = 1},/turf/simulated/floor/engine,/area/toxins/explab) @@ -5962,35 +5962,35 @@ "ckH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) "ckI" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/chemistry) "ckJ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowcorner"},/area/medical/chemistry) -"ckK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"ckL" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"ckM" = (/obj/machinery/chem_master{layer = 2.7; pixel_x = -2},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"ckK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteyellow"},/area/medical/chemistry) +"ckL" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "whiteyellow"},/area/medical/chemistry) +"ckM" = (/obj/machinery/chem_master{layer = 2.7; pixel_x = -2},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) "ckN" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) "ckO" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) "ckP" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) "ckQ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/lab) "ckR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "ckS" = (/obj/machinery/disposal/bin{pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"ckT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"ckU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/medical/research{name = "Research Division"}) +"ckT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/shower{icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"ckU" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/medical/research{name = "Research Division"}) "ckV" = (/obj/machinery/power/apc{cell_type = 10000; dir = 1; name = "Research Division APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/camera{c_tag = "Research Division - Airlock"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/research{name = "Research Division"}) "ckW" = (/turf/simulated/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) "ckX" = (/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "ckY" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) -"ckZ" = (/obj/structure/bed/stool,/obj/machinery/newscaster{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cla" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"clb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"clc" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"ckZ" = (/obj/structure/bed/stool,/obj/machinery/newscaster{pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cla" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"clb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"clc" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) "cld" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cle" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/mob/living/simple_animal/pet/dog/pug{desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; name = "Pugley IV"; real_name = "Pugley IV"},/turf/simulated/floor/engine,/area/toxins/explab) "clf" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/engine,/area/toxins/explab) "clg" = (/obj/machinery/r_n_d/experimentor,/turf/simulated/floor/engine,/area/toxins/explab) "clh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_Toxins = 0},/turf/simulated/floor/engine,/area/toxins/explab) "cli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/engine,/area/toxins/explab) -"clj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"clj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "clk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/incinerator) "cll" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/simulated/wall/r_wall,/area/maintenance/incinerator) -"clm" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; locked = 1; name = "Incinerator Interior Airlock"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/engine,/area/maintenance/incinerator) +"clm" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; locked = 1; name = "Incinerator Interior Airlock"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/engine,/area/maintenance/incinerator) "cln" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/wall/r_wall,/area/maintenance/incinerator) "clo" = (/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) "clp" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) @@ -6006,11 +6006,11 @@ "clz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/simulated/wall/r_wall,/area/atmos) "clA" = (/obj/structure/girder/reinforced,/turf/simulated/floor/plating/airless,/area/atmos) "clB" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) -"clC" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/wood{tag = "icon-wood-broken3"; icon_state = "wood-broken3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"clC" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/maintenance/aft{name = "Aft Maintenance"}) "clD" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{pixel_x = 3; pixel_y = 2},/obj/item/weapon/reagent_containers/food/drinks/bottle/vermouth{pixel_x = -4; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) "clE" = (/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 4; pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = -1},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -5; pixel_y = 2},/obj/structure/table/wood,/obj/machinery/light_construct/small{dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) "clF" = (/obj/structure/bed/stool,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) -"clG" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/obj/structure/sign/poster{icon_state = "poster11"; pixel_y = 32; tag = "icon-poster11"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"clG" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/obj/structure/sign/poster{icon_state = "poster11"; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) "clH" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "clI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/surgery) "clJ" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/surgery) @@ -6033,12 +6033,12 @@ "cma" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cmb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cmc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) -"cmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (WEST)"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellowcorner"},/area/medical/medbay{name = "Medbay Central"}) +"cmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellowcorner"},/area/medical/medbay{name = "Medbay Central"}) "cme" = (/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 7; pixel_y = 4},/obj/item/weapon/storage/pill_bottle/epinephrine{pixel_x = 3},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/chemistry) "cmf" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) "cmg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"cmh" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"cmi" = (/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"cmh" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/chemistry) +"cmi" = (/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) "cmj" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/lab) "cmk" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/lab) "cml" = (/obj/machinery/r_n_d/circuit_imprinter{pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/lab) @@ -6054,10 +6054,10 @@ "cmv" = (/obj/machinery/light/small,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cmw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/flashlight,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cmx" = (/obj/item/stack/packageWrap,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cmy" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; pixel_y = 2},/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cmz" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cmA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cmy" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; pixel_y = 2},/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cmz" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cmA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) "cmC" = (/obj/machinery/vending/coffee,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cmD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/engine,/area/toxins/explab) "cmE" = (/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Doors"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/engine,/area/toxins/explab) @@ -6072,7 +6072,7 @@ "cmN" = (/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 4; pixel_y = 2},/obj/structure/table,/obj/effect/decal/cleanable/cobweb2,/obj/machinery/reagentgrinder{pixel_y = 4},/turf/simulated/floor/plating,/area/maintenance/starboard) "cmO" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Incinerator Output Pump"; on = 1; use_power = 0},/obj/structure/disposalpipe/segment,/turf/space,/area/space) "cmP" = (/obj/machinery/doorButtons/access_button{idDoor = "incinerator_airlock_exterior"; layer = 3.1; idSelf = "incinerator_access_control"; name = "Incinerator airlock control"; pixel_x = 8; pixel_y = -24},/obj/machinery/light/small{dir = 8},/obj/structure/sign/fire{pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 1; on = 1},/obj/machinery/doorButtons/access_button{idDoor = "incinerator_airlock_interior"; idSelf = "incinerator_access_control"; name = "Incinerator airlock control"; pixel_x = 8; pixel_y = 24},/turf/simulated/floor/engine,/area/maintenance/incinerator) -"cmQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/engine,/area/maintenance/incinerator) +"cmQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/engine,/area/maintenance/incinerator) "cmR" = (/obj/structure/sign/fire{pixel_x = 32; pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 2; on = 1},/turf/simulated/floor/engine,/area/maintenance/incinerator) "cmS" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "n2 floor"; nitrogen = 100000; oxygen = 0},/area/atmos) "cmT" = (/obj/machinery/light/small,/turf/simulated/floor/engine{name = "o2 floor"; nitrogen = 0; oxygen = 100000},/area/atmos) @@ -6084,10 +6084,10 @@ "cmZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cna" = (/obj/structure/closet/secure_closet/bar{pixel_x = -3; pixel_y = -1; req_access_txt = "25"},/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) "cnb" = (/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) -"cnc" = (/turf/simulated/floor/wood{tag = "icon-wood-broken7"; icon_state = "wood-broken7"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cnd" = (/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/wood,/turf/simulated/floor/wood{tag = "icon-wood-broken4"; icon_state = "wood-broken4"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cne" = (/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cnf" = (/obj/structure/bed/stool,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cnc" = (/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cnd" = (/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/wood,/turf/simulated/floor/wood{icon_state = "wood-broken4"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cne" = (/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cnf" = (/obj/structure/bed/stool,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "cng" = (/obj/structure/bed/chair,/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/surgery) "cnh" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/surgery) "cni" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/surgery) @@ -6111,12 +6111,12 @@ "cnA" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/medbay{name = "Medbay Central"}) "cnB" = (/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay{name = "Medbay Central"}) "cnC" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellowcorner"},/area/medical/medbay{name = "Medbay Central"}) -"cnD" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/medbay{name = "Medbay Central"}) +"cnD" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "whiteyellow"},/area/medical/medbay{name = "Medbay Central"}) "cnE" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5"},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 5; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 8},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -5; pixel_y = 0},/obj/item/weapon/reagent_containers/syringe/epinephrine,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) "cnF" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/chemistry) "cnG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"cnH" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"cnI" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_y = 2},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver{pixel_x = -2; pixel_y = 6},/obj/item/device/radio/headset/headset_med,/obj/structure/extinguisher_cabinet{pixel_x = 24; pixel_y = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"cnH" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/chemistry) +"cnI" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_y = 2},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver{pixel_x = -2; pixel_y = 6},/obj/item/device/radio/headset/headset_med,/obj/structure/extinguisher_cabinet{pixel_x = 24; pixel_y = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) "cnJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/aft) "cnK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Aft Primary Hallway - Fore"; dir = 8; network = list("SS13")},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/aft) "cnL" = (/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/obj/structure/table,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/lab) @@ -6126,17 +6126,17 @@ "cnP" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/lab) "cnQ" = (/obj/structure/table,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/scanning_module,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/sign/nosmoking_2{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel,/area/toxins/lab) "cnR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/shower{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"cnS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/research{name = "Research Division"}) -"cnT" = (/obj/machinery/shower{tag = "icon-shower (WEST)"; icon_state = "shower"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"cnS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"cnT" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) "cnU" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/medical/research{name = "Research Division"}) "cnV" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Research Division"},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/maintenance/aft{name = "Aft Maintenance"}) "cnW" = (/turf/simulated/wall/r_wall,/area/maintenance/aft{name = "Aft Maintenance"}) "cnX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cnY" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) -"cnZ" = (/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"coa" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"cob" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) -"coc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/structure/noticeboard{pixel_y = -32},/obj/machinery/light,/obj/machinery/camera{c_tag = "Research Division - Break Room"; dir = 1; network = list("SS13","RD")},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cnZ" = (/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"coa" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"cob" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"coc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/structure/noticeboard{pixel_y = -32},/obj/machinery/light,/obj/machinery/camera{c_tag = "Research Division - Break Room"; dir = 1; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) "cod" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "coe" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/toxins/explab) "cof" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/toxins/explab) @@ -6149,7 +6149,7 @@ "com" = (/obj/structure/rack,/obj/item/clothing/suit/apron,/obj/item/clothing/mask/surgical,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "con" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "coo" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/space,/area/space) -"cop" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; locked = 1; name = "Incinerator Exterior Airlock"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/engine,/area/maintenance/incinerator) +"cop" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; locked = 1; name = "Incinerator Exterior Airlock"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/engine,/area/maintenance/incinerator) "coq" = (/obj/item/stack/rods{amount = 25},/turf/simulated/floor/engine{name = "vacuum floor"; nitrogen = 0.01; oxygen = 0.01},/area/atmos) "cor" = (/turf/simulated/floor/plating/airless,/area/atmos) "cos" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -6174,7 +6174,7 @@ "coL" = (/obj/machinery/reagentgrinder,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = -30; pixel_y = 0},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/chemistry) "coM" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) "coN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"coO" = (/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"coO" = (/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/chemistry) "coP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/chemistry{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellowcorner"},/area/hallway/primary/aft) "coQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/sign/science{pixel_x = 32},/turf/simulated/floor/plasteel{dir = 2; icon_state = "purplecorner"},/area/hallway/primary/aft) "coR" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/toxins/lab) @@ -6185,7 +6185,7 @@ "coW" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "coX" = (/obj/machinery/door/window/westleft{dir = 2; name = "Research Division Deliveries"; req_access_txt = "47"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/maintenance/aft{name = "Aft Maintenance"}) "coY" = (/obj/machinery/door/airlock{name = "Research Emergency Storage"; req_access_txt = "0"; req_one_access_txt = "47"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) -"coZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_medical{glass = 0; id_tag = ""; name = "Research Break Room"; opacity = 1; req_access_txt = "0"; req_one_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) +"coZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_medical{glass = 0; id_tag = ""; name = "Research Break Room"; opacity = 1; req_access_txt = "0"; req_one_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/research{name = "Research Division"}) "cpa" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/tinted{dir = 5; health = 120; icon_state = "twindow"; reinf = 0},/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) "cpb" = (/turf/simulated/wall,/area/toxins/explab) "cpc" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = 30},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/toxins/explab) @@ -6199,27 +6199,27 @@ "cpk" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cpl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cpm" = (/obj/structure/rack,/obj/item/clothing/under/color/white,/obj/item/clothing/head/soft/mime,/obj/item/clothing/under/color/white,/obj/item/clothing/head/soft/mime,/obj/item/clothing/mask/surgical,/obj/item/clothing/mask/surgical,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cpn" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cpn" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) "cpo" = (/obj/machinery/chem_heater,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cpp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; name = "incinerator output intake"; on = 0; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) -"cpq" = (/obj/machinery/igniter{icon_state = "igniter0"; id = "Incinerator"; luminosity = 2; on = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) +"cpq" = (/obj/machinery/igniter{icon_state = "igniter0"; id = "Incinerator"; luminosity = 2; on = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) "cpr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) "cps" = (/obj/machinery/door/poddoor{id = "auxincineratorvent"; name = "Incineration Chamber Vent"},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) "cpt" = (/obj/item/device/flashlight/lamp,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) "cpu" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/tequila,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) "cpv" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/structure/table/wood,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) -"cpw" = (/turf/simulated/floor/wood{tag = "icon-wood-broken"; icon_state = "wood-broken"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cpw" = (/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/maintenance/aft{name = "Aft Maintenance"}) "cpx" = (/obj/structure/mineral_door/wood{name = "The Gobbetting Barmaid"},/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) "cpy" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel,/area/medical/surgery) "cpz" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/medical/surgery) "cpA" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/medical/surgery) "cpB" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/razor{pixel_y = 5},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/medical/surgery) "cpC" = (/obj/structure/table,/obj/item/weapon/retractor,/turf/simulated/floor/plasteel,/area/medical/surgery) -"cpD" = (/obj/machinery/computer/med_data,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/surgery) -"cpE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/surgery) -"cpF" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{broadcasting = 1; freerange = 0; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 30; pixel_y = 0},/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/weapon/gun/syringe,/obj/item/clothing/glasses/eyepatch,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/ears/earmuffs,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/surgery) +"cpD" = (/obj/machinery/computer/med_data,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"},/area/medical/surgery) +"cpE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"},/area/medical/surgery) +"cpF" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{broadcasting = 1; freerange = 0; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 30; pixel_y = 0},/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/weapon/gun/syringe,/obj/item/clothing/glasses/eyepatch,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/ears/earmuffs,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitehall"},/area/medical/surgery) "cpG" = (/obj/machinery/power/apc{dir = 1; name = "Cryogenics APC"; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -2; pixel_y = 9},/obj/machinery/light/small{dir = 8},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 5; pixel_y = 9},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -3; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 6; pixel_y = 2},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/cryo) -"cpH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/obj/structure/closet/secure_closet/medical1{pixel_x = -3},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/cryo) +"cpH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/obj/structure/closet/secure_closet/medical1{pixel_x = -3},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/cryo) "cpI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/medical/cryo) "cpJ" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/medical/cryo) "cpK" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/medical/cryo) @@ -6232,11 +6232,11 @@ "cpR" = (/obj/item/weapon/folder/white,/obj/item/clothing/glasses/hud/health,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "cpS" = (/obj/structure/closet/secure_closet/CMO,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 6},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "cpT" = (/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/camera{c_tag = "Chemistry"; dir = 4; network = list("SS13","Medbay")},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whiteyellow"},/area/medical/chemistry) -"cpU" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2"; icon_state = "pipe-j2"; dir = 2},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellowcorner"},/area/medical/chemistry) +"cpU" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellowcorner"},/area/medical/chemistry) "cpV" = (/obj/machinery/disposal/bin{pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"cpW" = (/obj/machinery/chem_dispenser{layer = 2.7},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"cpW" = (/obj/machinery/chem_dispenser{layer = 2.7},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/chemistry) "cpX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters_2"; name = "chemistry shutters"},/turf/simulated/floor/plating,/area/medical/chemistry) -"cpY" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 6},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellowfull"; tag = "icon-whitehall (WEST)"},/area/hallway/primary/aft) +"cpY" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 6},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellowfull"},/area/hallway/primary/aft) "cpZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/hallway/primary/aft) "cqa" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "cqb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/hallway/primary/aft) @@ -6259,7 +6259,7 @@ "cqs" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) "cqt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "cqu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) -"cqv" = (/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1; tag = "icon-plant-10"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) +"cqv" = (/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) "cqw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurplecorner"},/area/toxins/explab) "cqx" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "cqy" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) @@ -6273,18 +6273,18 @@ "cqG" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cqH" = (/obj/structure/bed,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cqI" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) -"cqJ" = (/obj/structure/mineral_door/wood{name = "The Gobbetting Barmaid"},/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cqK" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/surgery) +"cqJ" = (/obj/structure/mineral_door/wood{name = "The Gobbetting Barmaid"},/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cqK" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/surgery) "cqL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "cqM" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "cqN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"cqO" = (/obj/machinery/power/apc{dir = 4; name = "Surgery APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/table,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/medical/surgery) +"cqO" = (/obj/machinery/power/apc{dir = 4; name = "Surgery APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/table,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 8},/area/medical/surgery) "cqP" = (/obj/structure/bed/roller,/obj/machinery/light/small{dir = 8},/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "cqQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "cqR" = (/obj/structure/bed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "cqS" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery) "cqT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/cryo) -"cqU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/cryo) +"cqU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/cryo) "cqV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/medical/cryo) "cqW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 2},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel,/area/medical/cryo) "cqX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/medical/cryo) @@ -6295,12 +6295,12 @@ "crc" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "crd" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_animal/pet/cat/Runtime,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "cre" = (/obj/machinery/power/apc{dir = 4; name = "CMO's Office APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/camera{c_tag = "CMO's Office"; dir = 8; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) -"crf" = (/obj/structure/closet/wardrobe/chemistry_white{pixel_x = -3},/obj/item/weapon/storage/backpack/satchel_chem,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTHEAST)"; icon_state = "warnwhite"; dir = 5},/area/medical/chemistry) +"crf" = (/obj/structure/closet/wardrobe/chemistry_white{pixel_x = -3},/obj/item/weapon/storage/backpack/satchel_chem,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/chemistry) "crg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteyellow"},/area/medical/chemistry) "crh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"cri" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"crj" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters_2"; name = "chemistry shutters"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"crk" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellowfull"; tag = "icon-whitehall (WEST)"},/area/hallway/primary/aft) +"cri" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellow"},/area/medical/chemistry) +"crj" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters_2"; name = "chemistry shutters"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteyellowfull"},/area/medical/chemistry) +"crk" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellowfull"},/area/hallway/primary/aft) "crl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/hallway/primary/aft) "crm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "purple"},/area/hallway/primary/aft) "crn" = (/turf/simulated/floor/plasteel{icon_state = "purplefull"},/area/hallway/primary/aft) @@ -6310,7 +6310,7 @@ "crr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "crs" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) "crt" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/toxins/lab) -"cru" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Research and Development Lab"; req_access_txt = "7"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/lab) +"cru" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Research and Development Lab"; req_access_txt = "7"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/lab) "crv" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "crw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crx" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) @@ -6318,14 +6318,14 @@ "crz" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crA" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"crC" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2"; icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"crC" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"crF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"crF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "crI" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"crJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/explab) +"crJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/explab) "crK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/toxins/explab) "crL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "crM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) @@ -6334,9 +6334,9 @@ "crP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "crQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/explab) "crR" = (/obj/machinery/door/airlock/maintenance{name = "Experimentation Lab Maintenance"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/toxins/explab) -"crS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"crS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "crT" = (/obj/structure/bed/roller,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) -"crU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"crU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "crV" = (/obj/structure/barricade/wooden,/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "crW" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "crX" = (/obj/effect/decal/cleanable/blood/gibs/limb,/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0; pixel_y = 0},/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -6344,8 +6344,8 @@ "crZ" = (/obj/machinery/atmospherics/components/unary/outlet_injector{dir = 8; on = 1; pixel_y = 0; use_power = 0},/turf/simulated/floor/plating/airless,/area/space) "csa" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/construction/hallway{name = "\improper MiniSat Exterior"}) "csb" = (/obj/structure/lattice/catwalk,/obj/item/weapon/wrench,/turf/space,/area/space) -"csc" = (/obj/structure/bed/stool,/turf/simulated/floor/wood{tag = "icon-wood-broken7"; icon_state = "wood-broken7"},/area/maintenance/aft{name = "Aft Maintenance"}) -"csd" = (/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/maintenance/aft{name = "Aft Maintenance"}) +"csc" = (/obj/structure/bed/stool,/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/maintenance/aft{name = "Aft Maintenance"}) +"csd" = (/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/maintenance/aft{name = "Aft Maintenance"}) "cse" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "csf" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/turf/simulated/floor/plating,/area/medical/surgery) "csg" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) @@ -6357,7 +6357,7 @@ "csm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "csn" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Surgery Observation"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "cso" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/cryo) -"csp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/cryo) +"csp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/cryo) "csq" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/medical/cryo) "csr" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/medical/cryo) "css" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/medical/cryo) @@ -6370,11 +6370,11 @@ "csz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "csA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "csB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "CMO Maintenance"; req_access_txt = "40"},/turf/simulated/floor/plating,/area/medical/cmo) -"csC" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) -"csD" = (/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24; pixel_y = 0},/obj/structure/closet/secure_closet/chemical{pixel_x = -3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/chemistry) +"csC" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"csD" = (/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24; pixel_y = 0},/obj/structure/closet/secure_closet/chemical{pixel_x = -3},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/chemistry) "csE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whiteyellow"},/area/medical/chemistry) -"csF" = (/obj/machinery/chem_heater{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) -"csG" = (/obj/machinery/chem_master{layer = 2.7; pixel_x = -2},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; dir = 1; name = "requests board"; pixel_x = 0; pixel_y = -32},/obj/machinery/button/door{id = "chemistry_shutters_2"; name = "chemistry shutters control"; pixel_x = 26; pixel_y = -26; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whiteyellow"; tag = "icon-whitehall (WEST)"},/area/medical/chemistry) +"csF" = (/obj/machinery/chem_heater{pixel_x = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteyellow"},/area/medical/chemistry) +"csG" = (/obj/machinery/chem_master{layer = 2.7; pixel_x = -2},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; dir = 1; name = "requests board"; pixel_x = 0; pixel_y = -32},/obj/machinery/button/door{id = "chemistry_shutters_2"; name = "chemistry shutters control"; pixel_x = 26; pixel_y = -26; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whiteyellow"},/area/medical/chemistry) "csH" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 6},/turf/simulated/floor/plasteel{icon_state = "purplefull"},/area/hallway/primary/aft) "csI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/simulated/floor/plating,/area/toxins/lab) "csJ" = (/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/power/apc{dir = 2; name = "Research Lab APC"; pixel_x = 0; pixel_y = -26},/obj/structure/cable/yellow,/obj/structure/table,/obj/machinery/button/door{id = "research_shutters_2"; name = "research shutters control"; pixel_x = -26; pixel_y = -26; req_access_txt = "7"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/lab) @@ -6413,19 +6413,19 @@ "ctq" = (/obj/structure/sign/fire{pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/incinerator) "ctr" = (/obj/machinery/door/poddoor{id = "turbinevent"; name = "Turbine Vent"},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) "cts" = (/obj/item/toy/cards/deck,/obj/structure/table/wood/poker,/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) -"ctt" = (/turf/simulated/floor/wood{tag = "icon-wood-broken4"; icon_state = "wood-broken4"},/area/maintenance/aft{name = "Aft Maintenance"}) +"ctt" = (/turf/simulated/floor/wood{icon_state = "wood-broken4"},/area/maintenance/aft{name = "Aft Maintenance"}) "ctu" = (/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/reagent_containers/food/drinks/beer{pixel_x = -3; pixel_y = 2},/obj/item/weapon/reagent_containers/food/drinks/ale,/obj/structure/table/wood,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) -"ctv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; pixel_y = 2},/obj/machinery/light_switch{pixel_x = -28; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"; tag = "icon-whitehall (WEST)"},/area/medical/surgery) +"ctv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; pixel_y = 2},/obj/machinery/light_switch{pixel_x = -28; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/surgery) "ctw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "ctx" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "cty" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) -"ctz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{tag = "icon-whitehall (WEST)"; icon_state = "whitehall"; dir = 8},/area/medical/surgery) +"ctz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 8},/area/medical/surgery) "ctA" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "ctB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "ctC" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/surgery) "ctD" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/cryo) -"ctE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/machinery/camera{c_tag = "Medbay Cryo"; dir = 1; network = list("SS13","Medbay")},/obj/item/weapon/screwdriver{pixel_y = 6},/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/cryo) -"ctF" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; freerange = 0; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/medical/cryo) +"ctE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/machinery/camera{c_tag = "Medbay Cryo"; dir = 1; network = list("SS13","Medbay")},/obj/item/weapon/screwdriver{pixel_y = 6},/obj/item/clothing/tie/stethoscope,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/cryo) +"ctF" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; freerange = 0; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/medical/cryo) "ctG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/medical/cryo) "ctH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light_switch{pixel_x = 0; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/medical/cryo) "ctI" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitebluecorner"},/area/medical/medbay{name = "Medbay Central"}) @@ -6462,8 +6462,8 @@ "cun" = (/obj/structure/rack,/obj/item/weapon/hatchet,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cuo" = (/obj/machinery/iv_drip{density = 0},/obj/item/roller,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cup" = (/obj/structure/rack,/obj/item/weapon/tank/internals/anesthetic,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cuq" = (/obj/machinery/light_construct/small,/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/obj/structure/sign/poster{icon_state = "poster2"; pixel_y = -31; tag = "icon-poster2"},/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) -"cur" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cuq" = (/obj/machinery/light_construct/small,/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/obj/structure/sign/poster{icon_state = "poster2"; pixel_y = -31},/turf/simulated/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"}) +"cur" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "cus" = (/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "cut" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/aft{name = "Aft Maintenance"}) "cuu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -6488,45 +6488,45 @@ "cuN" = (/obj/machinery/computer/security/telescreen{desc = "Used for monitoring medbay to ensure patient safety."; dir = 8; name = "Medbay Monitor"; network = list("Medbay"); pixel_x = 29; pixel_y = 0},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/computer/card/minor/cmo,/turf/simulated/floor/plasteel{dir = 8; icon_state = "barber"},/area/medical/cmo) "cuO" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cuP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cuQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cuQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "cuR" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 11},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cuS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cuT" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 23},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cuU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;5;9"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cuV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/aft) -"cuW" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"cuW" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "cuX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/aft) "cuY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Aft Emergency Storage"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cuZ" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 14},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"cuZ" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 14},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "cva" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cvb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "7;47;29;12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cvc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/maintenance/aft{name = "Aft Maintenance"}) -"cvd" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 12},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) -"cve" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cvd" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 12},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) +"cve" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cvf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cvg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Research Maintenance"; req_access_txt = "0"; req_one_access_txt = "7;47;29"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/research{name = "Research Division"}) -"cvh" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"cvh" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cvi" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 13},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cvj" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cvk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"cvl" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cvm" = (/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cvn" = (/obj/machinery/computer/aifixer,/obj/structure/window/reinforced{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cvo" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/crew_quarters/hor) +"cvl" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cvm" = (/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cvn" = (/obj/machinery/computer/aifixer,/obj/structure/window/reinforced{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cvo" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/crew_quarters/hor) "cvp" = (/obj/structure/displaycase/labcage,/obj/machinery/light/small{dir = 1},/obj/structure/sign/biohazard{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "white"},/area/crew_quarters/hor) -"cvq" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32; pixel_y = 0},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/crew_quarters/hor) +"cvq" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32; pixel_y = 0},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/crew_quarters/hor) "cvr" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) "cvs" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/storage) "cvt" = (/obj/machinery/computer/area_atmos,/obj/machinery/light/small{dir = 1},/obj/structure/sign/nosmoking_2{pixel_y = 32},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/storage) "cvu" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Toxins Storage APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) "cvv" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) -"cvw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cvw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "cvx" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Turbine Vent"; dir = 4; network = list("Turbine"); use_power = 0},/turf/space,/area/space) "cvy" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/space,/area/space) "cvz" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cvA" = (/obj/machinery/vending/assist,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cvB" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/simulated/floor/plating,/area/medical/surgery) -"cvC" = (/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) +"cvC" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cvD" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/patients_rooms{name = "Patient Room A"}) "cvE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/vending/wallmed{pixel_x = 0; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/patients_rooms{name = "Patient Room A"}) "cvF" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteblue"},/area/medical/patients_rooms{name = "Patient Room A"}) @@ -6552,12 +6552,12 @@ "cvZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cwa" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cwb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cwc" = (/obj/machinery/button/door{id = "xeno_blastdoor"; name = "Secure Lab Shutter Control"; pixel_x = -5; pixel_y = -5; req_access_txt = "47"},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "rdprivacy"; name = "Privacy Shutters Control"; pixel_x = 5; pixel_y = 5},/obj/machinery/button/door{id = "Biohazard"; name = "Entrance Shutter Control"; pixel_x = -5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "toxins_blastdoor"; name = "Toxins Shutter Control"; pixel_x = 5; pixel_y = -5; req_access_txt = "47"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cwd" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cwe" = (/obj/machinery/computer/robotics,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cwf" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/crew_quarters/hor) -"cwg" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/crew_quarters/hor) -"cwh" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/crew_quarters/hor) +"cwc" = (/obj/machinery/button/door{id = "xeno_blastdoor"; name = "Secure Lab Shutter Control"; pixel_x = -5; pixel_y = -5; req_access_txt = "47"},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "rdprivacy"; name = "Privacy Shutters Control"; pixel_x = 5; pixel_y = 5},/obj/machinery/button/door{id = "Biohazard"; name = "Entrance Shutter Control"; pixel_x = -5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "toxins_blastdoor"; name = "Toxins Shutter Control"; pixel_x = 5; pixel_y = -5; req_access_txt = "47"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cwd" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cwe" = (/obj/machinery/computer/robotics,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cwf" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/crew_quarters/hor) +"cwg" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/crew_quarters/hor) +"cwh" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/crew_quarters/hor) "cwi" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) "cwj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/storage) "cwk" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/bed/stool,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/storage) @@ -6579,11 +6579,11 @@ "cwA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitebluecorner"},/area/medical/medbay{name = "Medbay Central"}) "cwB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cwC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) -"cwD" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) -"cwE" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/storage/box/disks{pixel_x = 2; pixel_y = 2},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) -"cwF" = (/obj/machinery/requests_console{department = "Genetics"; departmentType = 0; name = "Genetics Requests Console"; pixel_x = 0; pixel_y = 30},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/box/monkeycubes,/obj/item/device/radio/headset/headset_medsci,/obj/item/device/flashlight/pen{pixel_x = 4; pixel_y = 3},/obj/item/device/flashlight/pen{pixel_x = 4; pixel_y = 3},/obj/structure/noticeboard{desc = "A board for pinning important notices upon."; name = "notice board"; pixel_x = -32; pixel_y = 32},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) -"cwG" = (/obj/machinery/power/apc{dir = 1; name = "Genetics Lab APC"; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/storage/pill_bottle/mutadone,/obj/item/weapon/storage/pill_bottle/mannitol,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) -"cwH" = (/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) +"cwD" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) +"cwE" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/storage/box/disks{pixel_x = 2; pixel_y = 2},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) +"cwF" = (/obj/machinery/requests_console{department = "Genetics"; departmentType = 0; name = "Genetics Requests Console"; pixel_x = 0; pixel_y = 30},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/box/monkeycubes,/obj/item/device/radio/headset/headset_medsci,/obj/item/device/flashlight/pen{pixel_x = 4; pixel_y = 3},/obj/item/device/flashlight/pen{pixel_x = 4; pixel_y = 3},/obj/structure/noticeboard{desc = "A board for pinning important notices upon."; name = "notice board"; pixel_x = -32; pixel_y = 32},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) +"cwG" = (/obj/machinery/power/apc{dir = 1; name = "Genetics Lab APC"; pixel_y = 24},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/storage/pill_bottle/mutadone,/obj/item/weapon/storage/pill_bottle/mannitol,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) +"cwH" = (/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) "cwI" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plasteel{dir = 9; icon_state = "blue"},/area/medical/genetics) "cwJ" = (/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = -32; pixel_y = 32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 5; icon_state = "blue"},/area/medical/genetics) "cwK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "genetics_shutters"; name = "genetics shutters"},/turf/simulated/floor/plating,/area/medical/genetics) @@ -6600,12 +6600,12 @@ "cwV" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cwW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitebluecorner"},/area/medical/research{name = "Research Division"}) "cwX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/simulated/floor/plating,/area/crew_quarters/hor) -"cwY" = (/obj/machinery/computer/card/minor/rd,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cwZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cxa" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cxb" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/item/weapon/circuitboard/teleporter,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cxc" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cxd" = (/obj/structure/table,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/item/weapon/storage/secure/briefcase,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cwY" = (/obj/machinery/computer/card/minor/rd,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cwZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cxa" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cxb" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/item/weapon/circuitboard/teleporter,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cxc" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cxd" = (/obj/structure/table,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/item/weapon/storage/secure/briefcase,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) "cxe" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) "cxf" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/storage) "cxg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Scientist"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/storage) @@ -6616,13 +6616,13 @@ "cxl" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room"; req_access_txt = "0"; req_one_access_txt = "12;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cxm" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cxn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) -"cxo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) -"cxp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxq" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cxo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"cxp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cxq" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) "cxr" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) "cxs" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"cxu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cxt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cxu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) "cxv" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cxw" = (/obj/structure/closet/crate,/obj/item/weapon/crowbar/red,/obj/item/weapon/pen,/obj/item/device/flashlight/pen{pixel_x = 4; pixel_y = 3},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cxx" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -6634,9 +6634,9 @@ "cxD" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cxE" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay{name = "Medbay Central"}) "cxF" = (/turf/simulated/wall,/area/medical/genetics_cloning) -"cxG" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/door/window/southleft{dir = 2; name = "Cloning Shower"},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics_cloning) -"cxH" = (/obj/machinery/door/window/southleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Cloning Shower"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "sink"; pixel_y = 28},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics_cloning) -"cxI" = (/obj/machinery/clonepod{pixel_y = 2},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics_cloning) +"cxG" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/door/window/southleft{dir = 2; name = "Cloning Shower"},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics_cloning) +"cxH" = (/obj/machinery/door/window/southleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Cloning Shower"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "sink"; pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics_cloning) +"cxI" = (/obj/machinery/clonepod{pixel_y = 2},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics_cloning) "cxJ" = (/obj/machinery/computer/scan_consolenew,/obj/machinery/camera{c_tag = "Genetics Lab"; dir = 4; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{icon_state = "whitebluefull"},/area/medical/genetics) "cxK" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whiteblue"},/area/medical/genetics) "cxL" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteblue"},/area/medical/genetics) @@ -6655,25 +6655,25 @@ "cxY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cxZ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cya" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteblue"},/area/medical/research{name = "Research Division"}) -"cyb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "30"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cyc" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cyd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cye" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cyf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cyg" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cyb" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "30"; req_one_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cyc" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cyd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cye" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cyf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cyg" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) "cyh" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) "cyi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/storage) "cyj" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) "cyk" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) "cyl" = (/obj/structure/closet/crate,/obj/item/device/multitool,/obj/item/clothing/gloves/color/fyellow,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cym" = (/obj/structure/rack,/obj/item/hand_labeler_refill,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cyn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cyn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "cyo" = (/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cyp" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/device/flashlight/seclite,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cyq" = (/obj/structure/cable,/obj/machinery/power/solar{id = "aftport"; name = "Aft-Port Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) "cyr" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/space,/area/space) "cys" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/space,/area/space) -"cyt" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"cyt" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "cyu" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cyv" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cyw" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -6707,19 +6707,19 @@ "cyY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Research Division Hallway - Mech Bay"; dir = 4; network = list("SS13","RD")},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "cyZ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cza" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/research{name = "Research Division"}) -"czb" = (/obj/machinery/power/apc{dir = 2; name = "RD Office APC"; pixel_x = 0; pixel_y = -27},/obj/structure/cable/yellow,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/structure/flora/kirbyplants/dead,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"czc" = (/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"czd" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("SS13","RD")},/obj/machinery/light,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"cze" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = -24},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"czf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) -"czg" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"czb" = (/obj/machinery/power/apc{dir = 2; name = "RD Office APC"; pixel_x = 0; pixel_y = -27},/obj/structure/cable/yellow,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/structure/flora/kirbyplants/dead,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"czc" = (/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"czd" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("SS13","RD")},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"cze" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"czf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) +"czg" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/hor) "czh" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/toxins/storage) "czi" = (/obj/item/weapon/cigbutt,/obj/machinery/light_switch{pixel_y = -23},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/storage) "czj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/storage) "czk" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/storage) "czl" = (/obj/machinery/door/airlock/maintenance{name = "airlock access"; req_access_txt = "0"; req_one_access_txt = "12;47"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "czm" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) -"czn" = (/obj/structure/rack,/obj/item/weapon/tank/internals/air,/obj/item/weapon/wrench,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"czn" = (/obj/structure/rack,/obj/item/weapon/tank/internals/air,/obj/item/weapon/wrench,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "czo" = (/obj/item/trash/chips,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "czp" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "czq" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/exam_room{name = "Patient Room B"}) @@ -6755,7 +6755,7 @@ "czU" = (/obj/machinery/camera{c_tag = "Research Testing Range"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/engine{icon_state = "plating"},/area/toxins/misc_lab{name = "\improper Research Testing Range"}) "czV" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "czW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/toxins/storage) -"czX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"czX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "czY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "czZ" = (/obj/machinery/light/small{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; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cAa" = (/obj/machinery/door/airlock/external{req_access_txt = "0"; req_one_access_txt = "13;8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -6814,7 +6814,7 @@ "cBb" = (/obj/machinery/vending/coffee,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/medical/medbay3{name = "Medbay Aft"}) "cBc" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/medical/medbay3{name = "Medbay Aft"}) "cBd" = (/obj/machinery/vending/cigarette,/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/medical/medbay3{name = "Medbay Aft"}) -"cBe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/sign/poster{icon_state = "poster3_legit"; pixel_x = -31; tag = "icon-poster3_legit"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay3{name = "Medbay Aft"}) +"cBe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/sign/poster{icon_state = "poster3_legit"; pixel_x = -31},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay3{name = "Medbay Aft"}) "cBf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) "cBg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/nosmoking_2{pixel_x = 28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitebluecorner"},/area/medical/medbay3{name = "Medbay Aft"}) "cBh" = (/obj/machinery/button/door{desc = "A remote control switch for the cloning door."; id = "CloningDoor"; name = "Cloning Exit Button"; normaldoorcontrol = 1; pixel_x = -23; pixel_y = 8},/turf/simulated/floor/plasteel{dir = 10; icon_state = "whiteblue"},/area/medical/genetics_cloning) @@ -6840,7 +6840,7 @@ "cBB" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cBC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) "cBD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cBE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cBE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cBF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cBG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cBH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) @@ -6862,25 +6862,25 @@ "cBX" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) "cBY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cBZ" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/simulated/floor/plating,/area/medical/medbay3{name = "Medbay Aft"}) -"cCa" = (/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cCb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cCc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cCd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cCe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cCf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/medical{name = "Medbay Break Room"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cCa" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cCb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cCc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cCd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cCe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/cigbutt,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cCf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/medical{name = "Medbay Break Room"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) "cCg" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay3{name = "Medbay Aft"}) "cCh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) "cCi" = (/obj/machinery/power/apc{dir = 4; name = "Medbay Aft APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) -"cCj" = (/obj/item/weapon/book/manual/medical_cloning{pixel_y = 6},/obj/item/weapon/paper,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics_cloning) -"cCk" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics_cloning) -"cCl" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics_cloning) -"cCm" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/closet/wardrobe/genetics_white,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) +"cCj" = (/obj/item/weapon/book/manual/medical_cloning{pixel_y = 6},/obj/item/weapon/paper,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics_cloning) +"cCk" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics_cloning) +"cCl" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics_cloning) +"cCm" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/closet/wardrobe/genetics_white,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) "cCn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/bed/roller,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/medical/genetics) "cCo" = (/obj/structure/bed/roller,/obj/machinery/door/window/westleft{dir = 1; name = "Monkey Pen"; pixel_y = 2; req_access_txt = "9"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/medical/genetics) "cCp" = (/obj/machinery/light,/obj/machinery/door/window/westleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Monkey Pen"; pixel_y = 2; req_access_txt = "9"},/obj/structure/bed/roller,/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/medical/genetics) "cCq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/structure/bed/roller,/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/medical/genetics) -"cCr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) -"cCs" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/genetics) +"cCr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) +"cCs" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/genetics) "cCt" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Aft Primary Hallway - Middle"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/aft) "cCu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "cCv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/primary/aft) @@ -6897,7 +6897,7 @@ "cCG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cCH" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) "cCI" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/machinery/door/poddoor/shutters/preopen{id = "toxins_blastdoor"; name = "biohazard containment shutters"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cCJ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cCJ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) @@ -6908,9 +6908,9 @@ "cCR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCS" = (/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/scrubber,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCT" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cCU" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (NORTH)"; icon_state = "warningcorner"; dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cCU" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cCW" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner"; icon_state = "warningcorner"; dir = 2},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cCW" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 2},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cCY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Research Division"; req_access_txt = "0"; req_one_access_txt = "47"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/medical/research{name = "Research Division"}) "cCZ" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) @@ -6918,11 +6918,11 @@ "cDb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDc" = (/obj/structure/window/reinforced,/obj/item/target,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/toxins/test_area) "cDd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cDe" = (/obj/structure/bed/stool,/obj/item/device/radio/intercom{broadcasting = 1; freerange = 0; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cDf" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cDg" = (/obj/item/weapon/cigbutt,/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cDe" = (/obj/structure/bed/stool,/obj/item/device/radio/intercom{broadcasting = 1; freerange = 0; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cDf" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cDg" = (/obj/item/weapon/cigbutt,/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) "cDj" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 5; health = 120; icon_state = "twindow"; reinf = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay3{name = "Medbay Aft"}) "cDk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitebluecorner"},/area/medical/medbay3{name = "Medbay Aft"}) "cDl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) @@ -6943,7 +6943,7 @@ "cDA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cDB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4; initialize_directions = 11},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) "cDC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "toxins_blastdoor"; name = "biohazard containment door"},/turf/simulated/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cDD" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cDD" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDE" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDF" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDG" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) @@ -6959,7 +6959,7 @@ "cDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDS" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cDT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cDT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDV" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cDW" = (/obj/machinery/light/small,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) @@ -6972,10 +6972,10 @@ "cEd" = (/turf/simulated/wall/r_wall,/area/medical/virology) "cEe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/medical/virology) "cEf" = (/obj/item/weapon/cigbutt,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cEg" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 5},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cEh" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -30},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cEi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light/small,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -29},/obj/machinery/camera{c_tag = "Medbay Break Room"; dir = 1; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) -"cEj" = (/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-cafeteria (NORTHEAST)"; icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cEg" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 5},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cEh" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -30},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cEi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light/small,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -29},/obj/machinery/camera{c_tag = "Medbay Break Room"; dir = 1; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) +"cEj" = (/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "cafeteria"; dir = 5},/area/medical/medbay3{name = "Medbay Aft"}) "cEk" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) "cEl" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) "cEm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/medbay3{name = "Medbay Aft"}) @@ -7000,17 +7000,17 @@ "cEF" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEG" = (/obj/item/device/assembly/signaler{pixel_x = 0; pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEH" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/structure/table/reinforced,/obj/machinery/light,/turf/simulated/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cEI" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cEI" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/dispenser,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEK" = (/obj/machinery/disposal/bin{pixel_x = -2; pixel_y = -2},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEO" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -5; pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 5; pixel_y = -4},/obj/item/device/assembly/igniter{pixel_x = 2; pixel_y = 6},/obj/item/device/assembly/igniter{pixel_x = 2; pixel_y = -1},/obj/machinery/power/apc{dir = 4; name = "Toxins Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cEP" = (/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cEP" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cEQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cER" = (/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cES" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"; tag = "loading"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cER" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cES" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/plasteel{icon_state = "loadingarea"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cET" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating/airless{dir = 9; icon_state = "warnplate"},/area/toxins/test_area) "cEU" = (/turf/simulated/floor/plating/airless,/area/toxins/test_area) "cEV" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating/airless{dir = 5; icon_state = "warnplate"},/area/toxins/test_area) @@ -7042,10 +7042,10 @@ "cFv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "cFw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cFx" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cFy" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (EAST)"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cFz" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cFy" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cFz" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cFA" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/wrench,/obj/item/clothing/mask/gas,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cFB" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cFB" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cFC" = (/obj/machinery/mass_driver{dir = 4; id = "toxinsdriver"},/turf/simulated/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cFD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cFE" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/toxins/mixing{name = "\improper Toxins Lab"}) @@ -7068,7 +7068,7 @@ "cFV" = (/obj/item/clothing/gloves/color/latex,/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/obj/structure/reagent_dispensers/virusfood{density = 0; pixel_x = 0; pixel_y = 30},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitegreen"},/area/medical/virology) "cFW" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cFX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cFY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cFY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "cFZ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cGa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cGb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/simulated/floor/plating,/area/medical/medbay3{name = "Medbay Aft"}) @@ -7105,13 +7105,13 @@ "cGG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cGH" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cGI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = -24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warnwhitecorner"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cGJ" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "manual outlet valve"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cGJ" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "manual outlet valve"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cGK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cGL" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cGM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/space) "cGN" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/toxins/test_area) "cGO" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating/airless{dir = 6; icon_state = "warnplate"},/area/toxins/test_area) -"cGP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) +"cGP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) "cGQ" = (/turf/simulated/wall,/area/medical/virology) "cGR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/medical/virology) "cGS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Test Subject Cell"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/medical/virology) @@ -7129,7 +7129,7 @@ "cHe" = (/obj/item/device/healthanalyzer{pixel_x = 1; pixel_y = 4},/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = -30},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitehall"},/area/medical/medbay3{name = "Medbay Aft"}) "cHf" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitecorner"},/area/medical/medbay3{name = "Medbay Aft"}) "cHg" = (/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"cHh" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2"; icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"cHh" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) "cHi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) "cHj" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) "cHk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Morgue"; opacity = 1; req_access_txt = "6"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) @@ -7171,12 +7171,12 @@ "cHU" = (/obj/machinery/computer/pandemic{layer = 2.5; pixel_x = -4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_x = 28; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) "cHV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/virology) "cHW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"cHX" = (/obj/structure/sign/biohazard{pixel_y = 32},/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/medical/virology) -"cHY" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/medical/virology) -"cHZ" = (/obj/structure/sign/securearea{pixel_x = 0; pixel_y = 32},/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTHEAST)"; icon_state = "warnwhite"; dir = 5},/area/medical/virology) -"cIa" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)"},/area/medical/medbay3{name = "Medbay Aft"}) +"cHX" = (/obj/structure/sign/biohazard{pixel_y = 32},/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/medical/virology) +"cHY" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/medical/virology) +"cHZ" = (/obj/structure/sign/securearea{pixel_x = 0; pixel_y = 32},/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/medical/virology) +"cIa" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/medbay3{name = "Medbay Aft"}) "cIb" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/medbay3{name = "Medbay Aft"}) -"cIc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; pixel_x = -3; pixel_y = 3; tag = "icon-plant-21"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreencorner"},/area/medical/medbay3{name = "Medbay Aft"}) +"cIc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; pixel_x = -3; pixel_y = 3},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreencorner"},/area/medical/medbay3{name = "Medbay Aft"}) "cId" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) "cIe" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) "cIf" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/medbay3{name = "Medbay Aft"}) @@ -7198,7 +7198,7 @@ "cIv" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1443; id = "air_in"},/turf/simulated/floor/engine/vacuum,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cIw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/simulated/floor/engine,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cIx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = -25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = -25; pixel_y = -5},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhitecorner"},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cIy" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "manual inlet valve"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/mixing{name = "\improper Toxins Lab"}) +"cIy" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "manual inlet valve"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cIz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cIA" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cIB" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/item/target,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/toxins/test_area) @@ -7214,14 +7214,14 @@ "cIL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "cIM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) "cIN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/virology{name = "Virology Access"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "whitegreenfull"},/area/medical/virology) -"cIO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)"},/area/medical/virology) +"cIO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) "cIP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "cIQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; idInterior = "virology_airlock_interior"; name = "Virology Access Console"; pixel_x = 26; pixel_y = 26; req_access_txt = "39"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) "cIR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "whitegreenfull"},/area/medical/virology) -"cIS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -26; pixel_y = 28; req_access_txt = "39"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/virology) -"cIT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/virology) +"cIS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -26; pixel_y = 28; req_access_txt = "39"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/virology) +"cIT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/medical/virology) "cIU" = (/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 0; pixel_y = 24; req_access_txt = "39"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "whitegreenfull"},/area/medical/virology) -"cIV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)"},/area/medical/medbay3{name = "Medbay Aft"}) +"cIV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/medbay3{name = "Medbay Aft"}) "cIW" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/medbay3{name = "Medbay Aft"}) "cIX" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Virology Access"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "whitegreenfull"},/area/medical/medbay3{name = "Medbay Aft"}) "cIY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) @@ -7247,7 +7247,7 @@ "cJs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"}) "cJt" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Lab Maintenance"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "toxins_blastdoor"; name = "biohazard containment shutters"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"}) "cJu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cJv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cJv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "cJw" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/port) "cJx" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 9},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 10; icon_state = "whitegreen"},/area/medical/virology) "cJy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "whitegreen"},/area/medical/virology) @@ -7260,10 +7260,10 @@ "cJF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "whitegreen"},/area/medical/virology) "cJG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "whitegreen"},/area/medical/virology) "cJH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/camera{c_tag = "Virology - Lab"; dir = 8; network = list("SS13","Medbay")},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitegreen"},/area/medical/virology) -"cJI" = (/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{pixel_x = -28; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/medical/virology) -"cJJ" = (/obj/machinery/camera{c_tag = "Virology - Airlock"; dir = 1; network = list("SS13","Medbay")},/obj/machinery/light,/obj/structure/closet/l3closet,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/medical/virology) -"cJK" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/medical/virology) -"cJL" = (/obj/structure/sign/biohazard{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)"},/area/medical/medbay3{name = "Medbay Aft"}) +"cJI" = (/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{pixel_x = -28; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/medical/virology) +"cJJ" = (/obj/machinery/camera{c_tag = "Virology - Airlock"; dir = 1; network = list("SS13","Medbay")},/obj/machinery/light,/obj/structure/closet/l3closet,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/virology) +"cJK" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/medical/virology) +"cJL" = (/obj/structure/sign/biohazard{pixel_x = -32},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/medbay3{name = "Medbay Aft"}) "cJM" = (/obj/machinery/camera{c_tag = "Virology - Entrance"; dir = 8; network = list("SS13","Medbay")},/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/medbay3{name = "Medbay Aft"}) "cJN" = (/obj/structure/sign/biohazard{pixel_x = -32},/obj/item/weapon/storage/box/gloves{pixel_x = 3; pixel_y = 4},/obj/item/weapon/storage/box/masks{pixel_x = 0; pixel_y = 0},/obj/structure/table/glass,/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreencorner"},/area/medical/medbay3{name = "Medbay Aft"}) "cJO" = (/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = -30},/obj/item/weapon/storage/box/beakers{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/bodybags,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay3{name = "Medbay Aft"}) @@ -7273,7 +7273,7 @@ "cJS" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/aft{name = "Aft Maintenance"}) "cJT" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/empty{pixel_x = 0; pixel_y = 0},/obj/item/weapon/reagent_containers/blood/empty{pixel_x = 0; pixel_y = 0},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/structure/sign/biohazard{pixel_x = 32},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/aft{name = "Aft Maintenance"}) "cJU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cJV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cJV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "cJW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cJX" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cJY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;5;39;6"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -7283,7 +7283,7 @@ "cKc" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/assembly/robotics) "cKd" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/assembly/robotics) "cKe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/assembly/robotics) -"cKf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/assembly/robotics) +"cKf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/assembly/robotics) "cKg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/assembly/robotics) "cKh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "purplefull"},/area/assembly/robotics) "cKi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) @@ -7309,16 +7309,16 @@ "cKC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/medical/virology) "cKD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/medical/virology) "cKE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall,/area/medical/virology) -"cKF" = (/obj/structure/closet/wardrobe/virology_white,/obj/item/weapon/storage/backpack/satchel_vir,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cKG" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cKH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cKI" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cKJ" = (/obj/structure/closet/l3closet/virology,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) +"cKF" = (/obj/structure/closet/wardrobe/virology_white,/obj/item/weapon/storage/backpack/satchel_vir,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cKG" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cKH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cKI" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cKJ" = (/obj/structure/closet/l3closet/virology,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) "cKK" = (/obj/structure/sign/biohazard{pixel_x = -32},/turf/space,/area/space) "cKL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;5;39;6"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cKM" = (/obj/structure/bed/roller,/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/obj/machinery/iv_drip{density = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/aft{name = "Aft Maintenance"}) "cKN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cKO" = (/obj/item/clothing/gloves/color/latex/nitrile,/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/toggle/labcoat,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/clothing/mask/breath/medical,/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cKO" = (/obj/item/clothing/gloves/color/latex/nitrile,/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/toggle/labcoat,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/clothing/mask/breath/medical,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "cKP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cKQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "escape"},/area/hallway/primary/aft) "cKR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "escape"},/area/hallway/primary/aft) @@ -7344,7 +7344,7 @@ "cLl" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/manifold{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/alarm/server{dir = 8; pixel_x = 22; pixel_y = 0},/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server{name = "\improper Research Division Server Room"}) "cLm" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cLn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cLo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cLo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "cLp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cLq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cLr" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/space) @@ -7354,7 +7354,7 @@ "cLv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/medical/virology) "cLw" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/virology{name = "Break Room"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "whitegreenfull"},/area/medical/virology) "cLx" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cLy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cLy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "cLz" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cLA" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cLB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/ore/slag,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -7362,16 +7362,16 @@ "cLD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/crate,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/wrench,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cLE" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cLF" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/screwdriver{pixel_y = 6},/obj/item/weapon/crowbar,/obj/item/weapon/storage/pill_bottle,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cLG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cLG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "cLH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cLI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Medical Surplus Storeroom"; req_access_txt = "12"; req_one_access_txt = "0"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cLJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/maintenance/aft{name = "Aft Maintenance"}) -"cLK" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cLL" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cLM" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cLN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cLO" = (/obj/machinery/vending/coffee,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cLP" = (/obj/machinery/vending/snack,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cLJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cLK" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cLL" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cLM" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cLN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cLO" = (/obj/machinery/vending/coffee,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cLP" = (/obj/machinery/vending/snack,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cLQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departure Lounge"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "neutralcorner"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cLR" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departure Lounge"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cLS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departure Lounge"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralcorner"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) @@ -7384,17 +7384,17 @@ "cLZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/assembly/robotics) "cMa" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) "cMb" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/medical/research{name = "Research Division"}) -"cMc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1; tag = "icon-plant-10"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) +"cMc" = (/obj/structure/flora/kirbyplants{icon_state = "plant-10"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurplecorner"},/area/medical/research{name = "Research Division"}) "cMd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server{name = "\improper Research Division Server Room"}) "cMe" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/computer/rdservercontrol,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server{name = "\improper Research Division Server Room"}) "cMf" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/toxins/server{name = "\improper Research Division Server Room"}) "cMg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/server{name = "\improper Research Division Server Room"}) "cMh" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server{name = "\improper Research Division Server Room"}) "cMi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/toxins/server{name = "\improper Research Division Server Room"}) -"cMj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cMk" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cMl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cMm" = (/obj/structure/closet,/obj/item/clothing/glasses/science,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"; tag = "icon-warnplate (NORTH)"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cMj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cMk" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cMl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cMm" = (/obj/structure/closet,/obj/item/clothing/glasses/science,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cMn" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cMo" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cMp" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) @@ -7408,12 +7408,12 @@ "cMx" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/machinery/light_switch{pixel_x = 0; pixel_y = 26},/obj/machinery/camera{c_tag = "Virology - Break Room"; dir = 2; network = list("SS13","Medbay")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitegreen"},/area/medical/virology) "cMy" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/table/glass,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitegreen"},/area/medical/virology) "cMz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cMA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cMA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "cMB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cMC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cMD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 17},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cME" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cMF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cMF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"}) "cMG" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cMH" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cMI" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) @@ -7429,12 +7429,12 @@ "cMS" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Robotics"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/assembly/robotics) "cMT" = (/obj/machinery/door/airlock/maintenance{name = "Robotics Maintenance"; req_access_txt = "29"},/turf/simulated/floor/plating,/area/assembly/robotics) "cMU" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) -"cMV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Secure Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/medical/research{name = "Research Division"}) +"cMV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Secure Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/medical/research{name = "Research Division"}) "cMW" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cMX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{icon_state = "door_closed"; locked = 0; name = "Storage Room"; req_access_txt = "0"; req_one_access_txt = "12;47"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cMY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (WEST)"; icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) +"cMY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) "cMZ" = (/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cNa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cNa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"}) "cNb" = (/turf/simulated/wall/r_wall,/area/maintenance/starboardsolar) "cNc" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access"; req_access_txt = "10"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) "cNd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/starboardsolar) @@ -7454,7 +7454,7 @@ "cNr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cNs" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cNt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop{loot = list("/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/structure/grille","/obj/item/weapon/cigbutt","/obj/item/trash/cheesie","/obj/item/trash/candy","/obj/item/trash/chips","/obj/item/trash/deadmouse","/obj/item/trash/pistachios","/obj/item/trash/plate","/obj/item/trash/popcorn","/obj/item/trash/raisins","/obj/item/trash/sosjerky","/obj/item/trash/syndi_cakes"); name = "maint grille or trash spawner"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cNu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cNu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "cNv" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/aft{name = "Aft Maintenance"}) "cNw" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;5;39;6"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cNx" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) @@ -7469,15 +7469,15 @@ "cNG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cNH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;47"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cNI" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/aft{name = "Aft Maintenance"}) -"cNJ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) -"cNK" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) -"cNL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{tag = "icon-warnplate (NORTH)"; icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) +"cNJ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cNK" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) +"cNL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cNM" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "12;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cNN" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Hallway - Secure Lab Access"; dir = 2; network = list("SS13","RD")},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cNO" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "incinerator_airlock_exterior"; idInterior = "incinerator_airlock_interior"; idSelf = "incinerator_access_control"; name = "Incinerator Access Console"; pixel_x = 8; pixel_y = -24; req_access_txt = "12"},/obj/machinery/button/ignition{id = "Incinerator"; pixel_x = 8; pixel_y = -36},/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent."; dir = 8; name = "turbine vent monitor"; network = list("Turbine"); pixel_x = 29; pixel_y = 0},/obj/machinery/button/door{id = "turbinevent"; name = "Turbine Vent Control"; pixel_x = -8; pixel_y = -36; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/button/door{id = "auxincineratorvent"; name = "Auxiliary Vent Control"; pixel_x = -8; pixel_y = -24; req_access_txt = "12"},/obj/machinery/computer/turbine_computer{id = "incineratorturbine"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "cNP" = (/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cNQ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"; tag = ""},/area/maintenance/aft{name = "Aft Maintenance"}) -"cNR" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cNQ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{dir = 8; icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cNR" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"}) "cNS" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cNT" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) "cNU" = (/obj/structure/closet/crate,/obj/item/weapon/poster/legit,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/aft{name = "Aft Maintenance"}) @@ -7497,35 +7497,35 @@ "cOi" = (/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "cOj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "cOk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"cOl" = (/obj/machinery/door/morgue{name = "Relic Closet"; req_access_txt = "22"},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/chapel/office) -"cOm" = (/obj/structure/table/wood,/obj/item/weapon/spellbook/oneuse/smoke{name = "mysterious old book of "},/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater{name = "flask of holy water"; pixel_x = -2; pixel_y = 2},/obj/item/weapon/nullrod{pixel_x = 4},/obj/item/organ/internal/heart,/obj/item/device/soulstone/anybody,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/chapel/office) +"cOl" = (/obj/machinery/door/morgue{name = "Relic Closet"; req_access_txt = "22"},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/chapel/office) +"cOm" = (/obj/structure/table/wood,/obj/item/weapon/spellbook/oneuse/smoke{name = "mysterious old book of "},/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater{name = "flask of holy water"; pixel_x = -2; pixel_y = 2},/obj/item/weapon/nullrod{pixel_x = 4},/obj/item/organ/internal/heart,/obj/item/device/soulstone/anybody,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/chapel/office) "cOn" = (/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance Access "; req_access_txt = "0"; req_one_access_txt = "12;27"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cOo" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge - Port Fore"; dir = 4; network = list("SS13")},/obj/structure/flora/kirbyplants{icon_state = "plant-24"; layer = 4.1; tag = "icon-plant-24"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cOo" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge - Port Fore"; dir = 4; network = list("SS13")},/obj/structure/flora/kirbyplants{icon_state = "plant-24"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cOp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cOq" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 2},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cOr" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cOs" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cOt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cOu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.2-Escape-2"; location = "9.1-Escape-1"},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cOv" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Departure Lounge - Starboard Fore"; dir = 8; network = list("SS13")},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-14"; layer = 4.1; tag = "icon-plant-14"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cOv" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Departure Lounge - Starboard Fore"; dir = 8; network = list("SS13")},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-14"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cOw" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Aft Maintenance APC"; pixel_y = -24},/obj/structure/cable/yellow,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cOx" = (/obj/machinery/space_heater,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cOy" = (/obj/machinery/door/poddoor/preopen{id = "xeno_blastdoor"; name = "biohazard containment door"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cOz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xeno_blastdoor"; name = "biohazard containment door"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cOA" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/door/poddoor/preopen{id = "xeno_blastdoor"; name = "biohazard containment door"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cOB" = (/obj/structure/bed/chair,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cOC" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/machinery/camera{c_tag = "Aft Starboard Solar Maintenance"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cOD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cOC" = (/obj/structure/bed/stool,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera{c_tag = "Aft Starboard Solar Maintenance"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cOD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) "cOE" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) "cOF" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless,/area/space) "cOG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area/space) "cOH" = (/obj/machinery/atmospherics/components/unary/outlet_injector{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating/airless,/area/space) "cOI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/medical/virology) -"cOJ" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cOK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "virology air connector port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cOL" = (/obj/item/trash/popcorn,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cOM" = (/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) -"cON" = (/obj/item/trash/cheesie{pixel_y = 4},/obj/structure/table/glass,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/medical/virology) +"cOJ" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cOK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "virology air connector port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cOL" = (/obj/item/trash/popcorn,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cOM" = (/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) +"cON" = (/obj/item/trash/cheesie{pixel_y = 4},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/medical/virology) "cOO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/button/crematorium{pixel_x = -25},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "cOP" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark/start{name = "Chaplain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "cOQ" = (/obj/item/device/flashlight/lamp,/obj/machinery/newscaster{pixel_x = -30},/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) @@ -7533,13 +7533,13 @@ "cOS" = (/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "cOT" = (/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "cOU" = (/turf/simulated/wall,/area/chapel/main) -"cOV" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = -27},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cOW" = (/obj/item/weapon/storage/book/bible,/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Chapel - Fore"; dir = 2; network = list("SS13")},/obj/structure/table/wood,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cOX" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cOY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cOZ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cPa" = (/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/structure/noticeboard{pixel_y = 29},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cPb" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = 6; pixel_y = 25},/obj/effect/decal/cleanable/cobweb2,/obj/structure/table/wood,/obj/machinery/button/door{id = "chapel_shutters"; name = "chapel shutters control"; pixel_x = -6; pixel_y = 25; req_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) +"cOV" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = -27},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cOW" = (/obj/item/weapon/storage/book/bible,/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/camera{c_tag = "Chapel - Fore"; dir = 2; network = list("SS13")},/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cOX" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cOY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cOZ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cPa" = (/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/structure/noticeboard{pixel_y = 29},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cPb" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = 6; pixel_y = 25},/obj/effect/decal/cleanable/cobweb2,/obj/structure/table/wood,/obj/machinery/button/door{id = "chapel_shutters"; name = "chapel shutters control"; pixel_x = -6; pixel_y = 25; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) "cPc" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters"; name = "chapel shutters"},/turf/simulated/floor/plating,/area/chapel/main) "cPd" = (/obj/structure/table,/obj/item/candle,/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cPe" = (/obj/structure/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) @@ -7556,7 +7556,7 @@ "cPp" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; icon_state = "map-right-MS"; pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cPq" = (/obj/machinery/door/airlock/external{name = "Auxiliary Escape Airlock"},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cPr" = (/obj/structure/sign/biohazard,/turf/simulated/wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cPs" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Secure Lab"; req_access_txt = "47"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cPs" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Secure Lab"; req_access_txt = "47"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cPt" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cPu" = (/obj/machinery/biogenerator,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cPv" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/obj/structure/rack{layer = 2.8},/obj/item/seeds/wheatseed,/obj/item/seeds/watermelonseed,/obj/item/seeds/watermelonseed,/obj/item/seeds/grapeseed,/obj/item/seeds/glowshroom,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) @@ -7565,8 +7565,8 @@ "cPy" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/glowshroom,/obj/item/seeds/cornseed,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cPz" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cPA" = (/obj/machinery/power/solar_control{id = "aftstarboard"; name = "Aft Starboard Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cPB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/starboardsolar) -"cPC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboardsolar) +"cPB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/starboardsolar) +"cPC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboardsolar) "cPD" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating/airless,/area/space) "cPE" = (/obj/machinery/atmospherics/components/unary/outlet_injector{dir = 1},/turf/simulated/floor/plating/airless,/area/space) "cPF" = (/obj/structure/bodycontainer/morgue,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) @@ -7598,12 +7598,12 @@ "cQf" = (/obj/structure/sign/vacuum{pixel_x = 32},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"}) "cQg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cQh" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cQi" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) +"cQi" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"}) "cQj" = (/obj/item/seeds/watermelonseed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cQl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/obj/structure/bed/chair,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cQm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/starboardsolar) -"cQn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) +"cQn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) "cQo" = (/obj/structure/cable,/obj/machinery/power/turbine{luminosity = 2},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) "cQp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "cQq" = (/obj/machinery/door/airlock/centcom{layer = 2.7; name = "Crematorium"; opacity = 1; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) @@ -7618,7 +7618,7 @@ "cQz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) "cQA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/chapel/main) "cQB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Chapel"; opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"cQC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cQC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cQD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cQE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cQF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) @@ -7635,7 +7635,7 @@ "cQQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cQR" = (/obj/item/seeds/berryseed,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) "cQS" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"}) -"cQT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/starboardsolar) +"cQT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/starboardsolar) "cQU" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "cQV" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "cQW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) @@ -7681,9 +7681,9 @@ "cRK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cRL" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cRM" = (/turf/simulated/wall/r_wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cRN" = (/obj/machinery/doorButtons/access_button{idDoor = "xeno_airlock_exterior"; idSelf = "xeno_airlock_control"; name = "Access Button"; pixel_x = -24; pixel_y = 0; req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "xeno_airlock_exterior"; locked = 1; name = "Secure Lab External Airlock"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cRN" = (/obj/machinery/doorButtons/access_button{idDoor = "xeno_airlock_exterior"; idSelf = "xeno_airlock_control"; name = "Access Button"; pixel_x = -24; pixel_y = 0; req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "xeno_airlock_exterior"; locked = 1; name = "Secure Lab External Airlock"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cRO" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cRP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cRP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "cRQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_parlour"; name = "chapel shutters"},/turf/simulated/floor/plating,/area/chapel/main) "cRR" = (/obj/structure/closet/coffin,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/chapel/main) "cRS" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/chapel/main) @@ -7698,17 +7698,17 @@ "cSb" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) "cSc" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) "cSd" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"cSe" = (/obj/machinery/camera{c_tag = "Departure Lounge - Port Aft"; dir = 4; network = list("SS13")},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1; tag = "icon-plant-04"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cSe" = (/obj/machinery/camera{c_tag = "Departure Lounge - Port Aft"; dir = 4; network = list("SS13")},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/flora/kirbyplants{icon_state = "plant-04"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cSh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cSh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/beacon,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cSj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cSj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cSl" = (/obj/machinery/camera{c_tag = "Departure Lounge - Starboard Aft"; dir = 8; network = list("SS13")},/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1; tag = "icon-plant-16"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cSm" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cSo" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTHEAST)"; icon_state = "warnwhite"; dir = 5},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cSl" = (/obj/machinery/camera{c_tag = "Departure Lounge - Starboard Aft"; dir = 8; network = list("SS13")},/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/flora/kirbyplants{icon_state = "plant-16"; layer = 4.1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cSm" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -26; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cSo" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 5},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cSp" = (/obj/structure/closet/coffin,/turf/simulated/floor/plating,/area/chapel/main) "cSq" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cSr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) @@ -7722,22 +7722,22 @@ "cSz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) "cSA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) "cSB" = (/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"cSC" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"; tag = "icon-warnwhite (NORTHEAST)"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) +"cSC" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSD" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.4-Escape-4"; location = "9.3-Escape-3"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.3-Escape-3"; location = "9.2-Escape-2"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cSG" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cSH" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cSH" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cSI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8; initialize_directions = 11},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cSJ" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Secure Lab - Airlock"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cSJ" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Secure Lab - Airlock"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cSK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cSL" = (/obj/machinery/camera{c_tag = "Toxins - Launch Area"; dir = 2; network = list("SS13","RD")},/obj/machinery/suit_storage_unit/rd,/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"}) -"cSM" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cSN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cSO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cSM" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cSN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cSO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "cSP" = (/obj/machinery/door/window/eastleft{dir = 4; name = "Coffin Storage"; req_access_txt = "22"},/turf/simulated/floor/plating,/area/chapel/main) -"cSQ" = (/obj/structure/bed/chair{pixel_y = -2},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cSR" = (/obj/structure/bed/chair{pixel_y = -2},/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) +"cSQ" = (/obj/structure/bed/chair{pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cSR" = (/obj/structure/bed/chair{pixel_y = -2},/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) "cSS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cST" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cSU" = (/obj/machinery/doppler_array{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 22},/turf/simulated/floor/plasteel{icon_state = "bot"; dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"}) @@ -7755,9 +7755,9 @@ "cTg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cTh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cTi" = (/obj/structure/sign/vacuum{pixel_x = 32},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cTj" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/doorButtons/access_button{idDoor = "xeno_airlock_interior"; idSelf = "xeno_airlock_control"; name = "Access Button"; pixel_x = 8; pixel_y = -28; req_access_txt = "0"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTk" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTl" = (/obj/structure/closet/l3closet/scientist,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTHEAST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTj" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/doorButtons/access_button{idDoor = "xeno_airlock_interior"; idSelf = "xeno_airlock_control"; name = "Access Button"; pixel_x = 8; pixel_y = -28; req_access_txt = "0"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTk" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTl" = (/obj/structure/closet/l3closet/scientist,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cTm" = (/obj/structure/closet/coffin,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/chapel/main) "cTn" = (/obj/machinery/light/small{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Chapel - Funeral Parlour"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cTo" = (/obj/machinery/camera{c_tag = "Chapel - Port"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "chapel"},/area/chapel/main) @@ -7765,24 +7765,24 @@ "cTq" = (/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cTr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) "cTs" = (/obj/machinery/door/airlock/external{name = "Departure Lounge Airlock"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) -"cTt" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 7},/obj/item/weapon/storage/box/syringes{pixel_y = 5},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTu" = (/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/structure/table/glass,/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTv" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/chem_dispenser/constructable,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTw" = (/obj/machinery/chem_master{pixel_x = -2; pixel_y = 1},/obj/structure/noticeboard{pixel_y = 30},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTt" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 7},/obj/item/weapon/storage/box/syringes{pixel_y = 5},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTu" = (/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/structure/table/glass,/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTv" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/chem_dispenser/constructable,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTw" = (/obj/machinery/chem_master{pixel_x = -2; pixel_y = 1},/obj/structure/noticeboard{pixel_y = 30},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cTx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "xeno_airlock_interior"; locked = 1; name = "Secure Lab Internal Airlock"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTz" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes{pixel_x = 3; pixel_y = 5},/obj/item/weapon/storage/box/monkeycubes{pixel_x = -3; pixel_y = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTA" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_y = 4},/obj/item/weapon/pen,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTB" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 8},/obj/machinery/power/apc{dir = 1; name = "Xenobiology APC"; pixel_x = 0; pixel_y = 27},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTC" = (/obj/machinery/smartfridge/extract,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "xeno_airlock_interior"; locked = 1; name = "Secure Lab Internal Airlock"; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTz" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes{pixel_x = 3; pixel_y = 5},/obj/item/weapon/storage/box/monkeycubes{pixel_x = -3; pixel_y = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTA" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_y = 4},/obj/item/weapon/pen,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTB" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 8},/obj/machinery/power/apc{dir = 1; name = "Xenobiology APC"; pixel_x = 0; pixel_y = 27},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTC" = (/obj/machinery/smartfridge/extract,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurplefull"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cTD" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cTE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/hostile/retaliate/bat{name = "Orlocke"; real_name = "Orlocke"; turns_per_move = 6},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cTF" = (/obj/machinery/door/window{dir = 4; name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"cTG" = (/obj/machinery/mass_driver{dir = 2; id = "chapelgun"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/device/gps,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/chapel/main) +"cTG" = (/obj/machinery/mass_driver{dir = 2; id = "chapelgun"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/device/gps,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/chapel/main) "cTH" = (/obj/structure/bookcase{name = "Holy Bookcase"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) "cTI" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"cTJ" = (/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cTK" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) +"cTJ" = (/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cTK" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) "cTL" = (/obj/machinery/light/small,/obj/machinery/button/door{id = "chapel_shutters_space"; name = "chapel shutters control"; pixel_x = -6; pixel_y = -25; req_access_txt = "0"},/obj/machinery/light_switch{pixel_x = 6; pixel_y = -25},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) "cTM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) "cTN" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hallway/secondary/exit{name = "\improper Departure Lounge"}) @@ -7796,17 +7796,17 @@ "cTV" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cTW" = (/obj/structure/bed/chair/office/light{dir = 1; pixel_y = 3},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cTX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cTY" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitepurple"; tag = "icon-whitehall (WEST)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cTY" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cTZ" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cUa" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/chapel/main) -"cUb" = (/obj/machinery/door/morgue{name = "Chapel Garden"; req_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-cult"; icon_state = "cult"; dir = 2},/area/chapel/main) -"cUc" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/button/door{id = "chapel_shutters_parlour"; name = "chapel shutters control"; pixel_x = 0; pixel_y = -25; req_access_txt = "0"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cUd" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cUe" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cUf" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/machinery/button/massdriver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = -4; pixel_y = -26},/obj/structure/table/wood,/turf/simulated/floor/plasteel{tag = "icon-vault"; icon_state = "vault"},/area/chapel/main) -"cUg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-warndark"; icon_state = "warndark"; dir = 2},/area/chapel/main) +"cUa" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/chapel/main) +"cUb" = (/obj/machinery/door/morgue{name = "Chapel Garden"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "cult"; dir = 2},/area/chapel/main) +"cUc" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/button/door{id = "chapel_shutters_parlour"; name = "chapel shutters control"; pixel_x = 0; pixel_y = -25; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cUd" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cUe" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cUf" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/machinery/button/massdriver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = -4; pixel_y = -26},/obj/structure/table/wood,/turf/simulated/floor/plasteel{icon_state = "vault"},/area/chapel/main) +"cUg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 2},/area/chapel/main) "cUh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_space"; name = "chapel shutters"},/turf/simulated/floor/plating,/area/chapel/main) -"cUi" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12; tag = "icon-sink (WEST)"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cUi" = (/obj/structure/sink{dir = 8; icon_state = "sink"; pixel_x = -12},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) @@ -7819,26 +7819,26 @@ "cUs" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "cUt" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/simulated/floor/plating,/area/chapel/main) "cUu" = (/obj/machinery/computer/shuttle/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"cUv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "xenobiology air connector port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{tag = "icon-whitepurple (SOUTHWEST)"; icon_state = "whitepurple"; dir = 10},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cUv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "xenobiology air connector port"},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel{icon_state = "whitepurple"; dir = 10},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUw" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/weapon/extinguisher,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUx" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitepurplecorner"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cUz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner"; icon_state = "warnwhitecorner"; dir = 2},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cUA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cUz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 2},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cUA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"cUC" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cUC" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUD" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warnwhitecorner"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUE" = (/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurplecorner"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUF" = (/obj/machinery/monkey_recycler,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUG" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUH" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitepurple"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cUI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cUJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cUI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cUJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "cUK" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "cUL" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "cUM" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cUN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cUO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cUN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) +"cUO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "cUP" = (/turf/simulated/wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) @@ -7848,9 +7848,9 @@ "cUV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cUX" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cUY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cUZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVa" = (/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cUY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cUZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVa" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVb" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio8"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVd" = (/turf/simulated/floor/engine,/area/toxins/xenobiology{name = "\improper Secure Lab"}) @@ -7867,17 +7867,17 @@ "cVo" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warnwhitecorner"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner"; icon_state = "warnwhitecorner"; dir = 2},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 2},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVs" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVu" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/engine,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVw" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVw" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVy" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/camera{c_tag = "Secure Lab - Central"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVy" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/camera{c_tag = "Secure Lab - Central"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhitecorner"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVB" = (/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner (WEST)"; icon_state = "warnwhitecorner"; dir = 8},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVB" = (/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 8},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVC" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio7"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVE" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/engine,/area/toxins/xenobiology{name = "\improper Secure Lab"}) @@ -7889,15 +7889,15 @@ "cVK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVL" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner"; icon_state = "warnwhitecorner"; dir = 2},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVN" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 2},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/space,/area/solar/starboard) "cVQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/space,/area/solar/starboard) -"cVR" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVS" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVR" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVS" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/space,/area/solar/starboard) "cVU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cVV" = (/obj/machinery/light{dir = 1},/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_x = -24; pixel_y = 24; req_access_txt = "55"},/turf/simulated/floor/plasteel{tag = "icon-warnwhite (NORTH)"; icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cVV" = (/obj/machinery/light{dir = 1},/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_x = -24; pixel_y = 24; req_access_txt = "55"},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhitecorner"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVX" = (/obj/structure/window/reinforced,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_x = 24; pixel_y = 24; req_access_txt = "55"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cVY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) @@ -7921,10 +7921,10 @@ "cWq" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/engine,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cWr" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plating/airless,/area/solar/starboard) "cWs" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/camera{c_tag = "Secure Lab - Aft-Port"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cWt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cWu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cWv" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cWw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cWt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cWu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cWv" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cWw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cWx" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Secure Lab - Aft-Starboard"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cWy" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cWz" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) @@ -7967,11 +7967,11 @@ "cXk" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/airless,/area/space) "cXl" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/simulated/floor/plating/airless,/area/space) "cXm" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_s"; name = "south of station"; turf_type = /turf/space; width = 18},/turf/space,/area/space) -"cXn" = (/obj/structure/closet/cardboard,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/starboard) -"cXo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1; tag = "icon-plant-21"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"cXn" = (/obj/structure/closet/cardboard,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) +"cXo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2; initialize_directions = 11},/obj/structure/flora/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "cXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) "cXq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) -"cXr" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"; tag = "icon-warnwhite (NORTH)"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) +"cXr" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cXs" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/engine,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cXt" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine,/area/toxins/xenobiology{name = "\improper Secure Lab"}) "cXu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/hatch{icon_state = "door_closed"; name = "Test Chamber Maintenance"; req_access_txt = "47"; req_one_access_txt = "0"},/turf/simulated/floor/plating,/area/toxins/xenobiology{name = "\improper Secure Lab"}) @@ -7982,7 +7982,7 @@ "cXz" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cXA" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters"; name = "remote shutter control"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cXB" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"cXC" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"; tag = "icon-comfychair (NORTH)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"cXC" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cXD" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cXE" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cXF" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -8031,7 +8031,7 @@ "cYw" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cYx" = (/obj/structure/table,/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cYy" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"cYz" = (/obj/machinery/nuclearbomb{tag = "syndienuke"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"cYz" = (/obj/machinery/nuclearbomb/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cYA" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cYB" = (/obj/structure/optable,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cYC" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/cautery,/obj/item/weapon/surgicaldrill,/obj/item/robot_parts/l_arm,/obj/item/robot_parts/r_arm,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -8064,7 +8064,7 @@ "cZd" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/shuttle/supply) "cZe" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/simulated/floor/plating,/area/shuttle/supply) "cZf" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/simulated/floor/plating,/area/shuttle/supply) -"cZg" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) +"cZg" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) "cZh" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/transport) "cZi" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating,/area/shuttle/transport) "cZj" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/transport) @@ -8077,30 +8077,30 @@ "cZq" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cZr" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 12; id = "ferry"; name = "ferry shuttle"; roundstart_move = "ferry_away"; travelDir = 180; width = 5},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 12; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/space; width = 5},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cZs" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f10"},/area/shuttle/transport) -"cZt" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) +"cZt" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) "cZu" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cZv" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cZw" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/transport) "cZx" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/abandoned) "cZy" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/abandoned) -"cZz" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"; dir = 2},/area/shuttle/abandoned) +"cZz" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/abandoned) "cZA" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/abandoned) "cZB" = (/turf/simulated/wall/shuttle{icon_state = "swallc1"; dir = 2},/area/shuttle/abandoned) "cZC" = (/obj/machinery/door/airlock/shuttle{name = "recovery shuttle external airlock"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "cZD" = (/obj/docking_port/mobile{dheight = 0; dir = 2; dwidth = 11; height = 15; id = "whiteship"; name = "NT Recovery White-Ship"; roundstart_move = "whiteship_away"; travelDir = 180; width = 27},/obj/machinery/door/airlock/shuttle{name = "recovery shuttle external airlock"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/docking_port/stationary{dir = 2; dwidth = 11; height = 15; id = "whiteship_home"; name = "SS13: Auxiliary Dock, Station-Port"; width = 27},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "cZE" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"; dir = 2},/area/shuttle/abandoned) "cZF" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/abandoned) -"cZG" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"; dir = 2},/area/shuttle/abandoned) -"cZH" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (EAST)"; icon_state = "propulsion_l"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"cZG" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/abandoned) +"cZH" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) "cZI" = (/obj/structure/toilet{pixel_y = 9},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/greenglow{desc = "Looks like something's sprung a leak"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cZJ" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"; dir = 2},/area/shuttle/abandoned) -"cZK" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) +"cZJ" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/abandoned) +"cZK" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) "cZL" = (/obj/structure/mirror{pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cZM" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice{pixel_y = 3},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cZN" = (/obj/structure/closet/wardrobe/mixed,/obj/item/clothing/under/rank/centcom_officer{desc = "A badge on the arm indicates that it's meant to be worn by Centcom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; name = "\improper dusty old Centcom jumpsuit"},/obj/item/clothing/under/rank/centcom_commander{desc = "A badge on the arm indicates that it's meant to be worn by Centcom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; name = "\improper dusty old Centcom jumpsuit"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cZO" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_y = 2},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cZP" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cZQ" = (/turf/simulated/wall/shuttle{tag = "icon-swall1"; icon_state = "swall1"},/area/shuttle/abandoned) +"cZQ" = (/turf/simulated/wall/shuttle{icon_state = "swall1"},/area/shuttle/abandoned) "cZR" = (/obj/structure/dispenser/oxygen{layer = 2.7; pixel_x = -1; pixel_y = 2},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cZS" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "cZT" = (/obj/structure/sign/vacuum{pixel_x = -32},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) @@ -8108,10 +8108,10 @@ "cZV" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/cigbutt,/obj/structure/closet/crate{icon_state = "crateopen"; name = "spare equipment crate"; opened = 1},/obj/item/weapon/tank/internals/oxygen/red,/obj/item/weapon/tank/internals/air,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/abandoned) "cZW" = (/obj/structure/closet/crate{name = "spare equipment crate"},/obj/item/weapon/grenade/chem_grenade/metalfoam,/obj/item/weapon/relic,/obj/item/device/t_scanner,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/abandoned) "cZX" = (/obj/structure/closet/crate{name = "emergency supplies crate"},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight/flare{pixel_x = 3; pixel_y = 3},/obj/item/device/flashlight/flare{pixel_x = -6; pixel_y = -2},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/abandoned) -"cZY" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"cZZ" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"cZY" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"cZZ" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) "daa" = (/turf/simulated/wall/shuttle{icon_state = "swall8"; dir = 2},/area/shuttle/abandoned) -"dab" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"; dir = 2},/area/shuttle/abandoned) +"dab" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/abandoned) "dac" = (/obj/machinery/door/airlock/shuttle{name = "bathroom"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "dad" = (/obj/structure/bed,/obj/item/weapon/bedsheet/centcom,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dae" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at."; icon = 'icons/effects/blood.dmi'; icon_state = "remains"; name = "remains"},/obj/item/weapon/gun/energy/laser/retro,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) @@ -8124,13 +8124,13 @@ "dal" = (/obj/machinery/door/airlock/shuttle{name = "cargo bay"},/turf/simulated/floor/plating{dir = 1; icon_state = "delivery"},/area/shuttle/abandoned) "dam" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{dir = 1; icon_state = "delivery"},/area/shuttle/abandoned) "dan" = (/obj/effect/decal/cleanable/robot_debris/old,/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{dir = 1; icon_state = "delivery"},/area/shuttle/abandoned) -"dao" = (/obj/machinery/shower{tag = "icon-shower (EAST)"; icon_state = "shower"; dir = 4},/obj/machinery/door/window/westright{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/item/weapon/soap/nanotrasen,/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at."; icon = 'icons/effects/blood.dmi'; icon_state = "remains"; name = "remains"},/obj/effect/decal/cleanable/blood/gibs/old,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) +"dao" = (/obj/machinery/shower{icon_state = "shower"; dir = 4},/obj/machinery/door/window/westright{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/item/weapon/soap/nanotrasen,/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at."; icon = 'icons/effects/blood.dmi'; icon_state = "remains"; name = "remains"},/obj/effect/decal/cleanable/blood/gibs/old,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dap" = (/obj/effect/decal/cleanable/blood/old,/obj/structure/mirror{pixel_x = 28; pixel_y = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "daq" = (/obj/structure/bed,/obj/item/weapon/bedsheet/centcom,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dar" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/blood/gibs/limb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "das" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/rods{amount = 50},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/item/weapon/wrench,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dat" = (/obj/structure/rack{dir = 8; layer = 2.9; pixel_y = 2},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"dau" = (/turf/simulated/wall/shuttle{tag = "icon-swall2"; icon_state = "swall2"},/area/shuttle/abandoned) +"dau" = (/turf/simulated/wall/shuttle{icon_state = "swall2"},/area/shuttle/abandoned) "dav" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "daw" = (/obj/machinery/constructable_frame/machine_frame,/obj/item/weapon/circuitboard/cyborgrecharger,/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/abandoned) "dax" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/abandoned) @@ -8142,7 +8142,7 @@ "daD" = (/turf/simulated/wall/shuttle{icon_state = "swallc4"; dir = 2},/area/shuttle/abandoned) "daE" = (/turf/simulated/wall/shuttle{icon_state = "swall4"; dir = 2},/area/shuttle/abandoned) "daF" = (/obj/machinery/door/airlock/shuttle{name = "recovery shuttle interior airlock"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) -"daG" = (/turf/simulated/wall/shuttle{tag = "icon-swallc3"; icon_state = "swallc3"; dir = 2},/area/shuttle/abandoned) +"daG" = (/turf/simulated/wall/shuttle{icon_state = "swallc3"; dir = 2},/area/shuttle/abandoned) "daH" = (/obj/machinery/door/airlock/shuttle{name = "cargo bay"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plating{dir = 1; icon_state = "delivery"},/area/shuttle/abandoned) "daI" = (/obj/machinery/vending/cigarette{use_power = 0},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "daJ" = (/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) @@ -8212,7 +8212,7 @@ "dbV" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3; pixel_y = -3},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/random,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/xenoblood,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dbW" = (/obj/structure/optable,/obj/item/weapon/surgical_drapes,/obj/item/weapon/storage/firstaid/regular,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dbX" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/clothing/suit/apron,/obj/item/weapon/shovel/spade,/obj/item/weapon/cultivator,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/item/weapon/wirecutters,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"dbY" = (/obj/machinery/smartfridge{use_power = 0},/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) +"dbY" = (/obj/machinery/smartfridge{use_power = 0},/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) "dbZ" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "dca" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "dcb" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/kitchen/knife,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) @@ -8224,7 +8224,7 @@ "dch" = (/obj/effect/decal/cleanable/xenoblood,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/ash{desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones."; icon = 'icons/effects/blood.dmi'; icon_state = "remainsxeno"; name = "remains"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "dci" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/effect/decal/cleanable/ash,/obj/effect/decal/cleanable/xenoblood,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) "dcj" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/decal/cleanable/xenoblood,/obj/effect/decal/cleanable/xenoblood/xgibs/limb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/abandoned) -"dck" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (EAST)"; icon_state = "propulsion_r"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"dck" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) "dcl" = (/obj/machinery/hydroponics/constructable,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dcm" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/glowshroom,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dcn" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/item/weapon/storage/box/monkeycubes{pixel_y = 4},/obj/item/weapon/storage/fancy/egg_box{pixel_y = 5},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) @@ -8238,19 +8238,19 @@ "dcv" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/item/clothing/suit/apron/surgical,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dcw" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 6; pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -3},/obj/item/weapon/reagent_containers/syringe,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "dcx" = (/obj/structure/table,/obj/item/weapon/storage/backpack/dufflebag/med{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgicaldrill,/obj/item/weapon/razor); desc = "A large dufflebag for holding extra medical supplies - this one seems to be designed for holding surgical tools."; name = "surgical dufflebag"; pixel_y = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"dcy" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f6"; icon_state = "swall_f6"; dir = 2},/area/shuttle/escape) +"dcy" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/shuttle/escape) "dcz" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/escape) -"dcA" = (/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/shuttle/escape) +"dcA" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/escape) "dcB" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"dcC" = (/turf/simulated/wall/shuttle{tag = "icon-swall14"; icon_state = "swall14"; dir = 2},/area/shuttle/escape) +"dcC" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/escape) "dcD" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Cargo Bay Airlock"},/turf/simulated/floor/plating{dir = 1; icon_state = "delivery"},/area/shuttle/escape) -"dcE" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f10"; icon_state = "swall_f10"; dir = 2},/area/shuttle/escape) -"dcF" = (/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/escape) +"dcE" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f10"; dir = 2},/area/shuttle/escape) +"dcF" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) "dcG" = (/obj/structure/dispenser/oxygen{layer = 2.7; pixel_x = -1; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "dcH" = (/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/clothing/mask/breath{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3; pixel_y = -3},/obj/item/clothing/head/hardhat/orange{name = "protective hat"; pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat"; pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat"; pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat"; pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat"; pixel_y = 9},/obj/structure/closet/crate{name = "lifejackets"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "dcI" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "dcJ" = (/obj/machinery/status_display{pixel_y = 32},/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"dcK" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/escape) +"dcK" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) "dcL" = (/obj/structure/table,/obj/item/stack/medical/gauze,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "dcM" = (/turf/simulated/floor/plating{dir = 1; icon_state = "delivery"},/area/shuttle/escape) "dcN" = (/obj/machinery/recharge_station,/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/escape) @@ -8265,7 +8265,7 @@ "dcW" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/escape) "dcX" = (/obj/structure/closet/crate{name = "emergency supplies crate"},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight/flare{pixel_x = 3; pixel_y = 3},/obj/item/device/flashlight/flare{pixel_x = -6; pixel_y = -2},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/device/radio,/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/escape) "dcY" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Cargo Bay Airlock"},/obj/docking_port/stationary{dheight = 0; dir = 4; dwidth = 5; height = 14; id = "emergency_home"; name = "emergency evac bay"; width = 25},/obj/docking_port/mobile/emergency{dheight = 0; dir = 4; dwidth = 5; height = 14; width = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"dcZ" = (/obj/machinery/vending/wallmed{name = "Emergency NanoMed"; pixel_x = 0; pixel_y = 0; req_access_txt = "0"; use_power = 0},/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/escape) +"dcZ" = (/obj/machinery/vending/wallmed{name = "Emergency NanoMed"; pixel_x = 0; pixel_y = 0; req_access_txt = "0"; use_power = 0},/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) "dda" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/escape) "ddb" = (/obj/machinery/space_heater,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "bot"},/area/shuttle/escape) "ddc" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) @@ -8273,24 +8273,24 @@ "dde" = (/obj/structure/rack,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/weapon/wirecutters,/obj/item/stack/cable_coil,/turf/simulated/floor/plating{dir = 1; icon_state = "warning"},/area/shuttle/escape) "ddf" = (/obj/structure/rack{dir = 1},/obj/item/weapon/tank/internals/oxygen/red,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/mask/gas,/obj/item/clothing/head/hardhat/red,/turf/simulated/floor/plating{dir = 1; icon_state = "warning"},/area/shuttle/escape) "ddg" = (/turf/simulated/floor/plating{dir = 1; icon_state = "warning"},/area/shuttle/escape) -"ddh" = (/obj/structure/extinguisher_cabinet,/turf/simulated/wall/shuttle{tag = "icon-swall3"; icon_state = "swall3"; dir = 2},/area/shuttle/escape) -"ddi" = (/turf/simulated/wall/shuttle{tag = "icon-swall7"; icon_state = "swall7"; dir = 2},/area/shuttle/escape) +"ddh" = (/obj/structure/extinguisher_cabinet,/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/escape) +"ddi" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/escape) "ddj" = (/obj/structure/bed/chair{dir = 8},/obj/structure/sign/bluecross_2{pixel_x = 32},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ddk" = (/turf/simulated/wall/shuttle{icon_state = "swall8"; dir = 2},/area/shuttle/escape) "ddl" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall/shuttle{icon_state = "swall4"; dir = 2},/area/shuttle/escape) "ddm" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Escape Shuttle Infirmary"; req_access_txt = "0"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"ddn" = (/turf/simulated/wall/shuttle{tag = "icon-swall11"; icon_state = "swall11"; dir = 2},/area/shuttle/escape) +"ddn" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/escape) "ddo" = (/obj/machinery/sleeper{dir = 2},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ddp" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ddq" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"ddr" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"; tag = "icon-shower (EAST)"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) +"ddr" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "dds" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ddt" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 6; pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -3},/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = -3; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 4; pixel_y = 1},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = -2; pixel_y = 5},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 2; pixel_y = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ddu" = (/obj/structure/table,/obj/item/weapon/defibrillator/loaded,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ddv" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/retractor{pixel_x = 4},/obj/item/weapon/hemostat{pixel_x = -4},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -27},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ddw" = (/obj/structure/optable,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "ddx" = (/obj/structure/bed/chair{dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 31},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"ddy" = (/obj/machinery/status_display,/turf/simulated/wall/shuttle{tag = "icon-swall12"; icon_state = "swall12"; dir = 2},/area/shuttle/escape) +"ddy" = (/obj/machinery/status_display,/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/escape) "ddz" = (/obj/structure/bed/chair,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 29},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) "ddA" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) "ddB" = (/obj/structure/table,/obj/item/weapon/storage/box/handcuffs{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) @@ -8306,7 +8306,7 @@ "ddL" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4; pixel_y = 2},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 31},/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -4; pixel_y = 4},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) "ddM" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle/red,/area/shuttle/escape) "ddN" = (/obj/machinery/door/airlock/glass_command{name = "Cockpit"; req_access_txt = "19"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) -"ddO" = (/turf/simulated/wall/shuttle{tag = "icon-swall15"; icon_state = "swall15"; dir = 2},/area/shuttle/escape) +"ddO" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/escape) "ddP" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs{pixel_y = 3},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ddQ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) "ddR" = (/obj/machinery/button/flasher{id = "emshuttlebridgeflash"; name = "cockpit flasher button"; pixel_y = 24; req_access_txt = "0"; req_one_access_txt = "1;63;19"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/escape) @@ -8333,9 +8333,9 @@ "dem" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating{icon_state = "floorgrime"},/area/shuttle/escape) "den" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating{icon_state = "floorgrime"},/area/shuttle/escape) "deo" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "floorgrime"},/area/shuttle/escape) -"dep" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/turf/simulated/wall/shuttle{tag = "icon-swall_f5"; icon_state = "swall_f5"; dir = 2},/area/shuttle/escape) -"deq" = (/turf/simulated/wall/shuttle{tag = "icon-swall13"; icon_state = "swall13"; dir = 2},/area/shuttle/escape) -"der" = (/turf/space,/turf/simulated/wall/shuttle{tag = "icon-swall_f9"; icon_state = "swall_f9"; dir = 2},/area/shuttle/escape) +"dep" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/turf/simulated/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/shuttle/escape) +"deq" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/escape) +"der" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/escape) "des" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/plating/airless,/area/shuttle/escape) "det" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "diagonalWall3"},/area/shuttle/escape) "deu" = (/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/escape) diff --git a/_maps/map_files/MiniStation/MiniStation.dmm b/_maps/map_files/MiniStation/MiniStation.dmm index 59d3d2c2811..4c43a435d53 100644 --- a/_maps/map_files/MiniStation/MiniStation.dmm +++ b/_maps/map_files/MiniStation/MiniStation.dmm @@ -9,7 +9,7 @@ "ai" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/bridge) "aj" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -32; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/bridge) "ak" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/bridge) -"al" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/bridge) +"al" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/bridge) "am" = (/obj/structure/lattice,/turf/space,/area/space) "an" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/simulated/floor/plasteel,/area/bridge) "ao" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/obj/item/device/multitool,/turf/simulated/floor/plasteel,/area/bridge) @@ -550,7 +550,7 @@ "kD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) "kE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/research{name = "Research Division"}) "kF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"kG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (EAST)"; icon_state = "connector_map"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"kG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "kH" = (/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "kI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "kJ" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/medical/research{name = "Research Division"}) @@ -598,7 +598,7 @@ "lz" = (/obj/structure/dispenser,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "lA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; frequency = 1440; on = 1},/obj/structure/table/reinforced,/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "lB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/table/reinforced,/obj/item/device/assembly/signaler{pixel_x = 0; pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"lC" = (/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = 25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "burnchamber"; pixel_x = 25; pixel_y = -5},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner"; icon_state = "warnwhitecorner"; dir = 2},/area/medical/research{name = "Research Division"}) +"lC" = (/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = 25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "burnchamber"; pixel_x = 25; pixel_y = -5},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 2},/area/medical/research{name = "Research Division"}) "lD" = (/obj/structure/table/reinforced,/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "lE" = (/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; listening = 1; name = "Common Channel"; pixel_y = 25},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "lF" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) @@ -629,11 +629,11 @@ "me" = (/obj/machinery/conveyor{dir = 4; id = "ToxinLoad"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) "mf" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/door/window/eastright,/turf/simulated/floor/plasteel{dir = 2; icon_state = "redfull"},/area/medical/research{name = "Research Division"}) "mg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"mh" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/medical/research{name = "Research Division"}) +"mh" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/medical/research{name = "Research Division"}) "mi" = (/obj/machinery/atmospherics/components/binary/volume_pump{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"mj" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) +"mj" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) "mk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1443; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/medical/research{name = "Research Division"}) -"ml" = (/obj/structure/sign/fire,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) +"ml" = (/obj/structure/sign/fire,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{icon_state = "intact"; dir = 4},/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) "mm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1440; on = 1},/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) "mn" = (/obj/machinery/camera/autoname{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) "mo" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/engine/vacuum,/area/medical/research{name = "Research Division"}) @@ -681,14 +681,14 @@ "ne" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/central) "nf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/hallway/primary/central) "ng" = (/turf/simulated/wall/r_wall,/area/hallway/primary/central) -"nh" = (/obj/machinery/conveyor_switch{id = "ToxinLoad"},/turf/simulated/floor/plasteel{tag = "icon-warnwhitecorner"; icon_state = "warnwhitecorner"; dir = 2},/area/medical/research{name = "Research Division"}) +"nh" = (/obj/machinery/conveyor_switch{id = "ToxinLoad"},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 2},/area/medical/research{name = "Research Division"}) "ni" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) "nj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) "nk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"nl" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (EAST)"; icon_state = "connector_map"; dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"nm" = (/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = 24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 8},/area/medical/research{name = "Research Division"}) -"nn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/medical/research{name = "Research Division"}) -"no" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{tag = "icon-inje_map (WEST)"; icon_state = "inje_map"; dir = 8},/turf/simulated/floor/engine/vacuum,/area/medical/research{name = "Research Division"}) +"nl" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"nm" = (/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = 24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 8},/area/medical/research{name = "Research Division"}) +"nn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/engine,/area/medical/research{name = "Research Division"}) +"no" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{icon_state = "inje_map"; dir = 8},/turf/simulated/floor/engine/vacuum,/area/medical/research{name = "Research Division"}) "np" = (/obj/machinery/atmospherics/components/binary/volume_pump{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warnwhitecorner"; dir = 1},/area/medical/research{name = "Research Division"}) "nq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "nr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -843,7 +843,7 @@ "qk" = (/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = -30; pixel_z = 0},/obj/structure/closet/crate/bin,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "ql" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "qm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"qn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) +"qn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) "qo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) "qp" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/hallway/secondary/exit) "qq" = (/obj/machinery/computer/operating,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/medbay) @@ -895,9 +895,9 @@ "rk" = (/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = -26; req_access_txt = "5"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) "rl" = (/obj/machinery/computer/med_data,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "rm" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple{dir = 4; icon_state = "intact"; level = 2},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"rn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) -"ro" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) -"rp" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/plasteel{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) +"rn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) +"ro" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) +"rp" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/plasteel{icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) "rq" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "rr" = (/obj/machinery/vending/wallmed{pixel_y = -28},/obj/structure/table,/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "rs" = (/obj/machinery/computer/pandemic,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -915,7 +915,7 @@ "rE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "rF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "rG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"rH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; frequency = 1443; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitebluecorner (WEST)"; icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) +"rH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; frequency = 1443; on = 1},/turf/simulated/floor/plasteel{icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) "rI" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warnwhite"},/area/medical/medbay) "rJ" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "rK" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) @@ -942,7 +942,7 @@ "sf" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 0; pixel_y = 0},/obj/item/weapon/wrench{pixel_x = 5; pixel_y = -5},/obj/structure/table/reinforced,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "sg" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/medbay) "sh" = (/obj/machinery/atmospherics/components/unary/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/medbay) -"si" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; frequency = 1440; on = 1},/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; listening = 1; name = "Common Channel"; pixel_y = 25},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel{tag = "icon-whiteyellowcorner"; icon_state = "whiteyellowcorner"; dir = 2},/area/medical/medbay) +"si" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; frequency = 1440; on = 1},/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; listening = 1; name = "Common Channel"; pixel_y = 25},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel{icon_state = "whiteyellowcorner"; dir = 2},/area/medical/medbay) "sj" = (/obj/structure/bed/roller,/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; listening = 1; name = "Common Channel"; pixel_y = 25},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "sk" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "sl" = (/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) @@ -957,7 +957,7 @@ "su" = (/turf/simulated/wall,/area/crew_quarters/bar) "sv" = (/obj/structure/sign/barsign,/turf/simulated/wall,/area/crew_quarters/bar) "sw" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) -"sx" = (/turf/simulated/floor/plasteel{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) +"sx" = (/turf/simulated/floor/plasteel{icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) "sy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) "sz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whiteblue"},/area/medical/medbay) "sA" = (/obj/structure/table,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/chem_dispenser/drinks,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/crew_quarters/bar) @@ -990,7 +990,7 @@ "tb" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "tc" = (/obj/structure/bed/chair,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "td" = (/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) -"te" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-whiteyellow (WEST)"; icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) +"te" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "whiteyellow"; dir = 8},/area/medical/medbay) "tf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "tg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "whiteyellowcorner"},/area/medical/medbay) "th" = (/obj/structure/closet/crate/bin,/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) @@ -1003,7 +1003,7 @@ "to" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1443; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) "tp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; frequency = 1442; on = 1},/obj/machinery/button/door{desc = "A remote control switch for the genetics doors."; id = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 8; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) "tq" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/wall,/area/medical/medbay) -"tr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whiteyellowcorner (WEST)"; icon_state = "whiteyellowcorner"; dir = 8},/area/medical/medbay) +"tr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "whiteyellowcorner"; dir = 8},/area/medical/medbay) "ts" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "tt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/turf/simulated/floor/wood,/area/crew_quarters/bar) "tu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/crew_quarters/heads{name = "\improper Job Assignment"}) @@ -1073,13 +1073,13 @@ "uG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) "uH" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) "uI" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters"; name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"uJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; frequency = 1442; on = 1},/turf/simulated/floor/plasteel{tag = "icon-whitebluecorner (NORTH)"; icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) +"uJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; frequency = 1442; on = 1},/turf/simulated/floor/plasteel{icon_state = "whitebluecorner"; dir = 1},/area/medical/medbay) "uK" = (/obj/machinery/vending/wallmed{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "uL" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "uM" = (/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; listening = 1; name = "Common Channel"; pixel_y = 25},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"uN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) +"uN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 1},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) "uO" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"uP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) +"uP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 1},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) "uQ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 8},/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/engine/engineering) "uR" = (/obj/effect/spawner/structure/window/reinforced,/turf/simulated/floor/plating,/area/tcommsat/computer) "uS" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/closet/secure_closet/hop,/turf/simulated/floor/plasteel,/area/crew_quarters/heads{name = "\improper Job Assignment"}) @@ -1099,7 +1099,7 @@ "vg" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "yellow"; dir = 1},/area/engine/engineering) "vh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering"; req_access_txt = "10"},/turf/simulated/floor/plasteel,/area/engine/engineering) "vi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"vj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-whitebluecorner (EAST)"; icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) +"vj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "whitebluecorner"; dir = 4},/area/medical/medbay) "vk" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/brute{pixel_x = -2; pixel_y = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "vl" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "vm" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/arrival) @@ -1208,12 +1208,12 @@ "xl" = (/obj/structure/closet/wardrobe/white/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "xm" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/fire{pixel_x = -2; pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "xn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/engine/engineering) -"xo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"xo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) "xp" = (/obj/structure/closet/secure_closet/medical3,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "xq" = (/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/arrival) "xr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/primary/central) "xs" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/hallway/primary/central) -"xt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"xt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) "xu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/meter,/turf/simulated/floor/plating,/area/hallway/primary/central) "xv" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/central) "xw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/bar) @@ -1235,22 +1235,22 @@ "xM" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/meter{use_power = 0},/turf/space,/area/space) "xN" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/hallway/primary/central) "xO" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/hallway/primary/central) -"xP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"xQ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"xP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"xQ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) "xR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/gibber,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/bar) "xS" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"xT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) +"xT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) "xU" = (/obj/structure/table/wood,/obj/item/weapon/gun/projectile/revolver/doublebarrel,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/wood,/area/crew_quarters/bar) "xV" = (/obj/machinery/camera/autoname{dir = 1},/obj/structure/table/wood,/obj/item/weapon/book/manual/chef_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/wood,/area/crew_quarters/bar) "xW" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"xX" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) +"xX" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) "xY" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/engine/engineering) "xZ" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "ya" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7; pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -4; pixel_y = -3},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 4; pixel_y = 2},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 5; pixel_y = -2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "yb" = (/obj/structure/table,/obj/machinery/light,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/tie/stethoscope,/obj/item/weapon/reagent_containers/hypospray,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"yc" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 2},/area/engine/engineering) +"yc" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 2},/area/engine/engineering) "yd" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating,/area/hallway/primary/central) -"ye" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) +"ye" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) "yf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/hallway/primary/central) "yg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/central) "yh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall,/area/crew_quarters/bar) @@ -1302,10 +1302,10 @@ "zb" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bucket{pixel_x = 1; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/hallway/primary/central) "zc" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/engine/engineering) "zd" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/turf/simulated/wall/r_wall,/area/engine/engineering) -"ze" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 1},/area/engine/engineering) +"ze" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 1},/area/engine/engineering) "zf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) "zg" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engineering) -"zh" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) +"zh" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) "zi" = (/obj/machinery/computer/monitor,/obj/structure/cable,/turf/simulated/floor/plasteel,/area/engine/engineering) "zj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/coffee,/turf/simulated/floor/plasteel,/area/hallway/primary/central) "zk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/vending/cigarette{pixel_x = 0; pixel_y = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/central) @@ -1313,7 +1313,7 @@ "zm" = (/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/engine/engineering) "zn" = (/turf/simulated/floor/plating,/area/engine/engineering) "zo" = (/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/engine/engineering) -"zp" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) +"zp" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "zq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) "zr" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/plasteel,/area/engine/engineering) "zs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -1334,10 +1334,10 @@ "zH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/engine/engineering) "zI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/engine/engineering) "zJ" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/simulated/floor/plating,/area/engine/engineering) -"zK" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"zK" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "zL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating/airless,/area/space) -"zM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) -"zN" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) +"zM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"zN" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "zO" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/engine/engineering) "zP" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{name = "air floor"; nitrogen = 10580; oxygen = 2644},/area/engine/engineering) "zQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "bluecorner"; dir = 4},/area/hallway/primary/central) @@ -1403,11 +1403,11 @@ "AY" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plasteel,/area/engine/engineering) "AZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/engine/engineering) "Ba" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel,/area/engine/engineering) -"Bb" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) +"Bb" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "Bc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{frequency = 1443; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) "Bd" = (/obj/machinery/alarm{dir = 1; frequency = 1443; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel,/area/engine/engineering) "Be" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/engine/engineering) -"Bf" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"Bf" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "Bg" = (/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; listening = 1; name = "Common Channel"; pixel_y = 25},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/simulated/floor/plating,/area/engine/engineering) "Bh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) "Bi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; frequency = 1441; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -1415,7 +1415,7 @@ "Bk" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/engine/engineering) "Bl" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 23},/turf/simulated/floor/plasteel,/area/engine/engineering) "Bm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{frequency = 1441; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"Bn" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"Bn" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) "Bo" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "Bp" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/engine/engineering) "Bq" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) @@ -1427,24 +1427,24 @@ "Bw" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "Bx" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/engine/engineering) "By" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) -"Bz" = (/obj/structure/transit_tube{tag = "icon-Block"; icon_state = "Block"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"Bz" = (/obj/structure/transit_tube{icon_state = "Block"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "BA" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/engine/engineering) -"BB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/engine/engineering) +"BB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/engine/engineering) "BC" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/simulated/floor/plating,/area/engine/engineering) "BD" = (/obj/item/device/multitool,/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/engine/engineering) -"BE" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/engine/engineering) -"BF" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"BE" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/engine/engineering) +"BF" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) "BG" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/engine/engineering) -"BH" = (/obj/structure/transit_tube/station/reverse{dir = 8; icon_state = "closed"; tag = "icon-closed (EAST)"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"BH" = (/obj/structure/transit_tube/station/reverse{dir = 8; icon_state = "closed"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "BI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; frequency = 1442; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) "BJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; frequency = 1442; on = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) "BK" = (/obj/machinery/alarm{dir = 1; frequency = 1442; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/camera/autoname{dir = 1},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/plating,/area/engine/engineering) "BL" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/engine/engineering) "BM" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 8},/area/engine/engineering) -"BN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"BN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) "BO" = (/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"BP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"BQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) +"BP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"BQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/engine/engineering) "BR" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/engine/engineering) "BS" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "BT" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -1452,12 +1452,12 @@ "BV" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/engine/engineering) "BW" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/transit_tube_pod,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "BX" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel,/area/engine/engineering) -"BY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) -"BZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"Ca" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"Cb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/engine/engineering) +"BY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"BZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"Ca" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"Cb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/engine/engineering) "Cc" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera/autoname,/turf/simulated/floor/plasteel,/area/engine/engineering) -"Cd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) +"Cd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) "Ce" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) "Cf" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters"; name = "remote shutter control"; req_access_txt = "150"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "Cg" = (/obj/machinery/computer/shuttle/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -1471,7 +1471,7 @@ "Co" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) "Cp" = (/obj/structure/transit_tube{icon_state = "E-NW"},/obj/structure/lattice,/turf/space,/area/space) "Cq" = (/obj/structure/transit_tube,/turf/space,/area/space) -"Cr" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) +"Cr" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/obj/structure/lattice,/turf/space,/area/space) "Cs" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/space,/area/space) "Ct" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/turf/simulated/floor/plasteel,/area/engine/engineering) "Cu" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -1481,16 +1481,16 @@ "Cy" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor/plasteel,/area/engine/engineering) "Cz" = (/obj/structure/table,/turf/simulated/floor/plasteel,/area/engine/engineering) "CA" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/lattice,/turf/space,/area/space) -"CB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 8},/area/engine/engineering) -"CC" = (/obj/machinery/atmospherics/components/binary/pump{target_pressure = 1000},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 4},/area/engine/engineering) -"CD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) -"CE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"CF" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) -"CG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor/engine/vacuum,/area/engine/engineering) -"CH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/engine/engineering) +"CB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{icon_state = "manifold"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 8},/area/engine/engineering) +"CC" = (/obj/machinery/atmospherics/components/binary/pump{target_pressure = 1000},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 4},/area/engine/engineering) +"CD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/engine/engineering) +"CE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"CF" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engine/engineering) +"CG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{icon_state = "manifold"; dir = 1},/turf/simulated/floor/engine/vacuum,/area/engine/engineering) +"CH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/engine/engineering) "CI" = (/obj/machinery/atmospherics/components/unary/outlet_injector{dir = 8; frequency = 1443; id = "air_in"; on = 1},/turf/simulated/floor/engine/vacuum,/area/engine/engineering) "CJ" = (/obj/structure/sign/fire,/turf/simulated/wall,/area/engine/engineering) -"CK" = (/obj/structure/transit_tube{tag = "icon-N-S-Pass"; icon_state = "N-S-Pass"},/turf/space,/area/space) +"CK" = (/obj/structure/transit_tube{icon_state = "N-S-Pass"},/turf/space,/area/space) "CL" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/space,/area/engine/engineering) "CM" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/turf/space,/area/engine/engineering) "CN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/space,/area/engine/engineering) @@ -1513,9 +1513,9 @@ "De" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) "Df" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) "Dg" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plating,/area/engine/engineering) -"Dh" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/engine/engineering) -"Di" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/engine/engineering) -"Dj" = (/obj/machinery/sparker{id = "burnchamber"; pixel_x = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/engine/vacuum,/area/engine/engineering) +"Dh" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/engine/engineering) +"Di" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/engine/engineering) +"Dj" = (/obj/machinery/sparker{id = "burnchamber"; pixel_x = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/engine/vacuum,/area/engine/engineering) "Dk" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/simulated/floor/plasteel,/area/tcommsat/computer) "Dl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plating,/area/tcommsat/computer) "Dm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/obj/machinery/camera/autoname{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) @@ -1529,7 +1529,7 @@ "Du" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/tcommsat/computer) "Dv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) "Dw" = (/obj/item/device/analyzer,/obj/item/weapon/wrench,/turf/simulated/floor/plasteel,/area/engine/engineering) -"Dx" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"; tag = "icon-comfychair (NORTH)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"Dx" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "Dy" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "Dz" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "DA" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -1557,7 +1557,7 @@ "DW" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/simulated/floor/engine/vacuum,/area/engine/engineering) "DX" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/lattice,/turf/space,/area/space) "DY" = (/obj/structure/table,/obj/item/weapon/c4{pixel_x = 2; pixel_y = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"DZ" = (/obj/structure/lattice,/obj/structure/transit_tube{tag = "icon-N-S-Pass"; icon_state = "N-S-Pass"},/turf/space,/area/space) +"DZ" = (/obj/structure/lattice,/obj/structure/transit_tube{icon_state = "N-S-Pass"},/turf/space,/area/space) "Ea" = (/turf/simulated/wall,/area/tcommsat/computer) "Eb" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/tcommsat/computer) "Ec" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/tcommsat/computer) @@ -1575,7 +1575,7 @@ "Eo" = (/obj/machinery/atmospherics/components/unary/outlet_injector{dir = 8},/turf/simulated/floor/plating/airless,/area/space) "Ep" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) "Eq" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/space,/area/space) -"Er" = (/obj/structure/lattice,/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/space,/area/space) +"Er" = (/obj/structure/lattice,/obj/structure/transit_tube{icon_state = "E-W-Pass"},/turf/space,/area/space) "Es" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/space,/area/space) "Et" = (/obj/structure/transit_tube{icon_state = "W-SE"},/obj/structure/lattice,/turf/space,/area/space) "Eu" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/computer) @@ -1632,7 +1632,7 @@ "Ft" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/engine/gravity_generator) "Fu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) "Fv" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"Fw" = (/obj/structure/transit_tube/station/reverse{tag = "icon-closed (EAST)"; icon_state = "closed"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/tcommsat/computer) +"Fw" = (/obj/structure/transit_tube/station/reverse{icon_state = "closed"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/tcommsat/computer) "Fx" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) "Fy" = (/obj/machinery/power/apc{cell_type = 5000; dir = 8; name = "Telecoms Server APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/computer) "Fz" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/computer) @@ -1646,7 +1646,7 @@ "FH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) "FI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) "FJ" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"FK" = (/obj/structure/transit_tube{tag = "icon-Block (NORTH)"; icon_state = "Block"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/tcommsat/computer) +"FK" = (/obj/structure/transit_tube{icon_state = "Block"; dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/tcommsat/computer) "FL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/tcommsat/computer) "FM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/tcommsat/computer) "FN" = (/obj/machinery/camera/autoname{dir = 4; network = list("SS13")},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/computer) @@ -1712,7 +1712,7 @@ "GV" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "GW" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "GX" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) -"GY" = (/obj/machinery/nuclearbomb{tag = "syndienuke"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"GY" = (/obj/machinery/nuclearbomb/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "GZ" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/cautery,/obj/item/weapon/surgicaldrill,/obj/item/robot_parts/l_arm,/obj/item/robot_parts/r_arm,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "Ha" = (/obj/structure/table,/obj/item/weapon/scalpel,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/item/weapon/surgical_drapes,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "Hb" = (/obj/structure/optable,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -1784,7 +1784,7 @@ "Ip" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "Iq" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/escape) "Ir" = (/turf/simulated/wall/shuttle{icon_state = "swallc2"; dir = 2},/area/shuttle/escape) -"Is" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) +"Is" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) "It" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/transport) "Iu" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating,/area/shuttle/transport) "Iv" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/transport) @@ -1797,7 +1797,7 @@ "IC" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "ID" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 12; id = "ferry"; name = "ferry shuttle"; roundstart_move = "ferry_away"; travelDir = 180; width = 5},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 12; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/space; width = 5},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "IE" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f10"},/area/shuttle/transport) -"IF" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) +"IF" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) "IG" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "IH" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "II" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/transport) diff --git a/_maps/map_files/TgStation/tgstation.2.1.3.dmm b/_maps/map_files/TgStation/tgstation.2.1.3.dmm index 8cce4e982ff..8f05eba28b5 100644 --- a/_maps/map_files/TgStation/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation/tgstation.2.1.3.dmm @@ -53,7 +53,7 @@ "aba" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/lattice,/turf/space,/area/space) "abb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/security/transfer) "abc" = (/turf/simulated/wall,/area/security/transfer) -"abd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/wall,/area/security/transfer) +"abd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall,/area/security/transfer) "abe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/security/transfer) "abf" = (/obj/machinery/vending/sustenance,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/security/transfer) @@ -69,10 +69,10 @@ "abq" = (/turf/simulated/wall,/area/security/hos) "abr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/hos) "abs" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"abt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/security/transfer) +"abt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 9},/area/security/transfer) "abu" = (/obj/machinery/door/poddoor{id = "executionspaceblast"; name = "blast door"},/turf/simulated/floor/plating,/area/security/transfer) -"abv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/security/transfer) -"abw" = (/obj/machinery/light/small{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_x = 0; pixel_y = 25},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/security/transfer) +"abv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 5},/area/security/transfer) +"abw" = (/obj/machinery/light/small{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_x = 0; pixel_y = 25},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/security/transfer) "abx" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "aby" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/security/transfer) "abz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -88,7 +88,7 @@ "abJ" = (/obj/structure/rack,/obj/item/weapon/storage/box/firingpins,/obj/item/weapon/storage/box/firingpins,/obj/item/key/security,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) "abK" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt3"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abL" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"abM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"abM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "abN" = (/obj/structure/rack,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/structure/window/reinforced{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/ai_monitored/security/armory) "abO" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) "abP" = (/obj/structure/closet/secure_closet/security/sec,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) @@ -102,8 +102,8 @@ "abX" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) "abY" = (/obj/structure/grille,/turf/space,/area/space) "abZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxport) -"aca" = (/turf/simulated/floor/plasteel{tag = "icon-warndark (WEST)"; icon_state = "warndark"; dir = 8},/area/security/transfer) -"acb" = (/obj/machinery/sparker{dir = 2; id = "executionburn"; pixel_x = 25},/turf/simulated/floor/plasteel{tag = "icon-warndark (EAST)"; icon_state = "warndark"; dir = 4},/area/security/transfer) +"aca" = (/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 8},/area/security/transfer) +"acb" = (/obj/machinery/sparker{dir = 2; id = "executionburn"; pixel_x = 25},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 4},/area/security/transfer) "acc" = (/obj/structure/bed,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) "acd" = (/turf/simulated/wall,/area/security/prison) "ace" = (/obj/machinery/door/poddoor/preopen{id = "permacell3"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt3"; name = "Cell 3"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -127,9 +127,9 @@ "acw" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/structure/lattice/catwalk,/turf/space,/area/space) "acx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/auxstarboard) "acy" = (/obj/structure/lattice,/obj/item/stack/cable_coil/random,/turf/space,/area/space) -"acz" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{tag = "icon-warndark (SOUTHWEST)"; icon_state = "warndark"; dir = 10},/area/security/transfer) -"acA" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2},/turf/simulated/floor/plasteel{tag = "icon-warndark (SOUTHEAST)"; icon_state = "warndark"; dir = 6},/area/security/transfer) -"acB" = (/turf/simulated/floor/plasteel{tag = "icon-warndark"; icon_state = "warndark"; dir = 2},/area/security/transfer) +"acz" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 10},/area/security/transfer) +"acA" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 6},/area/security/transfer) +"acB" = (/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 2},/area/security/transfer) "acC" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 3"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "acD" = (/obj/structure/bed/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "acE" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) @@ -158,7 +158,7 @@ "adb" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "adc" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "add" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) -"ade" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) +"ade" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/prison) "adf" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/security/prison) "adg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/security/armory) "adh" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/carpet,/area/security/hos) @@ -243,7 +243,7 @@ "aeI" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/weapon/tank/internals/anesthetic{pixel_x = -3; pixel_y = 1},/obj/item/weapon/tank/internals/oxygen/red{pixel_x = 3},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/security/transfer) "aeJ" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor/plating,/area/security/transfer) "aeK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aeL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aeL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) "aeM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/prison) "aeN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 0; icon_state = "door_closed"; id_tag = null; locked = 0; name = "Prisoner Transfer Centre"; req_access = null; req_access_txt = "2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) "aeO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/security/prison) @@ -279,10 +279,10 @@ "afs" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/pod_3) "aft" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/security/transfer) "afu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/transfer) -"afv" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"afv" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) "afw" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/machinery/door/window/southleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Armory"; req_access_txt = "2"},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/security/transfer) "afx" = (/obj/machinery/light_switch{pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"afy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"afy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/transfer) "afz" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/prison) "afA" = (/turf/simulated/wall/r_wall,/area/security/transfer) "afB" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/prison) @@ -333,7 +333,7 @@ "agu" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "agv" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/main) "agw" = (/obj/structure/table,/obj/machinery/syndicatebomb/training,/obj/item/weapon/gun/energy/laser/practice,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/main) -"agx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/main) +"agx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/main) "agy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/main) "agz" = (/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/security/main) "agA" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/main) @@ -356,7 +356,7 @@ "agR" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/warden) "agS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "agT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"agU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) +"agU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "agV" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "agW" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/warden) "agX" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) @@ -370,7 +370,7 @@ "ahf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/main) "ahg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/security/main) "ahh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/plasteel,/area/security/main) -"ahi" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 7},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/main) +"ahi" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 7},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/main) "ahj" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/security/main) "ahk" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "ahl" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Security"},/obj/structure/plasticflaps{opacity = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/security/main) @@ -424,7 +424,7 @@ "aih" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) "aii" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/warden) "aij" = (/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/security/warden) -"aik" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/main) +"aik" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/main) "ail" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/security/brig) "aim" = (/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/main) "ain" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/security/brig) @@ -491,15 +491,15 @@ "ajw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/brig) "ajx" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) "ajy" = (/obj/machinery/power/apc{dir = 1; name = "Labor Shuttle Dock APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) -"ajz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) +"ajz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) "ajA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) "ajB" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/brig) "ajC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/brig) -"ajD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/security/brig) +"ajD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/security/brig) "ajE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 5},/area/crew_quarters/courtroom) "ajF" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/brig) "ajG" = (/obj/machinery/light,/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) +"ajH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) "ajI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "ajJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "ajK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) @@ -507,7 +507,7 @@ "ajM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) "ajN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Brig"; req_access = null; req_access_txt = "63; 42"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "ajO" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Station Intercom (Court)"; pixel_x = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) -"ajP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/courtroom) +"ajP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/courtroom) "ajQ" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) "ajR" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock{anchored = 1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/courtroom) "ajS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/crew_quarters/courtroom) @@ -528,7 +528,7 @@ "akh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "aki" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/security/brig) "akj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) -"akk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/brig) +"akk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/security/brig) "akl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/brig) "akm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/security/brig) "akn" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/courtroom) @@ -538,7 +538,7 @@ "akr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 9},/area/security/brig) "aks" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/security/brig) "akt" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 4"; name = "Cell 4"; pixel_y = -32},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/brig) -"aku" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/brig) +"aku" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/brig) "akv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/brig) "akw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/courtroom) "akx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/security/brig) @@ -553,7 +553,7 @@ "akG" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/processing) "akH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/security/processing) "akI" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/processing) -"akJ" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/security/processing) +"akJ" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/processing) "akK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/security/processing) "akL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "akM" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/brig) @@ -626,7 +626,7 @@ "amb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/processing) "amc" = (/obj/machinery/computer/shuttle/labor,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/security/processing) "amd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/security/processing) -"ame" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/security/processing) +"ame" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/security/processing) "amf" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/brig) "amg" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/brig) "amh" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/security/brig) @@ -683,9 +683,9 @@ "ang" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Fore Port Solar APC"; pixel_x = -25; pixel_y = 3},/obj/machinery/camera{c_tag = "Fore Port Solar Control"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) "anh" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/maintenance/auxsolarport) "ani" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"anj" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"anj" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{icon_state = "manifold"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "ank" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"anl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "anm" = (/obj/item/trash/sosjerky,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "ann" = (/obj/item/weapon/electronics/airalarm,/obj/item/weapon/circuitboard/seed_extractor,/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "ano" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/fpmaint2) @@ -703,13 +703,13 @@ "anA" = (/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/hallway/primary/fore) "anB" = (/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/hallway/primary/fore) "anC" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/courtroom) -"anD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"anD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anE" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anF" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "anH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/auxsolarport) "anI" = (/obj/machinery/door/airlock/engineering{icon_state = "door_closed"; locked = 0; name = "Fore Port Solar Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/auxsolarport) -"anJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"anJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "anK" = (/obj/effect/decal/cleanable/egg_smudge,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "anL" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "anM" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/labor) @@ -736,7 +736,7 @@ "aoh" = (/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Fore Starboard Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "aoi" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/item/device/multitool,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "aoj" = (/obj/machinery/camera{c_tag = "Fore Port Solar Access"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aok" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"aok" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aol" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aom" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aon" = (/obj/structure/bed/chair,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) @@ -746,7 +746,7 @@ "aor" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/processing) "aos" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/security/processing) "aot" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/processing) -"aou" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/camera{c_tag = "Labor Shuttle Dock South"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/processing) +"aou" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera{c_tag = "Labor Shuttle Dock South"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 6},/area/security/processing) "aov" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/hallway/primary/fore) "aow" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/hallway/primary/fore) "aox" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway West"; dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "redcorner"},/area/hallway/primary/fore) @@ -792,7 +792,7 @@ "apl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/fsmaint) "apm" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/hallway/primary/fore) "apn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall,/area/maintenance/fsmaint) -"apo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/wall,/area/maintenance/fsmaint) +"apo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/wall,/area/maintenance/fsmaint) "app" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "apq" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "apr" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "Dormitory Maintenance APC"; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) @@ -802,7 +802,7 @@ "apv" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "apw" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Air In"; on = 1},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/fsmaint) "apx" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"apy" = (/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fsmaint) +"apy" = (/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/maintenance/fsmaint) "apz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "apA" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Fore Starboard Solar APC"; pixel_x = -25; pixel_y = 3},/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) "apB" = (/obj/machinery/camera{c_tag = "Fore Starboard Solars"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/simulated/floor/plating,/area/maintenance/auxsolarstarboard) @@ -826,7 +826,7 @@ "apT" = (/turf/space,/obj/machinery/gun_turret,/turf/simulated/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) "apU" = (/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) "apV" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase,/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"apW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) +"apW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "apX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/fitness) "apY" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "apZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/lawoffice) @@ -836,12 +836,12 @@ "aqd" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/hallway/primary/fore) "aqe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aqg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"aqg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqi" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqk" = (/obj/machinery/power/apc{dir = 2; name = "Dormitory APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"aql" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) +"aql" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "aqn" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/alarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm4"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "aqo" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep) @@ -867,9 +867,9 @@ "aqI" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) "aqJ" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aqK" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aqL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aqM" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aqN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"aqL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"aqM" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"aqN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aqO" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aqP" = (/obj/machinery/power/apc{dir = 1; name = "Arrivals North Maintenance APC"; pixel_x = -1; pixel_y = 26},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aqQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint) @@ -899,7 +899,7 @@ "aro" = (/turf/simulated/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) "arp" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "arq" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"arr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"arr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "ars" = (/obj/machinery/power/apc{dir = 1; name = "Bar Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "art" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Fore Starboard Solar Access"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aru" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) @@ -913,13 +913,13 @@ "arC" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_1) "arD" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) "arE" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"arF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/wall,/area/maintenance/fpmaint2) -"arG" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint2) -"arH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"arI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"arJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"arK" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/fpmaint2) -"arL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"arF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 5},/turf/simulated/wall,/area/maintenance/fpmaint2) +"arG" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint2) +"arH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"arI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"arJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"arK" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 9},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2) +"arL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "arM" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "arN" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "arO" = (/obj/machinery/monkey_recycler,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) @@ -940,7 +940,7 @@ "asd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) "ase" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "asf" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 5},/area/crew_quarters/sleep) -"asg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/sleep) +"asg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 9},/area/crew_quarters/sleep) "ash" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "asi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "asj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/security/detectives_office) @@ -972,7 +972,7 @@ "asJ" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod2"; name = "escape pod 2"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/pod_2) "asK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "asL" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/button/door{id = "Dorm6"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"asM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) +"asM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) "asN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "asO" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "asP" = (/obj/structure/bed/stool,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fpmaint) @@ -981,7 +981,7 @@ "asS" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "asT" = (/obj/structure/closet/secure_closet/chemical,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "asU" = (/obj/machinery/requests_console{department = "Detective's office"; pixel_x = -30; pixel_y = 0},/obj/structure/table/wood,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/security/detectives_office) -"asV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"asV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "asW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/security/detectives_office) "asX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "asY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/crew_quarters/fitness) @@ -994,12 +994,12 @@ "atf" = (/obj/structure/bed/stool{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "atg" = (/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "ath" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) -"ati" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) +"ati" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) "atj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) "atk" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "atl" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "atm" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep) -"atn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/wall,/area/maintenance/fpmaint2) +"atn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall,/area/maintenance/fpmaint2) "ato" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/sleep) "atp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "atq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint2) @@ -1010,7 +1010,7 @@ "atv" = (/obj/structure/table,/obj/item/weapon/shard,/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/shard{icon_state = "small"},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "atw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "atx" = (/obj/machinery/button/door{id = "maint3"; name = "Blast Door Control C"; pixel_x = 0; pixel_y = 24; req_access_txt = "0"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aty" = (/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint2) +"aty" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fsmaint2) "atz" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "atA" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "atB" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) @@ -1050,7 +1050,7 @@ "auj" = (/obj/machinery/power/apc{dir = 8; name = "Fore Primary Hallway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Fore Primary Hallway"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 1},/area/hallway/primary/fore) "auk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) "aul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) -"aum" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"aum" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aun" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/sleep) "auo" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/detectives_office) "aup" = (/obj/machinery/door/airlock{id_tag = "Dorm6"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/sleep) @@ -1058,7 +1058,7 @@ "aur" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) "aus" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "aut" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"auu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"auu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "auv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) "auw" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/alarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "aux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/sleep) @@ -1103,7 +1103,7 @@ "avk" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "redcorner"; dir = 4},/area/hallway/primary/fore) "avl" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/sleep) "avm" = (/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/sleep) -"avn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/sleep) +"avn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/crew_quarters/sleep) "avo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/electrical) "avp" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "avq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) @@ -1142,18 +1142,18 @@ "avX" = (/obj/machinery/light/small{dir = 4},/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "avY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "avZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint) -"awa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/wall,/area/maintenance/fpmaint) +"awa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/wall,/area/maintenance/fpmaint) "awb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awc" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awd" = (/obj/machinery/power/apc{dir = 1; name = "EVA Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awe" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"awf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) +"awf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awh" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awj" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "awk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) -"awl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) +"awl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) "awm" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "awn" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) "awo" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) @@ -1209,14 +1209,14 @@ "axm" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "axo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"axp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) +"axp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axs" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axt" = (/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/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axu" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"axw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) +"axw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axx" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "axy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) "axz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) @@ -1224,13 +1224,13 @@ "axB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/fore) "axC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/fore) "axD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"axE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) +"axE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) "axF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) "axG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "arrival"},/area/hallway/secondary/entry) "axH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{dir = 1; icon_state = "arrival"},/area/hallway/secondary/entry) "axI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{dir = 1; icon_state = "arrival"},/area/hallway/secondary/entry) "axJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"axK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/wall,/area/maintenance/fpmaint2) +"axK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/wall,/area/maintenance/fpmaint2) "axL" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "axM" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "axN" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) @@ -1239,7 +1239,7 @@ "axQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "axR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "axS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) -"axT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) +"axT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) "axU" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) "axV" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel,/area/crew_quarters/sleep) "axW" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/crew_quarters/fitness) @@ -1254,7 +1254,7 @@ "ayf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "ayg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "ayh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ayi" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"ayi" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "ayj" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/turf/simulated/floor/plating,/area/maintenance/electrical) "ayk" = (/turf/simulated/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) "ayl" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) @@ -1300,7 +1300,7 @@ "ayZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) "aza" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/sleep) "azb" = (/obj/structure/bed/stool{pixel_y = 8},/turf/simulated/floor/plasteel{icon_state = "neutralcorner"; dir = 2},/area/crew_quarters/sleep) -"azc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) +"azc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) "azd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 6},/area/crew_quarters/sleep) "aze" = (/turf/simulated/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/sleep) "azf" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/fitness) @@ -1316,7 +1316,7 @@ "azp" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/fitness) "azq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/hallway/secondary/construction{name = "\improper Garden"}) "azr" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"azs" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) +"azs" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) "azt" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) "azu" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/electrical) "azv" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/electrical) @@ -1338,7 +1338,7 @@ "azL" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 4},/area/gateway) "azM" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) "azN" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/gateway) -"azO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) +"azO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) "azP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) "azQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) "azR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) @@ -1376,7 +1376,7 @@ "aAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) "aAy" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/electrical) "aAz" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/electrical) -"aAA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/wall,/area/maintenance/electrical) +"aAA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/wall,/area/maintenance/electrical) "aAB" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/electrical) "aAC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/hallway/secondary/entry) "aAD" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/hallway/secondary/entry) @@ -1390,7 +1390,7 @@ "aAL" = (/obj/machinery/power/apc{dir = 2; name = "Primary Tool Storage APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/primary) "aAM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aAN" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aAO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) +"aAO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) "aAP" = (/obj/machinery/hydroponics/soil,/turf/simulated/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) "aAQ" = (/turf/simulated/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) "aAR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) @@ -1415,7 +1415,7 @@ "aBk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) "aBl" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/turf/simulated/floor/plating,/area/security/checkpoint2) "aBm" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aBn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) +"aBn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) "aBo" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) "aBp" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/ai_monitored/storage/eva) "aBq" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/ai_monitored/storage/eva) @@ -1431,7 +1431,7 @@ "aBA" = (/obj/machinery/shower{dir = 8},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) "aBB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/fsmaint2) "aBC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aBD" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aBD" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aBE" = (/obj/item/clothing/under/rank/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aBF" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aBG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) @@ -1443,7 +1443,7 @@ "aBM" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) "aBN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/storage/primary) "aBO" = (/obj/machinery/requests_console{department = "EVA"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/ai_monitored/storage/eva) -"aBP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) +"aBP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) "aBQ" = (/turf/simulated/wall,/area/storage/primary) "aBR" = (/turf/simulated/wall/r_wall,/area/storage/primary) "aBS" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/ai_monitored/nuke_storage) @@ -1455,7 +1455,7 @@ "aBY" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 1},/area/gateway) "aBZ" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/gateway) "aCa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) -"aCb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/weapon/pen{desc = "Writes upside down!"; name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) +"aCb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/weapon/pen{desc = "Writes upside down!"; name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) "aCc" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva) "aCd" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/alarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/sleep) "aCe" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/bikehorn/rubberducky,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) @@ -1464,7 +1464,7 @@ "aCh" = (/obj/machinery/vending/autodrobe,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 4},/area/crew_quarters/theatre) "aCi" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/ai_monitored/storage/eva) "aCj" = (/obj/machinery/camera{c_tag = "EVA East"; dir = 1},/turf/simulated/floor/plasteel,/area/ai_monitored/storage/eva) -"aCk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aCk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aCl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aCm" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) "aCn" = (/obj/structure/urinal{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) @@ -1480,7 +1480,7 @@ "aCx" = (/obj/machinery/atmospherics/components/binary/valve,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aCy" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aCz" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aCA" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window{tag = "icon-window (EAST)"; icon_state = "window"; dir = 4},/obj/structure/window,/turf/simulated/floor/plating{tag = "icon-panelscorched"; icon_state = "panelscorched"},/area/maintenance/fsmaint2) +"aCA" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window{icon_state = "window"; dir = 4},/obj/structure/window,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fsmaint2) "aCB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/fsmaint2) "aCC" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aCD" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) @@ -1584,14 +1584,14 @@ "aEx" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 8},/turf/simulated/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi'; icon_state = "dark"},/area/shuttle/arrival) "aEy" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi'; icon_state = "dark"},/area/shuttle/arrival) "aEz" = (/obj/machinery/power/apc{dir = 4; name = "Entry Hall APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry) -"aEA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j1s"; sortType = 18},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aEB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aEA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j1s"; sortType = 18},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aEB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aEC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aED" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aED" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aEE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/security/checkpoint2) "aEF" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/turf/simulated/floor/plasteel{icon_state = "green"; dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) "aEG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"aEH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint2) +"aEH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint2) "aEI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel,/area/security/checkpoint2) "aEJ" = (/turf/simulated/floor/plasteel{icon_state = "red"; dir = 4},/area/security/checkpoint2) "aEK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/security/checkpoint2) @@ -1614,15 +1614,15 @@ "aFb" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) "aFc" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva) "aFd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) -"aFe" = (/obj/machinery/camera{c_tag = "Dormitory South"; c_tag_order = 999; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) -"aFf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aFe" = (/obj/machinery/camera{c_tag = "Dormitory South"; c_tag_order = 999; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 8},/area/crew_quarters/sleep) +"aFf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) "aFg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/toilet) "aFh" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) "aFi" = (/obj/machinery/power/apc{dir = 4; name = "Dormitory Bathrooms APC"; pixel_x = 26; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aFj" = (/turf/simulated/floor/plasteel{tag = "icon-redblue"; icon_state = "redblue"},/area/crew_quarters/theatre) -"aFk" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel{tag = "icon-redblue"; icon_state = "redblue"},/area/crew_quarters/theatre) -"aFl" = (/obj/machinery/light/small{dir = 8},/obj/structure/dresser,/turf/simulated/floor/plasteel{tag = "icon-redblue"; icon_state = "redblue"},/area/crew_quarters/theatre) -"aFm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aFj" = (/turf/simulated/floor/plasteel{icon_state = "redblue"},/area/crew_quarters/theatre) +"aFk" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plasteel{icon_state = "redblue"},/area/crew_quarters/theatre) +"aFl" = (/obj/machinery/light/small{dir = 8},/obj/structure/dresser,/turf/simulated/floor/plasteel{icon_state = "redblue"},/area/crew_quarters/theatre) +"aFm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aFn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aFo" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aFp" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) @@ -1631,7 +1631,7 @@ "aFs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aFt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aFu" = (/turf/simulated/wall,/area/library) -"aFv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aFv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aFw" = (/turf/simulated/wall,/area/chapel/office) "aFx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aFy" = (/obj/machinery/power/apc{dir = 2; name = "Chapel Office APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/chapel/office) @@ -1643,7 +1643,7 @@ "aFE" = (/obj/structure/bed/chair{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "aFF" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi'; icon_state = "dark"},/area/shuttle/arrival) "aFG" = (/turf/simulated/floor/plasteel{dir = 4; icon_state = "arrival"},/area/hallway/secondary/entry) -"aFH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) +"aFH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) "aFI" = (/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light_switch{pixel_x = 6; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 10},/area/security/checkpoint2) "aFJ" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) "aFK" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) @@ -1653,9 +1653,9 @@ "aFO" = (/obj/machinery/camera{c_tag = "Garden"; dir = 8; network = list("SS13")},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) "aFP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) "aFQ" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel,/area/storage/primary) -"aFR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/storage/primary) +"aFR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/storage/primary) "aFS" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel,/area/storage/primary) -"aFT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) +"aFT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/storage/primary) "aFU" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/storage/primary) "aFV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "aFW" = (/obj/structure/bed/stool,/turf/simulated/floor/plasteel,/area/gateway) @@ -1679,20 +1679,20 @@ "aGo" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/ai_monitored/storage/eva) "aGp" = (/obj/machinery/light/small{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) "aGq" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva) -"aGr" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Clown"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aGr" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Clown"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "redbluefull"},/area/crew_quarters/theatre) "aGs" = (/obj/machinery/suit_storage_unit/rd,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) "aGt" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/fore) "aGu" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) "aGv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/theatre) -"aGw" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aGw" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "redbluefull"},/area/crew_quarters/theatre) "aGx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/toilet) "aGy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aGz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aGA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 19},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aGB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aGC" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aGD" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/random,/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aGE" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aGA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 19},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aGB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aGC" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aGD" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/random,/turf/simulated/floor/plasteel{icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aGE" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aGF" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 17},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aGG" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/library) "aGH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) @@ -1723,10 +1723,10 @@ "aHg" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "aHh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/gateway) "aHi" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"aHj" = (/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/gateway) +"aHj" = (/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/gateway) "aHk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "aHl" = (/obj/structure/closet/coffin,/obj/machinery/door/window/eastleft{name = "Coffin Storage"; req_access_txt = "22"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"aHm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aHm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "aHn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "aHo" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) "aHp" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) @@ -1736,7 +1736,7 @@ "aHt" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/arrival) "aHu" = (/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitecorner"},/area/hallway/secondary/entry) "aHv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/gateway) -"aHw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/gateway) +"aHw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/gateway) "aHx" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) "aHy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint2) "aHz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{dir = 5; icon_state = "green"},/area/hallway/secondary/construction{name = "\improper Garden"}) @@ -1748,11 +1748,11 @@ "aHF" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/ai_monitored/nuke_storage) "aHG" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked"; locked = 1; req_access_txt = "53"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/ai_monitored/nuke_storage) "aHH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 4},/area/crew_quarters/sleep) -"aHI" = (/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aHI" = (/turf/simulated/floor/plasteel{icon_state = "redbluefull"},/area/crew_quarters/theatre) "aHJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/gateway) -"aHK" = (/obj/structure/closet,/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aHK" = (/obj/structure/closet,/turf/simulated/floor/plasteel{icon_state = "redbluefull"},/area/crew_quarters/theatre) "aHL" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/gateway) -"aHM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/wall,/area/crew_quarters/bar) +"aHM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall,/area/crew_quarters/bar) "aHN" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/ai_monitored/storage/eva) "aHO" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/ai_monitored/storage/eva) "aHP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) @@ -1764,18 +1764,18 @@ "aHV" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) "aHW" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) "aHX" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aHY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) -"aHZ" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/weapon/storage/crayons,/turf/simulated/floor/plasteel{tag = "icon-redbluefull"; icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aHY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aHZ" = (/obj/structure/table/wood,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/weapon/storage/crayons,/turf/simulated/floor/plasteel{icon_state = "redbluefull"},/area/crew_quarters/theatre) "aIa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aIb" = (/obj/machinery/power/apc{dir = 8; name = "Theatre APC"; pixel_x = -25},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/crew_quarters/theatre) "aIc" = (/obj/machinery/power/apc{dir = 2; name = "Bar APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/bar) -"aId" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aId" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aIe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/bar) "aIf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aIg" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/crew_quarters/bar) "aIh" = (/obj/machinery/power/apc{dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) "aIi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/kitchen) -"aIj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 21},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"aIj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 21},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aIk" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aIl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "aIm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) @@ -1837,7 +1837,7 @@ "aJq" = (/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aJr" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "bluecorner"},/area/hallway/primary/central) "aJs" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "blue"},/area/hallway/primary/central) -"aJt" = (/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 40; tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = 32; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 24; tag = "icon-direction_evac (EAST)"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/hallway/primary/central) +"aJt" = (/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 40},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = 32},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 24},/turf/simulated/floor/plasteel{dir = 4; icon_state = "bluecorner"},/area/hallway/primary/central) "aJu" = (/turf/simulated/floor/plasteel{dir = 5; icon_state = "blue"},/area/hallway/primary/central) "aJv" = (/obj/machinery/vending/cola,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) "aJw" = (/turf/simulated/wall,/area/hallway/primary/central) @@ -1853,7 +1853,7 @@ "aJG" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "aJH" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Bar Delivery"; req_access_txt = "25"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/bar) "aJI" = (/turf/simulated/wall,/area/crew_quarters/kitchen) -"aJJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"aJJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "aJK" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/crew_quarters/kitchen) "aJL" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/hydroponics) "aJM" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) @@ -1899,7 +1899,7 @@ "aKA" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/turf/simulated/floor/plasteel,/area/gateway) "aKB" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/gateway) "aKC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"aKD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"aKD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "aKE" = (/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 8},/area/hallway/primary/central) "aKF" = (/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 4},/area/hallway/primary/central) "aKG" = (/obj/machinery/vending/snack,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) @@ -1920,7 +1920,7 @@ "aKV" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Kitchen Delivery"; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) "aKW" = (/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "aKX" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery"; req_access_txt = "35"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/hydroponics) -"aKY" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"aKY" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "aKZ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "aLa" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/chapel/office) "aLb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) @@ -1939,7 +1939,7 @@ "aLo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/chapel/office) "aLp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/port) "aLq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/port) -"aLr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aLr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) "aLs" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/obj/docking_port/mobile{dwidth = 5; height = 7; id = "arrival"; name = "arrival shuttle"; travelDir = -90; width = 15},/obj/docking_port/stationary{dwidth = 5; height = 7; id = "arrival_home"; name = "port bay 1"; width = 15},/turf/simulated/floor/plating,/area/shuttle/arrival) "aLt" = (/turf/space,/turf/simulated/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/shuttle/arrival) "aLu" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/arrival) @@ -1984,7 +1984,7 @@ "aMh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aMi" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) "aMj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/central) -"aMk" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"aMk" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "aMl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "aMm" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aMn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) @@ -1994,7 +1994,7 @@ "aMr" = (/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aMs" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "aMt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = -31},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"aMu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) +"aMu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "aMv" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aMw" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "aMx" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) @@ -2004,7 +2004,7 @@ "aMB" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/crew_quarters/bar) "aMC" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/crew_quarters/bar) "aMD" = (/obj/machinery/icecream_vat,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"aME" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"aME" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "aMF" = (/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "aMG" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/turf/simulated/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) "aMH" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) @@ -2061,7 +2061,7 @@ "aNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "aNH" = (/obj/machinery/door/window{dir = 4; name = "Theatre Stage"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) "aNI" = (/obj/machinery/computer/slot_machine,/obj/machinery/light/small{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) -"aNJ" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) +"aNJ" = (/obj/structure/bed/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "aNK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "aNL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/hydroponics) "aNM" = (/obj/structure/kitchenspike,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) @@ -2072,7 +2072,7 @@ "aNR" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) "aNS" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/simulated/floor/wood,/area/library) "aNT" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aNU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aNU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/port) "aNV" = (/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) "aNW" = (/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/office) "aNX" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/chapel/main) @@ -2101,9 +2101,9 @@ "aOu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) "aOv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) "aOw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aOx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aOx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/port) "aOy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/port) -"aOz" = (/obj/structure/sign/directions/security{dir = 4; icon_state = "direction_sec"; pixel_x = 32; pixel_y = -24; tag = "icon-direction_sec (EAST)"},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = -32; tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) +"aOz" = (/obj/structure/sign/directions/security{dir = 4; icon_state = "direction_sec"; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = -32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) "aOA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) "aOB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "aOC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/port) @@ -2117,7 +2117,7 @@ "aOK" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/bar) "aOL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "aOM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"aON" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"aON" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) "aOO" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar) "aOP" = (/obj/effect/landmark{name = "blobstart"},/obj/item/toy/beach_ball/holoball,/turf/simulated/floor/plating,/area/crew_quarters/bar) "aOQ" = (/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hydroponics) @@ -2193,7 +2193,7 @@ "aQi" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "aQj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/kitchen) "aQk" = (/obj/machinery/door/airlock{name = "Kitchen cold room"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"aQl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) +"aQl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) "aQm" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "green"},/area/hydroponics) "aQn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) "aQo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) @@ -2237,7 +2237,7 @@ "aRa" = (/turf/simulated/floor/plasteel,/area/storage/art) "aRb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) "aRc" = (/obj/machinery/door/airlock{name = "Port Emergency Storage"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/storage/emergency2) -"aRd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) +"aRd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "neutral"; dir = 1},/area/hallway/secondary/entry) "aRe" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tools) "aRf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/storage/tools) "aRg" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) @@ -2439,7 +2439,7 @@ "aUU" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/requests_console{department = "Locker Room"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aUV" = (/obj/structure/bed/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aUW" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/security/vacantoffice) -"aUX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) +"aUX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aUY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aUZ" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aVa" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel,/area/storage/tools) @@ -2453,7 +2453,7 @@ "aVi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/bridge) "aVj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/bridge) "aVk" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/bridge) -"aVl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/bridge) +"aVl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/bridge) "aVm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/bridge) "aVn" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/bridge) "aVo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/bridge) @@ -2470,7 +2470,7 @@ "aVz" = (/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) "aVA" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) "aVB" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/stack/packageWrap,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"aVC" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"aVC" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "aVD" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) "aVE" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) "aVF" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) @@ -2479,7 +2479,7 @@ "aVI" = (/turf/simulated/floor/plasteel{icon_state = "green"; dir = 8},/area/hydroponics) "aVJ" = (/obj/machinery/light{dir = 8},/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hydroponics) "aVK" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/plasteel,/area/hydroponics) -"aVL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 16},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"aVL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 16},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "aVM" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/hydroponics) "aVN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "aVO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) @@ -2502,10 +2502,10 @@ "aWf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) "aWg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/carpet,/area/chapel/main) "aWh" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aWi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/wood,/area/security/vacantoffice) -"aWj" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (WEST)"; icon_state = "window"; dir = 8},/obj/structure/window,/turf/simulated/floor/plating,/area/maintenance/port) +"aWi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/wood,/area/security/vacantoffice) +"aWj" = (/obj/structure/grille,/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/window,/turf/simulated/floor/plating,/area/maintenance/port) "aWk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/port) -"aWl" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) +"aWl" = (/obj/structure/grille,/obj/structure/window{icon_state = "window"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) "aWm" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/light_switch{pixel_x = -28; pixel_y = 0},/turf/simulated/floor/wood,/area/security/vacantoffice) "aWn" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aWo" = (/obj/machinery/camera{c_tag = "Locker Room West"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) @@ -2513,7 +2513,7 @@ "aWq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aWr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/carpet,/area/security/vacantoffice) "aWs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/security/vacantoffice) -"aWt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) +"aWt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) "aWu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) "aWv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "aWw" = (/obj/machinery/power/apc{dir = 1; name = "Art Storage"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/art) @@ -2541,7 +2541,7 @@ "aWS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/bridge) "aWT" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/bridge) "aWU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/bridge) -"aWV" = (/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Center"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/bridge) +"aWV" = (/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Center"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/bridge) "aWW" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Bridge APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/bridge) "aWX" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/bridge) "aWY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/bridge) @@ -2573,7 +2573,7 @@ "aXy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) "aXz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/chapel/main) "aXA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/crew_quarters/locker) -"aXB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/carpet,/area/chapel/main) +"aXB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/carpet,/area/chapel/main) "aXC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aXD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "escape"},/area/hallway/secondary/exit) "aXE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) @@ -2590,7 +2590,7 @@ "aXP" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/port) "aXQ" = (/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) "aXR" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"aXS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/wall,/area/hydroponics) +"aXS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/wall,/area/hydroponics) "aXT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) "aXU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/carpet,/area/library) "aXV" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/library) @@ -2601,7 +2601,7 @@ "aYa" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Locker Room Maintenance APC"; pixel_x = -27; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) "aYb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "aYc" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) -"aYd" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) +"aYd" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/security/vacantoffice) "aYe" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) "aYf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "aYg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/port) @@ -2631,7 +2631,7 @@ "aYE" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 10},/area/hallway/primary/central) "aYF" = (/obj/machinery/power/apc{dir = 2; name = "Central Hall APC"; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/hallway/primary/central) "aYG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/central) -"aYH" = (/obj/structure/table,/obj/item/weapon/razor,/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"aYH" = (/obj/structure/table,/obj/item/weapon/razor,/obj/structure/window{icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) "aYI" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "aYJ" = (/obj/machinery/light_switch{pixel_y = -25},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) "aYK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/kitchen) @@ -2642,7 +2642,7 @@ "aYP" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel,/area/hydroponics) "aYQ" = (/obj/machinery/hydroponics/constructable,/turf/simulated/floor/plasteel{dir = 1; icon_state = "green"},/area/hydroponics) "aYR" = (/obj/structure/bed/stool,/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/plasteel,/area/hydroponics) -"aYS" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2; pixel_y = 0},/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"aYS" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2; pixel_y = 0},/obj/structure/window{icon_state = "window"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) "aYT" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hydroponics) "aYU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/locker) "aYV" = (/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) @@ -2661,7 +2661,7 @@ "aZi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aZj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "escape"},/area/hallway/secondary/exit) "aZk" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"aZl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"aZl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "aZm" = (/obj/machinery/camera{c_tag = "Escape Arm Airlocks"; dir = 8; network = list("SS13")},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/exit) "aZn" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/security/vacantoffice) "aZo" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) @@ -2707,7 +2707,7 @@ "bac" = (/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "bad" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "bae" = (/obj/structure/noticeboard{pixel_y = -27},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) -"baf" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"baf" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) "bag" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "bah" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) "bai" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "bar"},/area/crew_quarters/bar) @@ -2741,7 +2741,7 @@ "baK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) "baL" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "baM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "Locker Restrooms APC"; pixel_x = 27; pixel_y = 2},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/crew_quarters/locker/locker_toilet) -"baN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"baN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "baO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) "baP" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor/carpet,/area/crew_quarters/captain) "baQ" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) @@ -2815,13 +2815,13 @@ "bcg" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/obj/machinery/camera/motion{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "bch" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bci" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bcj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"bck" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bcj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) +"bck" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bcl" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/disposal) "bcm" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/crew_quarters/captain) "bcn" = (/obj/structure/displaycase/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bco" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorm"; location = "HOP2"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bcp" = (/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 28; tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 36; tag = "icon-direction_sec (NORTH)"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bcp" = (/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 36},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bcq" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bcr" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bcs" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) @@ -2832,18 +2832,18 @@ "bcx" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 5"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bcy" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitecorner"},/area/hallway/secondary/exit) "bcz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) -"bcA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) +"bcA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "bcB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/hallway/secondary/exit) "bcC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/hallway/secondary/exit) "bcD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/secondary/entry) "bcE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bcF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bcG" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bcF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bcG" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) "bcH" = (/obj/machinery/camera{c_tag = "Cargo Bay Storage"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) "bcI" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/port) "bcJ" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "loadingarea"},/area/quartermaster/office) "bcK" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/port) -"bcL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) +"bcL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) "bcM" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) "bcN" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/bridge/meeting_room) "bcO" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) @@ -2862,12 +2862,12 @@ "bdb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 2},/area/hallway/primary/starboard) "bdc" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 2; icon_state = "whitecorner"},/area/hallway/primary/starboard) "bdd" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bde" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bde" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) "bdf" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/porta_turret{ai = 1; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "bdg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) "bdh" = (/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/ai_upload) "bdi" = (/obj/machinery/computer/arcade,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bdj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"bdj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) "bdk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bdl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bdm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) @@ -2892,7 +2892,7 @@ "bdF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/bridge/meeting_room) "bdG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) "bdH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bdI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) +"bdI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) "bdJ" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) "bdK" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/bridge/meeting_room) "bdL" = (/obj/effect/landmark{name = "blobstart"},/obj/item/clothing/suit/ianshirt,/obj/structure/closet,/turf/simulated/floor/plating,/area/maintenance/port) @@ -2910,7 +2910,7 @@ "bdX" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/simulated/floor/wood,/area/bridge/meeting_room) "bdY" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/simulated/floor/carpet,/area/bridge/meeting_room) "bdZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bea" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bea" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "beb" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/corp,/obj/item/weapon/aiModule/core/full/paladin,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/robocop,/obj/item/weapon/aiModule/core/full/custom,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "bec" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) "bed" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Upload APC"; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) @@ -2926,7 +2926,7 @@ "ben" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) "beo" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Stbd"; location = "HOP"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bep" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/central) -"beq" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = -24; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 32; pixel_y = -32; tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"beq" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 32; pixel_y = -32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "ber" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bes" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/starboard) "bet" = (/turf/simulated/floor/plasteel{dir = 0; icon_state = "blue"},/area/hallway/primary/starboard) @@ -2941,7 +2941,7 @@ "beC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "beD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) "beE" = (/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) -"beF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"beF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/office) "beG" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 2; icon_state = "redcorner"},/area/hallway/secondary/exit) "beH" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/light,/turf/simulated/floor/plasteel{dir = 2; icon_state = "escape"},/area/hallway/secondary/exit) "beI" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/simulated/floor/plasteel{dir = 2; icon_state = "escape"},/area/hallway/secondary/exit) @@ -2982,10 +2982,10 @@ "bfr" = (/obj/structure/noticeboard{dir = 8; pixel_x = 27; pixel_y = 0},/turf/simulated/floor/wood,/area/bridge/meeting_room) "bfs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) "bft" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"bfu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) +"bfu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) "bfv" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) "bfw" = (/obj/machinery/status_display{density = 0; layer = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"bfx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) +"bfx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) "bfy" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bfz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) "bfA" = (/obj/structure/table/wood,/obj/item/weapon/hand_tele,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) @@ -2996,12 +2996,12 @@ "bfF" = (/turf/simulated/wall,/area/medical/chemistry) "bfG" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/medbay) "bfH" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall,/area/medical/medbay) -"bfI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bfI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "bfJ" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bfK" = (/turf/simulated/wall,/area/security/checkpoint/medical) "bfL" = (/turf/simulated/wall,/area/medical/morgue) "bfM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bfN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "brown"},/area/quartermaster/office) +"bfN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "brown"},/area/quartermaster/office) "bfO" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bfP" = (/obj/machinery/power/apc{dir = 2; name = "Starboard Primary Hallway APC"; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plasteel,/area/hallway/primary/starboard) "bfQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/office) @@ -3057,7 +3057,7 @@ "bgO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "bgP" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/chemistry) "bgQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 2; icon_state = "whiteblue"},/area/medical/medbay) -"bgR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) +"bgR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "bgS" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = -30; pixel_y = 0},/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bgT" = (/obj/machinery/computer/communications,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bgU" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/captain) @@ -3109,8 +3109,8 @@ "bhO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/port) "bhP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) "bhQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker/locker_toilet) -"bhR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/structure/window,/turf/simulated/floor/plating,/area/maintenance/port) -"bhS" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{tag = "icon-window (WEST)"; icon_state = "window"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/port) +"bhR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{icon_state = "window"; dir = 1},/obj/structure/window,/turf/simulated/floor/plating,/area/maintenance/port) +"bhS" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{icon_state = "window"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/port) "bhT" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window,/turf/simulated/floor/plating,/area/maintenance/port) "bhU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bhV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) @@ -3181,14 +3181,14 @@ "bji" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/port) "bjj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "bjk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bjl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) +"bjl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) "bjm" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bjn" = (/obj/structure/table,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bjo" = (/obj/machinery/camera{c_tag = "Cargo Bay North"},/obj/structure/closet/wardrobe/cargotech,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bjp" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bjq" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 30},/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bjr" = (/turf/simulated/floor/plasteel,/area/quartermaster/storage) -"bjs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bjs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) "bjt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bju" = (/obj/machinery/photocopier,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/turf/simulated/floor/plasteel,/area/quartermaster/office) "bjv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) @@ -3244,7 +3244,7 @@ "bkt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bku" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bkv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bkw" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) +"bkw" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/office) "bkx" = (/obj/machinery/status_display{density = 0; pixel_y = 2; supply_display = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/quartermaster/office) "bky" = (/turf/simulated/wall,/area/maintenance/asmaint2) "bkz" = (/obj/machinery/conveyor{dir = 1; id = "garbage"; layer = 2.5},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit"; layer = 3; name = "disposal exit vent"},/turf/simulated/floor/plating,/area/maintenance/disposal) @@ -3290,14 +3290,14 @@ "bln" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Medbay Foyer"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/cell_charger,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "blo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/power/apc{dir = 1; name = "Starboard Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency) "blp" = (/obj/machinery/power/apc{dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) -"blq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{sortType = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"blr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"blq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{sortType = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"blr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/morgue) "bls" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"blt" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"blt" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/assembly/chargebay) "blu" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/simulated/floor/plating,/area/assembly/chargebay) "blv" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) "blw" = (/turf/simulated/floor/mech_bay_recharge_floor,/area/assembly/chargebay) -"blx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/assembly/chargebay) +"blx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/chargebay) "bly" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/cable_coil,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/robotics) "blz" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = -3; pixel_y = 6},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/assembly/robotics) "blA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/assembly/robotics) @@ -3346,12 +3346,12 @@ "bmr" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads) "bms" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/heads) "bmt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 8; icon_state = "brown"},/area/quartermaster/office) -"bmu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) +"bmu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "bmv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) "bmw" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/gravity_generator) "bmx" = (/turf/simulated/wall,/area/crew_quarters/captain) "bmy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"bmz" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bmz" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/captain) "bmA" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) "bmB" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) "bmC" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) @@ -3380,7 +3380,7 @@ "bmZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/genetics) "bna" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bnb" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Mech Bay"; dir = 4},/turf/simulated/floor/plasteel,/area/assembly/chargebay) -"bnc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/wall,/area/assembly/chargebay) +"bnc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/assembly/chargebay) "bnd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/assembly/chargebay) "bne" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/assembly/chargebay) "bnf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) @@ -3458,7 +3458,7 @@ "boz" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) "boA" = (/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/toxins/lab) "boB" = (/turf/simulated/wall,/area/toxins/lab) -"boC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/wall,/area/assembly/chargebay) +"boC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/wall,/area/assembly/chargebay) "boD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) "boE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) "boF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -3491,7 +3491,7 @@ "bpg" = (/obj/structure/bed/chair/office/light,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/gravity_generator) "bph" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/gravity_generator) "bpi" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) -"bpj" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) +"bpj" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) "bpk" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/crew_quarters/captain) "bpl" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/matches,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/weapon/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/turf/simulated/floor/carpet,/area/crew_quarters/captain) "bpm" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap/deluxe,/obj/item/weapon/bikehorn/rubberducky,/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) @@ -3521,10 +3521,10 @@ "bpK" = (/mob/living/carbon/monkey,/turf/simulated/floor/plasteel,/area/medical/genetics) "bpL" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel,/area/medical/genetics) "bpM" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/chemistry) -"bpN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bpN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bpO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bpP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bpQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 14},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bpQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 14},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bpR" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/simulated/floor/plasteel,/area/assembly/robotics) "bpS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/assembly/chargebay) "bpT" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/simulated/floor/plasteel,/area/assembly/robotics) @@ -3606,7 +3606,7 @@ "brr" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/explab) "brs" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/assembly/robotics) "brt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bru" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bru" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "brv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "brw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "brx" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/toxins/lab) @@ -3628,7 +3628,7 @@ "brN" = (/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) "brO" = (/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = 0},/obj/item/device/multitool,/obj/machinery/camera{c_tag = "Cargo Office"; dir = 4; network = list("SS13")},/turf/simulated/floor/plasteel,/area/quartermaster/office) "brP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"brQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)"; icon_state = "pipe-j2"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"brQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "brR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) "brS" = (/turf/simulated/floor/plasteel,/area/crew_quarters/heads) "brT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) @@ -3638,11 +3638,11 @@ "brX" = (/obj/structure/table,/obj/item/weapon/storage/box/masks{pixel_x = 0; pixel_y = 0},/obj/item/weapon/storage/box/gloves{pixel_x = 3; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "brY" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "brZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/crew_quarters/heads) -"bsa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) +"bsa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "bsb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "bsc" = (/turf/simulated/floor/plasteel,/area/engine/gravity_generator) "bsd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) -"bse" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) +"bse" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "bsf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/engine/gravity_generator) "bsg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/engine/gravity_generator) "bsh" = (/turf/simulated/wall,/area/teleporter) @@ -3670,10 +3670,10 @@ "bsD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bsE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "bsF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bsG" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bsG" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) "bsH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/toxins/explab) "bsI" = (/obj/machinery/power/apc{dir = 4; name = "Experimentation Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bsJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) +"bsJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) "bsK" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/disks{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "bsL" = (/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "bsM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -3689,7 +3689,7 @@ "bsW" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/turf/simulated/floor/plasteel{icon_state = "white"},/area/assembly/robotics) "bsX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "bsY" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/simulated/floor/plasteel,/area/crew_quarters/heads) -"bsZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bsZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bta" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Division North"; dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "btb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "btc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warning"},/area/teleporter) @@ -3704,7 +3704,7 @@ "btl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "btm" = (/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 12},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "btn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/research{name = "Research Division"}) -"bto" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bto" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "btp" = (/turf/simulated/floor/plating,/area/maintenance/asmaint2) "btq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "btr" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock"; dir = 4},/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = -24; pixel_y = -8},/obj/machinery/button/door{dir = 2; id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = -24; pixel_y = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/quartermaster/storage) @@ -3736,7 +3736,7 @@ "btR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "btS" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "btT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"btU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"btU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "btV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "btW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "btX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -3783,9 +3783,9 @@ "buM" = (/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 0},/obj/machinery/computer/supplycomp,/turf/simulated/floor/plasteel{icon_state = "blue"; dir = 8},/area/crew_quarters/heads) "buN" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel,/area/crew_quarters/heads) "buO" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/turf/simulated/floor/plasteel,/area/crew_quarters/heads) -"buP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/wall,/area/engine/gravity_generator) +"buP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/wall,/area/engine/gravity_generator) "buQ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/gravity_generator) -"buR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/wall,/area/engine/gravity_generator) +"buR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/wall,/area/engine/gravity_generator) "buS" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/gravity_generator) "buT" = (/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/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/research{name = "Research Division"}) "buU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) @@ -3798,7 +3798,7 @@ "bvb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bvc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bvd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/sleeper) -"bve" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bve" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bvf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "bvg" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bvh" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/medical/sleeper) @@ -3821,13 +3821,13 @@ "bvy" = (/obj/machinery/camera{c_tag = "Genetics Research"; dir = 1; network = list("SS13","RD"); pixel_x = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitepurple"},/area/medical/genetics) "bvz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "bvA" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/genetics) -"bvB" = (/obj/machinery/camera{c_tag = "Genetics Access"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = -22},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bvB" = (/obj/machinery/camera{c_tag = "Genetics Access"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = -22},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/genetics) "bvC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/checkpoint/science) "bvD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bvE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "bvF" = (/obj/structure/table,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = 0},/obj/item/weapon/coin/silver,/turf/simulated/floor/plasteel{dir = 9; icon_state = "brown"},/area/quartermaster/qm) "bvG" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) -"bvH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bvH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "bvI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) "bvJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/crew_quarters/hor) "bvK" = (/turf/simulated/wall,/area/crew_quarters/hor) @@ -3846,7 +3846,7 @@ "bvX" = (/obj/machinery/camera{c_tag = "Cargo Bay South"; dir = 1},/turf/simulated/floor/plasteel,/area/quartermaster/storage) "bvY" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #4"},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) "bvZ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plasteel,/area/quartermaster/office) -"bwa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/central) +"bwa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/hallway/primary/central) "bwb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/hallway/primary/central) "bwc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/office) "bwd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/supply) @@ -3868,7 +3868,7 @@ "bwt" = (/obj/machinery/teleport/hub,/turf/simulated/floor/plating,/area/teleporter) "bwu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bwv" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/turf/simulated/floor/plasteel{icon_state = "bot"},/area/medical/medbay) -"bww" = (/obj/structure/bed/chair,/obj/machinery/camera{c_tag = "Surgery Observation"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bww" = (/obj/structure/bed/chair,/obj/machinery/camera{c_tag = "Surgery Observation"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) "bwx" = (/obj/machinery/door/window/eastleft{name = "Medical Delivery"; req_access_txt = "5"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/medical/medbay) "bwy" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bwz" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -3900,12 +3900,12 @@ "bwZ" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) "bxa" = (/obj/structure/bed/chair,/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) "bxb" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bxc" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bxc" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) "bxd" = (/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/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bxe" = (/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/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bxf" = (/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/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "bxg" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bxh" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"; tag = "icon-comfychair (NORTH)"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"bxh" = (/obj/structure/bed/chair/comfy/black{dir = 1; icon_state = "comfychair"; name = "pilot's chair"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "bxi" = (/obj/machinery/computer/aifixer,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = -2; pixel_y = 30},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) "bxj" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/structure/table,/turf/simulated/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) "bxk" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/plasteel{icon_state = "warnwhite"; dir = 1},/area/crew_quarters/hor) @@ -4052,7 +4052,7 @@ "bzV" = (/obj/structure/closet/wardrobe/white/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bzW" = (/obj/structure/closet/l3closet,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bzX" = (/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitebluecorner"},/area/medical/medbay) -"bzY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"bzY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) "bzZ" = (/obj/machinery/door/firedoor/heavy,/turf/simulated/floor/plasteel{dir = 9; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "bAa" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bAb" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) @@ -4066,7 +4066,7 @@ "bAj" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP"; location = "CHE"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bAk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bAl" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bAm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) +"bAm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) "bAn" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "48"},/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/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/miningdock) "bAo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/power/apc{dir = 1; name = "Cargo Security APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/supply) "bAp" = (/obj/machinery/iv_drip,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) @@ -4104,7 +4104,7 @@ "bAV" = (/obj/machinery/door/window/westleft{name = "Janitoral Delivery"; req_access_txt = "26"},/turf/simulated/floor/plasteel{icon_state = "delivery"},/area/janitor) "bAW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bAX" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitehall"},/area/medical/sleeper) -"bAY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bAY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bAZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) "bBa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/quartermaster/miningdock) "bBb" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) @@ -4122,9 +4122,9 @@ "bBn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bBo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bBp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBq" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -40},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = -32; pixel_y = -24; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = -32; pixel_y = -32; tag = "icon-direction_evac (EAST)"},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bBq" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -40},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = -32; pixel_y = -32},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bBr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/plasteel,/area/hallway/primary/central) -"bBs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) +"bBs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bBt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway South"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bBu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/plasteel,/area/hallway/primary/central) "bBv" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 22},/turf/simulated/floor/plasteel,/area/hallway/primary/central) @@ -4194,7 +4194,7 @@ "bCH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bCI" = (/obj/structure/optable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bCJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bCK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bCK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bCL" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/camera{c_tag = "Medbay Storage"; dir = 2; network = list("SS13")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bCM" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bCN" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) @@ -4335,7 +4335,7 @@ "bFs" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance"; req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/janitor) "bFt" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) "bFu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/medical/sleeper) -"bFv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bFv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bFw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whiteblue"},/area/medical/sleeper) "bFx" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) "bFy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) @@ -4423,18 +4423,18 @@ "bHc" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{dir = 5; icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) "bHd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bHe" = (/obj/machinery/power/apc{dir = 8; name = "Toxins Storage APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"bHf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bHf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) "bHg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) "bHh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/storage/tech) "bHi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"bHj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"bHj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "bHk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "bHl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "yellowcorner"},/area/hallway/primary/aft) "bHm" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/mixing) "bHn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall/r_wall,/area/maintenance/asmaint) "bHo" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bHp" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bHq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bHq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bHr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/toxins/mixing) "bHs" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 2},/area/toxins/mixing) "bHt" = (/obj/machinery/button/massdriver{dir = 2; id = "toxinsdriver"; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/toxins/mixing) @@ -4476,7 +4476,7 @@ "bId" = (/obj/machinery/vending/wallmed{pixel_y = -28},/obj/machinery/camera{c_tag = "Surgery Operating"; dir = 1; network = list("SS13"); pixel_x = 22},/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bIe" = (/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "bIf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; pixel_y = 0; req_access_txt = "39"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bIg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 13},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bIg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 13},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bIh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bIi" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bIj" = (/obj/structure/table,/obj/machinery/light,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) @@ -4486,12 +4486,12 @@ "bIn" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/sleeper) "bIo" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bIp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bIq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bIq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bIr" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) "bIs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance"; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/toxins/xenobiology) "bIt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bIw" = (/obj/structure/closet/secure_closet/CMO,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "barber"},/area/medical/cmo) "bIx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/toxins/xenobiology) "bIy" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/engine,/area/toxins/xenobiology) @@ -4537,7 +4537,7 @@ "bJm" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/secure_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/security{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/plating,/area/storage/tech) "bJn" = (/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/plating,/area/storage/tech) "bJo" = (/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/research{name = "Research Division"}) -"bJp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) +"bJp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "bJq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bJr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "whitehall"; dir = 1},/area/medical/research{name = "Research Division"}) "bJs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) @@ -4546,7 +4546,7 @@ "bJv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bJw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bJx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bJy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bJy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bJz" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "bJA" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bJB" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/simulated/floor/plasteel,/area/atmos) @@ -4603,13 +4603,13 @@ "bKA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/construction) "bKB" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bKC" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bKD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bKD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bKE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) "bKF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/construction) "bKG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/sign/securearea{pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bKH" = (/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/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bKI" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bKJ" = (/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/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bKJ" = (/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/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bKK" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Medbay APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/medbay) "bKL" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bKM" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/medbay) @@ -4711,8 +4711,8 @@ "bME" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating/airless{dir = 6; icon_state = "warnplate"},/area/toxins/test_area) "bMF" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/simulated/floor/plating/airless,/area/shuttle/labor) "bMG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) -"bMH" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bMI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"bMH" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"bMI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bMJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bMK" = (/turf/simulated/wall,/area/atmos) "bML" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plasteel,/area/atmos) @@ -4731,7 +4731,7 @@ "bMY" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall/r_wall,/area/atmos) "bMZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) "bNa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/space,/area/space) -"bNb" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/space,/area/space) +"bNb" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 10},/turf/space,/area/space) "bNc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/medical/virology) "bNd" = (/turf/simulated/wall/r_wall,/area/medical/virology) "bNe" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) @@ -4742,7 +4742,7 @@ "bNj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A"; req_access_txt = "39"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bNk" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/virology) "bNl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bNm" = (/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) +"bNm" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) "bNn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bNo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bNp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) @@ -4776,7 +4776,7 @@ "bNR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Atmospherics Monitoring"; dir = 2; network = list("SS13")},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 5},/area/atmos) "bNS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/atmos) "bNT" = (/obj/machinery/camera{c_tag = "Atmospherics North West"; dir = 4; network = list("SS13")},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) -"bNU" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/medical/virology) +"bNU" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/medical/virology) "bNV" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/simulated/floor/plasteel,/area/atmos) "bNW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bNX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) @@ -4791,7 +4791,7 @@ "bOg" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Incinerator"; on = 0},/turf/simulated/floor/plasteel,/area/atmos) "bOh" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/atmos) "bOi" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/space,/area/space) -"bOj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/wall/r_wall,/area/medical/virology) +"bOj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/medical/virology) "bOk" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 2},/area/toxins/misc_lab) "bOl" = (/obj/machinery/light{dir = 1},/obj/machinery/announcement_system,/turf/simulated/floor/plasteel,/area/tcommsat/computer) "bOm" = (/obj/item/weapon/bedsheet,/obj/structure/bed,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) @@ -4856,7 +4856,7 @@ "bPt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bPu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bPv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bPw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/wall/r_wall,/area/medical/virology) +"bPw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/virology) "bPx" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bPy" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/glass,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bPz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) @@ -4871,15 +4871,15 @@ "bPI" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bPJ" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bPK" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/toxins/misc_lab) -"bPL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) -"bPM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{tag = "icon-warningcorner (EAST)"; icon_state = "warningcorner"; dir = 4},/area/toxins/misc_lab) +"bPL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) +"bPM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 4},/area/toxins/misc_lab) "bPN" = (/turf/simulated/wall,/area/toxins/misc_lab) "bPO" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bPP" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bPQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel,/area/tcommsat/computer) "bPR" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/simulated/floor/wood,/area/maintenance/aft) "bPS" = (/turf/simulated/floor/wood,/area/maintenance/aft) -"bPT" = (/turf/simulated/floor/wood{tag = "icon-wood-broken"; icon_state = "wood-broken"},/area/maintenance/aft) +"bPT" = (/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/maintenance/aft) "bPU" = (/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/maintenance/aft) "bPV" = (/obj/machinery/door/airlock/maintenance{name = "Maint Bar Access"; req_access_txt = "12"},/obj/structure/barricade/wooden{name = "wooden barricade (CLOSED)"},/turf/simulated/floor/plating,/area/maintenance/aft) "bPW" = (/obj/effect/decal/cleanable/oil,/turf/simulated/floor/plating,/area/maintenance/aft) @@ -4898,7 +4898,7 @@ "bQj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel,/area/atmos) "bQl" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "caution"; dir = 4},/area/atmos) -"bQm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/atmos) +"bQm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/atmos) "bQn" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/atmos) "bQo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bQp" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) @@ -4940,10 +4940,10 @@ "bQZ" = (/turf/simulated/wall/r_wall,/area/toxins/misc_lab) "bRa" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/toxins/misc_lab) "bRb" = (/obj/structure/rack,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bRc" = (/obj/structure/table/wood,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/wood{tag = "icon-wood-broken7"; icon_state = "wood-broken7"},/area/maintenance/aft) +"bRc" = (/obj/structure/table/wood,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/maintenance/aft) "bRd" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/simulated/floor/wood,/area/maintenance/aft) "bRe" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/simulated/floor/wood,/area/maintenance/aft) -"bRf" = (/obj/structure/table/wood,/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/maintenance/aft) +"bRf" = (/obj/structure/table/wood,/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/maintenance/aft) "bRg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) "bRh" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/aft) "bRi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plasteel,/area/engine/break_room) @@ -5002,7 +5002,7 @@ "bSj" = (/obj/machinery/atmospherics/components/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor/engine,/area/toxins/misc_lab) "bSk" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/misc_lab) "bSl" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bSm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"bSm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) "bSn" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/maintenance/aft) "bSo" = (/obj/structure/bed/stool,/turf/simulated/floor/wood,/area/maintenance/aft) "bSp" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/simulated/floor/plating,/area/maintenance/aft) @@ -5033,12 +5033,12 @@ "bSO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) "bSP" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4; initialize_directions = 11},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/atmos) "bSQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bSR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) +"bSR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "bSS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Break Room"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bST" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = 22; req_access_txt = "39"},/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bSU" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bSV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{pixel_y = 25},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) -"bSW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"bSW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bSX" = (/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Virology APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology Module"},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bSY" = (/obj/machinery/vending/medical,/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bSZ" = (/obj/effect/landmark{name = "revenantspawn"},/turf/simulated/floor/engine,/area/toxins/xenobiology) @@ -5060,13 +5060,13 @@ "bTp" = (/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/toxins/misc_lab) "bTq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/toxins/misc_lab) "bTr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bTs" = (/turf/simulated/floor/wood{tag = "icon-wood-broken5"; icon_state = "wood-broken5"},/area/maintenance/aft) -"bTt" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/wood{tag = "icon-wood-broken6"; icon_state = "wood-broken6"},/area/maintenance/aft) +"bTs" = (/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/maintenance/aft) +"bTt" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/maintenance/aft) "bTu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/wood,/area/maintenance/aft) -"bTv" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"bTw" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) -"bTx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (WEST)"; icon_state = "connector_map"; dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/aft) -"bTy" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) +"bTv" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) +"bTw" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) +"bTx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/aft) +"bTy" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/general/hidden{icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint2) "bTz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/aft) "bTA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/aft) "bTB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/maintenance/aft) @@ -5172,7 +5172,7 @@ "bVx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area/space) "bVy" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/aft) "bVz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Space"; on = 1},/turf/simulated/floor/plating/airless,/area/space) -"bVA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft) +"bVA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft) "bVB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) "bVC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/aft) "bVD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/deathsposal{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/aft) @@ -5233,7 +5233,7 @@ "bWG" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "bWH" = (/obj/structure/table,/turf/simulated/floor/plasteel{dir = 9; icon_state = "yellow"},/area/tcommsat/computer) "bWI" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/tcommsat/computer) -"bWJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"bWJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "bWK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "yellow"},/area/hallway/primary/aft) "bWL" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "bWM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plasteel{dir = 8; icon_state = "escape"},/area/atmos) @@ -5246,7 +5246,7 @@ "bWT" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air to Port"; on = 0},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/atmos) "bWU" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel,/area/atmos) "bWV" = (/obj/structure/door_assembly/door_assembly_mai,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bWW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) +"bWW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) "bWX" = (/obj/structure/table/glass,/obj/item/device/radio/intercom{pixel_x = -25},/obj/machinery/light{dir = 8},/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "whitegreen"},/area/medical/virology) "bWY" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/pen/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "whitegreen"},/area/medical/virology) "bWZ" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Virologist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/medical/virology) @@ -5260,16 +5260,16 @@ "bXh" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) "bXi" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/device/taperecorder{pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) "bXj" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/button/ignition{id = "testigniter"; pixel_x = -6; pixel_y = 2},/obj/machinery/button/door{id = "testlab"; name = "Test Chamber Blast Doors"; pixel_x = 4; pixel_y = 2; req_access_txt = "55"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"bXk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIE"; location = "AftH"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"bXk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIE"; location = "AftH"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "bXl" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) "bXm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "bXn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/hallway/primary/aft) -"bXo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) +"bXo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "bXp" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) "bXq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) "bXr" = (/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/toxins/misc_lab) -"bXs" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHEAST)"; icon_state = "warnplate"; dir = 6},/area/toxins/misc_lab) -"bXt" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/structure/window/reinforced{dir = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plating{tag = "icon-warnplate (SOUTHWEST)"; icon_state = "warnplate"; dir = 10},/area/toxins/misc_lab) +"bXs" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/toxins/misc_lab) +"bXt" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/structure/window/reinforced{dir = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 10},/area/toxins/misc_lab) "bXu" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "bXv" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/aft) "bXw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/aft) @@ -5289,7 +5289,7 @@ "bXK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/simulated/wall/r_wall,/area/atmos) "bXL" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/atmos) "bXM" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/simulated/floor/plasteel,/area/atmos) -"bXN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) +"bXN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/break_room) "bXO" = (/obj/structure/filingcabinet,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plasteel{icon_state = "red"; dir = 5},/area/security/checkpoint/engineering) "bXP" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/structure/closet,/turf/simulated/floor/plasteel{icon_state = "red"; dir = 1},/area/security/checkpoint/engineering) "bXQ" = (/obj/structure/fireaxecabinet{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel,/area/atmos) @@ -5316,7 +5316,7 @@ "bYl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "bYm" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/misc_lab) "bYn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) -"bYo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/misc_lab) +"bYo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/toxins/misc_lab) "bYp" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "yellow"; dir = 10},/area/hallway/primary/aft) "bYq" = (/obj/machinery/light,/turf/simulated/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) "bYr" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -5357,7 +5357,7 @@ "bZa" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bZb" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) "bZc" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; unacidable = 1},/turf/simulated/floor/engine,/area/toxins/misc_lab) -"bZd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) +"bZd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "bZe" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/break_room) "bZf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/break_room) "bZg" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/break_room) @@ -5380,7 +5380,7 @@ "bZx" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "bZy" = (/turf/simulated/floor/plasteel,/area/engine/break_room) "bZz" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/machinery/light{dir = 8},/turf/simulated/floor/plasteel,/area/engine/break_room) -"bZA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/break_room) +"bZA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/engine/break_room) "bZB" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/aft) "bZC" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "56"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/chiefs_office) "bZD" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/chiefs_office) @@ -5392,12 +5392,12 @@ "bZJ" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; on = 1},/turf/simulated/floor/plasteel,/area/atmos) "bZK" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/simulated/floor/plasteel{dir = 6; icon_state = "warning"},/area/atmos) "bZL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/simulated/floor/engine{carbon_dioxide = 0; name = "plasma floor"; nitrogen = 0; oxygen = 0; toxins = 70000},/area/atmos) -"bZM" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint) +"bZM" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint) "bZN" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"bZO" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"bZO" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) "bZP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/medical/virology) -"bZQ" = (/obj/machinery/atmospherics/components/binary/valve/open{tag = "icon-mvalve_map (EAST)"; icon_state = "mvalve_map"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/asmaint) -"bZR" = (/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/maintenance/asmaint) +"bZQ" = (/obj/machinery/atmospherics/components/binary/valve/open{icon_state = "mvalve_map"; dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/asmaint) +"bZR" = (/obj/machinery/alarm{frequency = 1439; pixel_y = 23},/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/maintenance/asmaint) "bZS" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 5},/area/maintenance/asmaint) "bZT" = (/obj/structure/rack{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) "bZU" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/asmaint) @@ -5407,15 +5407,15 @@ "bZY" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/simulated/floor/engine,/area/toxins/misc_lab) "bZZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/toxins/misc_lab) "caa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/toxins/misc_lab) -"cab" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) +"cab" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 8},/area/toxins/misc_lab) "cac" = (/obj/structure/bed/stool,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cad" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cae" = (/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cae" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) "caf" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating/airless,/area/space) "cag" = (/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "cah" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "cai" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) -"caj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) +"caj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "cak" = (/obj/machinery/telecomms/hub/preset,/turf/simulated/floor/bluegrid{dir = 8; icon_state = "vault"; name = "Mainframe Floor"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) "cal" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 5},/area/tcommsat/computer) "cam" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/server) @@ -5429,7 +5429,7 @@ "cau" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/hallway/primary/aft) "cav" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/aft) "caw" = (/obj/structure/table,/obj/item/clothing/glasses/meson,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plasteel,/area/engine/break_room) -"cax" = (/obj/structure/closet/wardrobe/black,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/aft) +"cax" = (/obj/structure/closet/wardrobe/black,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/aft) "cay" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) "caz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) "caA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/security/checkpoint/engineering) @@ -5444,7 +5444,7 @@ "caJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint) "caK" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint) "caL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"caM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"caM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint) "caN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint) "caO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) "caP" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/simulated/floor/plating{dir = 2; icon_state = "warnplate"},/area/maintenance/asmaint) @@ -5452,7 +5452,7 @@ "caR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 6},/area/maintenance/asmaint) "caS" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint) "caT" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) -"caU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"caU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "caV" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) "caW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/simulated/floor/engine,/area/toxins/xenobiology) "caX" = (/obj/machinery/sparker{id = "testigniter"; pixel_x = -25},/turf/simulated/floor/engine,/area/toxins/misc_lab) @@ -5464,7 +5464,7 @@ "cbd" = (/obj/machinery/power/apc{dir = 4; name = "Testing Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) "cbe" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel,/area/toxins/misc_lab) "cbf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cbg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cbg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) "cbh" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cbi" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cbj" = (/obj/item/stack/sheet/metal,/turf/simulated/floor/plating/airless,/area/space) @@ -5524,7 +5524,7 @@ "ccl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/engine/chiefs_office) "ccm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) "ccn" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/structure/closet/radiation,/turf/simulated/floor/plasteel,/area/engine/engineering) -"cco" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cco" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "ccp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "ccq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "ccr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -5542,10 +5542,10 @@ "ccD" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/engine{carbon_dioxide = 50000; name = "co2 floor"; nitrogen = 0; oxygen = 0},/area/atmos) "ccE" = (/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 28},/turf/simulated/floor/plating,/area/maintenance/asmaint) "ccF" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ccG" = (/obj/structure/bed/stool,/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) +"ccG" = (/obj/structure/bed/stool,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint) "ccH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "ccI" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"ccJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"ccJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint) "ccK" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "ccL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "ccM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) @@ -5575,7 +5575,7 @@ "cdk" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel,/area/engine/engineering) "cdl" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/engine/chiefs_office) "cdm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/engine/chiefs_office) -"cdn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cdn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel,/area/engine/engineering) "cdo" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/closet/radiation,/turf/simulated/floor/plasteel,/area/engine/engineering) "cdp" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) "cdq" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -5636,7 +5636,7 @@ "cet" = (/obj/machinery/door/firedoor,/turf/simulated/floor/plasteel{dir = 5; icon_state = "yellow"},/area/engine/engineering) "ceu" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/fulltile,/turf/simulated/floor/plating,/area/engine/engineering) "cev" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/engineering) -"cew" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/break_room) +"cew" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/engine/break_room) "cex" = (/obj/machinery/camera{c_tag = "Atmospherics South West"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plasteel,/area/atmos) "cey" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engineering) "cez" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor/plasteel,/area/atmos) @@ -5653,7 +5653,7 @@ "ceK" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/l3closet,/turf/simulated/floor/plating,/area/maintenance/asmaint) "ceL" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/asmaint) "ceM" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"ceN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"ceN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "ceO" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "ceP" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plasteel{dir = 2; icon_state = "bot"},/area/toxins/misc_lab) "ceQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel,/area/toxins/misc_lab) @@ -5694,7 +5694,7 @@ "cfz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel{dir = 1; icon_state = "yellowcorner"},/area/engine/engineering) "cfA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) "cfB" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/plasteel{dir = 4; icon_state = "yellow"},/area/engine/engineering) -"cfC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) +"cfC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel,/area/engine/engineering) "cfD" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/engine/engineering) "cfE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/engine/chiefs_office) "cfF" = (/obj/machinery/suit_storage_unit/ce,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warnwhite"},/area/engine/chiefs_office) @@ -5713,14 +5713,14 @@ "cfS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/turf/simulated/floor/plasteel,/area/atmos) "cfT" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/simulated/floor/plasteel,/area/atmos) "cfU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/wall,/area/maintenance/incinerator) -"cfV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/wall,/area/maintenance/incinerator) -"cfW" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) +"cfV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 5},/turf/simulated/wall,/area/maintenance/incinerator) +"cfW" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/yellow/visible{icon_state = "intact"; dir = 10},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "cfX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "atmospherics mix pump"},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "cfY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/maintenance/incinerator) "cfZ" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) -"cga" = (/obj/machinery/power/smes{capacity = 9e+006; charge = 10000},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2"; icon_state = "cobweb2"},/turf/simulated/floor/plating,/area/maintenance/incinerator) +"cga" = (/obj/machinery/power/smes{capacity = 9e+006; charge = 10000},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/plating,/area/maintenance/incinerator) "cgb" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = 32},/obj/structure/disposalpipe/trunk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"cgc" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint) +"cgc" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint) "cgd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint) "cge" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "cgf" = (/obj/structure/disposalpipe/segment,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) @@ -5733,7 +5733,7 @@ "cgm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cgn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cgo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cgp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"cgp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cgq" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cgr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) "cgs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -5790,9 +5790,9 @@ "chr" = (/obj/structure/bed/chair,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "chs" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cht" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/asmaint2) -"chu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"chv" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"chw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"chu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"chv" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"chw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "chx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "chy" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "chz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -5801,7 +5801,7 @@ "chC" = (/obj/structure/rack{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "chD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engineering) "chE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plasteel,/area/engine/engineering) -"chF" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_construction,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) +"chF" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_construction,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plasteel,/area/engine/engineering) "chG" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/black,/obj/item/weapon/extinguisher{pixel_x = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plasteel,/area/engine/engineering) "chH" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "chI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/port) @@ -5857,7 +5857,7 @@ "ciG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/firecloset/full,/turf/simulated/floor/plating,/area/maintenance/asmaint) "ciH" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/latexballon,/turf/simulated/floor/plating,/area/maintenance/asmaint) "ciI" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"ciJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"ciJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) "ciK" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "ciL" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "ciM" = (/obj/machinery/power/compressor{comp_id = "incineratorturbine"; dir = 1; luminosity = 2},/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/camera{c_tag = "Turbine Chamber"; dir = 4; network = list("Turbine")},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) @@ -5964,7 +5964,7 @@ "ckJ" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/turf/simulated/floor/plasteel,/area/engine/engineering) "ckK" = (/obj/machinery/suit_storage_unit/engine,/turf/simulated/floor/plasteel,/area/engine/engineering) "ckL" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/chiefs_office) -"ckM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/misc_lab) +"ckM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/toxins/misc_lab) "ckN" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/toxins/misc_lab) "ckO" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/engine/chiefs_office) "ckP" = (/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "56"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plasteel{dir = 2; icon_state = "neutralfull"},/area/engine/chiefs_office) @@ -5990,16 +5990,16 @@ "clj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/incinerator) "clk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "cll" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"clm" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) +"clm" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/hidden{icon_state = "manifold"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/asmaint) "cln" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint) -"clo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/asmaint) +"clo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/asmaint) "clp" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/simulated/floor/plating,/area/maintenance/aft) "clq" = (/obj/structure/rack,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "clr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cls" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "clt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "clu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"clv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"clv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) "clw" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "clx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) "cly" = (/obj/structure/bed/stool,/obj/machinery/camera{c_tag = "Aft Starboard Solar Control"; dir = 4; network = list("SS13")},/turf/simulated/floor/plating,/area/maintenance/starboardsolar) @@ -6046,7 +6046,7 @@ "cmn" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cmo" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cmp" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cmq" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cmq" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) "cmr" = (/obj/structure/closet/toolcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cms" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "cmt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/asmaint2) @@ -6112,7 +6112,7 @@ "cnB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/space,/area/space) "cnC" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/engine,/area/maintenance/incinerator) "cnD" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/asmaint) -"cnE" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/plating,/area/maintenance/asmaint) +"cnE" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/maintenance/asmaint) "cnF" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Waste Out"; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint) "cnG" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/asmaint) "cnH" = (/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/maintenance/asmaint2) @@ -6122,11 +6122,11 @@ "cnL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) "cnM" = (/obj/machinery/door/window{name = "SMES Chamber"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) "cnN" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cnO" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cnO" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) "cnP" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) "cnQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engine_smes) "cnR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engine/engine_smes) -"cnS" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "SMES Access"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)"; dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engine_smes) +"cnS" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "SMES Access"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engine_smes) "cnT" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/wall/shuttle{icon_state = "wall3"},/area/shuttle/syndicate) "cnU" = (/obj/structure/cable{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_x = -32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "loadingarea"},/area/engine/engineering) "cnV" = (/obj/machinery/door/poddoor{auto_close = 300; id = "smindicate"; name = "outer blast door"},/obj/machinery/button/door{id = "smindicate"; name = "external door control"; pixel_x = -26; pixel_y = 0; req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate"; name = "syndicate infiltrator"; roundstart_move = "syndicate_away"; travelDir = 180; width = 18},/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 22; id = "syndicate_nw"; name = "northwest of station"; turf_type = /turf/space; width = 18},/turf/simulated/floor/plating,/area/shuttle/syndicate) @@ -6155,12 +6155,12 @@ "cos" = (/obj/machinery/door/poddoor{id = "auxincineratorvent"; name = "Auxiliary Incinerator Vent"},/turf/simulated/floor/engine/vacuum,/area/maintenance/incinerator) "cot" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/maintenance/asmaint) "cou" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"cov" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engine_smes) +"cov" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/engine/engine_smes) "cow" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engine_smes) "cox" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engine_smes) "coy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 5; icon_state = "warning"},/area/engine/engine_smes) "coz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 1; icon_state = "warning"},/area/engine/engine_smes) -"coA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)"; dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engine_smes) +"coA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engine_smes) "coB" = (/obj/machinery/door/airlock/engineering{name = "SMES Room"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/engine/engine_smes) "coC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engine_smes) "coD" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) @@ -6203,7 +6203,7 @@ "cpo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{dir = 8; icon_state = "warning"},/area/engine/engine_smes) "cpp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/engine/engine_smes) "cpq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/plasteel,/area/engine/engineering) -"cpr" = (/obj/machinery/nuclearbomb{tag = "syndienuke"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) +"cpr" = (/obj/machinery/nuclearbomb/syndicate,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/syndicate) "cps" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/simulated/floor/plasteel,/area/engine/engineering) "cpt" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/turf/simulated/floor/plasteel,/area/engine/engineering) "cpu" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel,/area/engine/engineering) @@ -6297,7 +6297,7 @@ "cre" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32},/turf/simulated/floor/plating,/area/engine/engineering) "crf" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/floor/plating,/area/shuttle/syndicate) "crg" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/shuttle/syndicate) -"crh" = (/obj/structure/transit_tube{tag = "icon-Block"; icon_state = "Block"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"crh" = (/obj/structure/transit_tube{icon_state = "Block"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "cri" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/obj/structure/sign/securearea{name = "EXTERNAL AIRLOCK"; desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; pixel_x = 32; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "crj" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) "crk" = (/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) @@ -6316,7 +6316,7 @@ "crx" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/escape) "cry" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/escape) "crz" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/escape) -"crA" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/obj/structure/transit_tube_pod,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) +"crA" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1},/obj/structure/transit_tube_pod,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/engine/engineering) "crB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "crC" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "crD" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) @@ -6350,14 +6350,14 @@ "csf" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; state = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/engine/engineering) "csg" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating,/area/engine/engineering) "csh" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/space,/area/space) -"csi" = (/obj/structure/transit_tube{tag = "icon-N-SE"; icon_state = "N-SE"},/turf/space,/area/space) +"csi" = (/obj/structure/transit_tube{icon_state = "N-SE"},/turf/space,/area/space) "csj" = (/obj/item/device/multitool,/turf/simulated/floor/plating/airless,/area/engine/engineering) "csk" = (/obj/item/weapon/wirecutters,/obj/structure/lattice,/turf/space,/area/space) -"csl" = (/obj/structure/transit_tube{tag = "icon-E-NW"; icon_state = "E-NW"},/turf/space,/area/space) +"csl" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/space,/area/space) "csm" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) "csn" = (/obj/structure/transit_tube,/turf/space,/area/space) "cso" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/space,/area/space) -"csp" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass"; icon_state = "E-W-Pass"},/turf/space,/area/space) +"csp" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/turf/space,/area/space) "csq" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/space,/area/space) "csr" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/lattice,/turf/space,/area/space) "css" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) @@ -6379,7 +6379,7 @@ "csI" = (/obj/item/weapon/wrench,/turf/simulated/floor/plating/airless{dir = 8; icon_state = "warnplate"},/area/space) "csJ" = (/turf/simulated/floor/plating/airless{dir = 4; icon_state = "warnplate"},/area/space) "csK" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"csL" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/turf/space,/area/space) +"csL" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/space,/area/space) "csM" = (/obj/machinery/teleport/station,/turf/simulated/floor/plating,/area/aisat) "csN" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plating,/area/aisat) "csO" = (/obj/machinery/teleport/hub,/turf/simulated/floor/plating,/area/aisat) @@ -6388,13 +6388,13 @@ "csR" = (/turf/simulated/floor/plating/airless{dir = 10; icon_state = "warnplate"},/area/space) "csS" = (/turf/simulated/floor/plating/airless{dir = 6; icon_state = "warnplate"},/area/space) "csT" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/space,/area/space) -"csU" = (/obj/structure/transit_tube{tag = "icon-D-NE"; icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) -"csV" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/aisat) -"csW" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/aisat) -"csX" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/aisat) +"csU" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/lattice,/turf/space,/area/space) +"csV" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/aisat) +"csW" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/aisat) +"csX" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/aisat) "csY" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) "csZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/starboard) -"cta" = (/obj/structure/transit_tube{tag = "icon-S-NW"; icon_state = "S-NW"},/obj/structure/lattice,/turf/space,/area/space) +"cta" = (/obj/structure/transit_tube{icon_state = "S-NW"},/obj/structure/lattice,/turf/space,/area/space) "ctb" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) "ctc" = (/obj/machinery/camera{c_tag = "MiniSat Teleporter"; dir = 1; network = list("MiniSat"); pixel_x = 0; pixel_y = 0},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) "ctd" = (/obj/machinery/button/door{id = "teledoor"; name = "AI Satellite Teleport Shutters Control"; pixel_x = 25; pixel_y = 0; req_access_txt = "17;65"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) @@ -6411,37 +6411,37 @@ "cto" = (/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/aisat) "ctp" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/aisat) "ctq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) -"ctr" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 25},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/aisat) +"ctr" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 25},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/aisat) "cts" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"ctt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/aisat) +"ctt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/aisat) "ctu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/aisat) "ctv" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/engine/engineering) -"ctw" = (/obj/structure/transit_tube/station{dir = 4; icon_state = "closed"; reverse_launch = 1; tag = "icon-closed (EAST)"},/turf/simulated/floor/plating,/area/aisat) -"ctx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/aisat) +"ctw" = (/obj/structure/transit_tube/station{dir = 4; icon_state = "closed"; reverse_launch = 1},/turf/simulated/floor/plating,/area/aisat) +"ctx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/aisat) "cty" = (/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13"},/turf/simulated/floor/plating,/area/aisat) -"ctz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/aisat) +"ctz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/aisat) "ctA" = (/turf/simulated/floor/plating,/area/aisat) "ctB" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) "ctC" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity West"; dir = 1; network = list("Singularity")},/turf/simulated/floor/plating/airless,/area/engine/engineering) "ctD" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity East"; dir = 1; network = list("Singularity")},/turf/simulated/floor/plating/airless,/area/engine/engineering) "ctE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 4},/area/aisat) -"ctF" = (/obj/structure/transit_tube{dir = 1; icon_state = "Block"; tag = "icon-Block (NORTH)"},/turf/simulated/floor/plating,/area/aisat) +"ctF" = (/obj/structure/transit_tube{dir = 1; icon_state = "Block"},/turf/simulated/floor/plating,/area/aisat) "ctG" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) -"ctH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/aisat) +"ctH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/aisat) "ctI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) -"ctJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/aisat) +"ctJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/aisat) "ctK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32},/turf/simulated/floor/plating,/area/aisat) "ctL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) -"ctM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "MiniSat Entrance"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "MiniSat External Power APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/aisat) -"ctN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/aisat) +"ctM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "MiniSat Entrance"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0},/obj/machinery/power/apc{dir = 8; name = "MiniSat External Power APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/aisat) +"ctN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/aisat) "ctO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/aisat) "ctP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) -"ctQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/aisat) +"ctQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/aisat) "ctR" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/engine/engineering) "ctS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/aisat) -"ctT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/aisat) -"ctU" = (/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat"); pixel_x = 0; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/aisat) -"ctV" = (/obj/machinery/turretid{control_area = "\improper AI Satellite Antechamber"; enabled = 1; icon_state = "control_standby"; name = "Antechamber Turret Control"; pixel_x = 0; pixel_y = -24; req_access = list(65)},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/aisat) +"ctT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "darkblue"},/area/aisat) +"ctU" = (/obj/machinery/computer/security/telescreen{dir = 1; name = "MiniSat Monitor"; network = list("MiniSat"); pixel_x = 0; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "darkblue"},/area/aisat) +"ctV" = (/obj/machinery/turretid{control_area = "\improper AI Satellite Antechamber"; enabled = 1; icon_state = "control_standby"; name = "Antechamber Turret Control"; pixel_x = 0; pixel_y = -24; req_access = list(65)},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "darkblue"},/area/aisat) "ctW" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/aisat) "ctX" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) "ctY" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/wall,/area/aisat) @@ -6459,9 +6459,9 @@ "cuk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) "cul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) "cum" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cun" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) +"cun" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) "cuo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cup" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"cup" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) "cuq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) "cur" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) "cus" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/window/reinforced,/turf/space,/area/space) @@ -6471,20 +6471,20 @@ "cuw" = (/obj/structure/window/reinforced,/obj/machinery/door/window{base_state = "right"; dir = 1; icon_state = "right"; name = "MiniSat Walkway Access"; req_access_txt = "13;65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) "cux" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) "cuy" = (/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cuz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) +"cuz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) "cuA" = (/obj/machinery/hologram/holopad,/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cuB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) -"cuC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"cuB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) +"cuC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1},/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) "cuD" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cuE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) +"cuE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) "cuF" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) "cuG" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window{base_state = "right"; dir = 1; icon_state = "right"; name = "MiniSat Walkway Access"; req_access_txt = "13;65"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/aisat) "cuH" = (/obj/structure/window/reinforced,/obj/machinery/door/window{dir = 1; name = "MiniSat Walkway Access"; req_access_txt = "13;65"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) "cuI" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/aisat) "cuJ" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) "cuK" = (/obj/machinery/bot/secbot/pingsky,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cuL" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners (WEST)"; icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) -"cuM" = (/turf/simulated/floor/plasteel{tag = "icon-darkbluecorners"; icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"cuL" = (/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"; dir = 8},/area/turret_protected/aisat_interior) +"cuM" = (/turf/simulated/floor/plasteel{icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) "cuN" = (/obj/machinery/power/apc{aidisabled = 0; cell_type = 2500; dir = 4; name = "MiniSat Antechamber APC"; pixel_x = 29; pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) "cuO" = (/obj/structure/window/reinforced{dir = 1},/turf/space,/area/space) "cuP" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/aisat) @@ -6493,8 +6493,8 @@ "cuS" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/space,/area/space) "cuT" = (/obj/machinery/porta_turret{ai = 1; dir = 1},/obj/machinery/light/small,/turf/simulated/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) "cuU" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/bot/floorbot{on = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) -"cuV" = (/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/turret_protected/aisat_interior) -"cuW" = (/obj/machinery/camera/motion{c_tag = "MiniSat Antechamber"; dir = 1; network = list("MiniSat")},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/turf/simulated/floor/plasteel{tag = "icon-darkblue"; icon_state = "darkblue"},/area/turret_protected/aisat_interior) +"cuV" = (/turf/simulated/floor/plasteel{icon_state = "darkblue"},/area/turret_protected/aisat_interior) +"cuW" = (/obj/machinery/camera/motion{c_tag = "MiniSat Antechamber"; dir = 1; network = list("MiniSat")},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/turf/simulated/floor/plasteel{icon_state = "darkblue"},/area/turret_protected/aisat_interior) "cuX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/bot/cleanbot{on = 0},/turf/simulated/floor/plasteel{icon_state = "vault"; dir = 8},/area/turret_protected/aisat_interior) "cuY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "MiniSat Exterior North East"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/aisat) "cuZ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/space,/area/space) @@ -6550,17 +6550,17 @@ "cvX" = (/obj/structure/window/reinforced,/turf/space,/area/space) "cvY" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/space,/area/space) "cvZ" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/space,/area/space) -"cwa" = (/obj/machinery/power/apc{dir = 8; name = "MiniSat Maint APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure) +"cwa" = (/obj/machinery/power/apc{dir = 8; name = "MiniSat Maint APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure) "cwb" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating{icon_state = "warnplate"},/area/ai_monitored/storage/secure) -"cwc" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 1},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTHEAST)"; icon_state = "warndark"; dir = 5},/area/ai_monitored/storage/secure) -"cwd" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure) -"cwe" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{tag = "icon-warndark (NORTHWEST)"; icon_state = "warndark"; dir = 9},/area/ai_monitored/storage/secure) +"cwc" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 1},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 5},/area/ai_monitored/storage/secure) +"cwd" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 1},/area/ai_monitored/storage/secure) +"cwe" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel{icon_state = "warndark"; dir = 9},/area/ai_monitored/storage/secure) "cwf" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/space,/area/space) "cwg" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/aisat) "cwh" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/aisat) "cwi" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) "cwj" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cwk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cwk" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) "cwl" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) "cwm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) "cwn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) @@ -6621,7 +6621,7 @@ "cxq" = (/obj/structure/bed/chair{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cxr" = (/obj/structure/bed/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) "cxs" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/escape) -"cxt" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) +"cxt" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/transport) "cxu" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/transport) "cxv" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/simulated/floor/plating,/area/shuttle/transport) "cxw" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/simulated/floor/plating,/area/shuttle/transport) @@ -6634,7 +6634,7 @@ "cxD" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cxE" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 12; id = "ferry"; name = "ferry shuttle"; roundstart_move = "ferry_away"; travelDir = 180; width = 5},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 12; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/space; width = 5},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cxF" = (/turf/simulated/floor/plasteel/shuttle,/turf/simulated/wall/shuttle/interior{icon_state = "swall_f10"},/area/shuttle/transport) -"cxG" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) +"cxG" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/wall/shuttle{icon_state = "swall_s5"; dir = 2},/area/shuttle/transport) "cxH" = (/obj/structure/closet/crate,/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cxI" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle,/area/shuttle/transport) "cxJ" = (/turf/simulated/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/shuttle/transport) @@ -6659,16 +6659,16 @@ "cyc" = (/turf/simulated/wall/shuttle{icon_state = "swall12"; dir = 2},/area/shuttle/abandoned) "cyd" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dheight = 0; dir = 2; dwidth = 11; height = 22; id = "whiteship"; name = "NT Medical Ship"; roundstart_move = "whiteship_away"; travelDir = 180; width = 35},/obj/docking_port/stationary{dir = 2; dwidth = 11; height = 22; id = "whiteship_home"; name = "SS13 Arrival Docking"; width = 35},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cye" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cyf" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_l (EAST)"; icon_state = "propulsion_l"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"cyf" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) "cyg" = (/turf/simulated/wall/shuttle{icon_state = "swall13"; dir = 2},/area/shuttle/abandoned) "cyh" = (/turf/simulated/wall/shuttle{icon_state = "swall11"; dir = 2},/area/shuttle/abandoned) "cyi" = (/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cyj" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cyk" = (/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cyl" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/abandoned) -"cym" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"cyn" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f15"; icon_state = "swall_f15"},/area/shuttle/abandoned) -"cyo" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"cym" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"cyn" = (/turf/simulated/wall/shuttle{icon_state = "swall_f15"},/area/shuttle/abandoned) +"cyo" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) "cyp" = (/turf/simulated/wall/shuttle{icon_state = "swall15"; dir = 2},/area/shuttle/abandoned) "cyq" = (/obj/machinery/computer/pod{id = "oldship_gun"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cyr" = (/turf/simulated/wall/shuttle{icon_state = "swall7"; dir = 2},/area/shuttle/abandoned) @@ -6676,23 +6676,23 @@ "cyt" = (/turf/simulated/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/shuttle/supply) "cyu" = (/turf/simulated/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/shuttle/supply) "cyv" = (/turf/simulated/floor/plating,/area/shuttle/abandoned) -"cyw" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f13"; icon_state = "swall_f13"},/area/shuttle/abandoned) +"cyw" = (/turf/simulated/wall/shuttle{icon_state = "swall_f13"},/area/shuttle/abandoned) "cyx" = (/obj/structure/rack,/obj/item/clothing/suit/space/hardsuit/medical,/obj/item/clothing/mask/breath,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cyy" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "oldship_gun"},/turf/simulated/floor/plating,/area/shuttle/abandoned) "cyz" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/plating,/area/shuttle/abandoned) "cyA" = (/obj/machinery/door/poddoor{id = "oldship_gun"; name = "pod bay door"},/turf/simulated/floor/plating,/area/shuttle/abandoned) "cyB" = (/turf/simulated/floor/plasteel/shuttle,/area/shuttle/supply) "cyC" = (/turf/simulated/wall/shuttle{icon_state = "swall3"; dir = 2},/area/shuttle/supply) -"cyD" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f12"; icon_state = "swall_f12"},/area/shuttle/abandoned) +"cyD" = (/turf/simulated/wall/shuttle{icon_state = "swall_f12"},/area/shuttle/abandoned) "cyE" = (/turf/simulated/wall/shuttle{icon_state = "swall14"; dir = 2},/area/shuttle/abandoned) -"cyF" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion_r (EAST)"; icon_state = "propulsion_r"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) -"cyG" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f17"; icon_state = "swall_f17"},/area/shuttle/abandoned) +"cyF" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/abandoned) +"cyG" = (/turf/simulated/wall/shuttle{icon_state = "swall_f17"},/area/shuttle/abandoned) "cyH" = (/obj/machinery/door/airlock/shuttle,/turf/simulated/floor/plating,/area/shuttle/abandoned) "cyI" = (/obj/item/weapon/stock_parts/cell{charge = 100; maxcharge = 15000},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cyJ" = (/obj/structure/rack,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cyK" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f14"; icon_state = "swall_f14"},/area/shuttle/abandoned) +"cyK" = (/turf/simulated/wall/shuttle{icon_state = "swall_f14"},/area/shuttle/abandoned) "cyL" = (/obj/structure/cable,/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"cyM" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f11"; icon_state = "swall_f11"},/area/shuttle/abandoned) +"cyM" = (/turf/simulated/wall/shuttle{icon_state = "swall_f11"},/area/shuttle/abandoned) "cyN" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/turf/simulated/floor/plating,/area/shuttle/supply) "cyO" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "cyP" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) @@ -6727,11 +6727,11 @@ "czs" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/simulated/floor/plating,/area/shuttle/supply) "czt" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/plating,/area/shuttle/supply) "czu" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/simulated/floor/plating,/area/shuttle/supply) -"czv" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f18"; icon_state = "swall_f18"},/area/shuttle/abandoned) +"czv" = (/turf/simulated/wall/shuttle{icon_state = "swall_f18"},/area/shuttle/abandoned) "czw" = (/obj/item/device/multitool,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "czx" = (/obj/structure/bed/chair,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "czy" = (/obj/structure/computerframe{anchored = 1},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) -"czz" = (/turf/simulated/wall/shuttle{tag = "icon-swall_f16"; icon_state = "swall_f16"},/area/shuttle/abandoned) +"czz" = (/turf/simulated/wall/shuttle{icon_state = "swall_f16"},/area/shuttle/abandoned) "czA" = (/obj/item/weapon/scalpel,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "czB" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) "czC" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/obj/effect/decal/remains/human,/turf/simulated/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/shuttle/abandoned) diff --git a/_maps/map_files/generic/z2.dmm b/_maps/map_files/generic/z2.dmm index ed80355b3e9..304bdd47dc7 100644 --- a/_maps/map_files/generic/z2.dmm +++ b/_maps/map_files/generic/z2.dmm @@ -233,7 +233,7 @@ "ez" = (/obj/machinery/door/poddoor/shutters/preopen{id = "adminshut"; name = "Administrative Shutters"},/turf/indestructible/fakeglass{icon_state = "fakewindows"; dir = 1},/area/centcom/ferry) "eA" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/centcom/ferry) "eG" = (/turf/indestructible/fakeglass{icon_state = "fakewindows"; dir = 9},/area/centcom/ferry) -"eH" = (/turf/indestructible/fakeglass{tag = "icon-fakewindows (SOUTHEAST)"; icon_state = "fakewindows"; dir = 6},/area/centcom/ferry) +"eH" = (/turf/indestructible/fakeglass{icon_state = "fakewindows"; dir = 6},/area/centcom/ferry) "eI" = (/obj/structure/showcase/fakesec,/turf/simulated/floor/carpet,/area/centcom/ferry) "eJ" = (/obj/machinery/door/poddoor/shutters/preopen{id = "adminshut"; name = "Administrative Shutters"},/turf/indestructible/fakeglass,/area/centcom/ferry) "eK" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/carpet,/area/centcom/ferry) @@ -250,7 +250,7 @@ "fj" = (/obj/machinery/door/airlock/centcom{name = "Dressing Room"; opacity = 1; req_access_txt = "0"},/turf/simulated/floor/wood,/area/centcom/ferry) "fk" = (/obj/machinery/vending/clothing,/turf/simulated/floor/wood,/area/centcom/ferry) "fl" = (/turf/indestructible/riveted,/area/centcom/evac) -"ft" = (/turf/indestructible/fakeglass{tag = "icon-fakewindows (SOUTHWEST)"; icon_state = "fakewindows"; dir = 10},/area/centcom/ferry) +"ft" = (/turf/indestructible/fakeglass{icon_state = "fakewindows"; dir = 10},/area/centcom/ferry) "fu" = (/turf/simulated/floor/plasteel/darkgreen/corner,/area/centcom/ferry) "fv" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/centcom/ferry) "fw" = (/turf/simulated/floor/plasteel/darkred/side{dir = 1},/area/centcom/evac) @@ -305,7 +305,7 @@ "gT" = (/turf/simulated/floor/plasteel/warning{dir = 4},/area/centcom/control) "gU" = (/turf/simulated/floor/plasteel/black,/area/centcom/control) "gV" = (/obj/structure/table,/turf/simulated/floor/plasteel/black,/area/centcom/control) -"gW" = (/turf/indestructible/fakeglass{tag = "icon-fakewindows (SOUTHWEST)"; icon_state = "fakewindows"; dir = 10},/area/centcom/evac) +"gW" = (/turf/indestructible/fakeglass{icon_state = "fakewindows"; dir = 10},/area/centcom/evac) "gX" = (/obj/machinery/door/airlock/centcom{name = "Centcom Security"; opacity = 1; req_access_txt = "0"},/turf/simulated/floor/plasteel/black,/area/centcom/evac) "hc" = (/turf/indestructible/fakeglass{icon_state = "fakewindows2"; dir = 1},/area/centcom/control) "hd" = (/turf/simulated/floor/plasteel/green/corner,/area/centcom/control) @@ -496,9 +496,9 @@ "lY" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/simulated/floor/plasteel/freezer{dir = 2},/area/syndicate_mothership) "lZ" = (/turf/simulated/floor/plasteel/redblue,/area/tdome/tdomeobserve) "ma" = (/obj/structure/bed/chair,/obj/effect/landmark{name = "tdomeobserve"},/turf/simulated/floor/plasteel/redblue,/area/tdome/tdomeobserve) -"mb" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/space/transit,/area/wizard_station) +"mb" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/space/transit,/area/wizard_station) "mc" = (/obj/effect/decal/cleanable/blood/gibs/body,/turf/simulated/floor/plasteel/airless,/area/wizard_station) -"md" = (/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/turf/simulated/floor/plating/airless,/area/wizard_station) +"md" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/turf/simulated/floor/plating/airless,/area/wizard_station) "me" = (/obj/machinery/door/poddoor/preopen,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating/airless,/area/wizard_station) "mf" = (/turf/simulated/floor/plasteel/airless,/area/wizard_station) "mg" = (/obj/effect/forcefield,/turf/simulated/floor/plasteel/cult{icon_state = "cultdamage7"},/area/wizard_station) @@ -563,8 +563,8 @@ "nD" = (/turf/simulated/floor/plasteel/cult,/turf/simulated/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/wizard_station) "nE" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/rack{health = 9999},/obj/item/clothing/suit/space/hardsuit/wizard,/turf/simulated/floor/plasteel/cult/airless{icon_state = "cultdamage"},/area/wizard_station) "nF" = (/turf/simulated/wall/shuttle{icon_state = "swall8"; dir = 2},/area/wizard_station) -"nJ" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/syndicate_mothership) -"nK" = (/obj/structure/table,/obj/item/weapon/gun/energy/ionrifle{pin = /obj/item/device/firing_pin},/turf/simulated/floor/plasteel/darkwarning{tag = "icon-warndark (NORTH)"; icon_state = "warndark"; dir = 1},/area/syndicate_mothership) +"nJ" = (/obj/structure/closet/syndicate/personal,/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 1},/area/syndicate_mothership) +"nK" = (/obj/structure/table,/obj/item/weapon/gun/energy/ionrifle{pin = /obj/item/device/firing_pin},/turf/simulated/floor/plasteel/darkwarning{icon_state = "warndark"; dir = 1},/area/syndicate_mothership) "nL" = (/obj/machinery/recharger{pixel_y = 4},/obj/effect/landmark{name = "tdome2"},/turf/simulated/floor/plasteel,/area/tdome/tdome2) "nM" = (/obj/machinery/recharger{pixel_y = 4},/obj/effect/landmark{name = "tdome1"},/turf/simulated/floor/plasteel,/area/tdome/tdome1) "nN" = (/obj/structure/bookcase,/turf/simulated/floor/plasteel/cult,/area/wizard_station) @@ -589,7 +589,7 @@ "oj" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plasteel/cult/airless,/area/wizard_station) "ok" = (/turf/indestructible/fakedoor{name = "Squad 3 Pod"},/area/wizard_station) "or" = (/obj/machinery/camera{pixel_x = 10; network = list("thunder"); c_tag = "Arena"},/turf/simulated/floor/bluegrid,/area/tdome/arena) -"os" = (/obj/structure/bed/chair/wood/wings{tag = "icon-wooden_chair_wings (NORTH)"; icon_state = "wooden_chair_wings"; dir = 1},/turf/simulated/floor/plasteel/cult,/area/wizard_station) +"os" = (/obj/structure/bed/chair/wood/wings{icon_state = "wooden_chair_wings"; dir = 1},/turf/simulated/floor/plasteel/cult,/area/wizard_station) "ot" = (/obj/structure/cult/pylon,/turf/simulated/floor/plasteel/cult,/area/wizard_station) "ou" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/blood/gibs/body,/turf/simulated/floor/plasteel/cult/airless{icon_state = "cultdamage4"},/area/wizard_station) "ov" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/rack,/obj/item/weapon/staff,/turf/simulated/floor/plasteel/cult/airless{icon_state = "cultdamage"},/area/wizard_station) @@ -739,7 +739,7 @@ "rw" = (/obj/effect/landmark/abductor/agent{team = 2},/turf/simulated/floor/plating/abductor,/area/abductor_ship) "rx" = (/obj/effect/landmark/abductor/scientist{team = 3},/turf/simulated/floor/plating/abductor,/area/abductor_ship) "ry" = (/obj/effect/landmark/abductor/agent{team = 3},/turf/simulated/floor/plating/abductor,/area/abductor_ship) - + (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacadaeaeaeaeaeadaeaeaeaeaeadaeaeaeaeaeadaeaeaeaeaead aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacafagagagagagahaiaiaiaiaiahajajajajajahalakakakanam diff --git a/_maps/map_files/generic/z4.dmm b/_maps/map_files/generic/z4.dmm index a34ed0ba9ed..865229ad61b 100644 --- a/_maps/map_files/generic/z4.dmm +++ b/_maps/map_files/generic/z4.dmm @@ -68,7 +68,7 @@ "bp" = (/turf/simulated/wall,/area/derelict/solar_control) "bq" = (/turf/simulated/floor/plasteel,/area/derelict/solar_control) "br" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/space,/area/solar/derelict_starboard) -"bs" = (/turf/simulated/floor/plating/airless,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/solar/derelict_starboard) +"bs" = (/turf/simulated/floor/plating/airless,/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/solar/derelict_starboard) "bt" = (/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel/airless,/area/solar/derelict_starboard) "bu" = (/obj/machinery/door/airlock/external{name = "Air Bridge Access"},/turf/simulated/floor/plating,/area/derelict/solar_control) "bv" = (/obj/machinery/door/airlock/external{name = "External Engineering"},/turf/simulated/floor/plating,/area/derelict/solar_control) @@ -113,13 +113,13 @@ "ci" = (/obj/structure/rack,/obj/item/weapon/melee/classic_baton,/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cj" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel,/area/derelict/solar_control) "ck" = (/obj/structure/rack,/obj/item/clothing/head/helmet/swat,/turf/simulated/floor/plasteel,/area/derelict/bridge/access) -"cl" = (/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plasteel{tag = "icon-damaged4"; icon_state = "damaged4"},/area/derelict/solar_control) +"cl" = (/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plasteel{icon_state = "damaged4"},/area/derelict/solar_control) "cm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cn" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel,/area/derelict/solar_control) "co" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cp" = (/turf/simulated/floor/plasteel,/area/derelict/bridge/ai_upload) "cq" = (/obj/machinery/power/apc{dir = 8; environ = 0; equipment = 0; lighting = 0; locked = 0; name = "Starboard Solar APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel,/area/derelict/solar_control) -"cr" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/turf/simulated/floor/plating/airless{tag = "icon-platingdmg3"; icon_state = "platingdmg3"},/area/solar/derelict_aft) +"cr" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/derelict_aft) "cs" = (/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/derelict/solar_control) "ct" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cu" = (/turf/simulated/floor/plating,/area/derelict/bridge/access) @@ -127,25 +127,25 @@ "cw" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/bridge/access) "cx" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/simulated/floor/plasteel,/area/derelict/solar_control) "cy" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelict/bridge/access) -"cz" = (/turf/simulated/floor/plasteel{tag = "icon-damaged5"; icon_state = "damaged5"},/area/derelict/solar_control) -"cA" = (/turf/simulated/floor/plating/airless,/turf/simulated/floor/plating/airless{tag = "icon-platingdmg2"; icon_state = "platingdmg2"},/area/solar/derelict_aft) +"cz" = (/turf/simulated/floor/plasteel{icon_state = "damaged5"},/area/derelict/solar_control) +"cA" = (/turf/simulated/floor/plating/airless,/turf/simulated/floor/plating/airless{icon_state = "platingdmg2"},/area/solar/derelict_aft) "cB" = (/obj/item/stack/cable_coil/cut,/turf/simulated/floor/plating/airless,/area/space) "cC" = (/turf/simulated/floor/plasteel/airless{icon_state = "solarpanel"},/area/space) "cD" = (/obj/item/stack/cable_coil/cut,/turf/space,/area/space) "cE" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelict/bridge/access) -"cG" = (/turf/simulated/floor/plating/airless{tag = "icon-platingdmg1"; icon_state = "platingdmg1"},/area/solar/derelict_aft) -"cH" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/simulated/floor/plasteel{tag = "icon-damaged3"; icon_state = "damaged3"},/area/derelict/solar_control) +"cG" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/derelict_aft) +"cH" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/simulated/floor/plasteel{icon_state = "damaged3"},/area/derelict/solar_control) "cI" = (/turf/simulated/wall/r_wall,/area/derelict/singularity_engine) "cJ" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cK" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel,/area/derelict/bridge/access) -"cL" = (/turf/simulated/floor/plasteel{tag = "icon-damaged2"; icon_state = "damaged2"},/area/derelict/solar_control) +"cL" = (/turf/simulated/floor/plasteel{icon_state = "damaged2"},/area/derelict/solar_control) "cM" = (/turf/simulated/wall,/area/derelict/bridge) "cN" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/derelict/singularity_engine) "cO" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/derelict/singularity_engine) "cP" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/gravity_generator) "cQ" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/gravity_generator) -"cR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) +"cR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cS" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "cT" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel,/area/derelict/bridge) "cU" = (/obj/structure/computerframe,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plasteel,/area/derelict/bridge) @@ -212,7 +212,7 @@ "ed" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/derelict/singularity_engine) "ee" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/derelict/singularity_engine) "ef" = (/obj/structure/table,/obj/item/weapon/rack_parts,/turf/simulated/floor/plasteel,/area/derelict/bridge) -"eg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) +"eg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel,/area/derelict/bridge/access) "eh" = (/obj/structure/window/fulltile,/turf/simulated/floor/plasteel,/area/derelict/bridge) "ei" = (/obj/structure/table,/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/obj/structure/cable,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plasteel,/area/derelict/bridge) "ej" = (/obj/structure/table,/obj/machinery/light/small,/turf/simulated/floor/plasteel,/area/derelict/bridge) @@ -446,7 +446,7 @@ "iE" = (/obj/machinery/light/small,/turf/simulated/floor/plasteel{dir = 4; icon_state = "chapel"},/area/derelict/medical/chapel) "iF" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "iG" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) -"iH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) +"iH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary) "iI" = (/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "iJ" = (/obj/structure/window/fulltile{dir = 1},/turf/space,/area/space) "iK" = (/obj/structure/window/fulltile{dir = 5},/turf/simulated/floor/plating/airless,/area/space) @@ -464,7 +464,7 @@ "iW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "iX" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "iY" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) -"iZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) +"iZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "ja" = (/obj/machinery/door/airlock/engineering{name = "Starboard Solar Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel,/area/derelict/solar_control) "jb" = (/obj/structure/lattice,/obj/structure/window/fulltile{dir = 4},/turf/space,/area/space) "jc" = (/obj/structure/girder,/obj/structure/window/fulltile,/turf/simulated/floor/plating/airless,/area/derelict/arrival) @@ -472,7 +472,7 @@ "je" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "jf" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) "jg" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/derelict/hallway/primary) -"jh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) +"jh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "ji" = (/obj/item/weapon/cigbutt,/turf/space,/area/space) "jj" = (/obj/structure/window/fulltile{dir = 1},/turf/simulated/floor/plating,/area/derelict/arrival) "jk" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel,/area/derelict/arrival) @@ -505,14 +505,14 @@ "jL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating/airless,/area/space) "jM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating,/area/derelict/arrival) "jN" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/simulated/floor/plating,/area/derelict/arrival) -"jO" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) +"jO" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "jP" = (/turf/simulated/wall,/area/derelict/hallway/secondary) "jQ" = (/obj/structure/girder,/turf/simulated/floor/plating/airless,/area/derelict/hallway/secondary) "jR" = (/turf/simulated/wall/r_wall,/area/derelict/hallway/secondary) "jS" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/space) -"jT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) +"jT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "jU" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) -"jV" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) +"jV" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "jW" = (/obj/machinery/door/airlock/security{name = "Security"; req_access = null; req_access_txt = "1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/primary) "jX" = (/obj/structure/grille,/obj/item/weapon/shard,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating/airless,/area/space) "jY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/simulated/floor/plating/airless,/area/space) @@ -536,7 +536,7 @@ "kq" = (/obj/structure/door_assembly/door_assembly_mai{name = "airlock assembly"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/secondary) "kr" = (/obj/structure/grille,/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "ks" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/constructable_frame/machine_frame,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plating/airless,/area/derelict/gravity_generator) -"kt" = (/obj/item/weapon/wirecutters,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/secondary) +"kt" = (/obj/item/weapon/wirecutters,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/secondary) "ku" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plasteel/airless,/area/derelict/se_solar) "kv" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/item/drone_shell,/turf/simulated/floor/plasteel/airless,/area/derelict/se_solar) "kw" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/simulated/floor/plasteel{icon_state = "grimy"},/area/djstation) @@ -576,12 +576,12 @@ "le" = (/turf/simulated/floor/plating/airless,/area/derelict/bridge/ai_upload) "lf" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plasteel,/area/derelict/bridge/ai_upload) "lg" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plasteel,/area/derelict/solar_control) -"lh" = (/turf/simulated/floor/plasteel{tag = "icon-damaged1"; icon_state = "damaged1"},/area/derelict/solar_control) -"li" = (/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; tag = "icon-bcircuit"},/area/derelict/bridge/ai_upload) -"lj" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; tag = "icon-bcircuit"},/area/derelict/bridge/ai_upload) +"lh" = (/turf/simulated/floor/plasteel{icon_state = "damaged1"},/area/derelict/solar_control) +"li" = (/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"},/area/derelict/bridge/ai_upload) +"lj" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"},/area/derelict/bridge/ai_upload) "lk" = (/obj/item/stack/rods,/turf/simulated/floor/plating/airless,/area/derelict/hallway/secondary) "ll" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/simulated/floor/plasteel/airless,/area/space) -"lm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"; tag = "icon-bcircuit"},/area/derelict/bridge/ai_upload) +"lm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plasteel/airless{icon_state = "bcircuit"},/area/derelict/bridge/ai_upload) "ln" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/derelict/gravity_generator) "lo" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/item/wallframe/apc,/turf/simulated/floor/plating/airless,/area/derelict/gravity_generator) "lp" = (/obj/machinery/door/window,/turf/simulated/floor/plasteel,/area/derelict/bridge/ai_upload) @@ -665,11 +665,11 @@ "mP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/space,/area/solar/derelict_aft) "mQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/space,/area/solar/derelict_aft) "mR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/space,/area/solar/derelict_aft) -"mS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)"; dir = 4},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) +"mS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "mT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/space,/area/solar/derelict_aft) "mU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/space,/area/solar/derelict_aft) "mV" = (/obj/machinery/power/tracker,/obj/structure/cable,/turf/simulated/floor/plasteel/airless,/area/solar/derelict_aft) -"mW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (WEST)"; icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) +"mW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 8},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "mX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "mY" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/simulated/floor/plasteel/airless,/area/derelict/atmospherics) "mZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plasteel/airless,/area/derelict/bridge/ai_upload) @@ -677,7 +677,7 @@ "nb" = (/obj/structure/rack,/obj/item/weapon/circuitboard/microwave,/turf/simulated/floor/plasteel,/area/derelict/bridge/ai_upload) "nc" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/bridge/ai_upload) "nd" = (/turf/space,/area/derelict/bridge/ai_upload) -"ne" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) +"ne" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{icon_state = "intact"; dir = 5},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "nf" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "ng" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "nh" = (/obj/structure/lattice,/turf/space,/area/derelict/bridge/ai_upload) @@ -686,7 +686,7 @@ "nk" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/airless,/area/derelict/bridge/ai_upload) "nl" = (/obj/structure/computerframe,/turf/simulated/floor/plasteel/airless,/area/derelict/bridge/ai_upload) "nm" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/plasteel,/area/derelict/solar_control) -"nn" = (/turf/simulated/floor/plasteel{icon_state = "damaged2"; nitrogen = 0; oxygen = 0; tag = "icon-damaged2"; temperature = 2.7},/area/derelict/atmospherics) +"nn" = (/turf/simulated/floor/plasteel{icon_state = "damaged2"; nitrogen = 0; oxygen = 0; temperature = 2.7},/area/derelict/atmospherics) "no" = (/turf/simulated/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/atmospherics) "np" = (/obj/structure/rack,/obj/item/weapon/circuitboard/cryo_tube,/turf/simulated/floor/plasteel,/area/derelict/bridge/ai_upload) "nq" = (/obj/machinery/light,/turf/simulated/floor/plasteel/airless,/area/derelict/bridge/ai_upload) @@ -742,7 +742,7 @@ "oo" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/space,/area/space) "op" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) "oq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/plasteel{icon_state = "dark"},/area/derelict/medical/chapel) -"or" = (/obj/machinery/sleeper{tag = "icon-sleeper-open (EAST)"; icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) +"or" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "os" = (/obj/structure/window/reinforced,/turf/simulated/floor/plasteel/airless{icon_state = "white"},/area/derelict/medical) "ot" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/simulated/floor/plating/airless,/area/derelict/medical) "ou" = (/obj/machinery/door/poddoor{id = "derelict_gun"; name = "Derelict Mass Driver"},/turf/simulated/floor/plating,/area/space) @@ -810,7 +810,7 @@ "pE" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "pF" = (/obj/structure/window/fulltile{dir = 5},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "pG" = (/turf/space,/area/derelict/atmospherics) -"pH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) +"pH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 9},/turf/simulated/floor/plating/airless,/area/derelict/atmospherics) "pI" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/simulated/floor/plasteel/airless,/area/derelict/hallway/secondary) "pJ" = (/obj/machinery/power/apc{dir = 1; name = "Worn-out APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plasteel/airless,/area/derelict/atmospherics) "pK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plasteel/airless{icon_state = "derelict9"},/area/derelict/hallway/secondary) diff --git a/_maps/map_files/generic/z5.dmm b/_maps/map_files/generic/z5.dmm index cc8923779ee..3f299efa272 100644 --- a/_maps/map_files/generic/z5.dmm +++ b/_maps/map_files/generic/z5.dmm @@ -256,17 +256,17 @@ "eV" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "eW" = (/obj/machinery/flasher{id = "Labor"; pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold{dir = 4},/turf/simulated/wall,/area/mine/laborcamp) "eX" = (/obj/machinery/conveyor_switch/oneway{id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"eY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning"; icon_state = "asteroidwarning"},/area/mine/laborcamp) -"eZ" = (/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning"; icon_state = "asteroidwarning"},/area/mine/explored) +"eY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"},/area/mine/laborcamp) +"eZ" = (/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"},/area/mine/explored) "fa" = (/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/unexplored) "fb" = (/obj/machinery/light_switch{pixel_x = -27; pixel_y = 0},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fc" = (/obj/machinery/camera{c_tag = "Labor Camp Central"; network = list("Labor")},/obj/machinery/atmospherics/pipe/manifold{dir = 8},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fd" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "fe" = (/obj/machinery/conveyor{dir = 2; id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) "ff" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"fg" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/turf/simulated/floor/plasteel{tag = "icon-asteroidplating"; icon_state = "asteroidplating"},/area/mine/laborcamp) -"fh" = (/obj/machinery/mineral/unloading_machine{dir = 1; input_dir = 4; output_dir = 8},/turf/simulated/floor/plasteel{tag = "icon-asteroidplating"; icon_state = "asteroidplating"},/area/mine/laborcamp) -"fi" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning (WEST)"; icon_state = "asteroidwarning"; dir = 8},/area/mine/explored) +"fg" = (/obj/machinery/conveyor{dir = 8; id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "asteroidplating"},/area/mine/laborcamp) +"fh" = (/obj/machinery/mineral/unloading_machine{dir = 1; input_dir = 4; output_dir = 8},/turf/simulated/floor/plasteel{icon_state = "asteroidplating"},/area/mine/laborcamp) +"fi" = (/obj/structure/ore_box,/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"; dir = 8},/area/mine/explored) "fj" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/simulated/floor/plating/asteroid,/area/mine/explored) "fk" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/explored) "fl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless{icon_state = "asteroidplating"},/area/mine/explored) @@ -276,9 +276,9 @@ "fp" = (/turf/simulated/floor/plasteel,/area/mine/laborcamp) "fq" = (/obj/machinery/mineral/processing_unit_console{machinedir = 6},/turf/simulated/wall,/area/mine/laborcamp) "fr" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 2; id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) -"fs" = (/obj/machinery/camera{c_tag = "Labor Camp External"; dir = 4; network = list("Labor")},/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning (NORTH)"; icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) -"ft" = (/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning (NORTH)"; icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) -"fu" = (/obj/machinery/conveyor_switch/oneway{id = "gulag"},/turf/simulated/floor/plasteel{tag = "icon-asteroidwarning (NORTH)"; icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) +"fs" = (/obj/machinery/camera{c_tag = "Labor Camp External"; dir = 4; network = list("Labor")},/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) +"ft" = (/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) +"fu" = (/obj/machinery/conveyor_switch/oneway{id = "gulag"},/turf/simulated/floor/plasteel{icon_state = "asteroidwarning"; dir = 1},/area/mine/explored) "fv" = (/obj/effect/decal/cleanable/blood/old,/turf/simulated/floor/plating/asteroid,/area/mine/explored) "fw" = (/obj/machinery/mineral/stacking_unit_console{machinedir = 2},/turf/simulated/wall,/area/mine/laborcamp) "fx" = (/obj/machinery/mineral/processing_unit{dir = 1; output_dir = 2},/turf/simulated/floor/plasteel{icon_state = "floorgrime"},/area/mine/laborcamp) @@ -596,7 +596,7 @@ "ly" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/mine/production) "lz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Closet"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/mine/production) "lA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/mine/production) -"lB" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/mine/production) +"lB" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/mine/production) "lC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/mine/production) "lD" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 8},/area/mine/production) "lE" = (/obj/machinery/conveyor{dir = 4; id = "mining_external"},/turf/simulated/floor/plating,/area/mine/production) @@ -671,7 +671,7 @@ "mV" = (/turf/simulated/floor/plasteel{dir = 10; icon_state = "warning"},/area/mine/production) "mW" = (/turf/simulated/floor/plasteel{icon_state = "warningcorner"; dir = 1},/area/mine/production) "mX" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plasteel,/area/mine/production) -"mY" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/plasteel,/area/mine/production) +"mY" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plasteel,/area/mine/production) "mZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/simulated/floor/plasteel{dir = 4; icon_state = "warning"},/area/mine/production) "na" = (/obj/machinery/door/airlock/glass_mining{name = "Processing Area"; req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plasteel{icon_state = "delivery"; name = "floor"},/area/mine/production) "nb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plasteel{dir = 9; icon_state = "warning"},/area/mine/production) @@ -703,7 +703,7 @@ "nB" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/obj/structure/plasticflaps,/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/mine/production) "nC" = (/obj/machinery/mineral/stacking_machine{dir = 1; input_dir = 4},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 9},/area/mine/production) "nD" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/mine/production) -"nE" = (/obj/machinery/conveyor{icon_state = "conveyor0"; dir = 10; id = "mining_internal"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating{tag = "icon-warnplatecorner (EAST)"; icon_state = "warnplatecorner"; dir = 4},/area/mine/production) +"nE" = (/obj/machinery/conveyor{icon_state = "conveyor0"; dir = 10; id = "mining_internal"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 4},/area/mine/production) "nF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/mine/explored) "nG" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/mine/production) "nH" = (/obj/structure/disposaloutlet{dir = 1; eject_range = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating{icon_state = "warnplate"; dir = 1},/area/mine/production) diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm index 864a934117f..f9596694bcd 100644 --- a/code/game/gamemodes/nuclear/nuclearbomb.dm +++ b/code/game/gamemodes/nuclear/nuclearbomb.dm @@ -50,6 +50,17 @@ var/bomb_set anchored = 1 //stops it being moved layer = 4 +/obj/machinery/nuclearbomb/syndicate + +/obj/machinery/nuclearbomb/syndicate/New() + var/obj/machinery/nuclearbomb/existing = locate("syndienuke") + if(existing) + qdel(src) + throw EXCEPTION("Attempted to spawn a syndicate nuke while one already exists at [existing.loc.x],[existing.loc.y],[existing.loc.z]") + return 0 + tag = "syndienuke" + return ..() + /obj/machinery/nuclearbomb/attackby(obj/item/I, mob/user, params) if (istype(I, /obj/item/weapon/disk/nuclear)) if(!user.drop_item()) From 29f42778dda50d3391deeb4687cfb429fe4b3252 Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Sat, 24 Oct 2015 13:55:58 -0300 Subject: [PATCH 075/418] Improves performance of set_airlock_overlays They will now only update when they actually change. On my testing, this made performance improve about 3-15 times, depending on the use case. I could have made this a loop if I turned the overlays into a list with defines but I was lazy and this copy-paste is probably slightly faster than a list as well (despite being harder to read and to maintain). --- code/game/machinery/doors/airlock.dm | 39 +++++++++++++++++++++++----- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index c3d7449b657..47859e4bb5a 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -58,6 +58,13 @@ var/list/airlock_overlays = list() var/airlock_material = null //material of inner filling; if its an airlock with glass, this should be set to "glass" var/overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi' + var/image/old_frame_overlay //keep those in order to prevent unnecessary updating + var/image/old_filling_overlay + var/image/old_lights_overlay + var/image/old_panel_overlay + var/image/old_weld_overlay + var/image/old_sparks_overlay + explosion_block = 1 /obj/machinery/door/airlock/New() @@ -312,13 +319,31 @@ About the new airlock wires panel: if(p_open) panel_overlay = get_airlock_overlay("panel_opening", overlays_file) - overlays.Cut() - overlays += frame_overlay - overlays += filling_overlay - overlays += lights_overlay - overlays += panel_overlay - overlays += weld_overlay - overlays += sparks_overlay + //doesn't use overlays.Cut() for performance reasons + if(frame_overlay != old_frame_overlay) + overlays -= old_frame_overlay + overlays += frame_overlay + old_frame_overlay = frame_overlay + if(filling_overlay != old_filling_overlay) + overlays -= old_filling_overlay + overlays += filling_overlay + old_filling_overlay = filling_overlay + if(lights_overlay != old_lights_overlay) + overlays -= old_lights_overlay + overlays += lights_overlay + old_lights_overlay = lights_overlay + if(panel_overlay != old_panel_overlay) + overlays -= old_panel_overlay + overlays += panel_overlay + old_panel_overlay = panel_overlay + if(weld_overlay != old_weld_overlay) + overlays -= old_weld_overlay + overlays += weld_overlay + old_weld_overlay = weld_overlay + if(sparks_overlay != old_sparks_overlay) + overlays -= old_sparks_overlay + overlays += sparks_overlay + old_sparks_overlay = sparks_overlay /proc/get_airlock_overlay(icon_state, icon_file) var/iconkey = "[icon_state][icon_file]" From ac5c67d2a85d149f02da29dd022c8fa136865fa2 Mon Sep 17 00:00:00 2001 From: blobbernaut Date: Sat, 24 Oct 2015 13:26:44 -0400 Subject: [PATCH 076/418] Update human_defense.dm --- code/modules/mob/living/carbon/human/human_defense.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 46bdf2083d5..63d4d57afae 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -27,7 +27,7 @@ emp_act /mob/living/carbon/human/proc/checkarmor(obj/item/organ/limb/def_zone, type) if(!type) return 0 var/protection = 0 - var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back, gloves, shoes, belt, s_store) //List of body parts which can be armored. Currently everything but ID slot, glassses, and ears. + var/list/body_parts = list(head, wear_mask, wear_suit, w_uniform, back, gloves, shoes, belt, s_store, glasses, ears, wear_id) //Everything but pockets. Pockets are l_store and r_store. (if pockets were allowed, putting something armored, gloves or hats for example, would double up on the armor) for(var/bp in body_parts) if(!bp) continue if(bp && istype(bp ,/obj/item/clothing)) From d5119844712dc18e35ee135fb2ea0dbda09057fc Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Sun, 25 Oct 2015 00:28:46 +0100 Subject: [PATCH 077/418] Adds a tool, ColonCatcher.py that locates all Colons that are used to avoid typesafety (A:B) or are used in the ternary operator (prob(50) ? "A" : "B") --- .../2015-10-25-colon_operator_log.txt | 434 ++++++++++++++++++ tools/ColonCatcher/ColonCatcher.py | 162 +++++++ 2 files changed, 596 insertions(+) create mode 100644 tools/ColonCatcher/2015-10-25-colon_operator_log.txt create mode 100644 tools/ColonCatcher/ColonCatcher.py diff --git a/tools/ColonCatcher/2015-10-25-colon_operator_log.txt b/tools/ColonCatcher/2015-10-25-colon_operator_log.txt new file mode 100644 index 00000000000..f8908a0fdae --- /dev/null +++ b/tools/ColonCatcher/2015-10-25-colon_operator_log.txt @@ -0,0 +1,434 @@ +..code\world.dm Lines: 27, 28, 98?, 102?, 119?, 149?, 230? Total Colons: 7 +..code\ATMOSPHERICS\atmospherics.dm Lines: 213? Total Colons: 1 +..code\ATMOSPHERICS\components\binary_devices\dp_vent_pump.dm Lines: 137? Total Colons: 1 +..code\ATMOSPHERICS\components\binary_devices\passive_gate.dm Lines: 134?, 163? Total Colons: 2 +..code\ATMOSPHERICS\components\binary_devices\pump.dm Lines: 43?, 139?, 167? Total Colons: 3 +..code\ATMOSPHERICS\components\binary_devices\valve.dm Lines: 25?, 33?, 38? Total Colons: 3 +..code\ATMOSPHERICS\components\binary_devices\volume_pump.dm Lines: 42?, 136?, 163? Total Colons: 3 +..code\ATMOSPHERICS\components\trinary_devices\filter.dm Lines: 66?, 69?, 214? Total Colons: 3 +..code\ATMOSPHERICS\components\trinary_devices\mixer.dm Lines: 36?, 39?, 151? Total Colons: 3 +..code\ATMOSPHERICS\components\unary_devices\cryo.dm Lines: 152?, 187?, 189, 190, 312?, 313? Total Colons: 7 +..code\ATMOSPHERICS\components\unary_devices\Freezer.dm Lines: 82?, 205? Total Colons: 2 +..code\ATMOSPHERICS\components\unary_devices\vent_pump.dm Lines: 175?, 196?, 197?, 228? Total Colons: 4 +..code\ATMOSPHERICS\components\unary_devices\vent_scrubber.dm Lines: 140?, 141? Total Colons: 2 +..code\ATMOSPHERICS\pipes\manifold.dm Lines: 28? Total Colons: 1 +..code\ATMOSPHERICS\pipes\manifold4w.dm Lines: 19? Total Colons: 1 +..code\ATMOSPHERICS\pipes\pipes.dm Lines: 30?, 32?, 33?, 34?, 43? Total Colons: 5 +..code\ATMOSPHERICS\pipes\heat_exchange\manifold.dm Lines: 25?, 51? Total Colons: 2 +..code\controllers\subsystem\air.dm Lines: 100 Total Colons: 1 +..code\controllers\subsystem\bots.dm Lines: 18, 20 Total Colons: 2 +..code\controllers\subsystem\diseases.dm Lines: 18 Total Colons: 1 +..code\controllers\subsystem\events.dm Lines: 41, 199?, 200? Total Colons: 3 +..code\controllers\subsystem\jobs.dm Lines: 370? Total Colons: 1 +..code\controllers\subsystem\machines.dm Lines: 41, 42, 43 Total Colons: 3 +..code\controllers\subsystem\mobs.dm Lines: 20 Total Colons: 1 +..code\controllers\subsystem\objects.dm Lines: 37 Total Colons: 1 +..code\controllers\subsystem\shuttles.dm Lines: 251?, 253, 261?, 262?, 284, 285 Total Colons: 6 +..code\controllers\subsystem\ticker.dm Lines: 382?, 405? Total Colons: 4 +..code\controllers\subsystem\voting.dm Lines: 203?, 211? Total Colons: 2 +..code\controllers\subsystem\shuttles\emergency.dm Lines: 52?, 65? Total Colons: 4 +..code\controllers\subsystem\shuttles\supply.dm Lines: 97, 316?, 347?, 488?, 505? Total Colons: 10 +..code\datums\browser.dm Lines: 79? Total Colons: 1 +..code\datums\datacore.dm Lines: 91?, 127?, 132?, 137?, 142?, 147?, 152?, 157?, 163?, 169?, 259? Total Colons: 23 +..code\datums\datumvars.dm Lines: 57?, 93 Total Colons: 3 +..code\datums\material_container.dm Lines: 194? Total Colons: 1 +..code\datums\mind.dm Lines: 228?, 229?, 290?, 581?, 633, 634, 643, 648, 720?, 1243, 1244, 1245 Total Colons: 13 +..code\datums\mutations.dm Lines: 34?, 135?, 329? Total Colons: 3 +..code\datums\recipe.dm Lines: 52?, 114?, 115? Total Colons: 3 +..code\datums\diseases\_disease.dm Lines: 125? Total Colons: 1 +..code\datums\helper_datums\teleport.dm Lines: 63?, 64?, 74?, 75? Total Colons: 4 +..code\datums\helper_datums\topic_input.dm Lines: 23?, 27?, 31?, 35?, 42?, 46?, 50?, 56?, 60? Total Colons: 9 +..code\datums\spells\dumbfire.dm Lines: 43 Total Colons: 1 +..code\datums\spells\knock.dm Lines: 21 Total Colons: 1 +..code\datums\spells\projectile.dm Lines: 35 Total Colons: 1 +..code\datums\wires\airlock.dm Lines: 37?, 38?, 39?, 40?, 41?, 42?, 43? Total Colons: 7 +..code\datums\wires\alarm.dm Lines: 21? Total Colons: 3 +..code\datums\wires\apc.dm Lines: 13? Total Colons: 3 +..code\datums\wires\autolathe.dm Lines: 13? Total Colons: 3 +..code\datums\wires\particle_accelerator.dm Lines: 50? Total Colons: 1 +..code\datums\wires\pizza_bomb.dm Lines: 45?, 46? Total Colons: 2 +..code\datums\wires\robot.dm Lines: 16?, 17?, 18? Total Colons: 4 +..code\datums\wires\r_n_d.dm Lines: 48?, 49?, 50? Total Colons: 3 +..code\datums\wires\syndicatebomb.dm Lines: 46?, 75? Total Colons: 2 +..code\datums\wires\vending.dm Lines: 28?, 29?, 30?, 31? Total Colons: 4 +..code\datums\wires\wires.dm Lines: 119?, 121? Total Colons: 2 +..code\game\atoms.dm Lines: 297? Total Colons: 1 +..code\game\atoms_movable.dm Lines: 181?, 182?, 216? Total Colons: 3 +..code\game\communications.dm Lines: 288 Total Colons: 3 +..code\game\data_huds.dm Lines: 35? Total Colons: 1 +..code\game\dna.dm Lines: 231? Total Colons: 1 +..code\game\say.dm Lines: 45?, 49? Total Colons: 2 +..code\game\sound.dm Lines: 72? Total Colons: 1 +..code\game\gamemodes\antag_spawner.dm Lines: 103, 104 Total Colons: 3 +..code\game\gamemodes\objective.dm Lines: 84?, 112?, 139?, 172?, 201?, 433, 806 Total Colons: 7 +..code\game\gamemodes\abduction\abduction_gear.dm Lines: 159? Total Colons: 1 +..code\game\gamemodes\abduction\machinery\experiment.dm Lines: 41?, 107? Total Colons: 2 +..code\game\gamemodes\blob\blob_finish.dm Lines: 47? Total Colons: 1 +..code\game\gamemodes\blob\blob_report.dm Lines: 64, 70, 76, 85 Total Colons: 4 +..code\game\gamemodes\changeling\evolution_menu.dm Lines: 59? Total Colons: 3 +..code\game\gamemodes\changeling\powers\adrenaline.dm Lines: 12? Total Colons: 1 +..code\game\gamemodes\changeling\powers\mutations.dm Lines: 83? Total Colons: 1 +..code\game\gamemodes\cult\cult.dm Lines: 44? Total Colons: 1 +..code\game\gamemodes\cult\runes.dm Lines: 705?, 706? Total Colons: 2 +..code\game\gamemodes\gang\dominator.dm Lines: 101?, 187? Total Colons: 2 +..code\game\gamemodes\gang\gang.dm Lines: 261?, 266? Total Colons: 2 +..code\game\gamemodes\gang\gang_datum.dm Lines: 43?, 53?, 121? Total Colons: 3 +..code\game\gamemodes\gang\gang_pen.dm Lines: 59? Total Colons: 1 +..code\game\gamemodes\gang\recaller.dm Lines: 48?, 51? Total Colons: 4 +..code\game\gamemodes\malfunction\malfunction.dm Lines: 63, 64, 65, 185, 188, 189, 192, 204, 205, 216, 218, 219, 221, 233, 234 Total Colons: 15 +..code\game\gamemodes\meteor\meteors.dm Lines: 177? Total Colons: 2 +..code\game\gamemodes\nuclear\nuclearbomb.dm Lines: 197?, 212?, 215?, 217?, 220?, 222?, 265?, 359, 359?, 360, 365, 383? Total Colons: 25 +..code\game\gamemodes\revolution\revolution.dm Lines: 265?, 266?, 286? Total Colons: 3 +..code\game\gamemodes\shadowling\shadowling.dm Lines: 304? Total Colons: 1 +..code\game\gamemodes\traitor\traitor.dm Lines: 335? Total Colons: 1 +..code\game\gamemodes\wizard\artefact.dm Lines: 148? Total Colons: 1 +..code\game\gamemodes\wizard\rightandwrong.dm Lines: 9?, 10?, 11? Total Colons: 3 +..code\game\gamemodes\wizard\soulstone.dm Lines: 123, 195 Total Colons: 2 +..code\game\gamemodes\wizard\spellbook.dm Lines: 93?, 512?, 533? Total Colons: 3 +..code\game\gamemodes\wizard\wizard.dm Lines: 183?, 258, 261, 264, 278? Total Colons: 5 +..code\game\machinery\airlock_control.dm Lines: 59?, 60? Total Colons: 2 +..code\game\machinery\ai_slipper.dm Lines: 39?, 67, 77?, 93? Total Colons: 5 +..code\game\machinery\alarm.dm Lines: 134?, 135?, 730?, 742?, 895?, 934?, 1056?, 1071?, 1127?, 1128? Total Colons: 16 +..code\game\machinery\announcement_system.dm Lines: 45?, 47?, 136?, 137? Total Colons: 4 +..code\game\machinery\atmo_control.dm Lines: 273?, 284?, 396? Total Colons: 3 +..code\game\machinery\autolathe.dm Lines: 139?, 178?, 187?, 295?, 322?, 336?, 345? Total Colons: 10 +..code\game\machinery\Beacon.dm Lines: 31? Total Colons: 1 +..code\game\machinery\buttons.dm Lines: 22?, 23? Total Colons: 4 +..code\game\machinery\cell_charger.dm Lines: 15?, 31?, 64? Total Colons: 4 +..code\game\machinery\cloning.dm Lines: 88?, 92? Total Colons: 2 +..code\game\machinery\constructable_frame.dm Lines: 48?, 90?, 94?, 99?, 102?, 475? Total Colons: 8 +..code\game\machinery\deployable.dm Lines: 92 Total Colons: 1 +..code\game\machinery\dna_scanner.dm Lines: 44?, 48?, 57? Total Colons: 3 +..code\game\machinery\droneDispenser.dm Lines: 190? Total Colons: 1 +..code\game\machinery\iv_drip.dm Lines: 192?, 200?, 210? Total Colons: 3 +..code\game\machinery\lightswitch.dm Lines: 41? Total Colons: 1 +..code\game\machinery\machinery.dm Lines: 372?, 375? Total Colons: 2 +..code\game\machinery\magnet.dm Lines: 53?, 275?, 279? Total Colons: 3 +..code\game\machinery\navbeacon.dm Lines: 63?, 84?, 92?, 122?, 130? Total Colons: 6 +..code\game\machinery\newscaster.dm Lines: 205?, 206?, 291?, 304?, 311?, 318?, 319?, 372, 391?, 409?, 420?, 423, 424?, 430?, 431?, 436, 460?, 465?, 486, 614?, 724?, 727?, 922 Total Colons: 27 +..code\game\machinery\overview.dm Lines: 98, 167?, 243, 292? Total Colons: 4 +..code\game\machinery\portable_turret.dm Lines: 162?, 164?, 169?, 170?, 171?, 172?, 173?, 183?, 285?, 862?, 864?, 869?, 870?, 871?, 872?, 873?, 877?, 889?, 891?, 896?, 897?, 898?, 899?, 900?, 910?, 968?, 1049?, 1085, 1097?, 1098? Total Colons: 32 +..code\game\machinery\recharger.dm Lines: 19? Total Colons: 1 +..code\game\machinery\rechargestation.dm Lines: 122?, 124? Total Colons: 2 +..code\game\machinery\recycler.dm Lines: 43?, 44?, 45?, 84? Total Colons: 4 +..code\game\machinery\requests_console.dm Lines: 201?, 202?, 212?, 213? Total Colons: 4 +..code\game\machinery\robot_fabricator.dm Lines: 21, 23, 24, 25, 28 Total Colons: 5 +..code\game\machinery\shieldgen.dm Lines: 247?, 261?, 263?, 441? Total Colons: 4 +..code\game\machinery\Sleeper.dm Lines: 142?, 156?, 162? Total Colons: 4 +..code\game\machinery\slotmachine.dm Lines: 219?, 265?, 271? Total Colons: 3 +..code\game\machinery\spaceheater.dm Lines: 33?, 35?, 37?, 69?, 89?, 107? Total Colons: 9 +..code\game\machinery\status_display.dm Lines: 167 Total Colons: 4 +..code\game\machinery\suit_storage_unit.dm Lines: 199?, 200?, 212?, 215?, 218?, 221?, 227?, 231?, 232?, 519? Total Colons: 12 +..code\game\machinery\syndicatebeacon.dm Lines: 151? Total Colons: 1 +..code\game\machinery\syndicatebomb.dm Lines: 22?, 53?, 77?, 323?, 326? Total Colons: 6 +..code\game\machinery\teleporter.dm Lines: 69?, 442? Total Colons: 3 +..code\game\machinery\turrets.dm Lines: 542?, 578, 590?, 591? Total Colons: 6 +..code\game\machinery\vending.dm Lines: 248?, 323? Total Colons: 2 +..code\game\machinery\atmoalter\canister.dm Lines: 248, 289?, 290?, 291?, 292?, 295?, 297? Total Colons: 7 +..code\game\machinery\atmoalter\pump.dm Lines: 109? Total Colons: 3 +..code\game\machinery\atmoalter\scrubber.dm Lines: 127?, 203? Total Colons: 3 +..code\game\machinery\bots\bots.dm Lines: 244?, 337?, 338?, 340?, 416?, 481? Total Colons: 6 +..code\game\machinery\bots\cleanbot.dm Lines: 84?, 85?, 87?, 88?, 109? Total Colons: 6 +..code\game\machinery\bots\ed209bot.dm Lines: 107?, 109?, 115?, 116?, 117?, 118?, 119?, 120?, 155?, 258?, 456? Total Colons: 12 +..code\game\machinery\bots\floorbot.dm Lines: 104?, 105?, 107?, 109?, 110?, 111?, 112?, 113?, 114?, 115?, 116?, 147?, 360? Total Colons: 13 +..code\game\machinery\bots\medbot.dm Lines: 147?, 148?, 154?, 171?, 173?, 174?, 175?, 176?, 177?, 231?, 320?, 532? Total Colons: 12 +..code\game\machinery\bots\mulebot.dm Lines: 99?, 147?, 187?, 209?, 210?, 211?, 225?, 226?, 227?, 228?, 249?, 282?, 346?, 354?, 363?, 535? Total Colons: 17 +..code\game\machinery\bots\secbot.dm Lines: 97?, 99?, 104?, 105?, 106?, 107?, 108?, 109?, 142?, 222? Total Colons: 11 +..code\game\machinery\camera\camera.dm Lines: 141?, 151?, 152? Total Colons: 3 +..code\game\machinery\camera\tracking.dm Lines: 19?, 83? Total Colons: 2 +..code\game\machinery\computer\arcade.dm Lines: 860?, 862?, 863?, 871? Total Colons: 6 +..code\game\machinery\computer\camera.dm Lines: 56? Total Colons: 1 +..code\game\machinery\computer\camera_advanced.dm Lines: 154? Total Colons: 1 +..code\game\machinery\computer\card.dm Lines: 148?, 164?, 209?, 364?, 372?, 390? Total Colons: 6 +..code\game\machinery\computer\cloning.dm Lines: 146? Total Colons: 1 +..code\game\machinery\computer\communications.dm Lines: 106, 148?, 272?, 428?, 429?, 430, 453?, 468?, 531?, 532?, 533, 554? Total Colons: 12 +..code\game\machinery\computer\crew.dm Lines: 153?, 158?, 169? Total Colons: 3 +..code\game\machinery\computer\dna_console.dm Lines: 94?, 139?, 141?, 143?, 181? Total Colons: 5 +..code\game\machinery\computer\medical.dm Lines: 40?, 46, 153? Total Colons: 4 +..code\game\machinery\computer\message.dm Lines: 73?, 76?, 131?, 150? Total Colons: 4 +..code\game\machinery\computer\Operating.dm Lines: 50? Total Colons: 1 +..code\game\machinery\computer\pod.dm Lines: 56? Total Colons: 2 +..code\game\machinery\computer\robot.dm Lines: 65?, 107?, 109?, 110?, 112?, 114? Total Colons: 6 +..code\game\machinery\computer\security.dm Lines: 49?, 62, 117, 130, 275, 285 Total Colons: 7 +..code\game\machinery\computer\shuttle.dm Lines: 24, 25, 28, 30, 33, 34, 47, 48, 60 Total Colons: 9 +..code\game\machinery\computer\station_alert.dm Lines: 73? Total Colons: 1 +..code\game\machinery\doors\airlock.dm Lines: 790?, 791?, 800?, 801?, 809?, 877, 888 Total Colons: 7 +..code\game\machinery\doors\airlock_electronics.dm Lines: 81 Total Colons: 1 +..code\game\machinery\doors\brigdoors.dm Lines: 123?, 158?, 247 Total Colons: 7 +..code\game\machinery\doors\firedoor.dm Lines: 49?, 69 Total Colons: 2 +..code\game\machinery\doors\windowdoor.dm Lines: 188?, 200, 276? Total Colons: 3 +..code\game\machinery\embedded_controller\access_controller.dm Lines: 295?, 297? Total Colons: 2 +..code\game\machinery\embedded_controller\airlock_controller.dm Lines: 258?, 259?, 260?, 261? Total Colons: 4 +..code\game\machinery\pipe\construction.dm Lines: 134?, 162? Total Colons: 2 +..code\game\machinery\telecomms\machine_interactions.dm Lines: 57?, 64?, 159?, 160?, 161?, 184?, 220? Total Colons: 7 +..code\game\mecha\mecha.dm Lines: 561?, 582?, 838?, 843?, 935?, 936?, 937?, 986?, 987? Total Colons: 11 +..code\game\mecha\mecha_control_console.dm Lines: 72? Total Colons: 1 +..code\game\mecha\mecha_topic.dm Lines: 33?, 34?, 36?, 40?, 90?, 164?, 168?, 190?, 197? Total Colons: 21 +..code\game\mecha\mecha_wreckage.dm Lines: 25?, 42? Total Colons: 2 +..code\game\mecha\mech_fabricator.dm Lines: 120?, 132?, 237? Total Colons: 6 +..code\game\mecha\combat\combat.dm Lines: 65?, 67? Total Colons: 3 +..code\game\mecha\combat\durand.dm Lines: 38?, 50? Total Colons: 2 +..code\game\mecha\combat\gygax.dm Lines: 69?, 74?, 105? Total Colons: 3 +..code\game\mecha\combat\honker.dm Lines: 32?, 33?, 35? Total Colons: 14 +..code\game\mecha\combat\marauder.dm Lines: 70?, 158?, 160? Total Colons: 5 +..code\game\mecha\combat\phazon.dm Lines: 39?, 97?, 98? Total Colons: 3 +..code\game\mecha\equipment\mecha_equipment.dm Lines: 57? Total Colons: 3 +..code\game\mecha\equipment\tools\medical_tools.dm Lines: 96, 96?, 129?, 249?, 333?, 366, 370?, 371? Total Colons: 20 +..code\game\mecha\equipment\tools\mining_tools.dm Lines: 40, 51 Total Colons: 2 +..code\game\mecha\equipment\tools\other_tools.dm Lines: 132?, 160?, 182?, 222?, 328?, 406, 406?, 446? Total Colons: 10 +..code\game\mecha\equipment\tools\work_tools.dm Lines: 329?, 350?, 351?, 368, 368? Total Colons: 7 +..code\game\mecha\equipment\weapons\weapons.dm Lines: 208? Total Colons: 1 +..code\game\mecha\working\ripley.dm Lines: 53?, 55? Total Colons: 2 +..code\game\objects\explosion.dm Lines: 11?, 12?, 68? Total Colons: 5 +..code\game\objects\items.dm Lines: 213? Total Colons: 1 +..code\game\objects\items\candle.dm Lines: 23? Total Colons: 1 +..code\game\objects\items\crayons.dm Lines: 117, 171?, 172?, 173?, 210? Total Colons: 5 +..code\game\objects\items\toys.dm Lines: 133?, 187?, 234?, 452?, 471? Total Colons: 6 +..code\game\objects\items\devices\aicard.dm Lines: 83?, 85?, 129?, 138? Total Colons: 4 +..code\game\objects\items\devices\flashlight.dm Lines: 60? Total Colons: 2 +..code\game\objects\items\devices\geiger_counter.dm Lines: 93? Total Colons: 1 +..code\game\objects\items\devices\paicard.dm Lines: 40?, 41? Total Colons: 2 +..code\game\objects\items\devices\scanners.dm Lines: 123?, 137?, 139?, 141?, 143?, 147?, 149, 164?, 212?, 396? Total Colons: 11 +..code\game\objects\items\devices\taperecorder.dm Lines: 28?, 97, 117, 142 Total Colons: 4 +..code\game\objects\items\devices\transfer_valve.dm Lines: 69?, 102 Total Colons: 6 +..code\game\objects\items\devices\PDA\cart.dm Lines: 241, 245, 275, 292?, 293?, 294, 348?, 424, 435, 473?, 499?, 533?, 546?, 557?, 585, 594, 601, 605, 606, 609, 610, 611, 612, 631, 642?, 649?, 702?, 703?, 705?, 706?, 707?, 708?, 709?, 711, 712, 713, 716, 717, 718 Total Colons: 44 +..code\game\objects\items\devices\PDA\PDA.dm Lines: 298?, 299?, 330?, 356?, 358?, 360?, 364?, 378?, 382?, 383?, 388, 390, 392, 618, 619, 631, 632, 692, 693, 918, 1010?, 1036, 1039, 1131?, 1143? Total Colons: 25 +..code\game\objects\items\devices\radio\electropack.dm Lines: 129? Total Colons: 1 +..code\game\objects\items\devices\radio\radio.dm Lines: 136?, 137, 137?, 138, 138?, 139, 140, 141, 143, 144, 146, 147?, 148, 148?, 149, 150, 151, 153, 154, 155 Total Colons: 22 +..code\game\objects\items\robot\robot_parts.dm Lines: 137, 143, 150, 258?, 259?, 261?, 262?, 263?, 264? Total Colons: 11 +..code\game\objects\items\robot\robot_upgrades.dm Lines: 250? Total Colons: 1 +..code\game\objects\items\stacks\sheets\glass.dm Lines: 303? Total Colons: 1 +..code\game\objects\items\weapons\AI_modules.dm Lines: 37?, 72?, 73?, 74? Total Colons: 4 +..code\game\objects\items\weapons\cards_ids.dm Lines: 115?, 118?, 148? Total Colons: 6 +..code\game\objects\items\weapons\cigs_lighters.dm Lines: 479?, 496? Total Colons: 2 +..code\game\objects\items\weapons\cosmetics.dm Lines: 36?, 54? Total Colons: 2 +..code\game\objects\items\weapons\defib.dm Lines: 470?, 485?, 487?, 489?, 491?, 508?, 527?, 530? Total Colons: 8 +..code\game\objects\items\weapons\explosives.dm Lines: 57? Total Colons: 1 +..code\game\objects\items\weapons\extinguisher.dm Lines: 45?, 46? Total Colons: 2 +..code\game\objects\items\weapons\flamethrower.dm Lines: 90?, 128? Total Colons: 2 +..code\game\objects\items\weapons\handcuffs.dm Lines: 208? Total Colons: 1 +..code\game\objects\items\weapons\RCD.dm Lines: 500, 505 Total Colons: 4 +..code\game\objects\items\weapons\singularityhammer.dm Lines: 42 Total Colons: 1 +..code\game\objects\items\weapons\stunbaton.dm Lines: 94? Total Colons: 1 +..code\game\objects\items\weapons\grenades\chem_grenade.dm Lines: 60? Total Colons: 1 +..code\game\objects\items\weapons\grenades\grenade.dm Lines: 49? Total Colons: 1 +..code\game\objects\items\weapons\implants\implantchair.dm Lines: 46?, 47?, 49? Total Colons: 5 +..code\game\objects\items\weapons\implants\implantpad.dm Lines: 56 Total Colons: 1 +..code\game\objects\items\weapons\storage\book.dm Lines: 180 Total Colons: 1 +..code\game\objects\items\weapons\storage\fancy.dm Lines: 39? Total Colons: 1 +..code\game\objects\items\weapons\storage\secure.dm Lines: 32?, 39?, 84? Total Colons: 3 +..code\game\objects\items\weapons\storage\storage.dm Lines: 177? Total Colons: 1 +..code\game\objects\items\weapons\tanks\jetpack.dm Lines: 26?, 44?, 151? Total Colons: 3 +..code\game\objects\items\weapons\tanks\tanks.dm Lines: 121?, 122? Total Colons: 2 +..code\game\objects\items\weapons\tanks\watertank.dm Lines: 177?, 178? Total Colons: 2 +..code\game\objects\structures\ai_core.dm Lines: 212?, 213? Total Colons: 2 +..code\game\objects\structures\displaycase.dm Lines: 119?, 128?, 130? Total Colons: 3 +..code\game\objects\structures\fireaxe.dm Lines: 129? Total Colons: 1 +..code\game\objects\structures\grille.dm Lines: 148?, 149? Total Colons: 2 +..code\game\objects\structures\musician.dm Lines: 50?, 130?, 132? Total Colons: 3 +..code\game\objects\structures\safe.dm Lines: 78?, 98?, 104?, 188? Total Colons: 4 +..code\game\objects\structures\tank_dispenser.dm Lines: 43?, 44? Total Colons: 2 +..code\game\objects\structures\watercloset.dm Lines: 51?, 54? Total Colons: 3 +..code\game\objects\structures\windoor_assembly.dm Lines: 50? Total Colons: 1 +..code\game\objects\structures\window.dm Lines: 197?, 199?, 201?, 206?, 207?, 211?, 215?, 218?, 222?, 223?, 425? Total Colons: 11 +..code\game\objects\structures\beds_chairs\bed.dm Lines: 129? Total Colons: 1 +..code\game\objects\structures\crates_lockers\closets.dm Lines: 66?, 234?, 241?, 243?, 392? Total Colons: 6 +..code\game\objects\structures\transit_tubes\station.dm Lines: 130? Total Colons: 1 +..code\game\objects\structures\transit_tubes\transit_tube_construction.dm Lines: 41?, 43? Total Colons: 2 +..code\game\turfs\turf.dm Lines: 137, 248?, 250? Total Colons: 4 +..code\game\turfs\space\space.dm Lines: 114?, 125? Total Colons: 2 +..code\game\verbs\ooc.dm Lines: 44?, 53?, 55?, 57?, 69? Total Colons: 6 +..code\LINDA\LINDA_turf_tile.dm Lines: 458?, 463? Total Colons: 2 +..code\modules\admin\admin.dm Lines: 30?, 62?, 63?, 64?, 65?, 66?, 67?, 122, 129, 141, 192?, 205?, 212?, 246, 262?, 277?, 288?, 292, 293?, 300?, 301?, 306, 334?, 352, 415?, 442?, 550?, 551?, 676?, 677?, 696? Total Colons: 35 +..code\modules\admin\admin_verbs.dm Lines: 441?, 442? Total Colons: 2 +..code\modules\admin\create_poll.dm Lines: 25?, 26?, 94?, 95? Total Colons: 4 +..code\modules\admin\newbanjob.dm Lines: 216? Total Colons: 2 +..code\modules\admin\player_panel.dm Lines: 111?, 113?, 119?, 123?, 129?, 155?, 160?, 166?, 181?, 186?, 195?, 207?, 219?, 228?, 240?, 249?, 258?, 269?, 284?, 297? Total Colons: 36 +..code\modules\admin\sql_notes.dm Lines: 153 Total Colons: 2 +..code\modules\admin\topic.dm Lines: 299?, 310?, 341?, 348?, 349?, 447?, 986?, 1559?, 1561?, 1589?, 1796?, 1797?, 1798?, 1800?, 1982?, 2093?, 2096?, 2101?, 2102? Total Colons: 21 +..code\modules\admin\DB ban\functions.dm Lines: 93, 94, 95, 127?, 131?, 304, 305, 306, 441? Total Colons: 20 +..code\modules\admin\verbs\adminjump.dm Lines: 91, 127 Total Colons: 2 +..code\modules\admin\verbs\deadsay.dm Lines: 24? Total Colons: 1 +..code\modules\admin\verbs\debug.dm Lines: 82?, 86?, 89?, 112?, 116?, 289, 306, 498, 501 Total Colons: 9 +..code\modules\admin\verbs\diagnostics.dm Lines: 15?, 81 Total Colons: 5 +..code\modules\admin\verbs\massmodvar.dm Lines: 132 Total Colons: 1 +..code\modules\admin\verbs\modifyvariables.dm Lines: 542 Total Colons: 1 +..code\modules\admin\verbs\one_click_antag.dm Lines: 333?, 478?, 481?, 484?, 487?, 490?, 493?, 496?, 517? Total Colons: 9 +..code\modules\admin\verbs\panicbunker.dm Lines: 10?, 11? Total Colons: 2 +..code\modules\admin\verbs\randomverbs.dm Lines: 38?, 114?, 116?, 117?, 189?, 212?, 409?, 448?, 721?, 722?, 799, 804, 810, 816, 822, 828, 834, 840, 846, 852, 858, 864, 870, 876, 882, 888, 894, 900 Total Colons: 28 +..code\modules\assembly\bomb.dm Lines: 44 Total Colons: 1 +..code\modules\assembly\doorcontrol.dm Lines: 62? Total Colons: 1 +..code\modules\assembly\health.dm Lines: 77? Total Colons: 1 +..code\modules\assembly\infrared.dm Lines: 24?, 110? Total Colons: 3 +..code\modules\assembly\mousetrap.dm Lines: 30?, 127? Total Colons: 2 +..code\modules\assembly\proximity.dm Lines: 26?, 109?, 110? Total Colons: 3 +..code\modules\assembly\signaler.dm Lines: 142? Total Colons: 1 +..code\modules\assembly\timer.dm Lines: 75? Total Colons: 1 +..code\modules\assembly\voice.dm Lines: 32? Total Colons: 1 +..code\modules\awaymissions\maploader\reader.dm Lines: 262? Total Colons: 1 +..code\modules\awaymissions\maploader\swapmaps.dm Lines: 152, 153, 154, 161?, 162?, 163?, 343?, 356?, 362?, 385? Total Colons: 19 +..code\modules\client\client procs.dm Lines: 36, 36?, 177? Total Colons: 3 +..code\modules\client\preferences.dm Lines: 129?, 130?, 151?, 161?, 166?, 186?, 335?, 336?, 337?, 338?, 339?, 340?, 341?, 342?, 343?, 349?, 350?, 353?, 356?, 397?, 523? Total Colons: 21 +..code\modules\client\preferences_toggles.dm Lines: 7?, 16?, 25?, 34?, 43?, 54?, 64?, 74?, 83?, 92?, 113?, 122?, 172?, 226?, 235?, 259? Total Colons: 16 +..code\modules\clothing\clothing.dm Lines: 357? Total Colons: 1 +..code\modules\clothing\glasses\engine_goggles.dm Lines: 83?, 108? Total Colons: 2 +..code\modules\clothing\head\helmet.dm Lines: 240? Total Colons: 1 +..code\modules\clothing\head\soft_caps.dm Lines: 45? Total Colons: 1 +..code\modules\clothing\masks\gasmask.dm Lines: 66? Total Colons: 1 +..code\modules\clothing\masks\miscellaneous.dm Lines: 56? Total Colons: 1 +..code\modules\clothing\shoes\bananashoes.dm Lines: 59?, 65? Total Colons: 3 +..code\modules\clothing\shoes\magboots.dm Lines: 32?, 41? Total Colons: 2 +..code\modules\clothing\spacesuits\chronosuit.dm Lines: 146, 151, 152, 153, 158, 172, 175, 176, 177 Total Colons: 9 +..code\modules\crafting\table.dm Lines: 15, 59, 113, 126, 143, 167 Total Colons: 6 +..code\modules\detectivework\detective_work.dm Lines: 16? Total Colons: 1 +..code\modules\events\event.dm Lines: 37 Total Colons: 2 +..code\modules\events\shuttle_loan.dm Lines: 195, 196 Total Colons: 2 +..code\modules\flufftext\Hallucination.dm Lines: 47?, 49?, 51? Total Colons: 3 +..code\modules\food&drinks\food\customizables.dm Lines: 37? Total Colons: 1 +..code\modules\food&drinks\kitchen machinery\gibber.dm Lines: 165? Total Colons: 1 +..code\modules\food&drinks\kitchen machinery\monkeyrecycler.dm Lines: 72? Total Colons: 1 +..code\modules\food&drinks\kitchen machinery\processor.dm Lines: 198? Total Colons: 1 +..code\modules\games\cards.dm Lines: 177?, 211?, 225? Total Colons: 3 +..code\modules\holiday\easter.dm Lines: 77? Total Colons: 1 +..code\modules\html_interface\html_interface.dm Lines: 292? Total Colons: 1 +..code\modules\hydroponics\grown.dm Lines: 704 Total Colons: 1 +..code\modules\hydroponics\growninedible.dm Lines: 71, 194? Total Colons: 2 +..code\modules\hydroponics\hydroponics.dm Lines: 642?, 836? Total Colons: 2 +..code\modules\hydroponics\seeds.dm Lines: 1377?, 1378? Total Colons: 2 +..code\modules\library\lib_items.dm Lines: 186? Total Colons: 1 +..code\modules\library\lib_machines.dm Lines: 519 Total Colons: 1 +..code\modules\lighting\lighting_system.dm Lines: 254 Total Colons: 1 +..code\modules\mob\inventory.dm Lines: 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170 Total Colons: 22 +..code\modules\mob\login.dm Lines: 6? Total Colons: 1 +..code\modules\mob\mob.dm Lines: 329?, 599?, 690, 756? Total Colons: 5 +..code\modules\mob\mob_helpers.dm Lines: 485? Total Colons: 2 +..code\modules\mob\transform_procs.dm Lines: 295 Total Colons: 1 +..code\modules\mob\dead\observer\observer.dm Lines: 285? Total Colons: 1 +..code\modules\mob\living\living.dm Lines: 181?, 359?, 402 Total Colons: 3 +..code\modules\mob\living\say.dm Lines: 116? Total Colons: 1 +..code\modules\mob\living\carbon\carbon.dm Lines: 114, 286?, 288?, 291?, 310?, 311?, 322?, 323?, 566? Total Colons: 12 +..code\modules\mob\living\carbon\life.dm Lines: 468? Total Colons: 1 +..code\modules\mob\living\carbon\alien\humanoid\emote.dm Lines: 60? Total Colons: 1 +..code\modules\mob\living\carbon\alien\humanoid\humanoid.dm Lines: 93? Total Colons: 2 +..code\modules\mob\living\carbon\alien\humanoid\caste\hunter.dm Lines: 43?, 46? Total Colons: 2 +..code\modules\mob\living\carbon\alien\larva\emote.dm Lines: 79? Total Colons: 1 +..code\modules\mob\living\carbon\brain\MMI.dm Lines: 131?, 132? Total Colons: 2 +..code\modules\mob\living\carbon\human\examine.dm Lines: 48?, 55?, 62?, 69?, 76?, 83?, 90?, 97?, 115?, 122?, 129?, 136? Total Colons: 12 +..code\modules\mob\living\carbon\human\human.dm Lines: 87?, 96?, 192?, 194?, 196?, 200?, 205?, 210?, 215?, 219?, 221?, 223?, 231?, 236?, 241?, 248?, 250?, 252?, 253?, 254?, 324?, 325?, 341?, 563?, 734? Total Colons: 26 +..code\modules\mob\living\carbon\human\human_attackalien.dm Lines: 10? Total Colons: 1 +..code\modules\mob\living\carbon\human\inventory.dm Lines: 223?, 234?, 238?, 246?, 250?, 254? Total Colons: 6 +..code\modules\mob\living\carbon\human\species.dm Lines: 115?, 117?, 126?, 329?, 673? Total Colons: 5 +..code\modules\mob\living\carbon\human\update_icons.dm Lines: 112?, 186?, 479? Total Colons: 4 +..code\modules\mob\living\carbon\human\whisper.dm Lines: 43? Total Colons: 1 +..code\modules\mob\living\carbon\monkey\emote.dm Lines: 60? Total Colons: 1 +..code\modules\mob\living\silicon\silicon.dm Lines: 129, 324? Total Colons: 2 +..code\modules\mob\living\silicon\ai\ai.dm Lines: 255?, 280?, 281?, 341?, 530?, 532?, 585?, 593? Total Colons: 9 +..code\modules\mob\living\silicon\ai\life.dm Lines: 73, 75, 78, 80, 96, 97, 121, 145, 150, 166 Total Colons: 10 +..code\modules\mob\living\silicon\ai\say.dm Lines: 15? Total Colons: 2 +..code\modules\mob\living\silicon\ai\freelook\eye.dm Lines: 106? Total Colons: 1 +..code\modules\mob\living\silicon\pai\pai.dm Lines: 161, 181 Total Colons: 2 +..code\modules\mob\living\silicon\pai\software.dm Lines: 220?, 277?, 279?, 281?, 317?, 410?, 415?, 422?, 434, 434?, 435, 436, 436?, 437, 437?, 438, 438?, 439, 439?, 440, 442, 443, 444, 445, 446, 550, 557? Total Colons: 29 +..code\modules\mob\living\silicon\robot\examine.dm Lines: 29?, 31? Total Colons: 2 +..code\modules\mob\living\silicon\robot\inventory.dm Lines: 54, 62, 70 Total Colons: 3 +..code\modules\mob\living\silicon\robot\laws.dm Lines: 47? Total Colons: 1 +..code\modules\mob\living\silicon\robot\life.dm Lines: 173, 175, 177 Total Colons: 3 +..code\modules\mob\living\silicon\robot\robot.dm Lines: 259?, 393?, 492?, 545?, 806?, 1034? Total Colons: 8 +..code\modules\mob\living\simple_animal\parrot.dm Lines: 412?, 414? Total Colons: 2 +..code\modules\mob\living\simple_animal\worm.dm Lines: 74? Total Colons: 1 +..code\modules\mob\living\simple_animal\friendly\drone\interaction.dm Lines: 103? Total Colons: 2 +..code\modules\mob\living\simple_animal\friendly\drone\verbs.dm Lines: 25? Total Colons: 1 +..code\modules\mob\living\simple_animal\friendly\drone\_drone.dm Lines: 123?, 130?, 137?, 144? Total Colons: 4 +..code\modules\mob\living\simple_animal\hostile\hostile.dm Lines: 255, 256 Total Colons: 4 +..code\modules\mob\living\simple_animal\morph\morph.dm Lines: 183? Total Colons: 1 +..code\modules\mob\living\simple_animal\slime\death.dm Lines: 15? Total Colons: 1 +..code\modules\mob\living\simple_animal\slime\life.dm Lines: 190? Total Colons: 1 +..code\modules\mob\living\simple_animal\slime\powers.dm Lines: 75? Total Colons: 1 +..code\modules\mob\living\simple_animal\slime\slime.dm Lines: 79?, 80?, 90? Total Colons: 3 +..code\modules\mob\new_player\new_player.dm Lines: 27, 29, 44?, 69?, 73? Total Colons: 5 +..code\modules\mob\new_player\poll.dm Lines: 12?, 29?, 478? Total Colons: 3 +..code\modules\nano\JSON Reader.dm Lines: 71 Total Colons: 2 +..code\modules\nano\nanoui.dm Lines: 304? Total Colons: 1 +..code\modules\ninja\admin_ninja_verbs.dm Lines: 30, 32 Total Colons: 2 +..code\modules\ninja\ninja_event.dm Lines: 141? Total Colons: 1 +..code\modules\ninja\suit\gloves.dm Lines: 80?, 87? Total Colons: 2 +..code\modules\ninja\suit\mask.dm Lines: 116?, 129?, 132?, 139? Total Colons: 4 +..code\modules\ninja\suit\ninjaDrainAct.dm Lines: 128?, 159? Total Colons: 2 +..code\modules\ninja\suit\suit.dm Lines: 75?, 79?, 116?, 172? Total Colons: 4 +..code\modules\ninja\suit\suit_attackby.dm Lines: 10?, 12?, 19? Total Colons: 3 +..code\modules\ninja\suit\suit_initialisation.dm Lines: 84 Total Colons: 1 +..code\modules\ninja\suit\n_suit_verbs\energy_net_nets.dm Lines: 64, 65, 112?, 131 Total Colons: 4 +..code\modules\ninja\suit\n_suit_verbs\ninja_stars.dm Lines: 12? Total Colons: 1 +..code\modules\paperwork\filingcabinet.dm Lines: 57? Total Colons: 1 +..code\modules\paperwork\folders.dm Lines: 43? Total Colons: 1 +..code\modules\paperwork\paper.dm Lines: 86? Total Colons: 1 +..code\modules\paperwork\paperbin.dm Lines: 97? Total Colons: 1 +..code\modules\paperwork\photocopier.dm Lines: 123?, 264?, 268? Total Colons: 5 +..code\modules\paperwork\photography.dm Lines: 66?, 67?, 79?, 183, 184, 189, 190, 217, 217?, 219, 219? Total Colons: 14 +..code\modules\power\apc.dm Lines: 128?, 129?, 133, 148, 199?, 201?, 202?, 262?, 454?, 469?, 474, 647, 647?, 664?, 671?, 715?, 838, 839, 840, 1184, 1221? Total Colons: 25 +..code\modules\power\cable.dm Lines: 108?, 293?, 564? Total Colons: 3 +..code\modules\power\generator.dm Lines: 117? Total Colons: 2 +..code\modules\power\gravitygenerator.dm Lines: 230?, 250?, 258?, 264?, 279?, 280?, 287? Total Colons: 7 +..code\modules\power\lighting.dm Lines: 261?, 440? Total Colons: 2 +..code\modules\power\port_gen.dm Lines: 89?, 273? Total Colons: 2 +..code\modules\power\smes.dm Lines: 57, 419? Total Colons: 4 +..code\modules\power\solar.dm Lines: 388?, 391? Total Colons: 2 +..code\modules\power\turbine.dm Lines: 308?, 365?, 367?, 369? Total Colons: 5 +..code\modules\power\antimatter\control.dm Lines: 267? Total Colons: 1 +..code\modules\power\antimatter\shielding.dm Lines: 119 Total Colons: 1 +..code\modules\power\singularity\collector.dm Lines: 44?, 45?, 46?, 98? Total Colons: 6 +..code\modules\power\singularity\emitter.dm Lines: 252? Total Colons: 1 +..code\modules\power\singularity\singularity.dm Lines: 117?, 236? Total Colons: 2 +..code\modules\power\singularity\particle_accelerator\particle.dm Lines: 42 Total Colons: 1 +..code\modules\power\singularity\particle_accelerator\particle_accelerator.dm Lines: 364 Total Colons: 1 +..code\modules\power\singularity\particle_accelerator\particle_control.dm Lines: 215?, 216?, 217? Total Colons: 6 +..code\modules\procedural mapping\mapGenerator.dm Lines: 153? Total Colons: 1 +..code\modules\projectiles\ammunition.dm Lines: 29?, 30?, 155? Total Colons: 3 +..code\modules\projectiles\gun.dm Lines: 108?, 110?, 310? Total Colons: 3 +..code\modules\projectiles\ammunition\magazines.dm Lines: 173? Total Colons: 1 +..code\modules\projectiles\guns\magic\wand.dm Lines: 25? Total Colons: 1 +..code\modules\projectiles\guns\projectile\automatic.dm Lines: 28?, 109?, 127?, 160?, 165?, 250? Total Colons: 11 +..code\modules\projectiles\guns\projectile\launchers.dm Lines: 49? Total Colons: 1 +..code\modules\projectiles\guns\projectile\pistol.dm Lines: 15?, 36? Total Colons: 3 +..code\modules\projectiles\guns\projectile\shotgun.dm Lines: 30?, 63?, 114?, 282? Total Colons: 4 +..code\modules\projectiles\guns\projectile\toy.dm Lines: 33? Total Colons: 1 +..code\modules\reagents\Chemistry-Machinery.dm Lines: 85?, 89, 90, 97, 330?, 350?, 367?, 368?, 512?, 551?, 665?, 705?, 708?, 788, 867?, 910?, 1248?, 1286?, 1508?, 1510?, 1511?, 1512? Total Colons: 24 +..code\modules\reagents\Chemistry-Recipes.dm Lines: 46? Total Colons: 1 +..code\modules\reagents\reagent_containers.dm Lines: 64? Total Colons: 1 +..code\modules\reagents\Chemistry-Reagents\Consumable-Reagents\Food-Reagents.dm Lines: 331 Total Colons: 2 +..code\modules\reagents\reagent_containers\spray.dm Lines: 97?, 98?, 99?, 177? Total Colons: 4 +..code\modules\recycling\disposal-construction.dm Lines: 86?, 91? Total Colons: 2 +..code\modules\recycling\disposal-structures.dm Lines: 240? Total Colons: 1 +..code\modules\recycling\disposal-unit.dm Lines: 82? Total Colons: 1 +..code\modules\recycling\sortingmachinery.dm Lines: 217? Total Colons: 1 +..code\modules\research\experimentor.dm Lines: 253? Total Colons: 1 +..code\modules\research\message_server.dm Lines: 130? Total Colons: 2 +..code\modules\shuttle\shuttle.dm Lines: 266?, 270?, 515?, 522?, 547?, 564? Total Colons: 8 +..code\modules\surgery\organs\augments_internal.dm Lines: 33?, 76?, 77?, 94? Total Colons: 4 +..code\modules\telesci\telesci_computer.dm Lines: 46?, 122?, 269? Total Colons: 4 +..code\modules\tooltip\tooltip.dm Lines: 90? Total Colons: 1 +..code\modules\vehicles\VehicleBase.dm Lines: 101?, 103?, 105?, 107? Total Colons: 4 +..code\modules\vehicles\VehicleClickInteractions.dm Lines: 128?, 157?, 186?, 214?, 252?, 254?, 257?, 259?, 262?, 264?, 267?, 269?, 272?, 274? Total Colons: 14 +..code\modules\vehicles\VehicleDefense.dm Lines: 31? Total Colons: 1 +..code\orphaned procs\dbcore.dm Lines: 79? Total Colons: 5 +..code\orphaned procs\statistics.dm Lines: 63, 64, 98, 99 Total Colons: 4 +..code\_onclick\other_mobs.dm Lines: 89 Total Colons: 1 +..code\_onclick\hud\action.dm Lines: 184? Total Colons: 1 +..code\_onclick\hud\alien.dm Lines: 90? Total Colons: 1 +..code\_onclick\hud\alien_larva.dm Lines: 16? Total Colons: 1 +..code\_onclick\hud\human.dm Lines: 59? Total Colons: 1 +..code\_onclick\hud\monkey.dm Lines: 17? Total Colons: 1 +..code\__DATASTRUCTURES\priority_queue.dm Lines: 33? Total Colons: 1 +..code\__DATASTRUCTURES\stacks.dm Lines: 29? Total Colons: 1 +..code\__HELPERS\game.dm Lines: 216? Total Colons: 1 +..code\__HELPERS\icons.dm Lines: 216?, 233?, 386?, 389?, 392?, 425?, 439?, 456?, 526?, 557?, 559?, 601?, 607?, 635?, 636?, 637?, 638?, 715, 752, 757, 762, 763, 764, 765, 774, 786, 787, 809?, 828?, 839? Total Colons: 38 +..code\__HELPERS\icon_smoothing.dm Lines: 176?, 178? Total Colons: 2 +..code\__HELPERS\lists.dm Lines: 201?, 206?, 214? Total Colons: 3 +..code\__HELPERS\maths.dm Lines: 13?, 18?, 35?, 39? Total Colons: 4 +..code\__HELPERS\mobs.dm Lines: 137?, 139?, 140? Total Colons: 11 +..code\__HELPERS\names.dm Lines: 63?, 174? Total Colons: 3 +..code\__HELPERS\sanitize_values.dm Lines: 34? Total Colons: 1 +..code\__HELPERS\text.dm Lines: 157?, 350? Total Colons: 2 +..code\__HELPERS\type2type.dm Lines: 68?, 143?, 381? Total Colons: 5 +..code\__HELPERS\unsorted.dm Lines: 41?, 573, 904, 991? Total Colons: 4 +..code\__HELPERS\sorts\__main.dm Lines: 2?, 57?, 391, 491, 585? Total Colons: 5 +433/1564 files have colons in them \ No newline at end of file diff --git a/tools/ColonCatcher/ColonCatcher.py b/tools/ColonCatcher/ColonCatcher.py new file mode 100644 index 00000000000..e979e0da003 --- /dev/null +++ b/tools/ColonCatcher/ColonCatcher.py @@ -0,0 +1,162 @@ + +# Colon Locater and Reporter, by RemieRichards V1.0 - 25/10/15 + +# Locates the byond operator ":", which is largely frowned upon due to the fact it ignores any type safety. +# This tool produces a .txt of "filenames line,line?,line totalcolons" (where line? represents a colon in a ternary operation) from all +# .dm files in the /code directory of an SS13 codebase, but can work on any Byond project if you modify scan_dir and real_dir +# the .txt take's todays date in reverse order and adds -colon_operator_log to the end, eg: "2015/10/25-colon_operator_log.txt" + +import sys +import os +from datetime import date + + +#Climbs up from /tools/ColonCatcher and along to ../code +scan_dir = "code" #used later to truncate log file paths +real_dir = os.path.abspath("../../"+scan_dir) + + +#Scan a directory, scanning any dm files it finds +def colon_scan_dir(scan_dir): + if os.path.exists(scan_dir): + if os.path.isdir(scan_dir): + + output_str = "" + + files_scanned = 0 + files_with_colons = 0 + for root, dirs, files in os.walk(scan_dir): + for f in files: + print str(f) + scan_result = scan_dm_file(os.path.join(root, f)) + files_scanned += 1 + if scan_result: + output_str += scan_result+"\n" + files_with_colons += 1 + output_str += str(files_with_colons) + "/" + str(files_scanned) + " files have colons in them" + + todays_file = str(date.today())+"-colon_operator_log.txt" + output_file = open(todays_file, "w") #w so it overrides existing files for today, there should only really be one file per day + output_file.write(output_str) + + + +#Scan one file, returning a string as a "report" or if there are no colons, False +def scan_dm_file(_file): + + if not _file.endswith(".dm"): + return False + + with open(_file, "r") as dm_file: + characters = dm_file.read() + + line_num = 1 + colon_count = 0 + last_char = "" + + in_embed_statement = 0 # [ ... ] num due to embeds in embeds + in_multiline_comment = 0 #/* ... */ num due to /* /* */ */ + in_singleline_comment = False #// ... \n + in_string = False # " ... " + ternary_on_line = False #If there's a ? anywhere on the line, used to report "false"-positives + + lines_with_colons = [] + + for char in characters: + #Line info + if char == "\n" or char == "\r": + if not in_string: + ternary_on_line = False #Stop any old ternary operation + line_num += 1 + in_embed_statement = 0 + + #Not in a comment + if (not in_singleline_comment) and (in_multiline_comment == 0): + #Not in a string + if not in_string: + if last_char == "/": + if char == "/": + in_singleline_comment = True + if char == "*": + in_multiline_comment += 1 + if char == "\"": + in_string = True + + #In a string + else: + if char == "\"": #Only " ends a string, as byond supports multiline strings + if last_char != "\\": #make sure it's a real " not an escaped one (\") + in_string = False + + #It's not an embedded statment if it's not in a string + if char == "[": + in_embed_statement += 1 + if char == "]": + in_embed_statement -= 1 + in_embed_statement = max(in_embed_statement,0) + + #ternary statements, True when in_embed_statement+in_string OR when not in_string + if char == "?": + if in_string: + if in_embed_statement != 0: + ternary_on_line = True + else: + ternary_on_line = True + + #A Colon! + #If we're in a string, but not embedded: Ok, it's just rawtext + #If we're in a string, and embedded but NOT in a ternary operation: Bad, guaranteed to be a : used to avoid typechecks + #If we're in a string, and embedded AND in a ternary operation: Potentially Bad, this could be a : used to avoid typechecks (bad) or the middle : of the ternary operation (generally ok) + + if char == ":": + if not in_string: + colon_count += 1 + data = str(line_num) + if ternary_on_line: + data += "?" + if not data in lines_with_colons: #only add the line twice if it's like: 76, 76? (eg: a "bad" colon and a ternary colon) + lines_with_colons.append(data) + else: + if in_embed_statement != 0: + colon_count += 1 + data = str(line_num) + if ternary_on_line: + data += "?" + if not data in lines_with_colons: + lines_with_colons.append(data) + + #In a comment + else: + if char == "/": + if last_char == "*": + in_multiline_comment -= 1 + in_multiline_comment = max(in_multiline_comment,0) + + if char == "\n" or char == "\r": + in_singleline_comment = False + + + if char != "": #Spaces aren't useful to us + last_char = char + + + if colon_count: + file_report = ".."+scan_dir+str(_file).split(scan_dir)[1]+" " #crop it down to ..\code\DIR\FILE.dm, everything else is developer specific + + first = True + for line in lines_with_colons: + if first: + first = False + file_report += "Lines: "+line + else: + file_report += ", "+line + + file_report += " Total Colons: "+str(colon_count) + return file_report + else: + return False + + + +colon_scan_dir(real_dir) +print "Done!" From 3e6f641ec3a182c2198e5fa35b3bcda66773cde8 Mon Sep 17 00:00:00 2001 From: Vincent Date: Sat, 24 Oct 2015 19:46:44 -0400 Subject: [PATCH 078/418] Should fix loading from jobs.txt The jobs controller's list of occupations was reset during roundstart which completely undid that whole load from file thing. It also would have undone any admin edits done while sitting in the lobby. Also fixed a couple instances where people thought that lists get copied with the = operator instead of passing by reference. --- code/controllers/subsystem/jobs.dm | 5 ++--- code/game/gamemodes/abduction/abduction.dm | 2 +- code/modules/mob/interactive.dm | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm index 743d799374f..e225242826f 100644 --- a/code/controllers/subsystem/jobs.dm +++ b/code/controllers/subsystem/jobs.dm @@ -202,7 +202,6 @@ var/datum/subsystem/job/SSjob /datum/subsystem/job/proc/DivideOccupations() //Setup new player list and get the jobs list Debug("Running DO") - SetupOccupations() //Holder for Triumvirate is stored in the ticker, this just processes it if(ticker) @@ -397,8 +396,8 @@ var/datum/subsystem/job/SSjob for(var/datum/job/J in occupations) var/regex = "[J.title]=(-1|\\d+),(-1|\\d+)" var/datum/regex/results = regex_find(jobstext, regex) - J.total_positions = results.str(2) - J.spawn_positions = results.str(3) + J.total_positions = text2num(results.str(2)) + J.spawn_positions = text2num(results.str(3)) /datum/subsystem/job/proc/HandleFeedbackGathering() for(var/datum/job/job in occupations) diff --git a/code/game/gamemodes/abduction/abduction.dm b/code/game/gamemodes/abduction/abduction.dm index 1151de4f55f..4321082c0aa 100644 --- a/code/game/gamemodes/abduction/abduction.dm +++ b/code/game/gamemodes/abduction/abduction.dm @@ -357,7 +357,7 @@ explanation_text = "Capture" /datum/objective/abductee/capture/New() - var/list/jobs = SSjob.occupations + var/list/jobs = SSjob.occupations.Copy() for(var/datum/job/J in jobs) if(J.current_positions < 1) jobs -= J diff --git a/code/modules/mob/interactive.dm b/code/modules/mob/interactive.dm index 51cb52ac775..62f825ea056 100644 --- a/code/modules/mob/interactive.dm +++ b/code/modules/mob/interactive.dm @@ -88,7 +88,7 @@ //this is here because this has no client/prefs/brain whatever. age = rand(AGE_MIN,AGE_MAX) //job handling - var/list/jobs = SSjob.occupations + var/list/jobs = SSjob.occupations.Copy() for(var/datum/job/J in jobs) if(J.title == "Cyborg" || J.title == "AI" || J.title == "Chaplain" || J.title == "Mime") jobs -= J From de68ad10852bd277a18d719a424d4bc8e7fd333c Mon Sep 17 00:00:00 2001 From: Vincent Date: Sat, 24 Oct 2015 21:05:06 -0400 Subject: [PATCH 079/418] Security officer scaling is altered. Previously, security officer scaling was between 5-12 no matter what was configured. Now, security officers will have (spawn positions)-12 spawn and total position slots. This can be set in jobs.txt or admin set through the jobs controller while in the lobby. This is only used when officer scaling is set. Also, the number of extra security equipment closets spawned is relative to the number of total job positions configured, with or without officer scaling. Previously if officer scaling was not set, no additional closets could spawn. Adds myself to admins.txt after like 3 years of contributing --- code/controllers/subsystem/jobs.dm | 16 +++++++++++----- config/admins.txt | 3 ++- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm index e225242826f..d05a2fc2418 100644 --- a/code/controllers/subsystem/jobs.dm +++ b/code/controllers/subsystem/jobs.dm @@ -373,16 +373,22 @@ var/datum/subsystem/job/SSjob /datum/subsystem/job/proc/setup_officer_positions() - var/officer_positions = 5 //Number of open security officer positions at round start + var/datum/job/J = SSjob.GetJob("Security Officer") + if(!J) + throw EXCEPTION("setup_officer_positions(): Security officer job is missing") if(config.security_scaling_coeff > 0) - officer_positions = min(12, max(5, round(unassigned.len/config.security_scaling_coeff))) //Scale between 5 and 12 officers - var/datum/job/J = SSjob.GetJob("Security Officer") - if(J || J.spawn_positions > 0) + if(J.spawn_positions > 0) + var/officer_positions = min(12, max(J.spawn_positions, round(unassigned.len/config.security_scaling_coeff))) //Scale between configured minimum and 12 officers Debug("Setting open security officer positions to [officer_positions]") J.total_positions = officer_positions J.spawn_positions = officer_positions - for(var/i=officer_positions-5, i>0, i--) //Spawn some extra eqipment lockers if we have more than 5 officers + + //Spawn some extra eqipment lockers if we have more than 5 officers + var/equip_needed = J.total_positions + if(equip_needed < 0) // -1: infinite available slots + equip_needed = 12 + for(var/i=equip_needed-5, i>0, i--) if(secequipment.len) var/spawnloc = secequipment[1] new /obj/structure/closet/secure_closet/security(spawnloc) diff --git a/config/admins.txt b/config/admins.txt index 0dcfdda1cb4..43f14598caa 100644 --- a/config/admins.txt +++ b/config/admins.txt @@ -97,4 +97,5 @@ Anonus Tanir = Game Master FoxPMcCloud = Game Master Xhuis = Game Master Astralenigma = Game Master -Tokiko1 = Game Master \ No newline at end of file +Tokiko1 = Game Master +SuperSayu = Game Master \ No newline at end of file From a41682ab4cb3d77e8f2c99976996c0353743b429 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Sat, 24 Oct 2015 20:11:51 -0500 Subject: [PATCH 080/418] Fixes spam --- code/modules/mob/living/carbon/human/species_types.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index ba1c06d5145..88d23b301e3 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -434,9 +434,9 @@ var/global/image/plasmaman_on_fire = image("icon"='icons/mob/OnFire.dmi', "icon_ var/total_moles = environment.total_moles() if(total_moles) if((environment.oxygen /total_moles) >= 0.01) - if(!H.on_fire) - H.visible_message("[H]'s body reacts with the atmosphere and bursts into flames!","Your body reacts with the atmosphere and bursts into flame!") H.adjust_fire_stacks(0.5) + if(!H.on_fire && H.fire_stacks > 0) + H.visible_message("[H]'s body reacts with the atmosphere and bursts into flames!","Your body reacts with the atmosphere and bursts into flame!") H.IgniteMob() else if(H.fire_stacks) From e046023a212dde681e1453e633653d285e9710e2 Mon Sep 17 00:00:00 2001 From: blobbernaut Date: Sat, 24 Oct 2015 21:35:27 -0400 Subject: [PATCH 081/418] Update cloaks.dm --- code/modules/clothing/cloaks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/cloaks.dm b/code/modules/clothing/cloaks.dm index 2b3da1fc5a5..6df7fd667f5 100644 --- a/code/modules/clothing/cloaks.dm +++ b/code/modules/clothing/cloaks.dm @@ -40,7 +40,7 @@ name = "research director's cloak." desc = "Worn by Sciencia, thaumaturges and researchers of the universe. It's slightly shielded from contaminants." icon_state = "rdcloak" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 10, rad = 0) + armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 10, bio = 10, rad = 0) /obj/item/clothing/cloak/cap name = "captain's cloak" From 57eae7d70d71e535747125bd446c9761a008db2e Mon Sep 17 00:00:00 2001 From: blobbernaut Date: Sat, 24 Oct 2015 21:37:13 -0400 Subject: [PATCH 082/418] Update cloaks.dm --- code/modules/clothing/cloaks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/cloaks.dm b/code/modules/clothing/cloaks.dm index 6df7fd667f5..fcf26aa1615 100644 --- a/code/modules/clothing/cloaks.dm +++ b/code/modules/clothing/cloaks.dm @@ -18,7 +18,7 @@ name = "head of security's cloak" desc = "Worn by Securistan, ruling the station with an iron fist. It's slightly armored." icon_state = "hoscloak" - armor = list(melee = 10, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) + armor = list(melee = 10, bullet = 10, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) /obj/item/clothing/cloak/qm name = "quartermaster's cloak" From 4b4a65835208ad5e0716bdb22029353f442216bb Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Sat, 24 Oct 2015 19:14:00 -0700 Subject: [PATCH 083/418] Fixes sabr path in summon guns --- code/game/gamemodes/wizard/rightandwrong.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/wizard/rightandwrong.dm b/code/game/gamemodes/wizard/rightandwrong.dm index df515f88db8..c8acec3b497 100644 --- a/code/game/gamemodes/wizard/rightandwrong.dm +++ b/code/game/gamemodes/wizard/rightandwrong.dm @@ -78,7 +78,7 @@ var/obj/item/weapon/gun/energy/gun/nuclear/gat = new(get_turf(H)) gat.pin = new /obj/item/device/firing_pin if("sabr") - var/obj/item/weapon/gun/projectile/automatic/gat = new(get_turf(H)) + var/obj/item/weapon/gun/projectile/automatic/proto/gat = new(get_turf(H)) gat.pin = new /obj/item/device/firing_pin if("bulldog") var/obj/item/weapon/gun/projectile/automatic/shotgun/bulldog/gat = new(get_turf(H)) From 5b3215a6d7f53104ce63155f633b7c29c31fc164 Mon Sep 17 00:00:00 2001 From: Incoming Date: Sat, 24 Oct 2015 23:43:26 -0400 Subject: [PATCH 084/418] @memo incoming wow making sure you update to master sure is hard huh? --- code/game/objects/structures/plasticflaps.dm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm index 3d8e49f0d63..5d9d0bccb29 100644 --- a/code/game/objects/structures/plasticflaps.dm +++ b/code/game/objects/structures/plasticflaps.dm @@ -11,8 +11,8 @@ if(istype(A) && A.checkpass(PASSGLASS)) return prob(60) - var/obj/structure/stool/bed/B = A - if (istype(A, /obj/structure/stool/bed) && (B.buckled_mob || B.density))//if it's a bed/chair and is dense or someone is buckled, it will not pass + var/obj/structure/bed/B = A + if (istype(A, /obj/structure/bed) && (B.buckled_mob || B.density))//if it's a bed/chair and is dense or someone is buckled, it will not pass return 0 return 0 if (istype(A, /obj/structure/closet/cardboard)) @@ -28,6 +28,10 @@ return 0 return ..() +/obj/structure/plasticflaps/attackby(obj/item/weapon/W, mob/user, params) + user.changeNext_move(CLICK_CD_MELEE) + ..() + /obj/structure/plasticflaps/ex_act(severity) ..() switch(severity) @@ -55,4 +59,4 @@ if(T) if(istype(T, /turf/simulated/floor)) T.blocks_air = 0 - return ..() + return ..() \ No newline at end of file From c4af09089cd5232ab2c14ef66c43a3115280aeef Mon Sep 17 00:00:00 2001 From: Incoming5643 Date: Sat, 24 Oct 2015 23:44:22 -0400 Subject: [PATCH 085/418] no comment --- code/game/objects/structures/plasticflaps.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm index 5d9d0bccb29..2a695e236ae 100644 --- a/code/game/objects/structures/plasticflaps.dm +++ b/code/game/objects/structures/plasticflaps.dm @@ -12,7 +12,7 @@ return prob(60) var/obj/structure/bed/B = A - if (istype(A, /obj/structure/bed) && (B.buckled_mob || B.density))//if it's a bed/chair and is dense or someone is buckled, it will not pass return 0 + if (istype(A, /obj/structure/bed) && (B.buckled_mob || B.density))//if it's a bed/chair and is dense or someone is buckled, it will not pass return 0 if (istype(A, /obj/structure/closet/cardboard)) @@ -59,4 +59,4 @@ if(T) if(istype(T, /turf/simulated/floor)) T.blocks_air = 0 - return ..() \ No newline at end of file + return ..() From c2093e3709103b6478d8a2635284166c1631b9b5 Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Sun, 25 Oct 2015 01:55:04 -0300 Subject: [PATCH 086/418] Improves starlight performance Still laggy, but now quite a bit better. Fixes #8154 --- code/__HELPERS/game.dm | 7 +++++++ code/game/turfs/space/space.dm | 11 ++++------- code/modules/lighting/lighting_system.dm | 3 +-- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index a0c581966a8..2044de47268 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -437,3 +437,10 @@ new_character.key = G_found.key return new_character + +//supposedly the fastest way to do this according to https://gist.github.com/Giacom/be635398926bb463b42a +#define RANGE_TURFS(RADIUS, CENTER) \ + block( \ + locate(max(CENTER.x-(RADIUS),1), max(CENTER.y-(RADIUS),1), CENTER.z), \ + locate(min(CENTER.x+(RADIUS),world.maxx), min(CENTER.y+(RADIUS),world.maxy), CENTER.z) \ + ) diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index da5456a028a..cc02c1959aa 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -15,19 +15,16 @@ /turf/space/New() if(!istype(src, /turf/space/transit)) icon_state = "[((x + y) ^ ~(x * y) + z) % 25]" - if(config) - if(config.starlight) - update_starlight() + /turf/space/Destroy() return QDEL_HINT_LETMELIVE /turf/space/proc/update_starlight() if(config) if(config.starlight) - for(var/turf/T in orange(src,1)) - if(istype(T,/turf/simulated)) - SetLuminosity(3) - return + for(var/turf/simulated/T in RANGE_TURFS(1,src)) //RANGE_TURFS is in code\__HELPERS\game.dm + SetLuminosity(3) + return SetLuminosity(0) /turf/space/attack_paw(mob/user) diff --git a/code/modules/lighting/lighting_system.dm b/code/modules/lighting/lighting_system.dm index d393adb3728..e332250336c 100644 --- a/code/modules/lighting/lighting_system.dm +++ b/code/modules/lighting/lighting_system.dm @@ -267,10 +267,9 @@ lighting_object = locate() in src init_lighting() - for(var/turf/space/S in orange(1,src)) + for(var/turf/space/S in RANGE_TURFS(1,src)) //RANGE_TURFS is in code\__HELPERS\game.dm S.update_starlight() - /turf/proc/update_lumcount(amount) lighting_lumcount += amount if(!lighting_changed) From 7fc81c0ea4415b5181add2f1f076fe3510a5df9c Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Sun, 25 Oct 2015 02:53:29 -0300 Subject: [PATCH 087/418] Fixes extra checks for objectives Fixes #4725 Reopens #11444 @Dorsisdwarf @Cheridan please. --- code/game/gamemodes/objective_items.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/gamemodes/objective_items.dm b/code/game/gamemodes/objective_items.dm index 1330cdc6f06..aaad95d3a63 100644 --- a/code/game/gamemodes/objective_items.dm +++ b/code/game/gamemodes/objective_items.dm @@ -8,7 +8,7 @@ var/list/altitems = list() //Items which can serve as an alternative to the objective (darn you blueprints) var/list/special_equipment = list() -/datum/proc/check_special_completion() //for objectives with special checks (is that slime extract unused? does that intellicard have an ai in it? etcetc) +/datum/objective_item/proc/check_special_completion() //for objectives with special checks (is that slime extract unused? does that intellicard have an ai in it? etcetc) return 1 /datum/objective_item/steal/caplaser @@ -91,7 +91,7 @@ difficulty = 3 excludefromjob = list("Chief Engineer","Research Director","Station Engineer","Scientist","Atmospheric Technician") -/datum/objective_item/plasma/check_special_completion(obj/item/weapon/tank/T) +/datum/objective_item/steal/plasma/check_special_completion(obj/item/weapon/tank/T) var/target_amount = text2num(name) var/found_amount = 0 found_amount += T.air_contents.toxins @@ -103,7 +103,7 @@ targetitem = /obj/item/device/aicard difficulty = 20 //beyond the impossible -/datum/objective_item/functionalai/check_special_completion(obj/item/device/aicard/C) +/datum/objective_item/steal/functionalai/check_special_completion(obj/item/device/aicard/C) for(var/mob/living/silicon/ai/A in C) if(istype(A, /mob/living/silicon/ai) && A.stat != 2) //See if any AI's are alive inside that card. return 1 @@ -116,7 +116,7 @@ excludefromjob = list("Chief Engineer") altitems = list(/obj/item/weapon/photo) -/datum/objective_item/blueprints/check_special_completion(obj/item/I) +/datum/objective_item/steal/blueprints/check_special_completion(obj/item/I) if(istype(I, /obj/item/areaeditor/blueprints)) return 1 if(istype(I, /obj/item/weapon/photo)) @@ -131,7 +131,7 @@ difficulty = 3 excludefromjob = list("Research Director","Scientist") -/datum/objective_item/slime/check_special_completion(obj/item/slime_extract/E) +/datum/objective_item/steal/slime/check_special_completion(obj/item/slime_extract/E) if(E.Uses > 0) return 1 return 0 From ef24943bc906f0ff854eda067dbc7bf1b2f52bac Mon Sep 17 00:00:00 2001 From: Incoming Date: Sun, 25 Oct 2015 03:15:07 -0400 Subject: [PATCH 088/418] SUPERMATTER SWORD! It's a sword made of supermatter! It'll dust nearly anything! It's hilariously lethal to actually attack with without radiation shielding! It's still eventually lethal even WITH radiation shielding! Admin Only! Good Ideas! --- code/game/objects/items/weapons/melee/misc.dm | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/code/game/objects/items/weapons/melee/misc.dm b/code/game/objects/items/weapons/melee/misc.dm index 28acafbac86..49dbb1ade4a 100644 --- a/code/game/objects/items/weapons/melee/misc.dm +++ b/code/game/objects/items/weapons/melee/misc.dm @@ -125,3 +125,31 @@ playsound(src.loc, 'sound/weapons/batonextend.ogg', 50, 1) add_fingerprint(user) + +/obj/item/weapon/melee/supermatter_sword + name = "supermatter sword" + desc = "In a station full of bad ideas, this might just be the worst." + icon = 'icons/obj/weapons.dmi' + icon_state = "telebaton_0" //Needed! + item_state = null //Needed! + slot_flags = null + w_class = 4 + var/obj/machinery/power/supermatter_shard/shard + + +/obj/item/weapon/melee/supermatter_sword/New() + ..() + shard = new /obj/machinery/power/supermatter_shard(src) + +/obj/item/weapon/melee/supermatter_sword/afterattack(target) + ..() + shard.Bumped(target) + +/obj/item/weapon/melee/supermatter_sword/throw_impact(target) + ..() + shard.Bumped(target) + +/obj/item/weapon/melee/supermatter_sword/suicide_act(mob/user) + user.visible_message("[user] touches the [src.name]'s blade. It looks like they're tired of waiting for the radiation to kill them!") + user.drop_item() + shard.Bumped(user) \ No newline at end of file From f52bb39674f00593a6afd0c7f410528135297bc3 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Sun, 25 Oct 2015 00:45:48 -0700 Subject: [PATCH 089/418] Adds OOC banning --- code/game/verbs/ooc.dm | 3 +++ code/modules/admin/admin.dm | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm index 3a5b8178aae..f73a35f6eea 100644 --- a/code/game/verbs/ooc.dm +++ b/code/game/verbs/ooc.dm @@ -28,6 +28,9 @@ if(prefs.muted & MUTE_OOC) src << "You cannot use OOC (muted)." return + if(jobban_isbanned(src, "OOC")) + src << "You have been banned from OOC." + return if(handle_spam_prevention(msg,MUTE_OOC)) return if(findtext(msg, "byond://")) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 42ade144ac5..c6e864e8b89 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -66,6 +66,11 @@ var/global/floorIsLava = 0 body += "DEADCHAT\]" body += "(toggle all)" + if(jobban_isbanned(M, "OOC")) + body+= "OOCBAN | " + else + body+= "OOCBAN | " + body += "

" body += "Jump to | " body += "Get | " From 66d2e28e3aff55b047cc400422fe77c795beb3e0 Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Sun, 25 Oct 2015 14:35:19 -0300 Subject: [PATCH 090/418] Adds googly eyes for animated mimics The eyes also follow their targets. Fixes #3522 --- .../mob/living/simple_animal/hostile/mimic.dm | 6 ++++++ icons/mob/mob.dmi | Bin 231898 -> 232138 bytes 2 files changed, 6 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/mimic.dm b/code/modules/mob/living/simple_animal/hostile/mimic.dm index 877739d8bd8..13af67c7f45 100644 --- a/code/modules/mob/living/simple_animal/hostile/mimic.dm +++ b/code/modules/mob/living/simple_animal/hostile/mimic.dm @@ -110,6 +110,7 @@ var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/ca var/mob/living/creator = null // the creator var/destroy_objects = 0 var/knockdown_people = 0 + var/image/googly_eyes = null gold_core_spawnable = 0 /mob/living/simple_animal/hostile/mimic/copy/New(loc, obj/copy, mob/living/creator, destroy_original = 0) @@ -150,6 +151,8 @@ var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/ca icon_state = O.icon_state icon_living = icon_state overlays = O.overlays + googly_eyes = image('icons/mob/mob.dmi',"googly_eyes") + overlays += googly_eyes if(istype(O, /obj/structure) || istype(O, /obj/machinery)) health = (anchored * 50) + 50 destroy_objects = 1 @@ -185,6 +188,9 @@ var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/ca C.visible_message("\The [src] knocks down \the [C]!", \ "\The [src] knocks you down!") +/mob/living/simple_animal/hostile/mimic/copy/Aggro() + ..() + googly_eyes.dir = get_dir(src,target) /mob/living/simple_animal/hostile/mimic/copy/machine diff --git a/icons/mob/mob.dmi b/icons/mob/mob.dmi index 9b28bc46533963ae77f700fd5fb4777ef8ea89f0..196bea07d40fca1aadad409d414fa0269d2aca71 100644 GIT binary patch delta 21905 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 BdrSZT delta 21654 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 {;v;Or2ES(Y*p@PE6QKRL36 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

3#Ky)( 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 ba3nIpB2N{OqiJ$_82DV(zM)m6=@9jQ+1ukj From 1a199fa5677595f46c963c3cd86626df09e5502e Mon Sep 17 00:00:00 2001 From: Incoming Date: Sun, 25 Oct 2015 14:23:30 -0400 Subject: [PATCH 091/418] Sets up a catch for the lich spell's needed immunity to instantly ending the round on wizard death so it will still end the round once the wizard's body is properly disposed of. --- code/datums/spells/lichdom.dm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/code/datums/spells/lichdom.dm b/code/datums/spells/lichdom.dm index d73debebd33..81f2287d970 100644 --- a/code/datums/spells/lichdom.dm +++ b/code/datums/spells/lichdom.dm @@ -15,14 +15,25 @@ var/obj/marked_item var/mob/living/current_body var/resurrections = 0 + var/existence_stops_round_end = 0 action_icon_state = "skeleton" /obj/effect/proc_holder/spell/targeted/lichdom/New() - if(ticker.mode.round_ends_with_antag_death) + if(initial(ticker.mode.round_ends_with_antag_death)) + existence_stops_round_end = 1 ticker.mode.round_ends_with_antag_death = 0 - ..() + +/obj/effect/proc_holder/spell/targeted/lichdom/Destroy() + for(var/datum/mind/M in ticker.mode.wizards) //Make sure no other bones are about + for(var/obj/effect/proc_holder/spell/S in M.spell_list) + if(istype(S,/obj/effect/proc_holder/spell/targeted/lichdom) && S != src) + return ..() + if(existence_stops_round_end) + ticker.mode.round_ends_with_antag_death = 1 + ..() + /obj/effect/proc_holder/spell/targeted/lichdom/cast(list/targets) for(var/mob/user in targets) var/list/hand_items = list() From 0ce740fa94fc2dc1487a66e410a962aac457cacb Mon Sep 17 00:00:00 2001 From: Incoming Date: Sun, 25 Oct 2015 14:39:59 -0400 Subject: [PATCH 092/418] Fixes dropable bloodcrawl hands, you need both of these when the item is something you keep in your hands. --- code/modules/mob/living/bloodcrawl.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/bloodcrawl.dm b/code/modules/mob/living/bloodcrawl.dm index da74f1fc716..bb517bd75cd 100644 --- a/code/modules/mob/living/bloodcrawl.dm +++ b/code/modules/mob/living/bloodcrawl.dm @@ -95,7 +95,7 @@ obj/effect/dummy/slaughter/relaymove(mob/user, direction) name = "blood crawl" desc = "You are unable to hold anything while in this form." icon = 'icons/effects/blood.dmi' - flags = NODROP + flags = NODROP|ABSTRACT /mob/living/proc/phasein(obj/effect/decal/cleanable/B) if(src.notransform) From d594ed34d66ff8bf76c85f0284c2f5b0f0d36aed Mon Sep 17 00:00:00 2001 From: Incoming Date: Sun, 25 Oct 2015 16:54:57 -0400 Subject: [PATCH 093/418] [readding the heat/cold modifiers] --- code/modules/mob/living/carbon/human/species_types.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index f92e4fec3a3..9222cf227c8 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -244,6 +244,9 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) hair_color = "mutcolor" hair_alpha = 150 ignored_by = list(/mob/living/simple_animal/slime) + burnmod = 0.5 + coldmod = 2 + heatmod = 0.5 /datum/species/jelly/slime/spec_life(mob/living/carbon/human/H) if(recently_changed) From 3beb40208a9cc53b9fad19c44c747a7e70411eea Mon Sep 17 00:00:00 2001 From: sybil-tgstation13 Date: Sun, 25 Oct 2015 21:39:38 +0000 Subject: [PATCH 094/418] Automatic changelog compile --- html/changelog.html | 16 ++++++++++++++++ html/changelogs/.all_changelog.yml | 15 +++++++++++++++ html/changelogs/Incoming-spellshuffle.yml | 7 ------- html/changelogs/Jordie0608 ignore.yml | 5 ----- html/changelogs/Tkdrg-CHAINSAWS.yml | 6 ------ 5 files changed, 31 insertions(+), 18 deletions(-) delete mode 100644 html/changelogs/Incoming-spellshuffle.yml delete mode 100644 html/changelogs/Jordie0608 ignore.yml delete mode 100644 html/changelogs/Tkdrg-CHAINSAWS.yml diff --git a/html/changelog.html b/html/changelog.html index 7665e377ec9..0f1e5ef6a24 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -55,6 +55,22 @@ -->

+

25 October 2015

+

Incoming5643 updated:

+
    +
  • The spell Charge has been added to the spellbook. It can be used to extend the life of magic and energy weapons and even reset the cooldowns of held wizards! It cannot reset your own cooldowns.
  • +
  • The Staff of Healing has been added to the spellbook. Heals all damage and raises the dead! Can't be used on yourself however.
  • +
  • The exploit that allowed you to use the staff of healing on yourself by suicide has been fixed.
  • +
+

Jordie0608 updated:

+
    +
  • You can now selectively mute non-admin players from OOC with the Ignore verb in the OOC tab.
  • +
+

Tkdrg updated:

+
    +
  • Added chainsaws. They can be tablecrafted using a circular saw, a plasteel sheet, some cable coil, and a welding tool. Don't forget to turn it on!
  • +
+

24 October 2015

Kor updated: